From 2279292b3ff2abdd7057474f58e8c6b06d2aef11 Mon Sep 17 00:00:00 2001 From: Sergey Fedorov Date: Thu, 21 Nov 2024 10:25:52 +0100 Subject: [PATCH 001/161] Remove use of Reactive::Operation in code --- .../appsec/contrib/graphql/gateway/watcher.rb | 30 ++--- .../contrib/graphql/reactive/multiplex.rb | 8 +- .../appsec/contrib/rack/gateway/watcher.rb | 121 ++++++++---------- .../appsec/contrib/rack/reactive/request.rb | 18 +-- .../contrib/rack/reactive/request_body.rb | 8 +- .../appsec/contrib/rack/reactive/response.rb | 10 +- .../appsec/contrib/rails/gateway/watcher.rb | 38 +++--- .../appsec/contrib/rails/reactive/action.rb | 10 +- .../appsec/contrib/sinatra/gateway/watcher.rb | 82 ++++++------ .../appsec/contrib/sinatra/reactive/routed.rb | 8 +- lib/datadog/appsec/monitor/gateway/watcher.rb | 41 +++--- .../appsec/monitor/reactive/set_user.rb | 8 +- lib/datadog/appsec/reactive/operation.rb | 68 ---------- .../contrib/graphql/reactive/multiplex.rbs | 6 +- .../appsec/contrib/rack/reactive/request.rbs | 4 +- .../contrib/rack/reactive/request_body.rbs | 4 +- .../appsec/contrib/rack/reactive/response.rbs | 4 +- .../appsec/contrib/rails/reactive/action.rbs | 4 +- .../contrib/sinatra/reactive/routed.rbs | 4 +- .../appsec/monitor/reactive/set_user.rbs | 4 +- sig/datadog/appsec/reactive/operation.rbs | 25 ---- .../datadog/appsec/reactive/operation_spec.rb | 86 ------------- 22 files changed, 192 insertions(+), 399 deletions(-) delete mode 100644 lib/datadog/appsec/reactive/operation.rb delete mode 100644 sig/datadog/appsec/reactive/operation.rbs delete mode 100644 spec/datadog/appsec/reactive/operation_spec.rb diff --git a/lib/datadog/appsec/contrib/graphql/gateway/watcher.rb b/lib/datadog/appsec/contrib/graphql/gateway/watcher.rb index 68a1c5acf11..4520e05b111 100644 --- a/lib/datadog/appsec/contrib/graphql/gateway/watcher.rb +++ b/lib/datadog/appsec/contrib/graphql/gateway/watcher.rb @@ -2,8 +2,8 @@ require 'json' require_relative '../../../instrumentation/gateway' +require_relative '../../../reactive/engine' require_relative '../reactive/multiplex' -require_relative '../../../reactive/operation' module Datadog module AppSec @@ -24,26 +24,24 @@ def watch_multiplex(gateway = Instrumentation.gateway) gateway.watch('graphql.multiplex', :appsec) do |stack, gateway_multiplex| block = false event = nil - scope = AppSec::Scope.active_scope + engine = AppSec::Reactive::Engine.new if scope - AppSec::Reactive::Operation.new('graphql.multiplex') do |op| - GraphQL::Reactive::Multiplex.subscribe(op, scope.processor_context) do |result| - event = { - waf_result: result, - trace: scope.trace, - span: scope.service_entry_span, - multiplex: gateway_multiplex, - actions: result.actions - } - - Datadog::AppSec::Event.tag_and_keep!(scope, result) - scope.processor_context.events << event - end + GraphQL::Reactive::Multiplex.subscribe(engine, scope.processor_context) do |result| + event = { + waf_result: result, + trace: scope.trace, + span: scope.service_entry_span, + multiplex: gateway_multiplex, + actions: result.actions + } - block = GraphQL::Reactive::Multiplex.publish(op, gateway_multiplex) + Datadog::AppSec::Event.tag_and_keep!(scope, result) + scope.processor_context.events << event end + + block = GraphQL::Reactive::Multiplex.publish(engine, gateway_multiplex) end next [nil, [[:block, event]]] if block diff --git a/lib/datadog/appsec/contrib/graphql/reactive/multiplex.rb b/lib/datadog/appsec/contrib/graphql/reactive/multiplex.rb index 4d08c60b861..cfbf31dc1b8 100644 --- a/lib/datadog/appsec/contrib/graphql/reactive/multiplex.rb +++ b/lib/datadog/appsec/contrib/graphql/reactive/multiplex.rb @@ -12,16 +12,16 @@ module Multiplex ].freeze private_constant :ADDRESSES - def self.publish(op, gateway_multiplex) + def self.publish(engine, gateway_multiplex) catch(:block) do - op.publish('graphql.server.all_resolvers', gateway_multiplex.arguments) + engine.publish('graphql.server.all_resolvers', gateway_multiplex.arguments) nil end end - def self.subscribe(op, waf_context) - op.subscribe(*ADDRESSES) do |*values| + def self.subscribe(engine, waf_context) + engine.subscribe(*ADDRESSES) do |*values| Datadog.logger.debug { "reacted to #{ADDRESSES.inspect}: #{values.inspect}" } arguments = values[0] diff --git a/lib/datadog/appsec/contrib/rack/gateway/watcher.rb b/lib/datadog/appsec/contrib/rack/gateway/watcher.rb index a66387329c3..fb7e095f834 100644 --- a/lib/datadog/appsec/contrib/rack/gateway/watcher.rb +++ b/lib/datadog/appsec/contrib/rack/gateway/watcher.rb @@ -1,7 +1,7 @@ # frozen_string_literal: true require_relative '../../../instrumentation/gateway' -require_relative '../../../reactive/operation' +require_relative '../../../reactive/engine' require_relative '../reactive/request' require_relative '../reactive/request_body' require_relative '../reactive/response' @@ -25,32 +25,29 @@ def watch def watch_request(gateway = Instrumentation.gateway) gateway.watch('rack.request', :appsec) do |stack, gateway_request| - block = false event = nil scope = gateway_request.env[Datadog::AppSec::Ext::SCOPE_KEY] - - AppSec::Reactive::Operation.new('rack.request') do |op| - Rack::Reactive::Request.subscribe(op, scope.processor_context) do |result| - if result.status == :match - # TODO: should this hash be an Event instance instead? - event = { - waf_result: result, - trace: scope.trace, - span: scope.service_entry_span, - request: gateway_request, - actions: result.actions - } - - # We want to keep the trace in case of security event - scope.trace.keep! if scope.trace - Datadog::AppSec::Event.tag_and_keep!(scope, result) - scope.processor_context.events << event - end + engine = AppSec::Reactive::Engine.new + + Rack::Reactive::Request.subscribe(engine, scope.processor_context) do |result| + if result.status == :match + # TODO: should this hash be an Event instance instead? + event = { + waf_result: result, + trace: scope.trace, + span: scope.service_entry_span, + request: gateway_request, + actions: result.actions + } + + # We want to keep the trace in case of security event + scope.trace.keep! if scope.trace + Datadog::AppSec::Event.tag_and_keep!(scope, result) + scope.processor_context.events << event end - - block = Rack::Reactive::Request.publish(op, gateway_request) end + block = Rack::Reactive::Request.publish(engine, gateway_request) next [nil, [[:block, event]]] if block ret, res = stack.call(gateway_request.request) @@ -66,33 +63,29 @@ def watch_request(gateway = Instrumentation.gateway) def watch_response(gateway = Instrumentation.gateway) gateway.watch('rack.response', :appsec) do |stack, gateway_response| - block = false - event = nil scope = gateway_response.scope - - AppSec::Reactive::Operation.new('rack.response') do |op| - Rack::Reactive::Response.subscribe(op, scope.processor_context) do |result| - if result.status == :match - # TODO: should this hash be an Event instance instead? - event = { - waf_result: result, - trace: scope.trace, - span: scope.service_entry_span, - response: gateway_response, - actions: result.actions - } - - # We want to keep the trace in case of security event - scope.trace.keep! if scope.trace - Datadog::AppSec::Event.tag_and_keep!(scope, result) - scope.processor_context.events << event - end + engine = AppSec::Reactive::Engine.new + + Rack::Reactive::Response.subscribe(engine, scope.processor_context) do |result| + if result.status == :match + # TODO: should this hash be an Event instance instead? + event = { + waf_result: result, + trace: scope.trace, + span: scope.service_entry_span, + response: gateway_response, + actions: result.actions + } + + # We want to keep the trace in case of security event + scope.trace.keep! if scope.trace + Datadog::AppSec::Event.tag_and_keep!(scope, result) + scope.processor_context.events << event end - - block = Rack::Reactive::Response.publish(op, gateway_response) end + block = Rack::Reactive::Response.publish(engine, gateway_response) next [nil, [[:block, event]]] if block ret, res = stack.call(gateway_response.response) @@ -108,33 +101,29 @@ def watch_response(gateway = Instrumentation.gateway) def watch_request_body(gateway = Instrumentation.gateway) gateway.watch('rack.request.body', :appsec) do |stack, gateway_request| - block = false - event = nil scope = gateway_request.env[Datadog::AppSec::Ext::SCOPE_KEY] - - AppSec::Reactive::Operation.new('rack.request.body') do |op| - Rack::Reactive::RequestBody.subscribe(op, scope.processor_context) do |result| - if result.status == :match - # TODO: should this hash be an Event instance instead? - event = { - waf_result: result, - trace: scope.trace, - span: scope.service_entry_span, - request: gateway_request, - actions: result.actions - } - - # We want to keep the trace in case of security event - scope.trace.keep! if scope.trace - Datadog::AppSec::Event.tag_and_keep!(scope, result) - scope.processor_context.events << event - end + engine = AppSec::Reactive::Engine.new + + Rack::Reactive::RequestBody.subscribe(engine, scope.processor_context) do |result| + if result.status == :match + # TODO: should this hash be an Event instance instead? + event = { + waf_result: result, + trace: scope.trace, + span: scope.service_entry_span, + request: gateway_request, + actions: result.actions + } + + # We want to keep the trace in case of security event + scope.trace.keep! if scope.trace + Datadog::AppSec::Event.tag_and_keep!(scope, result) + scope.processor_context.events << event end - - block = Rack::Reactive::RequestBody.publish(op, gateway_request) end + block = Rack::Reactive::RequestBody.publish(engine, gateway_request) next [nil, [[:block, event]]] if block ret, res = stack.call(gateway_request.request) diff --git a/lib/datadog/appsec/contrib/rack/reactive/request.rb b/lib/datadog/appsec/contrib/rack/reactive/request.rb index 4f88a8aa989..78074268af6 100644 --- a/lib/datadog/appsec/contrib/rack/reactive/request.rb +++ b/lib/datadog/appsec/contrib/rack/reactive/request.rb @@ -17,21 +17,21 @@ module Request ].freeze private_constant :ADDRESSES - def self.publish(op, gateway_request) + def self.publish(engine, gateway_request) catch(:block) do - op.publish('request.query', gateway_request.query) - op.publish('request.headers', gateway_request.headers) - op.publish('request.uri.raw', gateway_request.fullpath) - op.publish('request.cookies', gateway_request.cookies) - op.publish('request.client_ip', gateway_request.client_ip) - op.publish('server.request.method', gateway_request.method) + engine.publish('request.query', gateway_request.query) + engine.publish('request.headers', gateway_request.headers) + engine.publish('request.uri.raw', gateway_request.fullpath) + engine.publish('request.cookies', gateway_request.cookies) + engine.publish('request.client_ip', gateway_request.client_ip) + engine.publish('server.request.method', gateway_request.method) nil end end - def self.subscribe(op, waf_context) - op.subscribe(*ADDRESSES) do |*values| + def self.subscribe(engine, waf_context) + engine.subscribe(*ADDRESSES) do |*values| Datadog.logger.debug { "reacted to #{ADDRESSES.inspect}: #{values.inspect}" } headers = values[0] diff --git a/lib/datadog/appsec/contrib/rack/reactive/request_body.rb b/lib/datadog/appsec/contrib/rack/reactive/request_body.rb index 1cf98518077..57395ac83b8 100644 --- a/lib/datadog/appsec/contrib/rack/reactive/request_body.rb +++ b/lib/datadog/appsec/contrib/rack/reactive/request_body.rb @@ -12,17 +12,17 @@ module RequestBody ].freeze private_constant :ADDRESSES - def self.publish(op, gateway_request) + def self.publish(engine, gateway_request) catch(:block) do # params have been parsed from the request body - op.publish('request.body', gateway_request.form_hash) + engine.publish('request.body', gateway_request.form_hash) nil end end - def self.subscribe(op, waf_context) - op.subscribe(*ADDRESSES) do |*values| + def self.subscribe(engine, waf_context) + engine.subscribe(*ADDRESSES) do |*values| Datadog.logger.debug { "reacted to #{ADDRESSES.inspect}: #{values.inspect}" } body = values[0] diff --git a/lib/datadog/appsec/contrib/rack/reactive/response.rb b/lib/datadog/appsec/contrib/rack/reactive/response.rb index 850e3c022f8..8c0cd706d26 100644 --- a/lib/datadog/appsec/contrib/rack/reactive/response.rb +++ b/lib/datadog/appsec/contrib/rack/reactive/response.rb @@ -13,17 +13,17 @@ module Response ].freeze private_constant :ADDRESSES - def self.publish(op, gateway_response) + def self.publish(engine, gateway_response) catch(:block) do - op.publish('response.status', gateway_response.status) - op.publish('response.headers', gateway_response.headers) + engine.publish('response.status', gateway_response.status) + engine.publish('response.headers', gateway_response.headers) nil end end - def self.subscribe(op, waf_context) - op.subscribe(*ADDRESSES) do |*values| + def self.subscribe(engine, waf_context) + engine.subscribe(*ADDRESSES) do |*values| Datadog.logger.debug { "reacted to #{ADDRESSES.inspect}: #{values.inspect}" } response_status = values[0] diff --git a/lib/datadog/appsec/contrib/rails/gateway/watcher.rb b/lib/datadog/appsec/contrib/rails/gateway/watcher.rb index ab1bfe612ec..6fb24027f61 100644 --- a/lib/datadog/appsec/contrib/rails/gateway/watcher.rb +++ b/lib/datadog/appsec/contrib/rails/gateway/watcher.rb @@ -1,7 +1,7 @@ # frozen_string_literal: true require_relative '../../../instrumentation/gateway' -require_relative '../../../reactive/operation' +require_relative '../../../reactive/engine' require_relative '../reactive/action' require_relative '../../../event' @@ -21,33 +21,29 @@ def watch def watch_request_action(gateway = Instrumentation.gateway) gateway.watch('rails.request.action', :appsec) do |stack, gateway_request| - block = false - event = nil scope = gateway_request.env[Datadog::AppSec::Ext::SCOPE_KEY] + engine = AppSec::Reactive::Engine.new - AppSec::Reactive::Operation.new('rails.request.action') do |op| - Rails::Reactive::Action.subscribe(op, scope.processor_context) do |result| - if result.status == :match - # TODO: should this hash be an Event instance instead? - event = { - waf_result: result, - trace: scope.trace, - span: scope.service_entry_span, - request: gateway_request, - actions: result.actions - } + Rails::Reactive::Action.subscribe(engine, scope.processor_context) do |result| + if result.status == :match + # TODO: should this hash be an Event instance instead? + event = { + waf_result: result, + trace: scope.trace, + span: scope.service_entry_span, + request: gateway_request, + actions: result.actions + } - # We want to keep the trace in case of security event - scope.trace.keep! if scope.trace - Datadog::AppSec::Event.tag_and_keep!(scope, result) - scope.processor_context.events << event - end + # We want to keep the trace in case of security event + scope.trace.keep! if scope.trace + Datadog::AppSec::Event.tag_and_keep!(scope, result) + scope.processor_context.events << event end - - block = Rails::Reactive::Action.publish(op, gateway_request) end + block = Rails::Reactive::Action.publish(engine, gateway_request) next [nil, [[:block, event]]] if block ret, res = stack.call(gateway_request.request) diff --git a/lib/datadog/appsec/contrib/rails/reactive/action.rb b/lib/datadog/appsec/contrib/rails/reactive/action.rb index eb28c9983c0..9dbe8697e51 100644 --- a/lib/datadog/appsec/contrib/rails/reactive/action.rb +++ b/lib/datadog/appsec/contrib/rails/reactive/action.rb @@ -15,18 +15,18 @@ module Action ].freeze private_constant :ADDRESSES - def self.publish(op, gateway_request) + def self.publish(engine, gateway_request) catch(:block) do # params have been parsed from the request body - op.publish('rails.request.body', gateway_request.parsed_body) - op.publish('rails.request.route_params', gateway_request.route_params) + engine.publish('rails.request.body', gateway_request.parsed_body) + engine.publish('rails.request.route_params', gateway_request.route_params) nil end end - def self.subscribe(op, waf_context) - op.subscribe(*ADDRESSES) do |*values| + def self.subscribe(engine, waf_context) + engine.subscribe(*ADDRESSES) do |*values| Datadog.logger.debug { "reacted to #{ADDRESSES.inspect}: #{values.inspect}" } body = values[0] path_params = values[1] diff --git a/lib/datadog/appsec/contrib/sinatra/gateway/watcher.rb b/lib/datadog/appsec/contrib/sinatra/gateway/watcher.rb index 91383478c29..442d829cd34 100644 --- a/lib/datadog/appsec/contrib/sinatra/gateway/watcher.rb +++ b/lib/datadog/appsec/contrib/sinatra/gateway/watcher.rb @@ -1,7 +1,7 @@ # frozen_string_literal: true require_relative '../../../instrumentation/gateway' -require_relative '../../../reactive/operation' +require_relative '../../../reactive/engine' require_relative '../../rack/reactive/request_body' require_relative '../reactive/routed' require_relative '../../../event' @@ -23,33 +23,29 @@ def watch def watch_request_dispatch(gateway = Instrumentation.gateway) gateway.watch('sinatra.request.dispatch', :appsec) do |stack, gateway_request| - block = false - event = nil scope = gateway_request.env[Datadog::AppSec::Ext::SCOPE_KEY] - - AppSec::Reactive::Operation.new('sinatra.request.dispatch') do |op| - Rack::Reactive::RequestBody.subscribe(op, scope.processor_context) do |result| - if result.status == :match - # TODO: should this hash be an Event instance instead? - event = { - waf_result: result, - trace: scope.trace, - span: scope.service_entry_span, - request: gateway_request, - actions: result.actions - } - - # We want to keep the trace in case of security event - scope.trace.keep! if scope.trace - Datadog::AppSec::Event.tag_and_keep!(scope, result) - scope.processor_context.events << event - end + engine = AppSec::Reactive::Engine.new + + Rack::Reactive::RequestBody.subscribe(engine, scope.processor_context) do |result| + if result.status == :match + # TODO: should this hash be an Event instance instead? + event = { + waf_result: result, + trace: scope.trace, + span: scope.service_entry_span, + request: gateway_request, + actions: result.actions + } + + # We want to keep the trace in case of security event + scope.trace.keep! if scope.trace + Datadog::AppSec::Event.tag_and_keep!(scope, result) + scope.processor_context.events << event end - - block = Rack::Reactive::RequestBody.publish(op, gateway_request) end + block = Rack::Reactive::RequestBody.publish(engine, gateway_request) next [nil, [[:block, event]]] if block ret, res = stack.call(gateway_request.request) @@ -65,33 +61,29 @@ def watch_request_dispatch(gateway = Instrumentation.gateway) def watch_request_routed(gateway = Instrumentation.gateway) gateway.watch('sinatra.request.routed', :appsec) do |stack, (gateway_request, gateway_route_params)| - block = false - event = nil scope = gateway_request.env[Datadog::AppSec::Ext::SCOPE_KEY] - - AppSec::Reactive::Operation.new('sinatra.request.routed') do |op| - Sinatra::Reactive::Routed.subscribe(op, scope.processor_context) do |result| - if result.status == :match - # TODO: should this hash be an Event instance instead? - event = { - waf_result: result, - trace: scope.trace, - span: scope.service_entry_span, - request: gateway_request, - actions: result.actions - } - - # We want to keep the trace in case of security event - scope.trace.keep! if scope.trace - Datadog::AppSec::Event.tag_and_keep!(scope, result) - scope.processor_context.events << event - end + engine = AppSec::Reactive::Engine.new + + Sinatra::Reactive::Routed.subscribe(engine, scope.processor_context) do |result| + if result.status == :match + # TODO: should this hash be an Event instance instead? + event = { + waf_result: result, + trace: scope.trace, + span: scope.service_entry_span, + request: gateway_request, + actions: result.actions + } + + # We want to keep the trace in case of security event + scope.trace.keep! if scope.trace + Datadog::AppSec::Event.tag_and_keep!(scope, result) + scope.processor_context.events << event end - - block = Sinatra::Reactive::Routed.publish(op, [gateway_request, gateway_route_params]) end + block = Sinatra::Reactive::Routed.publish(engine, [gateway_request, gateway_route_params]) next [nil, [[:block, event]]] if block ret, res = stack.call(gateway_request.request) diff --git a/lib/datadog/appsec/contrib/sinatra/reactive/routed.rb b/lib/datadog/appsec/contrib/sinatra/reactive/routed.rb index 60e0f7e6301..e34dfb4ccb3 100644 --- a/lib/datadog/appsec/contrib/sinatra/reactive/routed.rb +++ b/lib/datadog/appsec/contrib/sinatra/reactive/routed.rb @@ -12,18 +12,18 @@ module Routed ].freeze private_constant :ADDRESSES - def self.publish(op, data) + def self.publish(engine, data) _request, route_params = data catch(:block) do - op.publish('sinatra.request.route_params', route_params.params) + engine.publish('sinatra.request.route_params', route_params.params) nil end end - def self.subscribe(op, waf_context) - op.subscribe(*ADDRESSES) do |*values| + def self.subscribe(engine, waf_context) + engine.subscribe(*ADDRESSES) do |*values| Datadog.logger.debug { "reacted to #{ADDRESSES.inspect}: #{values.inspect}" } path_params = values[0] diff --git a/lib/datadog/appsec/monitor/gateway/watcher.rb b/lib/datadog/appsec/monitor/gateway/watcher.rb index 74fc4d3fd60..e8beb102e52 100644 --- a/lib/datadog/appsec/monitor/gateway/watcher.rb +++ b/lib/datadog/appsec/monitor/gateway/watcher.rb @@ -1,7 +1,7 @@ # frozen_string_literal: true require_relative '../../instrumentation/gateway' -require_relative '../../reactive/operation' +require_relative '../../reactive/engine' require_relative '../reactive/set_user' module Datadog @@ -19,32 +19,29 @@ def watch def watch_user_id(gateway = Instrumentation.gateway) gateway.watch('identity.set_user', :appsec) do |stack, user| - block = false event = nil scope = Datadog::AppSec.active_scope - - AppSec::Reactive::Operation.new('identity.set_user') do |op| - Monitor::Reactive::SetUser.subscribe(op, scope.processor_context) do |result| - if result.status == :match - # TODO: should this hash be an Event instance instead? - event = { - waf_result: result, - trace: scope.trace, - span: scope.service_entry_span, - user: user, - actions: result.actions - } - - # We want to keep the trace in case of security event - scope.trace.keep! if scope.trace - Datadog::AppSec::Event.tag_and_keep!(scope, result) - scope.processor_context.events << event - end + engine = AppSec::Reactive::Engine.new + + Monitor::Reactive::SetUser.subscribe(engine, scope.processor_context) do |result| + if result.status == :match + # TODO: should this hash be an Event instance instead? + event = { + waf_result: result, + trace: scope.trace, + span: scope.service_entry_span, + user: user, + actions: result.actions + } + + # We want to keep the trace in case of security event + scope.trace.keep! if scope.trace + Datadog::AppSec::Event.tag_and_keep!(scope, result) + scope.processor_context.events << event end - - block = Monitor::Reactive::SetUser.publish(op, user) end + block = Monitor::Reactive::SetUser.publish(engine, user) throw(Datadog::AppSec::Ext::INTERRUPT, [nil, [[:block, event]]]) if block ret, res = stack.call(user) diff --git a/lib/datadog/appsec/monitor/reactive/set_user.rb b/lib/datadog/appsec/monitor/reactive/set_user.rb index f3c43883bd5..ea3128c6031 100644 --- a/lib/datadog/appsec/monitor/reactive/set_user.rb +++ b/lib/datadog/appsec/monitor/reactive/set_user.rb @@ -11,16 +11,16 @@ module SetUser ].freeze private_constant :ADDRESSES - def self.publish(op, user) + def self.publish(engine, user) catch(:block) do - op.publish('usr.id', user.id) + engine.publish('usr.id', user.id) nil end end - def self.subscribe(op, waf_context) - op.subscribe(*ADDRESSES) do |*values| + def self.subscribe(engine, waf_context) + engine.subscribe(*ADDRESSES) do |*values| Datadog.logger.debug { "reacted to #{ADDRESSES.inspect}: #{values.inspect}" } user_id = values[0] diff --git a/lib/datadog/appsec/reactive/operation.rb b/lib/datadog/appsec/reactive/operation.rb deleted file mode 100644 index f7696cdbcec..00000000000 --- a/lib/datadog/appsec/reactive/operation.rb +++ /dev/null @@ -1,68 +0,0 @@ -# frozen_string_literal: true - -require_relative 'engine' - -module Datadog - module AppSec - module Reactive - # Reactive Engine nested operation tracking - class Operation - attr_reader :reactive, - :parent, - :name - - def initialize(name, parent = nil, reactive_engine = nil) - Datadog.logger.debug { "operation: #{name} initialize" } - @name = name - @parent = parent - @reactive = select_reactive_engine(reactive_engine, parent) - - # TODO: concurrent store - # TODO: constant - Thread.current[:datadog_security_active_operation] = self - - yield self if block_given? - ensure - finalize - end - - # TODO: use structs instead of an arg splat - def subscribe(*addresses, &block) - reactive.subscribe(*addresses, &block) - end - - def publish(address, data) - reactive.publish(address, data) - end - - def finalize - Datadog.logger.debug { "operation: #{name} finalize" } - Thread.current[:datadog_security_active_operation] = parent - end - - private - - def select_reactive_engine(reactive, parent) - return reactive if reactive - - return parent.reactive unless parent.nil? - - Reactive::Engine.new - end - - class << self - def active - Thread.current[:datadog_security_active_operation] - end - - private - - # For testing only. - def reset! - Thread.current[:datadog_security_active_operation] = nil - end - end - end - end - end -end diff --git a/sig/datadog/appsec/contrib/graphql/reactive/multiplex.rbs b/sig/datadog/appsec/contrib/graphql/reactive/multiplex.rbs index 7095e94da50..d0cbad649d8 100644 --- a/sig/datadog/appsec/contrib/graphql/reactive/multiplex.rbs +++ b/sig/datadog/appsec/contrib/graphql/reactive/multiplex.rbs @@ -4,11 +4,11 @@ module Datadog module GraphQL module Reactive module Multiplex - ADDRESSES: ::Array[String] + ADDRESSES: ::Array[::String] - def self.publish: (Datadog::AppSec::Reactive::Operation op, Datadog::AppSec::Contrib::GraphQL::Gateway::Multiplex gateway_multiplex) -> boolish + def self.publish: (AppSec::Reactive::Engine engine, AppSec::Contrib::GraphQL::Gateway::Multiplex gateway_multiplex) -> boolish - def self.subscribe: (Datadog::AppSec::Reactive::Operation op, Datadog::AppSec::Contrib::GraphQL::Gateway::Multiplex waf_context) -> void + def self.subscribe: (AppSec::Reactive::Engine engine, AppSec::Contrib::GraphQL::Gateway::Multiplex waf_context) -> void end end end diff --git a/sig/datadog/appsec/contrib/rack/reactive/request.rbs b/sig/datadog/appsec/contrib/rack/reactive/request.rbs index 7163eff15e3..d55f00a447a 100644 --- a/sig/datadog/appsec/contrib/rack/reactive/request.rbs +++ b/sig/datadog/appsec/contrib/rack/reactive/request.rbs @@ -6,9 +6,9 @@ module Datadog module Request ADDRESSES: ::Array[::String] - def self.publish: (untyped op, Datadog::AppSec::Contrib::Rack::Gateway::Request request) -> untyped + def self.publish: (AppSec::Reactive::Engine engine, AppSec::Contrib::Rack::Gateway::Request request) -> untyped - def self.subscribe: (untyped op, untyped waf_context) { (untyped) -> untyped } -> untyped + def self.subscribe: (AppSec::Reactive::Engine engine, untyped waf_context) { (untyped) -> untyped } -> untyped end end end diff --git a/sig/datadog/appsec/contrib/rack/reactive/request_body.rbs b/sig/datadog/appsec/contrib/rack/reactive/request_body.rbs index 3d04cb7c5ed..7747040eb6a 100644 --- a/sig/datadog/appsec/contrib/rack/reactive/request_body.rbs +++ b/sig/datadog/appsec/contrib/rack/reactive/request_body.rbs @@ -6,9 +6,9 @@ module Datadog module RequestBody ADDRESSES: ::Array[::String] - def self.publish: (untyped op, Datadog::AppSec::Contrib::Rack::Gateway::Response request) -> untyped + def self.publish: (AppSec::Reactive::Engine engine, AppSec::Contrib::Rack::Gateway::Response request) -> untyped - def self.subscribe: (untyped op, untyped waf_context) { (untyped) -> untyped } -> untyped + def self.subscribe: (AppSec::Reactive::Engine engine, untyped waf_context) { (untyped) -> untyped } -> untyped end end end diff --git a/sig/datadog/appsec/contrib/rack/reactive/response.rbs b/sig/datadog/appsec/contrib/rack/reactive/response.rbs index 2d2a9edddc1..a79a98b0da6 100644 --- a/sig/datadog/appsec/contrib/rack/reactive/response.rbs +++ b/sig/datadog/appsec/contrib/rack/reactive/response.rbs @@ -6,9 +6,9 @@ module Datadog module Response ADDRESSES: ::Array[::String] - def self.publish: (untyped op, Datadog::AppSec::Contrib::Rack::Gateway::Response response) -> untyped + def self.publish: (AppSec::Reactive::Engine engine, AppSec::Contrib::Rack::Gateway::Response response) -> untyped - def self.subscribe: (untyped op, untyped waf_context) { (untyped) -> untyped } -> untyped + def self.subscribe: (AppSec::Reactive::Engine engine, untyped waf_context) { (untyped) -> untyped } -> untyped end end end diff --git a/sig/datadog/appsec/contrib/rails/reactive/action.rbs b/sig/datadog/appsec/contrib/rails/reactive/action.rbs index f24f3c62ff5..e442469cb1b 100644 --- a/sig/datadog/appsec/contrib/rails/reactive/action.rbs +++ b/sig/datadog/appsec/contrib/rails/reactive/action.rbs @@ -6,9 +6,9 @@ module Datadog module Action ADDRESSES: ::Array[::String] - def self.publish: (untyped op, Datadog::AppSec::Contrib::Rails::Gateway::Request request) -> untyped + def self.publish: (AppSec::Reactive::Engine engine, AppSec::Contrib::Rails::Gateway::Request request) -> untyped - def self.subscribe: (untyped op, untyped waf_context) { (untyped) -> untyped } -> untyped + def self.subscribe: (AppSec::Reactive::Engine engine, untyped waf_context) { (untyped) -> untyped } -> untyped end end end diff --git a/sig/datadog/appsec/contrib/sinatra/reactive/routed.rbs b/sig/datadog/appsec/contrib/sinatra/reactive/routed.rbs index de3fa0a0919..a711268f7d4 100644 --- a/sig/datadog/appsec/contrib/sinatra/reactive/routed.rbs +++ b/sig/datadog/appsec/contrib/sinatra/reactive/routed.rbs @@ -6,9 +6,9 @@ module Datadog module Routed ADDRESSES: ::Array[::String] - def self.publish: (untyped op, ::Array[Datadog::AppSec::Instrumentation::Gateway::Argument] data) -> untyped + def self.publish: (AppSec::Reactive::Engine engine, ::Array[AppSec::Instrumentation::Gateway::Argument] data) -> untyped - def self.subscribe: (untyped op, untyped waf_context) { (untyped) -> untyped } -> untyped + def self.subscribe: (AppSec::Reactive::Engine engine, untyped waf_context) { (untyped) -> untyped } -> untyped end end end diff --git a/sig/datadog/appsec/monitor/reactive/set_user.rbs b/sig/datadog/appsec/monitor/reactive/set_user.rbs index 49fa18ff860..1efd5ff8277 100644 --- a/sig/datadog/appsec/monitor/reactive/set_user.rbs +++ b/sig/datadog/appsec/monitor/reactive/set_user.rbs @@ -5,9 +5,9 @@ module Datadog module SetUser ADDRESSES: ::Array[::String] - def self.publish: (untyped op, Datadog::AppSec::Instrumentation::Gateway::User user) -> untyped + def self.publish: (AppSec::Reactive::Engine engine, AppSec::Instrumentation::Gateway::User user) -> untyped - def self.subscribe: (untyped op, untyped waf_context) { (untyped) -> untyped } -> untyped + def self.subscribe: (AppSec::Reactive::Engine engine, untyped waf_context) { (untyped) -> untyped } -> untyped end end end diff --git a/sig/datadog/appsec/reactive/operation.rbs b/sig/datadog/appsec/reactive/operation.rbs deleted file mode 100644 index 854e7c9dc6b..00000000000 --- a/sig/datadog/appsec/reactive/operation.rbs +++ /dev/null @@ -1,25 +0,0 @@ -module Datadog - module AppSec - module Reactive - class Operation - attr_reader reactive: Engine - attr_reader parent: Operation? - attr_reader name: ::String - - def initialize: (::String name, ?Operation? parent, ?Engine? reactive_engine) ?{ (Operation) -> void } -> void - def logger: () -> ::Logger - def subscribe: (*::String addresses) { (*untyped values) -> void } -> void - def publish: (::String address, untyped data) -> untyped - def finalize: () -> void - - private - - def select_reactive_engine: (Engine? reactive, Operation? parent) -> Engine - - def self.active: () -> Operation? - - def self.reset!: () -> untyped - end - end - end -end diff --git a/spec/datadog/appsec/reactive/operation_spec.rb b/spec/datadog/appsec/reactive/operation_spec.rb deleted file mode 100644 index 81c0aff0f04..00000000000 --- a/spec/datadog/appsec/reactive/operation_spec.rb +++ /dev/null @@ -1,86 +0,0 @@ -# frozen_string_literal: true - -require 'datadog/appsec/spec_helper' -require 'datadog/appsec/reactive/operation' - -RSpec.describe Datadog::AppSec::Reactive::Operation do - after do - described_class.send(:reset!) - end - - describe '#initialize' do - it 'sets active to yield operation for the duration of the block' do - active_operation = described_class.active - expect(active_operation).to be_nil - described_class.new('test') do |op| - expect(described_class.active).to eq(op) - end - expect(described_class.active).to be_nil - end - - it 'sets active to parent' do - parent_operation = described_class.new('parent_test') - described_class.new('test', parent_operation) do |op| - expect(described_class.active).to eq(op) - end - expect(described_class.active).to eq(parent_operation) - end - - it 'creates a new Reactive instance when no reactive instance provided' do - described_class.new('test') do |op| - expect(op.reactive).to be_a Datadog::AppSec::Reactive::Engine - end - end - - it 'uses provided reactive instance' do - reactive_instance = Datadog::AppSec::Reactive::Engine.new - described_class.new('test', nil, reactive_instance) do |op| - expect(op.reactive).to eq(reactive_instance) - end - end - - it 'uses reactive instance from parent' do - parent_operation = described_class.new('parent_test') - described_class.new('test', parent_operation) do |op| - expect(op.reactive).to eq(parent_operation.reactive) - end - end - - it 'uses reactive instance over parent engine' do - reactive_instance = Datadog::AppSec::Reactive::Engine.new - parent_operation = described_class.new('parent_test') - described_class.new('test', parent_operation, reactive_instance) do |op| - expect(op.reactive).to eq(reactive_instance) - end - end - end - - describe '#subscribe' do - it 'delegates to reactive engine' do - operation = described_class.new('test') - expect(operation.reactive).to receive(:subscribe).with([:a, :b, :c]) - operation.subscribe([:a, :b, :c]) do - 1 + 1 - end - end - end - - describe '#publish' do - it 'delegates to reactive engine' do - operation = described_class.new('test') - expect(operation.reactive).to receive(:publish).with(:a, 'hello world') - operation.publish(:a, 'hello world') - end - end - - describe '#finalize' do - it 'sets active to parent' do - parent_operation = described_class.new('parent_test') - described_class.new('test', parent_operation) - expect(described_class.active).to eq(parent_operation) - parent_operation.finalize - # The parent of parent_operation is nil because is the top operation - expect(described_class.active).to be_nil - end - end -end From 5e3a4b0560ec231dc766c3b6efd4ad09e1f89cd4 Mon Sep 17 00:00:00 2001 From: Sergey Fedorov Date: Thu, 21 Nov 2024 11:45:23 +0100 Subject: [PATCH 002/161] Remove use of Reactive::Operation in specs --- .../graphql/reactive/multiplex_spec.rb | 19 ++++---- .../rack/reactive/request_body_spec.rb | 20 ++++---- .../contrib/rack/reactive/request_spec.rb | 30 ++++++------ .../contrib/rack/reactive/response_spec.rb | 22 ++++----- .../contrib/rails/integration_test_spec.rb | 2 + .../contrib/rails/reactive/action_spec.rb | 24 +++++----- .../contrib/sinatra/reactive/routed_spec.rb | 20 ++++---- .../appsec/monitor/reactive/set_user_spec.rb | 20 ++++---- .../appsec/reactive/shared_examples.rb | 48 +++++++++---------- .../contrib/graphql/support/application.rb | 1 - 10 files changed, 105 insertions(+), 101 deletions(-) diff --git a/spec/datadog/appsec/contrib/graphql/reactive/multiplex_spec.rb b/spec/datadog/appsec/contrib/graphql/reactive/multiplex_spec.rb index 519904cfc5d..21df7b7b6d5 100644 --- a/spec/datadog/appsec/contrib/graphql/reactive/multiplex_spec.rb +++ b/spec/datadog/appsec/contrib/graphql/reactive/multiplex_spec.rb @@ -4,14 +4,15 @@ require 'datadog/tracing/contrib/graphql/support/application' require 'datadog/appsec/spec_helper' -require 'datadog/appsec/reactive/operation' require 'datadog/appsec/contrib/graphql/gateway/multiplex' require 'datadog/appsec/contrib/graphql/reactive/multiplex' +require 'datadog/appsec/reactive/engine' require 'datadog/appsec/reactive/shared_examples' RSpec.describe Datadog::AppSec::Contrib::GraphQL::Reactive::Multiplex do include_context 'with GraphQL multiplex' + let(:engine) { Datadog::AppSec::Reactive::Engine.new } let(:expected_arguments) do { 'user' => [{ 'id' => 1 }, { 'id' => 10 }], @@ -20,10 +21,10 @@ end describe '.publish' do - it 'propagates multiplex attributes to the operation' do - expect(operation).to receive(:publish).with('graphql.server.all_resolvers', expected_arguments) + it 'propagates multiplex attributes to the engine' do + expect(engine).to receive(:publish).with('graphql.server.all_resolvers', expected_arguments) gateway_multiplex = Datadog::AppSec::Contrib::GraphQL::Gateway::Multiplex.new(multiplex) - described_class.publish(operation, gateway_multiplex) + described_class.publish(engine, gateway_multiplex) end end @@ -32,17 +33,17 @@ context 'not all addresses have been published' do it 'does not call the waf context' do - expect(operation).to receive(:subscribe).with( + expect(engine).to receive(:subscribe).with( 'graphql.server.all_resolvers' ).and_call_original expect(waf_context).to_not receive(:run) - described_class.subscribe(operation, waf_context) + described_class.subscribe(engine, waf_context) end end context 'all addresses have been published' do it 'does call the waf context with the right arguments' do - expect(operation).to receive(:subscribe).and_call_original + expect(engine).to receive(:subscribe).and_call_original waf_result = double(:waf_result, status: :ok, timeout: false) expect(waf_context).to receive(:run).with( @@ -50,9 +51,9 @@ {}, Datadog.configuration.appsec.waf_timeout ).and_return(waf_result) - described_class.subscribe(operation, waf_context) + described_class.subscribe(engine, waf_context) gateway_multiplex = Datadog::AppSec::Contrib::GraphQL::Gateway::Multiplex.new(multiplex) - result = described_class.publish(operation, gateway_multiplex) + result = described_class.publish(engine, gateway_multiplex) expect(result).to be_nil end end diff --git a/spec/datadog/appsec/contrib/rack/reactive/request_body_spec.rb b/spec/datadog/appsec/contrib/rack/reactive/request_body_spec.rb index 7b5ce95a3a2..75cf9aae480 100644 --- a/spec/datadog/appsec/contrib/rack/reactive/request_body_spec.rb +++ b/spec/datadog/appsec/contrib/rack/reactive/request_body_spec.rb @@ -1,15 +1,15 @@ # frozen_string_literal: true require 'datadog/appsec/spec_helper' -require 'datadog/appsec/reactive/operation' require 'datadog/appsec/contrib/rack/gateway/request' require 'datadog/appsec/contrib/rack/reactive/request_body' +require 'datadog/appsec/reactive/engine' require 'datadog/appsec/reactive/shared_examples' require 'rack' RSpec.describe Datadog::AppSec::Contrib::Rack::Reactive::RequestBody do - let(:operation) { Datadog::AppSec::Reactive::Operation.new('test') } + let(:engine) { Datadog::AppSec::Reactive::Engine.new } let(:request) do Datadog::AppSec::Contrib::Rack::Gateway::Request.new( Rack::MockRequest.env_for( @@ -20,10 +20,10 @@ end describe '.publish' do - it 'propagates request body attributes to the operation' do - expect(operation).to receive(:publish).with('request.body', { 'foo' => 'bar' }) + it 'propagates request body attributes to the engine' do + expect(engine).to receive(:publish).with('request.body', { 'foo' => 'bar' }) - described_class.publish(operation, request) + described_class.publish(engine, request) end end @@ -32,15 +32,15 @@ context 'not all addresses have been published' do it 'does not call the waf context' do - expect(operation).to receive(:subscribe).with('request.body').and_call_original + expect(engine).to receive(:subscribe).with('request.body').and_call_original expect(waf_context).to_not receive(:run) - described_class.subscribe(operation, waf_context) + described_class.subscribe(engine, waf_context) end end context 'all addresses have been published' do it 'does call the waf context with the right arguments' do - expect(operation).to receive(:subscribe).and_call_original + expect(engine).to receive(:subscribe).and_call_original expected_waf_arguments = { 'server.request.body' => { 'foo' => 'bar' } } @@ -50,8 +50,8 @@ {}, Datadog.configuration.appsec.waf_timeout ).and_return(waf_result) - described_class.subscribe(operation, waf_context) - result = described_class.publish(operation, request) + described_class.subscribe(engine, waf_context) + result = described_class.publish(engine, request) expect(result).to be_nil end end diff --git a/spec/datadog/appsec/contrib/rack/reactive/request_spec.rb b/spec/datadog/appsec/contrib/rack/reactive/request_spec.rb index b9927ce8f87..f22a3964b1d 100644 --- a/spec/datadog/appsec/contrib/rack/reactive/request_spec.rb +++ b/spec/datadog/appsec/contrib/rack/reactive/request_spec.rb @@ -1,7 +1,7 @@ # frozen_string_literal: true require 'datadog/appsec/spec_helper' -require 'datadog/appsec/reactive/operation' +require 'datadog/appsec/reactive/engine' require 'datadog/appsec/contrib/rack/gateway/request' require 'datadog/appsec/contrib/rack/reactive/request' require 'datadog/appsec/reactive/shared_examples' @@ -9,7 +9,7 @@ require 'rack' RSpec.describe Datadog::AppSec::Contrib::Rack::Reactive::Request do - let(:operation) { Datadog::AppSec::Reactive::Operation.new('test') } + let(:engine) { Datadog::AppSec::Reactive::Engine.new } let(:request) do Datadog::AppSec::Contrib::Rack::Gateway::Request.new( Rack::MockRequest.env_for( @@ -34,15 +34,15 @@ end describe '.publish' do - it 'propagates request attributes to the operation' do - expect(operation).to receive(:publish).with('server.request.method', 'GET') - expect(operation).to receive(:publish).with('request.query', { 'a' => ['foo'] }) - expect(operation).to receive(:publish).with('request.headers', expected_headers_with_cookies) - expect(operation).to receive(:publish).with('request.uri.raw', '/?a=foo') - expect(operation).to receive(:publish).with('request.cookies', { 'foo' => 'bar' }) - expect(operation).to receive(:publish).with('request.client_ip', '10.10.10.10') + it 'propagates request attributes to the engine' do + expect(engine).to receive(:publish).with('server.request.method', 'GET') + expect(engine).to receive(:publish).with('request.query', { 'a' => ['foo'] }) + expect(engine).to receive(:publish).with('request.headers', expected_headers_with_cookies) + expect(engine).to receive(:publish).with('request.uri.raw', '/?a=foo') + expect(engine).to receive(:publish).with('request.cookies', { 'foo' => 'bar' }) + expect(engine).to receive(:publish).with('request.client_ip', '10.10.10.10') - described_class.publish(operation, request) + described_class.publish(engine, request) end end @@ -51,7 +51,7 @@ context 'not all addresses have been published' do it 'does not call the waf context' do - expect(operation).to receive(:subscribe).with( + expect(engine).to receive(:subscribe).with( 'request.headers', 'request.uri.raw', 'request.query', @@ -60,13 +60,13 @@ 'server.request.method', ).and_call_original expect(waf_context).to_not receive(:run) - described_class.subscribe(operation, waf_context) + described_class.subscribe(engine, waf_context) end end context 'all addresses have been published' do it 'does call the waf context with the right arguments' do - expect(operation).to receive(:subscribe).and_call_original + expect(engine).to receive(:subscribe).and_call_original expected_waf_arguments = { 'server.request.cookies' => { 'foo' => 'bar' }, @@ -84,8 +84,8 @@ {}, Datadog.configuration.appsec.waf_timeout ).and_return(waf_result) - described_class.subscribe(operation, waf_context) - result = described_class.publish(operation, request) + described_class.subscribe(engine, waf_context) + result = described_class.publish(engine, request) expect(result).to be_nil end end diff --git a/spec/datadog/appsec/contrib/rack/reactive/response_spec.rb b/spec/datadog/appsec/contrib/rack/reactive/response_spec.rb index 8ea92c75e78..ca51117f5e1 100644 --- a/spec/datadog/appsec/contrib/rack/reactive/response_spec.rb +++ b/spec/datadog/appsec/contrib/rack/reactive/response_spec.rb @@ -2,13 +2,13 @@ require 'datadog/appsec/spec_helper' require 'datadog/appsec/scope' -require 'datadog/appsec/reactive/operation' require 'datadog/appsec/contrib/rack/gateway/response' require 'datadog/appsec/contrib/rack/reactive/response' +require 'datadog/appsec/reactive/engine' require 'datadog/appsec/reactive/shared_examples' RSpec.describe Datadog::AppSec::Contrib::Rack::Reactive::Response do - let(:operation) { Datadog::AppSec::Reactive::Operation.new('test') } + let(:engine) { Datadog::AppSec::Reactive::Engine.new } let(:processor_context) { instance_double(Datadog::AppSec::Processor::Context) } let(:scope) { instance_double(Datadog::AppSec::Scope, processor_context: processor_context) } let(:body) { ['Ok'] } @@ -24,31 +24,31 @@ end describe '.publish' do - it 'propagates response attributes to the operation' do - expect(operation).to receive(:publish).with('response.status', 200) - expect(operation).to receive(:publish).with( + it 'propagates response attributes to the engine' do + expect(engine).to receive(:publish).with('response.status', 200) + expect(engine).to receive(:publish).with( 'response.headers', headers, ) - described_class.publish(operation, response) + described_class.publish(engine, response) end end describe '.subscribe' do context 'not all addresses have been published' do it 'does not call the waf context' do - expect(operation).to receive(:subscribe).with( + expect(engine).to receive(:subscribe).with( 'response.status', 'response.headers', ).and_call_original expect(processor_context).to_not receive(:run) - described_class.subscribe(operation, processor_context) + described_class.subscribe(engine, processor_context) end end context 'waf arguments' do before do - expect(operation).to receive(:subscribe).and_call_original + expect(engine).to receive(:subscribe).and_call_original end let(:waf_result) { double(:waf_result, status: :ok, timeout: false) } @@ -73,8 +73,8 @@ {}, Datadog.configuration.appsec.waf_timeout ).and_return(waf_result) - described_class.subscribe(operation, processor_context) - result = described_class.publish(operation, response) + described_class.subscribe(engine, processor_context) + result = described_class.publish(engine, response) expect(result).to be_nil end end diff --git a/spec/datadog/appsec/contrib/rails/integration_test_spec.rb b/spec/datadog/appsec/contrib/rails/integration_test_spec.rb index b564e477c9f..1c1b7eecaad 100644 --- a/spec/datadog/appsec/contrib/rails/integration_test_spec.rb +++ b/spec/datadog/appsec/contrib/rails/integration_test_spec.rb @@ -1,3 +1,5 @@ +# frozen_string_literal: true + require 'datadog/tracing/contrib/rails/rails_helper' require 'datadog/appsec/contrib/support/integration/shared_examples' require 'datadog/appsec/spec_helper' diff --git a/spec/datadog/appsec/contrib/rails/reactive/action_spec.rb b/spec/datadog/appsec/contrib/rails/reactive/action_spec.rb index 75c302e2751..fad066ef7cf 100644 --- a/spec/datadog/appsec/contrib/rails/reactive/action_spec.rb +++ b/spec/datadog/appsec/contrib/rails/reactive/action_spec.rb @@ -1,13 +1,15 @@ +# frozen_string_literal: true + require 'datadog/appsec/spec_helper' -require 'datadog/appsec/reactive/operation' require 'datadog/appsec/contrib/rails/reactive/action' require 'datadog/appsec/contrib/rails/gateway/request' +require 'datadog/appsec/reactive/engine' require 'datadog/appsec/reactive/shared_examples' require 'action_dispatch' RSpec.describe Datadog::AppSec::Contrib::Rails::Reactive::Action do - let(:operation) { Datadog::AppSec::Reactive::Operation.new('test') } + let(:engine) { Datadog::AppSec::Reactive::Engine.new } let(:request) do request_env = Rack::MockRequest.env_for( 'http://example.com:8080/?a=foo', @@ -24,11 +26,11 @@ end describe '.publish' do - it 'propagates request attributes to the operation' do - expect(operation).to receive(:publish).with('rails.request.body', { 'foo' => 'bar' }) - expect(operation).to receive(:publish).with('rails.request.route_params', { id: '1234' }) + it 'propagates request attributes to the engine' do + expect(engine).to receive(:publish).with('rails.request.body', { 'foo' => 'bar' }) + expect(engine).to receive(:publish).with('rails.request.route_params', { id: '1234' }) - described_class.publish(operation, request) + described_class.publish(engine, request) end end @@ -37,15 +39,15 @@ context 'not all addresses have been published' do it 'does not call the waf context' do - expect(operation).to receive(:subscribe).with('rails.request.body', 'rails.request.route_params').and_call_original + expect(engine).to receive(:subscribe).with('rails.request.body', 'rails.request.route_params').and_call_original expect(waf_context).to_not receive(:run) - described_class.subscribe(operation, waf_context) + described_class.subscribe(engine, waf_context) end end context 'all addresses have been published' do it 'does call the waf context with the right arguments' do - expect(operation).to receive(:subscribe).and_call_original + expect(engine).to receive(:subscribe).and_call_original expected_waf_arguments = { 'server.request.body' => { 'foo' => 'bar' }, @@ -58,8 +60,8 @@ {}, Datadog.configuration.appsec.waf_timeout ).and_return(waf_result) - described_class.subscribe(operation, waf_context) - result = described_class.publish(operation, request) + described_class.subscribe(engine, waf_context) + result = described_class.publish(engine, request) expect(result).to be_nil end end diff --git a/spec/datadog/appsec/contrib/sinatra/reactive/routed_spec.rb b/spec/datadog/appsec/contrib/sinatra/reactive/routed_spec.rb index b30ca74c3f6..690d1609ecb 100644 --- a/spec/datadog/appsec/contrib/sinatra/reactive/routed_spec.rb +++ b/spec/datadog/appsec/contrib/sinatra/reactive/routed_spec.rb @@ -1,16 +1,16 @@ # frozen_string_literal: true require 'datadog/appsec/spec_helper' -require 'datadog/appsec/reactive/operation' require 'datadog/appsec/contrib/sinatra/reactive/routed' require 'datadog/appsec/contrib/rack/gateway/request' require 'datadog/appsec/contrib/sinatra/gateway/route_params' +require 'datadog/appsec/reactive/engine' require 'datadog/appsec/reactive/shared_examples' require 'rack' RSpec.describe Datadog::AppSec::Contrib::Sinatra::Reactive::Routed do - let(:operation) { Datadog::AppSec::Reactive::Operation.new('test') } + let(:engine) { Datadog::AppSec::Reactive::Engine.new } let(:request) do Datadog::AppSec::Contrib::Rack::Gateway::Request.new( Rack::MockRequest.env_for( @@ -22,10 +22,10 @@ let(:routed_params) { Datadog::AppSec::Contrib::Sinatra::Gateway::RouteParams.new({ id: '1234' }) } describe '.publish' do - it 'propagates routed params attributes to the operation' do - expect(operation).to receive(:publish).with('sinatra.request.route_params', { id: '1234' }) + it 'propagates routed params attributes to the engine' do + expect(engine).to receive(:publish).with('sinatra.request.route_params', { id: '1234' }) - described_class.publish(operation, [request, routed_params]) + described_class.publish(engine, [request, routed_params]) end end @@ -34,15 +34,15 @@ context 'not all addresses have been published' do it 'does not call the waf context' do - expect(operation).to receive(:subscribe).with('sinatra.request.route_params').and_call_original + expect(engine).to receive(:subscribe).with('sinatra.request.route_params').and_call_original expect(waf_context).to_not receive(:run) - described_class.subscribe(operation, waf_context) + described_class.subscribe(engine, waf_context) end end context 'all addresses have been published' do it 'does call the waf context with the right arguments' do - expect(operation).to receive(:subscribe).and_call_original + expect(engine).to receive(:subscribe).and_call_original expected_waf_arguments = { 'server.request.path_params' => { id: '1234' } @@ -54,8 +54,8 @@ {}, Datadog.configuration.appsec.waf_timeout ).and_return(waf_result) - described_class.subscribe(operation, waf_context) - result = described_class.publish(operation, [request, routed_params]) + described_class.subscribe(engine, waf_context) + result = described_class.publish(engine, [request, routed_params]) expect(result).to be_nil end end diff --git a/spec/datadog/appsec/monitor/reactive/set_user_spec.rb b/spec/datadog/appsec/monitor/reactive/set_user_spec.rb index e29b076ffa0..5e5472f6b2a 100644 --- a/spec/datadog/appsec/monitor/reactive/set_user_spec.rb +++ b/spec/datadog/appsec/monitor/reactive/set_user_spec.rb @@ -1,19 +1,19 @@ # frozen_string_literal: true require 'datadog/appsec/spec_helper' -require 'datadog/appsec/reactive/operation' +require 'datadog/appsec/reactive/engine' require 'datadog/appsec/monitor/reactive/set_user' require 'datadog/appsec/reactive/shared_examples' RSpec.describe Datadog::AppSec::Monitor::Reactive::SetUser do - let(:operation) { Datadog::AppSec::Reactive::Operation.new('test') } + let(:engine) { Datadog::AppSec::Reactive::Engine.new } let(:user) { double(:user, id: 1) } describe '.publish' do - it 'propagates request body attributes to the operation' do - expect(operation).to receive(:publish).with('usr.id', 1) + it 'propagates request body attributes to the engine' do + expect(engine).to receive(:publish).with('usr.id', 1) - described_class.publish(operation, user) + described_class.publish(engine, user) end end @@ -22,15 +22,15 @@ context 'not all addresses have been published' do it 'does not call the waf context' do - expect(operation).to receive(:subscribe).with('usr.id').and_call_original + expect(engine).to receive(:subscribe).with('usr.id').and_call_original expect(waf_context).to_not receive(:run) - described_class.subscribe(operation, waf_context) + described_class.subscribe(engine, waf_context) end end context 'all addresses have been published' do it 'does call the waf context with the right arguments' do - expect(operation).to receive(:subscribe).and_call_original + expect(engine).to receive(:subscribe).and_call_original expected_waf_persisted_data = { 'usr.id' => 1 } @@ -40,8 +40,8 @@ {}, Datadog.configuration.appsec.waf_timeout ).and_return(waf_result) - described_class.subscribe(operation, waf_context) - result = described_class.publish(operation, user) + described_class.subscribe(engine, waf_context) + result = described_class.publish(engine, user) expect(result).to be_nil end end diff --git a/spec/datadog/appsec/reactive/shared_examples.rb b/spec/datadog/appsec/reactive/shared_examples.rb index 84715c3b95f..352ae336781 100644 --- a/spec/datadog/appsec/reactive/shared_examples.rb +++ b/spec/datadog/appsec/reactive/shared_examples.rb @@ -3,98 +3,98 @@ RSpec.shared_examples 'waf result' do context 'is a match' do it 'yields result and no blocking action' do - expect(operation).to receive(:subscribe).and_call_original + expect(engine).to receive(:subscribe).and_call_original waf_result = double(:waf_result, status: :match, timeout: false, actions: []) expect(waf_context).to receive(:run).and_return(waf_result) - described_class.subscribe(operation, waf_context) do |result| + described_class.subscribe(engine, waf_context) do |result| expect(result).to eq(waf_result) end - result = described_class.publish(operation, gateway) + result = described_class.publish(engine, gateway) expect(result).to be_nil end it 'yields result and blocking action. The publish method catches the resul as well' do - expect(operation).to receive(:subscribe).and_call_original + expect(engine).to receive(:subscribe).and_call_original waf_result = double(:waf_result, status: :match, timeout: false, actions: ['block']) expect(waf_context).to receive(:run).and_return(waf_result) - described_class.subscribe(operation, waf_context) do |result| + described_class.subscribe(engine, waf_context) do |result| expect(result).to eq(waf_result) end - block = described_class.publish(operation, gateway) + block = described_class.publish(engine, gateway) expect(block).to eq(true) end end context 'is ok' do it 'does not yield' do - expect(operation).to receive(:subscribe).and_call_original + expect(engine).to receive(:subscribe).and_call_original waf_result = double(:waf_result, status: :ok, timeout: false) expect(waf_context).to receive(:run).and_return(waf_result) - expect { |b| described_class.subscribe(operation, waf_context, &b) }.not_to yield_control - result = described_class.publish(operation, gateway) + expect { |b| described_class.subscribe(engine, waf_context, &b) }.not_to yield_control + result = described_class.publish(engine, gateway) expect(result).to be_nil end end context 'is invalid_call' do it 'does not yield' do - expect(operation).to receive(:subscribe).and_call_original + expect(engine).to receive(:subscribe).and_call_original waf_result = double(:waf_result, status: :invalid_call, timeout: false) expect(waf_context).to receive(:run).and_return(waf_result) - expect { |b| described_class.subscribe(operation, waf_context, &b) }.not_to yield_control - result = described_class.publish(operation, gateway) + expect { |b| described_class.subscribe(engine, waf_context, &b) }.not_to yield_control + result = described_class.publish(engine, gateway) expect(result).to be_nil end end context 'is invalid_rule' do it 'does not yield' do - expect(operation).to receive(:subscribe).and_call_original + expect(engine).to receive(:subscribe).and_call_original waf_result = double(:waf_result, status: :invalid_rule, timeout: false) expect(waf_context).to receive(:run).and_return(waf_result) - expect { |b| described_class.subscribe(operation, waf_context, &b) }.not_to yield_control - result = described_class.publish(operation, gateway) + expect { |b| described_class.subscribe(engine, waf_context, &b) }.not_to yield_control + result = described_class.publish(engine, gateway) expect(result).to be_nil end end context 'is invalid_flow' do it 'does not yield' do - expect(operation).to receive(:subscribe).and_call_original + expect(engine).to receive(:subscribe).and_call_original waf_result = double(:waf_result, status: :invalid_flow, timeout: false) expect(waf_context).to receive(:run).and_return(waf_result) - expect { |b| described_class.subscribe(operation, waf_context, &b) }.not_to yield_control - result = described_class.publish(operation, gateway) + expect { |b| described_class.subscribe(engine, waf_context, &b) }.not_to yield_control + result = described_class.publish(engine, gateway) expect(result).to be_nil end end context 'is no_rule' do it 'does not yield' do - expect(operation).to receive(:subscribe).and_call_original + expect(engine).to receive(:subscribe).and_call_original waf_result = double(:waf_result, status: :no_rule, timeout: false) expect(waf_context).to receive(:run).and_return(waf_result) - expect { |b| described_class.subscribe(operation, waf_context, &b) }.not_to yield_control - result = described_class.publish(operation, gateway) + expect { |b| described_class.subscribe(engine, waf_context, &b) }.not_to yield_control + result = described_class.publish(engine, gateway) expect(result).to be_nil end end context 'is unknown' do it 'does not yield' do - expect(operation).to receive(:subscribe).and_call_original + expect(engine).to receive(:subscribe).and_call_original waf_result = double(:waf_result, status: :foo, timeout: false) expect(waf_context).to receive(:run).and_return(waf_result) - expect { |b| described_class.subscribe(operation, waf_context, &b) }.not_to yield_control - result = described_class.publish(operation, gateway) + expect { |b| described_class.subscribe(engine, waf_context, &b) }.not_to yield_control + result = described_class.publish(engine, gateway) expect(result).to be_nil end end diff --git a/spec/datadog/tracing/contrib/graphql/support/application.rb b/spec/datadog/tracing/contrib/graphql/support/application.rb index 88ab68a45fc..ba403ada0d4 100644 --- a/spec/datadog/tracing/contrib/graphql/support/application.rb +++ b/spec/datadog/tracing/contrib/graphql/support/application.rb @@ -39,7 +39,6 @@ TestGraphQL.send(:remove_const, :UserType) if defined?(TestGraphQL::UserType) load 'spec/datadog/tracing/contrib/graphql/support/application_schema.rb' end - let(:operation) { Datadog::AppSec::Reactive::Operation.new('test') } let(:schema) { TestGraphQL::Schema } end From a1fc932c75f1984e7cb744cd68ba8f38c9667267 Mon Sep 17 00:00:00 2001 From: Marco Costa Date: Fri, 22 Nov 2024 17:51:59 -0800 Subject: [PATCH 003/161] Telemetry: Deduplicate log entries --- lib/datadog/core/telemetry/event.rb | 39 ++++++++++++++++++++-- lib/datadog/core/telemetry/worker.rb | 31 +++++++++++++++++ sig/datadog/core/telemetry/event.rbs | 1 + spec/datadog/core/telemetry/worker_spec.rb | 26 +++++++++++++++ 4 files changed, 95 insertions(+), 2 deletions(-) diff --git a/lib/datadog/core/telemetry/event.rb b/lib/datadog/core/telemetry/event.rb index fabc8014207..f1642c86734 100644 --- a/lib/datadog/core/telemetry/event.rb +++ b/lib/datadog/core/telemetry/event.rb @@ -315,6 +315,16 @@ class AppClosing < Base def type 'app-closing' end + + def ==(other) + other.is_a?(AppClosing) + end + + alias eql? == + + def hash + self.class.hash + end end # Telemetry class for the 'generate-metrics' event @@ -344,15 +354,28 @@ class Log < Base warn: 'WARN', }.freeze + LEVELS_STRING = LEVELS.values.freeze + + attr_reader :message, :level, :stack_trace, :count + def type 'logs' end - def initialize(message:, level:, stack_trace: nil) + def initialize(message:, level:, stack_trace: nil, count: 1) super() @message = message @stack_trace = stack_trace - @level = LEVELS.fetch(level) { |k| raise ArgumentError, "Invalid log level :#{k}" } + + if LEVELS_STRING.include?(level) + @level = level + elsif level.is_a?(Symbol) + @level = LEVELS.fetch(level) { |k| raise ArgumentError, "Invalid log level :#{k}" } + else + raise ArgumentError, "Invalid log level #{level}" + end + + @count = count end def payload @@ -362,10 +385,22 @@ def payload message: @message, level: @level, stack_trace: @stack_trace, + count: @count, }.compact ] } end + + # override equality to allow for deduplication + def ==(other) + other.is_a?(Log) && other.message == @message && other.level == @level && other.stack_trace == @stack_trace && other.count == @count + end + + alias eql? == + + def hash + [@message, @level, @stack_trace, @count].hash + end end # Telemetry class for the 'distributions' event diff --git a/lib/datadog/core/telemetry/worker.rb b/lib/datadog/core/telemetry/worker.rb index 5166f63a7d9..a7fb8a6c26d 100644 --- a/lib/datadog/core/telemetry/worker.rb +++ b/lib/datadog/core/telemetry/worker.rb @@ -97,6 +97,8 @@ def flush_events(events) return if events.empty? return if !enabled? || !sent_started_event? + events = deduplicate_logs(events) + Datadog.logger.debug { "Sending #{events&.count} telemetry events" } send_event(Event::MessageBatch.new(events)) end @@ -167,6 +169,35 @@ def disable_on_not_found!(response) Datadog.logger.debug('Agent does not support telemetry; disabling future telemetry events.') disable! end + + private + + def deduplicate_logs(events) + return if events.empty? + + logs = [] + other_events = events.reject do |event| + if event.is_a?(Event::Log) + logs << event + true + else + false + end + end + + return if logs.empty? + + logs = logs.group_by(&:hash).map do |_, logs| + log = logs.first + if logs.size > 1 + Event::Log.new(message: log.message, level: log.level, stack_trace: log.stack_trace, count: logs.size) + else + log + end + end + + other_events + logs + end end end end diff --git a/sig/datadog/core/telemetry/event.rbs b/sig/datadog/core/telemetry/event.rbs index 4818992176f..b1088c931ba 100644 --- a/sig/datadog/core/telemetry/event.rbs +++ b/sig/datadog/core/telemetry/event.rbs @@ -70,6 +70,7 @@ module Datadog class Log < Base LEVELS: Hash[Symbol, String] + @count: Integer @message: String @level: "ERROR" | "DEBUG" | "WARN" @stack_trace: String? diff --git a/spec/datadog/core/telemetry/worker_spec.rb b/spec/datadog/core/telemetry/worker_spec.rb index 64725de8821..96e98c264fe 100644 --- a/spec/datadog/core/telemetry/worker_spec.rb +++ b/spec/datadog/core/telemetry/worker_spec.rb @@ -233,6 +233,32 @@ try_wait_until { received_metrics } end end + + context 'when logs are flushed' do + it 'deduplicates repeated log entries' do + events_received = [] + expect(emitter).to receive(:request).with( + an_instance_of(Datadog::Core::Telemetry::Event::MessageBatch) + ) do |event| + events_received += event.events + response + end + + worker.enqueue(Datadog::Core::Telemetry::Event::AppClosing.new) + worker.enqueue(Datadog::Core::Telemetry::Event::Log.new(message: 'test', level: :warn)) + worker.enqueue(Datadog::Core::Telemetry::Event::Log.new(message: 'test', level: :warn)) + worker.enqueue(Datadog::Core::Telemetry::Event::Log.new(message: 'test', level: :error)) + + worker.start + try_wait_until { !events_received.empty? } + + expect(events_received).to contain_exactly( + Datadog::Core::Telemetry::Event::AppClosing.new, + Datadog::Core::Telemetry::Event::Log.new(message: 'test', level: :warn, count: 2), + Datadog::Core::Telemetry::Event::Log.new(message: 'test', level: :error) + ) + end + end end context 'when internal error returned by emitter' do From 7a47b59519d53e61b852dd62131d60b1673dd4ac Mon Sep 17 00:00:00 2001 From: Marco Costa Date: Mon, 25 Nov 2024 16:54:33 -0800 Subject: [PATCH 004/161] Telemetry: Deduplicate log entries --- lib/datadog/core/telemetry/event.rb | 71 ++++++++++--- lib/datadog/core/telemetry/metric.rb | 22 ++++ lib/datadog/core/telemetry/worker.rb | 18 ++-- sig/datadog/core/telemetry/component.rbs | 2 +- sig/datadog/core/telemetry/event.rbs | 26 ++--- sig/datadog/core/telemetry/worker.rbs | 2 + spec/datadog/core/telemetry/event_spec.rb | 110 +++++++++++++++++--- spec/datadog/core/telemetry/logging_spec.rb | 8 +- spec/datadog/core/telemetry/metric_spec.rb | 110 ++++++++++++++++++++ spec/datadog/core/telemetry/worker_spec.rb | 12 ++- 10 files changed, 325 insertions(+), 56 deletions(-) diff --git a/lib/datadog/core/telemetry/event.rb b/lib/datadog/core/telemetry/event.rb index f1642c86734..b73cf09be49 100644 --- a/lib/datadog/core/telemetry/event.rb +++ b/lib/datadog/core/telemetry/event.rb @@ -29,6 +29,22 @@ def type def payload {} end + + # Override equality to allow for deduplication + # The basic implementation is to check if the other object is an instance of the same class. + # This works for events that have no attributes. + # For events with attributes, you should override this method to compare the attributes. + def ==(other) + other.is_a?(self.class) + end + + # @see #== + alias eql? == + + # @see #== + def hash + self.class.hash + end end # Telemetry class for the 'app-started' event @@ -263,6 +279,8 @@ def patch_error(integration) # Telemetry class for the 'app-client-configuration-change' event class AppClientConfigurationChange < Base + attr_reader :changes, :origin + def type 'app-client-configuration-change' end @@ -301,6 +319,16 @@ def configuration res end + + def ==(other) + other.is_a?(AppClientConfigurationChange) && other.changes == @changes && other.origin == @origin + end + + alias eql? == + + def hash + [self.class, @changes, @origin].hash + end end # Telemetry class for the 'app-heartbeat' event @@ -315,20 +343,12 @@ class AppClosing < Base def type 'app-closing' end - - def ==(other) - other.is_a?(AppClosing) - end - - alias eql? == - - def hash - self.class.hash - end end # Telemetry class for the 'generate-metrics' event class GenerateMetrics < Base + attr_reader :namespace, :metric_series + def type 'generate-metrics' end @@ -345,9 +365,20 @@ def payload series: @metric_series.map(&:to_h) } end + + def ==(other) + other.is_a?(GenerateMetrics) && other.namespace == @namespace && other.metric_series == @metric_series + end + + alias eql? == + + def hash + [self.class, @namespace, @metric_series].hash + end end - # Telemetry class for the 'logs' event + # Telemetry class for the 'logs' event. + # Logs with the same contend are deduplicated at flush time. class Log < Base LEVELS = { error: 'ERROR', @@ -367,7 +398,7 @@ def initialize(message:, level:, stack_trace: nil, count: 1) @message = message @stack_trace = stack_trace - if LEVELS_STRING.include?(level) + if level.is_a?(String) && LEVELS_STRING.include?(level) @level = level elsif level.is_a?(Symbol) @level = LEVELS.fetch(level) { |k| raise ArgumentError, "Invalid log level :#{k}" } @@ -393,13 +424,15 @@ def payload # override equality to allow for deduplication def ==(other) - other.is_a?(Log) && other.message == @message && other.level == @level && other.stack_trace == @stack_trace && other.count == @count + other.is_a?(Log) && + other.message == @message && + other.level == @level && other.stack_trace == @stack_trace && other.count == @count end alias eql? == def hash - [@message, @level, @stack_trace, @count].hash + [self.class, @message, @level, @stack_trace, @count].hash end end @@ -430,6 +463,16 @@ def payload } end end + + def ==(other) + other.is_a?(MessageBatch) && other.events == @events + end + + alias eql? == + + def hash + [self.class, @events].hash + end end end end diff --git a/lib/datadog/core/telemetry/metric.rb b/lib/datadog/core/telemetry/metric.rb index a1d459c4aa3..01e9aa4c8fb 100644 --- a/lib/datadog/core/telemetry/metric.rb +++ b/lib/datadog/core/telemetry/metric.rb @@ -41,6 +41,18 @@ def to_h } end + def ==(other) + other.is_a?(self.class) && + name == other.name && + values == other.values && tags == other.tags && common == other.common && type == other.type + end + + alias eql? == + + def hash + [self.class, name, values, tags, common, type].hash + end + private def tags_to_array(tags) @@ -71,6 +83,16 @@ def to_h res[:interval] = interval res end + + def ==(other) + super && interval == other.interval + end + + alias eql? == + + def hash + [super, interval].hash + end end # Count metric adds up all the submitted values in a time interval. This would be suitable for a diff --git a/lib/datadog/core/telemetry/worker.rb b/lib/datadog/core/telemetry/worker.rb index a7fb8a6c26d..9385fa542cc 100644 --- a/lib/datadog/core/telemetry/worker.rb +++ b/lib/datadog/core/telemetry/worker.rb @@ -170,33 +170,35 @@ def disable_on_not_found!(response) disable! end - private - + # Deduplicate all_logs by counting the number of occurrences of each log + # entry and replacing them with a single entry with the count. + # Other events are passed through unchanged. def deduplicate_logs(events) - return if events.empty? + return events if events.empty? - logs = [] + all_logs = [] other_events = events.reject do |event| if event.is_a?(Event::Log) - logs << event + all_logs << event true else false end end - return if logs.empty? + return events if all_logs.empty? - logs = logs.group_by(&:hash).map do |_, logs| + uniq_logs = all_logs.group_by(&:itself).map do |_, logs| log = logs.first if logs.size > 1 + # New log event with a count of repeated occurrences Event::Log.new(message: log.message, level: log.level, stack_trace: log.stack_trace, count: logs.size) else log end end - other_events + logs + other_events + uniq_logs end end end diff --git a/sig/datadog/core/telemetry/component.rbs b/sig/datadog/core/telemetry/component.rbs index eaf4fb315b0..2c59a615932 100644 --- a/sig/datadog/core/telemetry/component.rbs +++ b/sig/datadog/core/telemetry/component.rbs @@ -20,7 +20,7 @@ module Datadog def disable!: () -> void - def client_configuration_change!: (Enumerable[[String, Numeric | bool | String]] changes) -> void + def client_configuration_change!: (Array[[String, Numeric | bool | String]] changes) -> void def emit_closing!: () -> void diff --git a/sig/datadog/core/telemetry/event.rbs b/sig/datadog/core/telemetry/event.rbs index b1088c931ba..4489b440843 100644 --- a/sig/datadog/core/telemetry/event.rbs +++ b/sig/datadog/core/telemetry/event.rbs @@ -46,10 +46,10 @@ module Datadog end class AppClientConfigurationChange < Base - @changes: Enumerable[[String, Numeric | bool | String | int]] - @origin: String + attr_reader changes: Array[[String, Numeric | bool | String | int]] + attr_reader origin: String - def initialize: (Enumerable[[String, Numeric | bool | String]] changes, String origin) -> void + def initialize: (Array[[String, Numeric | bool | String]] changes, String origin) -> void def configuration: () -> Array[Hash[Symbol, untyped]] end @@ -61,23 +61,25 @@ module Datadog end class GenerateMetrics < Base - @namespace: String - @metric_series: Enumerable[Datadog::Core::Telemetry::Metric::Base] + attr_reader namespace: String + attr_reader metric_series: Array[Metric::Base] - def initialize: (String namespace, Enumerable[Datadog::Core::Telemetry::Metric::Base] metric_series) -> void + def initialize: (String namespace, Array[Metric::Base] metric_series) -> void end class Log < Base LEVELS: Hash[Symbol, String] - @count: Integer - @message: String - @level: "ERROR" | "DEBUG" | "WARN" - @stack_trace: String? + LEVELS_STRING: Array[String] - def initialize: (message: String, level: Symbol, ?stack_trace: String?) -> void + attr_reader count: Integer + attr_reader message: String + attr_reader level: String + attr_reader stack_trace: String? - def payload: () -> { logs: [Hash[Symbol, String]] } + def initialize: (message: String, level: (Symbol|String), ?stack_trace: String?, ?count: Integer) -> void + + def payload: () -> { logs: [Hash[Symbol, (String|Integer)]] } end class Distributions < GenerateMetrics diff --git a/sig/datadog/core/telemetry/worker.rbs b/sig/datadog/core/telemetry/worker.rbs index e4de55a104d..b97c44e327d 100644 --- a/sig/datadog/core/telemetry/worker.rbs +++ b/sig/datadog/core/telemetry/worker.rbs @@ -35,6 +35,8 @@ module Datadog private + def deduplicate_logs: (Array[Event::Base] events) -> Array[Event::Base] + def heartbeat!: () -> void def started!: () -> void diff --git a/spec/datadog/core/telemetry/event_spec.rb b/spec/datadog/core/telemetry/event_spec.rb index bbb5c1051bc..5d8ab543157 100644 --- a/spec/datadog/core/telemetry/event_spec.rb +++ b/spec/datadog/core/telemetry/event_spec.rb @@ -5,14 +5,24 @@ RSpec.describe Datadog::Core::Telemetry::Event do let(:id) { double('seq_id') } + let(:event) { event_class.new } + subject(:payload) { event.payload } + shared_examples 'event with no attributes' do + it 'all event instances to the same' do + event1 = event_class.new + event2 = event_class.new + expect(event1).to eq(event2) + expect(event1.hash).to eq(event2.hash) + end + end + context 'AppStarted' do - let(:event) { described_class::AppStarted.new } let(:logger) do stub_const('MyLogger', Class.new(::Logger)).new(nil) end - + let(:event_class) { described_class::AppStarted } before do allow_any_instance_of(Datadog::Core::Utils::Sequence).to receive(:next).and_return(id) @@ -30,6 +40,7 @@ c.appsec.sca_enabled = false end end + it_behaves_like 'event with no attributes' it do # Helper to make configuration matching table easier to read @@ -94,7 +105,8 @@ def contain_configuration(*array) end context 'AppDependenciesLoaded' do - let(:event) { described_class::AppDependenciesLoaded.new } + let(:event_class) { described_class::AppDependenciesLoaded } + it_behaves_like 'event with no attributes' it 'all have name and Ruby gem version' do is_expected.to match(dependencies: all(match(name: kind_of(String), version: kind_of(String)))) @@ -108,7 +120,8 @@ def contain_configuration(*array) end context 'AppIntegrationsChange' do - let(:event) { described_class::AppIntegrationsChange.new } + let(:event_class) { described_class::AppIntegrationsChange } + it_behaves_like 'event with no attributes' it 'all have name and compatibility' do is_expected.to match(integrations: all(include(name: kind_of(String), compatible: boolean))) @@ -157,7 +170,8 @@ def contain_configuration(*array) end context 'AppClientConfigurationChange' do - let(:event) { described_class::AppClientConfigurationChange.new(changes, origin) } + let(:event_class) { described_class::AppClientConfigurationChange } + let(:event) { event_class.new(changes, origin) } let(:changes) { { name => value } } let(:origin) { double('origin') } let(:name) { 'key' } @@ -195,10 +209,32 @@ def contain_configuration(*array) ) end end + + it 'all events to be the same' do + events = [ + event_class.new({ 'key' => 'value' }, 'origin'), + event_class.new({ 'key' => 'value' }, 'origin'), + ] + + expect(events.uniq).to have(1).item + end + + it 'all events to be different' do + events = [ + event_class.new({ 'key' => 'value' }, 'origin'), + event_class.new({ 'key' => 'value' }, 'origin2'), + event_class.new({ 'key' => 'value2' }, 'origin'), + event_class.new({ 'key2' => 'value' }, 'origin'), + event_class.new({}, 'origin'), + ] + + expect(events.uniq).to eq(events) + end end context 'AppHeartbeat' do - let(:event) { described_class::AppHeartbeat.new } + let(:event_class) { described_class::AppHeartbeat } + it_behaves_like 'event with no attributes' it 'has no payload' do is_expected.to eq({}) @@ -206,7 +242,8 @@ def contain_configuration(*array) end context 'AppClosing' do - let(:event) { described_class::AppClosing.new } + let(:event_class) { described_class::AppClosing } + it_behaves_like 'event with no attributes' it 'has no payload' do is_expected.to eq({}) @@ -214,6 +251,8 @@ def contain_configuration(*array) end context 'Logs' do + let(:event_class) { described_class::Log } + it do event = Datadog::Core::Telemetry::Event::Log.new(message: 'Hi', level: :error) expect(event.type).to eq('logs') @@ -221,7 +260,8 @@ def contain_configuration(*array) { logs: [{ message: 'Hi', - level: 'ERROR' + level: 'ERROR', + count: 1 }] } ) @@ -234,7 +274,8 @@ def contain_configuration(*array) { logs: [{ message: 'Hi', - level: 'WARN' + level: 'WARN', + count: 1 }] } ) @@ -245,10 +286,32 @@ def contain_configuration(*array) Datadog::Core::Telemetry::Event::Log.new(message: 'Hi', level: :unknown) end.to raise_error(ArgumentError, /Invalid log level/) end + + it 'all events to be the same' do + events = [ + event_class.new(message: 'Hi', level: :warn, stack_trace: 'stack trace', count: 1), + event_class.new(message: 'Hi', level: :warn, stack_trace: 'stack trace', count: 1), + ] + + expect(events.uniq).to have(1).item + end + + it 'all events to be different' do + events = [ + event_class.new(message: 'Hi', level: :warn, stack_trace: 'stack trace', count: 1), + event_class.new(message: 'Yo', level: :warn, stack_trace: 'stack trace', count: 1), + event_class.new(message: 'Hi', level: :error, stack_trace: 'stack trace', count: 1), + event_class.new(message: 'Hi', level: :warn, stack_trace: 'stack&trace', count: 1), + event_class.new(message: 'Hi', level: :warn, stack_trace: 'stack trace', count: 2), + ] + + expect(events.uniq).to eq(events) + end end context 'GenerateMetrics' do - let(:event) { described_class::GenerateMetrics.new(namespace, metrics) } + let(:event_class) { described_class::GenerateMetrics } + let(:event) { event_class.new(namespace, metrics) } let(:namespace) { 'general' } let(:metric_name) { 'request_count' } @@ -267,10 +330,32 @@ def contain_configuration(*array) } ) end + + it 'all events to be the same' do + events = [ + event_class.new('namespace', [Datadog::Core::Telemetry::Metric::Count.new('name', tags: { val: '1' })]), + event_class.new('namespace', [Datadog::Core::Telemetry::Metric::Count.new('name', tags: { val: '1' })]), + ] + + expect(events.uniq).to have(1).item + end + + it 'all events to be different' do + events = [ + event_class.new('namespace', [Datadog::Core::Telemetry::Metric::Count.new('name', tags: { val: '1' })]), + event_class.new('nospace', [Datadog::Core::Telemetry::Metric::Count.new('name', tags: { val: '1' })]), + event_class.new('namespace', [Datadog::Core::Telemetry::Metric::Count.new('name', tags: { val: '2' })]), + event_class.new('namespace', []), + + ] + + expect(events.uniq).to eq(events) + end end context 'Distributions' do - let(:event) { described_class::Distributions.new(namespace, metrics) } + let(:event_class) { described_class::Distributions } + let(:event) { event_class.new(namespace, metrics) } let(:namespace) { 'general' } let(:metric_name) { 'request_duration' } @@ -292,7 +377,8 @@ def contain_configuration(*array) end context 'MessageBatch' do - let(:event) { described_class::MessageBatch.new(events) } + let(:event_class) { described_class::MessageBatch } + let(:event) { event_class.new(events) } let(:events) { [described_class::AppClosing.new, described_class::AppHeartbeat.new] } diff --git a/spec/datadog/core/telemetry/logging_spec.rb b/spec/datadog/core/telemetry/logging_spec.rb index 01fdcc89b3a..c79d0093bad 100644 --- a/spec/datadog/core/telemetry/logging_spec.rb +++ b/spec/datadog/core/telemetry/logging_spec.rb @@ -19,11 +19,11 @@ def log!(_event) it 'sends a log event to via telemetry' do expect(component).to receive(:log!).with(instance_of(Datadog::Core::Telemetry::Event::Log)) do |event| expect(event.payload).to include( - logs: [{ message: 'RuntimeError', level: 'ERROR', + logs: [{ message: 'RuntimeError', level: 'ERROR', count: 1, stack_trace: a_string_including('REDACTED') }] ) expect(event.payload).to include( - logs: [{ message: 'RuntimeError', level: 'ERROR', + logs: [{ message: 'RuntimeError', level: 'ERROR', count: 1, stack_trace: a_string_including(',/spec/') }] ) end @@ -39,11 +39,11 @@ def log!(_event) it 'sends a log event to via telemetry' do expect(component).to receive(:log!).with(instance_of(Datadog::Core::Telemetry::Event::Log)) do |event| expect(event.payload).to include( - logs: [{ message: 'RuntimeError:Must not contain PII', level: 'ERROR', + logs: [{ message: 'RuntimeError:Must not contain PII', level: 'ERROR', count: 1, stack_trace: a_string_including('REDACTED') }] ) expect(event.payload).to include( - logs: [{ message: 'RuntimeError:Must not contain PII', level: 'ERROR', + logs: [{ message: 'RuntimeError:Must not contain PII', level: 'ERROR', count: 1, stack_trace: a_string_including(',/spec/') }] ) end diff --git a/spec/datadog/core/telemetry/metric_spec.rb b/spec/datadog/core/telemetry/metric_spec.rb index dfd433f60e5..f9cc2320e9b 100644 --- a/spec/datadog/core/telemetry/metric_spec.rb +++ b/spec/datadog/core/telemetry/metric_spec.rb @@ -68,6 +68,35 @@ ) end end + + it 'all metrics to be the same' do + allow(Time).to receive(:now).and_return(double(to_i: 123)) + + metrics = [ + described_class.new('name', tags: { tag: 'val' }).tap { |m| m.track(1) }, + described_class.new('name', tags: { tag: 'val' }).tap { |m| m.track(1) }, + ] + + expect(metrics.uniq).to eq([metrics.first]) + end + + it 'all metrics to be the different' do + allow(Time).to receive(:now).and_return(double(to_i: 123)) + + metrics = [ + described_class.new('name', tags: { tag: 'val' }).tap { |m| m.track(1) }, + described_class.new('name1', tags: { tag: 'val' }).tap { |m| m.track(1) }, + described_class.new('name', tags: { tag: 'val1' }).tap { |m| m.track(1) }, + described_class.new('name', tags: { tag1: 'val' }).tap { |m| m.track(1) }, + described_class.new('name', tags: { tag: 'val' }).tap { |m| m.track(2) }, + ] + + allow(Time).to receive(:now).and_return(double(to_i: 456)) + + metrics << described_class.new('name', tags: { tag: 'val' }).tap { |m| m.track(1) } + + expect(metrics.uniq).to eq(metrics) + end end describe Datadog::Core::Telemetry::Metric::Gauge do @@ -135,6 +164,36 @@ ) end end + + it 'all metrics to be the same' do + allow(Time).to receive(:now).and_return(double(to_i: 123)) + + metrics = [ + described_class.new('name', tags: { tag: 'val' }, interval: 2).tap { |m| m.track(1) }, + described_class.new('name', tags: { tag: 'val' }, interval: 2).tap { |m| m.track(1) }, + ] + + expect(metrics.uniq).to eq([metrics.first]) + end + + it 'all metrics to be the different' do + allow(Time).to receive(:now).and_return(double(to_i: 123)) + + metrics = [ + described_class.new('name', tags: { tag: 'val' }, interval: 2).tap { |m| m.track(1) }, + described_class.new('name1', tags: { tag: 'val' }, interval: 2).tap { |m| m.track(1) }, + described_class.new('name', tags: { tag: 'val1' }, interval: 2).tap { |m| m.track(1) }, + described_class.new('name', tags: { tag1: 'val' }, interval: 2).tap { |m| m.track(1) }, + described_class.new('name', tags: { tag: 'val' }, interval: 2).tap { |m| m.track(2) }, + described_class.new('name', tags: { tag: 'val' }, interval: 3).tap { |m| m.track(1) }, + ] + + allow(Time).to receive(:now).and_return(double(to_i: 456)) + + metrics << described_class.new('name', tags: { tag: 'val' }, interval: 2).tap { |m| m.track(1) } + + expect(metrics.uniq).to eq(metrics) + end end describe Datadog::Core::Telemetry::Metric::Rate do @@ -212,6 +271,36 @@ ) end end + + it 'all metrics to be the same' do + allow(Time).to receive(:now).and_return(double(to_i: 123)) + + metrics = [ + described_class.new('name', tags: { tag: 'val' }, interval: 2).tap { |m| m.track(1) }, + described_class.new('name', tags: { tag: 'val' }, interval: 2).tap { |m| m.track(1) }, + ] + + expect(metrics.uniq).to eq([metrics.first]) + end + + it 'all metrics to be the different' do + allow(Time).to receive(:now).and_return(double(to_i: 123)) + + metrics = [ + described_class.new('name', tags: { tag: 'val' }, interval: 2).tap { |m| m.track(1) }, + described_class.new('name1', tags: { tag: 'val' }, interval: 2).tap { |m| m.track(1) }, + described_class.new('name', tags: { tag: 'val1' }, interval: 2).tap { |m| m.track(1) }, + described_class.new('name', tags: { tag1: 'val' }, interval: 2).tap { |m| m.track(1) }, + described_class.new('name', tags: { tag: 'val' }, interval: 2).tap { |m| m.track(2) }, + described_class.new('name', tags: { tag: 'val' }, interval: 3).tap { |m| m.track(1) }, + ] + + allow(Time).to receive(:now).and_return(double(to_i: 456)) + + metrics << described_class.new('name', tags: { tag: 'val' }, interval: 2).tap { |m| m.track(1) } + + expect(metrics.uniq).to eq(metrics) + end end describe Datadog::Core::Telemetry::Metric::Distribution do @@ -275,5 +364,26 @@ ) end end + + it 'all metrics to be the same' do + metrics = [ + described_class.new('name', tags: { tag: 'val' }).tap { |m| m.track(1) }, + described_class.new('name', tags: { tag: 'val' }).tap { |m| m.track(1) }, + ] + + expect(metrics.uniq).to eq([metrics.first]) + end + + it 'all metrics to be the different' do + metrics = [ + described_class.new('name', tags: { tag: 'val' }).tap { |m| m.track(1) }, + described_class.new('name1', tags: { tag: 'val' }).tap { |m| m.track(1) }, + described_class.new('name', tags: { tag: 'val1' }).tap { |m| m.track(1) }, + described_class.new('name', tags: { tag1: 'val' }).tap { |m| m.track(1) }, + described_class.new('name', tags: { tag: 'val' }).tap { |m| m.track(2) }, + ] + + expect(metrics.uniq).to eq(metrics) + end end end diff --git a/spec/datadog/core/telemetry/worker_spec.rb b/spec/datadog/core/telemetry/worker_spec.rb index 96e98c264fe..3dc9efe10e6 100644 --- a/spec/datadog/core/telemetry/worker_spec.rb +++ b/spec/datadog/core/telemetry/worker_spec.rb @@ -244,19 +244,21 @@ response end - worker.enqueue(Datadog::Core::Telemetry::Event::AppClosing.new) + worker.enqueue(Datadog::Core::Telemetry::Event::AppHeartbeat.new) worker.enqueue(Datadog::Core::Telemetry::Event::Log.new(message: 'test', level: :warn)) worker.enqueue(Datadog::Core::Telemetry::Event::Log.new(message: 'test', level: :warn)) worker.enqueue(Datadog::Core::Telemetry::Event::Log.new(message: 'test', level: :error)) + worker.enqueue(Datadog::Core::Telemetry::Event::AppClosing.new) worker.start try_wait_until { !events_received.empty? } expect(events_received).to contain_exactly( - Datadog::Core::Telemetry::Event::AppClosing.new, - Datadog::Core::Telemetry::Event::Log.new(message: 'test', level: :warn, count: 2), - Datadog::Core::Telemetry::Event::Log.new(message: 'test', level: :error) - ) + Datadog::Core::Telemetry::Event::AppHeartbeat.new, + Datadog::Core::Telemetry::Event::Log.new(message: 'test', level: :warn, count: 2), + Datadog::Core::Telemetry::Event::Log.new(message: 'test', level: :error), + Datadog::Core::Telemetry::Event::AppClosing.new + ) end end end From 2933c34375639ad9b96934ac441793e487f781f8 Mon Sep 17 00:00:00 2001 From: Steven Bouwkamp Date: Wed, 23 Oct 2024 10:36:07 -0400 Subject: [PATCH 005/161] Add cache_key.enabled option for ActiveSupport --- .../active_support/cache/events/cache.rb | 4 +- .../active_support/cache/instrumentation.rb | 4 +- .../active_support/configuration/settings.rb | 10 ++ .../tracing/contrib/rails/cache_spec.rb | 155 ++++++++++++++++++ 4 files changed, 171 insertions(+), 2 deletions(-) diff --git a/lib/datadog/tracing/contrib/active_support/cache/events/cache.rb b/lib/datadog/tracing/contrib/active_support/cache/events/cache.rb index 0b8820c8fec..40953753035 100644 --- a/lib/datadog/tracing/contrib/active_support/cache/events/cache.rb +++ b/lib/datadog/tracing/contrib/active_support/cache/events/cache.rb @@ -81,7 +81,9 @@ def on_start(span, event, _id, payload) span.set_tag('EVENT', event) - set_cache_key(span, key, mapping[:multi_key]) + if Datadog.configuration.tracing[:active_support][:cache_key].enabled + set_cache_key(span, key, mapping[:multi_key]) + end rescue StandardError => e Datadog.logger.error(e.message) Datadog::Core::Telemetry::Logger.report(e) diff --git a/lib/datadog/tracing/contrib/active_support/cache/instrumentation.rb b/lib/datadog/tracing/contrib/active_support/cache/instrumentation.rb index 13c92a08418..81f14aef0ef 100644 --- a/lib/datadog/tracing/contrib/active_support/cache/instrumentation.rb +++ b/lib/datadog/tracing/contrib/active_support/cache/instrumentation.rb @@ -3,6 +3,7 @@ require_relative '../../../../core/utils' require_relative '../../../metadata/ext' require_relative '../ext' +require_relative 'event' module Datadog module Tracing @@ -58,7 +59,8 @@ def trace(action, store, key: nil, multi_key: nil) end span.set_tag(Ext::TAG_CACHE_BACKEND, store) if store - set_cache_key(span, key, multi_key) + + set_cache_key(span, key, multi_key) if Datadog.configuration.tracing[:active_support][:cache_key].enabled yield end diff --git a/lib/datadog/tracing/contrib/active_support/configuration/settings.rb b/lib/datadog/tracing/contrib/active_support/configuration/settings.rb index 9f1b016ba7f..d7323c5afbb 100644 --- a/lib/datadog/tracing/contrib/active_support/configuration/settings.rb +++ b/lib/datadog/tracing/contrib/active_support/configuration/settings.rb @@ -39,6 +39,16 @@ class Settings < Contrib::Configuration::Settings ) end end + + # grouped "cache_key.*" settings + settings :cache_key do + # enable or disabling the inclusion of the cache_key in the span + option :enabled do |o| + # cache_key.enabled + o.type :bool + o.default true + end + end end end end diff --git a/spec/datadog/tracing/contrib/rails/cache_spec.rb b/spec/datadog/tracing/contrib/rails/cache_spec.rb index 0a7ba0dda2f..4b3f79c2944 100644 --- a/spec/datadog/tracing/contrib/rails/cache_spec.rb +++ b/spec/datadog/tracing/contrib/rails/cache_spec.rb @@ -117,6 +117,21 @@ expect(set.get_tag(Datadog::Tracing::Metadata::Ext::TAG_OPERATION)) .to eq('cache') end + + context 'when cache_key.enabled is false' do + before do + Datadog.configuration.tracing[:active_support][:cache_key].enabled = false + end + + it do + expect(read).to eq(50) + + expect(spans).to have(2).items + get, = spans + expect(get.name).to eq('rails.cache') + expect(get.get_tag('rails.cache.key')).to be_nil + end + end end describe '#read_multi' do @@ -149,6 +164,20 @@ .to eq('cache') end end + + context 'when cache_key.enabled is false' do + before do + Datadog.configuration.tracing[:active_support][:cache_key].enabled = false + end + + it do + expect(read_multi).to eq(Hash[multi_keys.zip([51, 52, 53])]) + expect(spans).to have(1 + multi_keys.size).items + get = spans[0] + expect(get.name).to eq('rails.cache') + expect(get.get_tag('rails.cache.keys')).to be_nil + end + end end describe '#write' do @@ -191,6 +220,20 @@ expect(span.get_tag('rails.cache.key')).to eq('custom-key/x/y/User:3') end end + + context 'when cache_key.enabled is false' do + before do + Datadog.configuration.tracing[:active_support][:cache_key].enabled = false + end + + let(:key) { ['custom-key', %w[x y], user] } + let(:user) { double('User', cache_key: 'User:3') } + + it 'does not expand key using ActiveSupport when cache_key.enabled false' do + write + expect(span.get_tag('rails.cache.key')).to be_nil + end + end end describe '#write_multi' do @@ -240,6 +283,27 @@ expect(span.get_tag('rails.cache.keys')).to eq('["custom-key/x/y/User:3"]') end end + + context 'when cache_key.enabled is false' do + before do + Datadog.configuration.tracing[:active_support][:cache_key].enabled = false + end + + it do + write_multi + expect(span.name).to eq('rails.cache') + expect(span.type).to eq('cache') + expect(span.resource).to eq('MSET') + expect(span.service).to eq('rails-cache') + expect(span.get_tag('rails.cache.backend')).to eq('file_store') + expect(span.get_tag('rails.cache.keys')).to be_nil + + expect(span.get_tag(Datadog::Tracing::Metadata::Ext::TAG_COMPONENT)) + .to eq('active_support') + expect(span.get_tag(Datadog::Tracing::Metadata::Ext::TAG_OPERATION)) + .to eq('cache') + end + end end context 'when the method is not defined' do @@ -278,6 +342,27 @@ expect(span.get_tag(Datadog::Tracing::Metadata::Ext::TAG_OPERATION)) .to eq('cache') end + + context 'when cache_key.enabled is false' do + before do + Datadog.configuration.tracing[:active_support][:cache_key].enabled = false + end + + it do + delete + expect(span.name).to eq('rails.cache') + expect(span.type).to eq('cache') + expect(span.resource).to eq('DELETE') + expect(span.service).to eq('rails-cache') + expect(span.get_tag('rails.cache.backend')).to eq('file_store') + expect(span.get_tag('rails.cache.key')).to be_nil + + expect(span.get_tag(Datadog::Tracing::Metadata::Ext::TAG_COMPONENT)) + .to eq('active_support') + expect(span.get_tag(Datadog::Tracing::Metadata::Ext::TAG_OPERATION)) + .to eq('cache') + end + end end describe '#fetch' do @@ -306,6 +391,32 @@ .to eq('cache') end end + + context 'when cache_key.enabled is false' do + before do + Datadog.configuration.tracing[:active_support][:cache_key].enabled = false + end + + subject(:fetch) { cache.fetch('exception') { raise 'oops' } } + + it do + expect { fetch }.to raise_error(StandardError) + + expect(span.name).to eq('rails.cache') + expect(span.type).to eq('cache') + expect(span.resource).to eq('GET') + expect(span.service).to eq('rails-cache') + expect(span.get_tag('rails.cache.backend')).to eq('file_store') + expect(span.get_tag('rails.cache.key')).to be_nil + expect(span.get_tag('error.type')).to eq('RuntimeError') + expect(span.get_tag('error.message')).to eq('oops') + + expect(span.get_tag(Datadog::Tracing::Metadata::Ext::TAG_COMPONENT)) + .to eq('active_support') + expect(span.get_tag(Datadog::Tracing::Metadata::Ext::TAG_OPERATION)) + .to eq('cache') + end + end end describe '#fetch_multi' do @@ -340,6 +451,30 @@ .to eq('cache') end end + + context 'with exception and when cache_key.enabled is false' do + before do + Datadog.configuration.tracing[:active_support][:cache_key].enabled = false + end + subject(:fetch_multi) { cache.fetch_multi('exception', 'another', 'one') { raise 'oops' } } + + it do + expect { fetch_multi }.to raise_error(StandardError) + expect(span.name).to eq('rails.cache') + expect(span.type).to eq('cache') + expect(span.resource).to eq('MGET') + expect(span.service).to eq('rails-cache') + expect(span.get_tag('rails.cache.backend')).to eq('file_store') + expect(span.get_tag('rails.cache.keys')).to be_nil + expect(span.get_tag('error.type')).to eq('RuntimeError') + expect(span.get_tag('error.message')).to eq('oops') + + expect(span.get_tag(Datadog::Tracing::Metadata::Ext::TAG_COMPONENT)) + .to eq('active_support') + expect(span.get_tag(Datadog::Tracing::Metadata::Ext::TAG_OPERATION)) + .to eq('cache') + end + end end context 'when the method is not defined' do @@ -378,4 +513,24 @@ .to eq('cache') end end + + context 'with very large cache key and when cache_key.enabled is false' do + before do + Datadog.configuration.tracing[:active_support][:cache_key].enabled = false + end + it 'truncates key too large' do + max_key_size = Datadog::Tracing::Contrib::ActiveSupport::Ext::QUANTIZE_CACHE_MAX_KEY_SIZE + large_key = ''.ljust(max_key_size * 2, SecureRandom.hex) + cache.write(large_key, 'foobar') + + expect(large_key.size).to be > max_key_size + expect(span.name).to eq('rails.cache') + expect(span.get_tag('rails.cache.key')).to be_nil + + expect(span.get_tag(Datadog::Tracing::Metadata::Ext::TAG_COMPONENT)) + .to eq('active_support') + expect(span.get_tag(Datadog::Tracing::Metadata::Ext::TAG_OPERATION)) + .to eq('cache') + end + end end From c0798dd900b30071ee06dc27dc789c9ab624753b Mon Sep 17 00:00:00 2001 From: Ivo Anjo Date: Tue, 3 Dec 2024 09:23:06 +0000 Subject: [PATCH 006/161] [NO-TICKET] Update documentation to clarify what test mode does **What does this PR do?** This PR updates our documentation to clarify what test mode does: 1. I've tweaked the wording to make it clear that this feature is used for testing distributed tracing behavior 2. I've explicitly mentioned that traces will still be sent; the previous version of the docs erroneously claimed a no-op transport would be applied, which is not true 3. I've left hints for folks that search for "test" while trying to disable dd-trace-rb in their test suites, that they should look at `tracing.enabled` instead 4. I've removed the bigger code examples for this feature, as it's a very niche thing that almost nobody will want to use, and having the code examples invites copy-paste of something that is probably not what the customer wants **Motivation:** The fact this doc is confusing came up in #4149 so it seemed relevant to fix our docs to avoid more confusion in the future. **Additional Notes:** N/A **How to test the change?** Docs-only change :) --- docs/GettingStarted.md | 18 +++++++----------- 1 file changed, 7 insertions(+), 11 deletions(-) diff --git a/docs/GettingStarted.md b/docs/GettingStarted.md index 98cade51313..3c33aeba0c9 100644 --- a/docs/GettingStarted.md +++ b/docs/GettingStarted.md @@ -108,7 +108,7 @@ OR #### Other Ruby applications -If your application does not use the supported gems (Rails or Hanami) above, you can set it up as follows: +If your application does not use the above mentioned gems (Rails or Hanami), you can set it up as follows: 1. Add the `datadog` gem to your Gemfile: @@ -2021,7 +2021,6 @@ To change the default behavior of `datadog`, you can use, in order of priority, c.env = ENV['RACK_ENV'] c.tracing.report_hostname = true - c.tracing.test_mode.enabled = (ENV['RACK_ENV'] == 'test') end ``` @@ -2067,7 +2066,7 @@ For example, if `tracing.sampling.default_rate` is configured by [Remote Configu | `tracing.sampling.span_rules` | `DD_SPAN_SAMPLING_RULES`,`ENV_SPAN_SAMPLING_RULES_FILE` | `String` | `nil` | Sets [Single Span Sampling](#single-span-sampling) rules. These rules allow you to keep spans even when their respective traces are dropped. | | `tracing.trace_id_128_bit_generation_enabled` | `DD_TRACE_128_BIT_TRACEID_GENERATION_ENABLED` | `Bool` | `true` | `true` to generate 128 bits trace ID and `false` to generate 64 bits trace ID | | `tracing.report_hostname` | `DD_TRACE_REPORT_HOSTNAME` | `Bool` | `false` | Adds hostname tag to traces. | -| `tracing.test_mode.enabled` | `DD_TRACE_TEST_MODE_ENABLED` | `Bool` | `false` | Enables or disables test mode, for use of tracing in test suites. | +| `tracing.test_mode.enabled` | `DD_TRACE_TEST_MODE_ENABLED` | `Bool` | `false` | Enables or disables "test mode", used for testing distributed tracing behavior. Note that traces will still be sent; consider using `tracing.enabled` instead to disable sending of traces entirely. | | `tracing.test_mode.trace_flush` | | `Datadog::Tracing::TraceFlush` | `nil` | Object that determines trace flushing behavior. | #### Custom logging @@ -2637,15 +2636,12 @@ or `c.agent.port`. #### Transporting in Test Mode -When test mode is enabled, the tracer uses a `Test` adapter for no-op transport that can optionally buffer requests in -test suites or other non-production environments. It is configured by setting `c.tracing.test_mode.enabled` to true. -This mode only works for tracing. +The test mode can be used for testing distributed tracing behavior. Enabling this setting will mean every +span will be sent (no sampling is applied) and the transport will send data synchronously. +It is configured by setting `c.tracing.test_mode.enabled` to true. -```ruby -Datadog.configure do |c| - c.tracing.test_mode.enabled = true -end -``` +If you're looking to disable tracing while your test suite is running, consider using the `tracing.enabled` setting +to disable sending of traces. ### Setting the time provider From 1acbea01672034a979e6895eba31b2f639095609 Mon Sep 17 00:00:00 2001 From: Marco Costa Date: Tue, 3 Dec 2024 11:09:41 -0800 Subject: [PATCH 007/161] Update docs/GettingStarted.md Co-authored-by: Heston Hoffman --- docs/GettingStarted.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/GettingStarted.md b/docs/GettingStarted.md index 3c33aeba0c9..d3c494990d3 100644 --- a/docs/GettingStarted.md +++ b/docs/GettingStarted.md @@ -2636,9 +2636,9 @@ or `c.agent.port`. #### Transporting in Test Mode -The test mode can be used for testing distributed tracing behavior. Enabling this setting will mean every -span will be sent (no sampling is applied) and the transport will send data synchronously. -It is configured by setting `c.tracing.test_mode.enabled` to true. +Use the test mode for testing distributed tracing behavior. Enabling this setting causes every +span to be sent (no sampling is applied) and causes the transport to send data synchronously. +To configure test mode, set `c.tracing.test_mode.enabled` to `true`. If you're looking to disable tracing while your test suite is running, consider using the `tracing.enabled` setting to disable sending of traces. From 2c2f6a01c901a3f86d7e0fcdb7a1dbb5f10bc637 Mon Sep 17 00:00:00 2001 From: Ivo Anjo Date: Thu, 5 Dec 2024 08:22:09 +0000 Subject: [PATCH 008/161] Remove all references to test mode from documentation As per the discussion in #4182 this is an internal feature and not expected to be used or be useful by customers. --- docs/GettingStarted.md | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/docs/GettingStarted.md b/docs/GettingStarted.md index d3c494990d3..db1b9379d7c 100644 --- a/docs/GettingStarted.md +++ b/docs/GettingStarted.md @@ -2066,8 +2066,6 @@ For example, if `tracing.sampling.default_rate` is configured by [Remote Configu | `tracing.sampling.span_rules` | `DD_SPAN_SAMPLING_RULES`,`ENV_SPAN_SAMPLING_RULES_FILE` | `String` | `nil` | Sets [Single Span Sampling](#single-span-sampling) rules. These rules allow you to keep spans even when their respective traces are dropped. | | `tracing.trace_id_128_bit_generation_enabled` | `DD_TRACE_128_BIT_TRACEID_GENERATION_ENABLED` | `Bool` | `true` | `true` to generate 128 bits trace ID and `false` to generate 64 bits trace ID | | `tracing.report_hostname` | `DD_TRACE_REPORT_HOSTNAME` | `Bool` | `false` | Adds hostname tag to traces. | -| `tracing.test_mode.enabled` | `DD_TRACE_TEST_MODE_ENABLED` | `Bool` | `false` | Enables or disables "test mode", used for testing distributed tracing behavior. Note that traces will still be sent; consider using `tracing.enabled` instead to disable sending of traces entirely. | -| `tracing.test_mode.trace_flush` | | `Datadog::Tracing::TraceFlush` | `nil` | Object that determines trace flushing behavior. | #### Custom logging @@ -2634,15 +2632,6 @@ DD_TRACE_AGENT_URL=unix:///tmp/ddagent/trace.sock Note: You cannot mix UDS and TCP configurations. If you set `c.agent.uds_path`, you must not set `c.agent.host` or `c.agent.port`. -#### Transporting in Test Mode - -Use the test mode for testing distributed tracing behavior. Enabling this setting causes every -span to be sent (no sampling is applied) and causes the transport to send data synchronously. -To configure test mode, set `c.tracing.test_mode.enabled` to `true`. - -If you're looking to disable tracing while your test suite is running, consider using the `tracing.enabled` setting -to disable sending of traces. - ### Setting the time provider By default, tracing uses a monotonic clock to measure the duration of spans, and timestamps (`->{ Time.now }`) for the start and end time. From 23c191d7cb97229b6823fade9aa8a8b31aa44225 Mon Sep 17 00:00:00 2001 From: Ivo Anjo Date: Thu, 5 Dec 2024 08:22:50 +0000 Subject: [PATCH 009/161] Add section to clarify how to disable tracing for test suites This looks like relevant info to have, and what misled customers into trying out the "test mode". --- docs/GettingStarted.md | 22 ++++++++++++++++++---- 1 file changed, 18 insertions(+), 4 deletions(-) diff --git a/docs/GettingStarted.md b/docs/GettingStarted.md index db1b9379d7c..894903047bd 100644 --- a/docs/GettingStarted.md +++ b/docs/GettingStarted.md @@ -167,6 +167,24 @@ If your Agent runs on a different host or container than your application, or yo After setting up, your services will appear on the [APM services page](https://app.datadoghq.com/apm/services) within a few minutes. Learn more about [using the APM UI][visualization docs]. +### Disabling during testing/specs and test optimization for Ruby + +Tracing is enabled by default; this includes: + +* When loading using `datadog/auto_instrument` +* When activating integrations using `tracing.instrument` in the `Datadog.configure` block +* When calling the `Datadog::Tracing.trace` method + +If you'd like to disable tracing when running your tests/specs, you can set the `DD_TRACE_ENABLED` environment variable to `false` or via code: + +```ruby +Datadog.configure do |c| + c.tracing.enabled = false +end +``` + +Furthermore, if you're trying to get more visibility into your tests or you're struggling with slow or flaky test suites, consider looking at Datadog's [Test optimization](https://docs.datadoghq.com/tests/) via the [`datadog-ci`](https://github.com/DataDog/datadog-ci-rb?tab=readme-ov-file#datadog-test-optimization-for-ruby) gem. + ## Manual Instrumentation If you aren't using a supported framework instrumentation, you may want to manually instrument your code. @@ -295,10 +313,6 @@ For a list of available integrations and their supported versions, see [Ruby Int For a list of configuration options for the available integrations, refer to the following: -#### CI Visibility - -Checkout [Datadog's Ruby Library for instrumenting your test and continuous integration pipeline](https://github.com/DataDog/datadog-ci-rb) - ### Action Cable The Action Cable integration traces broadcast messages and channel actions. From 022f4b8ae65a17dd3b43c54333789b211dc71e95 Mon Sep 17 00:00:00 2001 From: Ivo Anjo Date: Thu, 5 Dec 2024 08:28:03 +0000 Subject: [PATCH 010/161] Update settings.rb to mark test_mode as internal and remove other comments --- lib/datadog/tracing/configuration/settings.rb | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/lib/datadog/tracing/configuration/settings.rb b/lib/datadog/tracing/configuration/settings.rb index 4b94b6d9eeb..565193ffdfd 100644 --- a/lib/datadog/tracing/configuration/settings.rb +++ b/lib/datadog/tracing/configuration/settings.rb @@ -368,22 +368,18 @@ def self.extended(base) end end - # [Continuous Integration Visibility](https://docs.datadoghq.com/continuous_integration/) configuration. + # This is only for internal Datadog use via https://github.com/DataDog/datadog-ci-rb . It should not be + # used directly. + # + # DEV-3.0: Make this a non-public API in the next release. # @public_api settings :test_mode do - # Enable test mode. This allows the tracer to collect spans from test runs. - # - # It also prevents the tracer from collecting spans in a production environment. Only use in a test environment. - # - # @default `DD_TRACE_TEST_MODE_ENABLED` environment variable, otherwise `false` - # @return [Boolean] option :enabled do |o| o.type :bool o.default false o.env Tracing::Configuration::Ext::Test::ENV_MODE_ENABLED end - # Use async writer in test mode option :async do |o| o.type :bool o.default false From d19b07f27a00147985e3a478698c5fcae0259625 Mon Sep 17 00:00:00 2001 From: Ivo Anjo Date: Mon, 9 Dec 2024 09:39:18 +0000 Subject: [PATCH 011/161] [NO-TICKET] Re-add at_fork hook testing for crashtracking **What does this PR do?** This PR re-adds the spec that validates that the at_fork hook in crashtracking correctly picks up the latest instance of the component. **Motivation:** Since this is quite a weird corner case, I think it's important to have a spec to cover it. **Additional Notes:** This spec was temporarily removed in #3970 with the intention of re-adding it in #3983 but we kinda forgot about it. **How to test the change?** Check this test passes as-is, and fails if you change the `update_on_fork` call to use `self`, for instance. --- .../core/crashtracking/component_spec.rb | 29 +++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/spec/datadog/core/crashtracking/component_spec.rb b/spec/datadog/core/crashtracking/component_spec.rb index 68a21bd8462..f05d803c1d8 100644 --- a/spec/datadog/core/crashtracking/component_spec.rb +++ b/spec/datadog/core/crashtracking/component_spec.rb @@ -293,6 +293,35 @@ expect(crash_report_message[:os_info]).to_not be_empty end end + + context 'when forked' do + # This tests that the callback registered with `Utils::AtForkMonkeyPatch.at_fork` + # does not contain a stale instance of the crashtracker component. + it 'ensures the latest configuration applied' do + allow(described_class).to receive(:_native_start_or_update_on_fork) + + # `Datadog.configure` to trigger crashtracking component reinstantiation, + # a callback is first registered with `Utils::AtForkMonkeyPatch.at_fork`, + # but not with the second `Datadog.configure` invokation. + Datadog.configure do |c| + c.agent.host = 'example.com' + end + + Datadog.configure do |c| + c.agent.host = 'google.com' + c.agent.port = 12345 + end + + expect_in_fork do + expect(described_class).to have_received(:_native_start_or_update_on_fork).with( + hash_including( + action: :update_on_fork, + agent_base_url: 'http://google.com:12345/', + ) + ) + end + end + end end end From 39bc695e5e84c27473407a7518e08ca12f5582ad Mon Sep 17 00:00:00 2001 From: Yury Lebedev Date: Mon, 9 Dec 2024 13:39:54 +0100 Subject: [PATCH 012/161] Fix appsec:ruleset:update rake task --- tasks/appsec.rake | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/tasks/appsec.rake b/tasks/appsec.rake index af2fade602d..817e7d2eba1 100644 --- a/tasks/appsec.rake +++ b/tasks/appsec.rake @@ -18,18 +18,18 @@ namespace :appsec do http = Net::HTTP.new(uri.host, uri.port) http.use_ssl = true - req = Net::HTTP::Get.new(uri) - req['Authorization'] = "Bearer #{token}" - req['Accept'] = 'application/vnd.github.raw+json' + request = Net::HTTP::Get.new(uri) + request['Authorization'] = "Bearer #{token}" + request['Accept'] = 'application/vnd.github.raw+json' - http.request(req) do |res| - case res + http.request(request) do |response| + case response when Net::HTTPSuccess filename = "lib/datadog/appsec/assets/waf_rules/#{ruleset}.json" raise "File '#{filename}' was moved or deleted, please review the rake task" unless File.exist?(filename) File.open(filename, 'wb') do |f| - res.read_body do |chunk| + response.read_body do |chunk| f << chunk end end From 18171ccb0a9ec94217932a4b95bac50a3a58704e Mon Sep 17 00:00:00 2001 From: Oleg Pudeyev <156273877+p-datadog@users.noreply.github.com> Date: Tue, 10 Dec 2024 08:20:30 -0500 Subject: [PATCH 013/161] DEBUG-2334 DI: method probes: pass block to target method when rate limited (#4206) --- lib/datadog/di/instrumenter.rb | 24 ++- spec/datadog/di/hook_method.rb | 26 ++- spec/datadog/di/instrumenter_spec.rb | 271 +++++++++++++++++++++++++-- 3 files changed, 304 insertions(+), 17 deletions(-) diff --git a/lib/datadog/di/instrumenter.rb b/lib/datadog/di/instrumenter.rb index ffdf62378d6..b9238c9ad74 100644 --- a/lib/datadog/di/instrumenter.rb +++ b/lib/datadog/di/instrumenter.rb @@ -117,6 +117,7 @@ def hook_method(probe, &block) end rv = nil # Under Ruby 2.6 we cannot just call super(*args, **kwargs) + # for methods defined via method_missing. duration = Benchmark.realtime do # steep:ignore rv = if args.any? if kwargs.any? @@ -152,7 +153,28 @@ def hook_method(probe, &block) serialized_entry_args: entry_args) rv else - super(*args, **kwargs) + # stop standard from trying to mess up my code + _ = 42 + + # The necessity to invoke super in each of these specific + # ways is very difficult to test. + # Existing tests, even though I wrote many, still don't + # cause a failure if I replace all of the below with a + # simple super(*args, **kwargs, &target_block). + # But, let's be safe and go through the motions in case + # there is actually a legitimate need for the breakdown. + # TODO figure out how to test this properly. + if args.any? + if kwargs.any? + super(*args, **kwargs, &target_block) + else + super(*args, &target_block) + end + elsif kwargs.any? + super(**kwargs, &target_block) + else + super(&target_block) + end end end end diff --git a/spec/datadog/di/hook_method.rb b/spec/datadog/di/hook_method.rb index 5632269204e..1d7a847fd1a 100644 --- a/spec/datadog/di/hook_method.rb +++ b/spec/datadog/di/hook_method.rb @@ -16,7 +16,19 @@ def hook_test_method_with_pos_and_kwarg(arg, kwarg:) end def yielding(arg) - yield arg + yield [[arg], {}] + end + + def yielding_kw(arg:) + yield [[], arg: arg] + end + + def yielding_both(pos, kw:) + yield [[pos], kw: kw] + end + + def yielding_squashed(pos, options) + yield [[pos], options] end def recursive(depth) @@ -39,3 +51,15 @@ def positional_and_squashed(arg, options) [arg, options] end end + +class YieldingMethodMissingHookTestClass + # only here to stop standard complaints + def respond_to_missing?(name) + true + end + + def method_missing(name, *args, **kwargs) + yield [args, kwargs] + [args, kwargs] + end +end diff --git a/spec/datadog/di/instrumenter_spec.rb b/spec/datadog/di/instrumenter_spec.rb index 78dd39009b0..821e6f685df 100644 --- a/spec/datadog/di/instrumenter_spec.rb +++ b/spec/datadog/di/instrumenter_spec.rb @@ -42,9 +42,11 @@ end let(:base_probe_args) do - {id: '1234', type: :log} + {id: '1234', type: :log, rate_limit: rate_limit} end + let(:rate_limit) { nil } + let(:probe) do Datadog::DI::Probe.new(**base_probe_args.merge(probe_args)) end @@ -78,27 +80,206 @@ end context 'when target method yields to a block' do - let(:probe_args) do - {type_name: 'HookTestClass', method_name: 'yielding'} + shared_examples 'yields to the block' do + context 'when method takes a positional argument' do + let(:probe_args) do + {type_name: type.name, method_name: 'yielding'} + end + + it 'invokes callback' do + instrumenter.hook_method(probe) do |payload| + observed_calls << payload + end + + yielded_value = nil + expect(type.new.yielding('hello') do |value| + yielded_value = value + end).to eq [['hello'], {}] + + expect(yielded_value).to eq([['hello'], {}]) + + expect(observed_calls.length).to eq 1 + expect(observed_calls.first.keys.sort).to eq call_keys + expect(observed_calls.first[:rv]).to eq [['hello'], {}] + expect(observed_calls.first[:duration]).to be_a(Float) + end + + context 'when rate limited' do + let(:rate_limit) { 0 } + + it 'does not invoke callback but invokes target method with block' do + instrumenter.hook_method(probe) do |payload| + observed_calls << payload + end + + yielded_value = nil + expect(type.new.yielding('hello') do |value| + yielded_value = value + end).to eq [['hello'], {}] + + expect(yielded_value).to eq([['hello'], {}]) + + expect(observed_calls.length).to eq 0 + end + end + end + + context 'when method takes a keyword argument' do + let(:probe_args) do + {type_name: type.name, method_name: 'yielding_kw'} + end + + let(:expected_rv) do + [[], {arg: 'hello'}] + end + + it 'invokes callback' do + instrumenter.hook_method(probe) do |payload| + observed_calls << payload + end + + yielded_value = nil + expect(type.new.yielding_kw(arg: 'hello') do |value| + yielded_value = value + end).to eq [[], {arg: 'hello'}] + + expect(yielded_value).to eq(expected_rv) + + expect(observed_calls.length).to eq 1 + expect(observed_calls.first.keys.sort).to eq call_keys + expect(observed_calls.first[:rv]).to eq expected_rv + expect(observed_calls.first[:duration]).to be_a(Float) + end + + context 'when rate limited' do + let(:rate_limit) { 0 } + + it 'does not invoke callback but invokes target method with block' do + instrumenter.hook_method(probe) do |payload| + observed_calls << payload + end + + yielded_value = nil + expect(type.new.yielding_kw(arg: 'hello') do |value| + yielded_value = value + end).to eq expected_rv + + expect(yielded_value).to eq(expected_rv) + + expect(observed_calls.length).to eq 0 + end + end + end + + context 'when method takes both positional and keyword arguments' do + let(:probe_args) do + {type_name: type.name, method_name: 'yielding_both'} + end + + it 'invokes callback' do + instrumenter.hook_method(probe) do |payload| + observed_calls << payload + end + + yielded_value = nil + expect(type.new.yielding_both('hello', kw: 'world') do |value| + yielded_value = value + end).to eq [['hello'], {kw: 'world'}] + + expect(yielded_value).to eq([['hello'], {kw: 'world'}]) + + expect(observed_calls.length).to eq 1 + expect(observed_calls.first.keys.sort).to eq call_keys + expect(observed_calls.first[:rv]).to eq [['hello'], {kw: 'world'}] + expect(observed_calls.first[:duration]).to be_a(Float) + end + + context 'when rate limited' do + let(:rate_limit) { 0 } + + it 'does not invoke callback but invokes target method with block' do + instrumenter.hook_method(probe) do |payload| + observed_calls << payload + end + + yielded_value = nil + expect(type.new.yielding_both('hello', kw: 'world') do |value| + yielded_value = value + end).to eq [['hello'], {kw: 'world'}] + + expect(yielded_value).to eq([['hello'], {kw: 'world'}]) + + expect(observed_calls.length).to eq 0 + end + end + end + + context 'when method takes both positional and keyword arguments squashed into a positional argument' do + let(:probe_args) do + {type_name: type.name, method_name: 'yielding_squashed'} + end + + it 'invokes callback' do + instrumenter.hook_method(probe) do |payload| + observed_calls << payload + end + + yielded_value = nil + expect(type.new.yielding_squashed('hello', kw: 'world') do |value| + yielded_value = value + end).to eq [['hello'], {kw: 'world'}] + + expect(yielded_value).to eq([['hello'], {kw: 'world'}]) + + expect(observed_calls.length).to eq 1 + expect(observed_calls.first.keys.sort).to eq call_keys + expect(observed_calls.first[:rv]).to eq [['hello'], {kw: 'world'}] + expect(observed_calls.first[:duration]).to be_a(Float) + end + + context 'when rate limited' do + let(:rate_limit) { 0 } + + it 'does not invoke callback but invokes target method with block' do + instrumenter.hook_method(probe) do |payload| + observed_calls << payload + end + + yielded_value = nil + expect(type.new.yielding_squashed('hello', kw: 'world') do |value| + yielded_value = value + end).to eq [['hello'], {kw: 'world'}] + + expect(yielded_value).to eq([['hello'], {kw: 'world'}]) + + expect(observed_calls.length).to eq 0 + end + end + end end - it 'invokes callback' do + context 'when method is explicitly defined' do + let(:type) { HookTestClass } + + include_examples 'yields to the block' + end + + context 'when method is defined via method_missing' do + let(:type) { YieldingMethodMissingHookTestClass } + + include_examples 'yields to the block' + end + end + + shared_examples 'does not invoke callback but invokes target method' do + it 'does not invoke callback but invokes target method' do instrumenter.hook_method(probe) do |payload| observed_calls << payload end - yielded_value = nil - expect(HookTestClass.new.yielding('hello') do |value| - yielded_value = value - [value] - end).to eq ['hello'] + target_call - expect(yielded_value).to eq('hello') - - expect(observed_calls.length).to eq 1 - expect(observed_calls.first.keys.sort).to eq call_keys - expect(observed_calls.first[:rv]).to eq ['hello'] - expect(observed_calls.first[:duration]).to be_a(Float) + expect(observed_calls.length).to eq 0 end end @@ -152,6 +333,12 @@ include_examples 'invokes callback and captures parameters' + context 'when rate limited' do + let(:rate_limit) { 0 } + + include_examples 'does not invoke callback but invokes target method' + end + context 'when passed via a splat' do let(:target_call) do args = [2] @@ -159,6 +346,12 @@ end include_examples 'invokes callback and captures parameters' + + context 'when rate limited' do + let(:rate_limit) { 0 } + + include_examples 'does not invoke callback but invokes target method' + end end end end @@ -193,6 +386,12 @@ include_examples 'invokes callback and captures parameters' + context 'when rate limited' do + let(:rate_limit) { 0 } + + include_examples 'does not invoke callback but invokes target method' + end + context 'when passed via a splat' do let(:target_call) do kwargs = {kwarg: 42} @@ -200,6 +399,12 @@ end include_examples 'invokes callback and captures parameters' + + context 'when rate limited' do + let(:rate_limit) { 0 } + + include_examples 'does not invoke callback but invokes target method' + end end end end @@ -239,6 +444,12 @@ include_examples 'invokes callback and captures parameters' + context 'when rate limited' do + let(:rate_limit) { 0 } + + include_examples 'does not invoke callback but invokes target method' + end + context 'when passed via a splat' do let(:target_call) do args = [41] @@ -247,6 +458,12 @@ end include_examples 'invokes callback and captures parameters' + + context 'when rate limited' do + let(:rate_limit) { 0 } + + include_examples 'does not invoke callback but invokes target method' + end end end end @@ -284,6 +501,12 @@ end include_examples 'invokes callback and captures parameters' + + context 'when rate limited' do + let(:rate_limit) { 0 } + + include_examples 'does not invoke callback but invokes target method' + end end context 'call with positional argument' do @@ -293,6 +516,12 @@ end include_examples 'invokes callback and captures parameters' + + context 'when rate limited' do + let(:rate_limit) { 0 } + + include_examples 'does not invoke callback but invokes target method' + end end context 'when there is also a positional argument' do @@ -327,6 +556,12 @@ end include_examples 'invokes callback and captures parameters' + + context 'when rate limited' do + let(:rate_limit) { 0 } + + include_examples 'does not invoke callback but invokes target method' + end end context 'call with a splat' do @@ -336,6 +571,12 @@ end include_examples 'invokes callback and captures parameters' + + context 'when rate limited' do + let(:rate_limit) { 0 } + + include_examples 'does not invoke callback but invokes target method' + end end end end From 23d4930531b1e9294f38fcf952a6fef14873ca99 Mon Sep 17 00:00:00 2001 From: Ivo Anjo Date: Tue, 10 Dec 2024 16:14:12 +0000 Subject: [PATCH 014/161] Add 2.8.0 to CHANGELOG.md --- CHANGELOG.md | 34 +++++++++++++++++++++++++++++++++- 1 file changed, 33 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index eed11beb33d..041527425ec 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,27 @@ ## [Unreleased] +## [2.8.0] - 2024-12-10 + +### Added + +* AppSec: Add SQL injection detection for ActiveRecord for following adapters: `mysql2`, `postgresql`, and `sqlite3` ([#4167][]) +* Telemetry: Add environment variable to disable logs ([#4153][]) +* Integrations: Add configuration option `on_error` to Elasticsearch tracing ([#4066][]) + +### Changed + +* Upgrade libdatadog dependency to 14.3.1 ([#4196][]) +* Profiling: Require Ruby 3.1+ for heap profiling ([#4178][]) +* Appsec: Update libddwaf to 1.18.0.0.0 ([#4164][]) +* Single-step: Lower SSI GLIBC requirements down to 2.17 ([#4137][]) + +### Fixed + +* Integrations: Avoid loading `ActiveSupport::Cache::RedisCacheStore`, which tries to load `redis >= 4.0.1` regardless of the version of Redis the host application has installed ([#4197][]) +* Profiling: Fix unsafe initialization when using profiler with otel tracing ([#4195][]) +* Single-step: Add safe NOOP injection script for very old rubies ([#4140][]) + ## [2.7.1] - 2024-11-28 ### Fixed @@ -3035,7 +3056,8 @@ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.3.1 Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.3.0...v0.3.1 -[Unreleased]: https://github.com/DataDog/dd-trace-rb/compare/v2.7.0...master +[Unreleased]: https://github.com/DataDog/dd-trace-rb/compare/v2.8.0...master +[2.8.0]: https://github.com/DataDog/dd-trace-rb/compare/v2.7.1...v2.8.0 [2.7.0]: https://github.com/DataDog/dd-trace-rb/compare/v2.6.0...v2.7.0 [2.6.0]: https://github.com/DataDog/dd-trace-rb/compare/v2.5.0...v2.6.0 [2.5.0]: https://github.com/DataDog/dd-trace-rb/compare/v2.4.0...v2.5.0 @@ -4480,12 +4502,22 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.3.0...v0.3.1 [#4027]: https://github.com/DataDog/dd-trace-rb/issues/4027 [#4033]: https://github.com/DataDog/dd-trace-rb/issues/4033 [#4065]: https://github.com/DataDog/dd-trace-rb/issues/4065 +[#4066]: https://github.com/DataDog/dd-trace-rb/issues/4066 [#4075]: https://github.com/DataDog/dd-trace-rb/issues/4075 [#4078]: https://github.com/DataDog/dd-trace-rb/issues/4078 [#4082]: https://github.com/DataDog/dd-trace-rb/issues/4082 [#4083]: https://github.com/DataDog/dd-trace-rb/issues/4083 [#4085]: https://github.com/DataDog/dd-trace-rb/issues/4085 +[#4137]: https://github.com/DataDog/dd-trace-rb/issues/4137 +[#4140]: https://github.com/DataDog/dd-trace-rb/issues/4140 +[#4153]: https://github.com/DataDog/dd-trace-rb/issues/4153 [#4161]: https://github.com/DataDog/dd-trace-rb/issues/4161 +[#4164]: https://github.com/DataDog/dd-trace-rb/issues/4164 +[#4167]: https://github.com/DataDog/dd-trace-rb/issues/4167 +[#4178]: https://github.com/DataDog/dd-trace-rb/issues/4178 +[#4195]: https://github.com/DataDog/dd-trace-rb/issues/4195 +[#4196]: https://github.com/DataDog/dd-trace-rb/issues/4196 +[#4197]: https://github.com/DataDog/dd-trace-rb/issues/4197 [@AdrianLC]: https://github.com/AdrianLC [@Azure7111]: https://github.com/Azure7111 [@BabyGroot]: https://github.com/BabyGroot From 888bde3eac746671bda9f55faec3f458b36c7374 Mon Sep 17 00:00:00 2001 From: Ivo Anjo Date: Tue, 10 Dec 2024 16:14:22 +0000 Subject: [PATCH 015/161] Bump version 2.7.1 to 2.8.0 --- lib/datadog/version.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/datadog/version.rb b/lib/datadog/version.rb index 827d2f224c2..2ed885ad4dc 100644 --- a/lib/datadog/version.rb +++ b/lib/datadog/version.rb @@ -3,8 +3,8 @@ module Datadog module VERSION MAJOR = 2 - MINOR = 7 - PATCH = 1 + MINOR = 8 + PATCH = 0 PRE = nil BUILD = nil # PRE and BUILD above are modified for dev gems during gem build GHA workflow From 1675a1533b4ff4ce94feb18fd0e4daa6ded3229e Mon Sep 17 00:00:00 2001 From: Ivo Anjo Date: Tue, 10 Dec 2024 16:15:26 +0000 Subject: [PATCH 016/161] Update lockfiles for release 2.8.0 --- gemfiles/jruby_9.2_activesupport.gemfile.lock | 2 +- gemfiles/jruby_9.2_aws.gemfile.lock | 2 +- gemfiles/jruby_9.2_contrib.gemfile.lock | 2 +- gemfiles/jruby_9.2_contrib_old.gemfile.lock | 2 +- gemfiles/jruby_9.2_core_old.gemfile.lock | 2 +- gemfiles/jruby_9.2_elasticsearch_7.gemfile.lock | 2 +- gemfiles/jruby_9.2_elasticsearch_8.gemfile.lock | 2 +- gemfiles/jruby_9.2_elasticsearch_latest.gemfile.lock | 2 +- gemfiles/jruby_9.2_graphql_2.0.gemfile.lock | 2 +- gemfiles/jruby_9.2_http.gemfile.lock | 2 +- gemfiles/jruby_9.2_opensearch_2.gemfile.lock | 2 +- gemfiles/jruby_9.2_opensearch_3.gemfile.lock | 2 +- gemfiles/jruby_9.2_opensearch_latest.gemfile.lock | 2 +- gemfiles/jruby_9.2_rack_1.gemfile.lock | 2 +- gemfiles/jruby_9.2_rack_2.gemfile.lock | 2 +- gemfiles/jruby_9.2_rack_3.gemfile.lock | 2 +- gemfiles/jruby_9.2_rack_latest.gemfile.lock | 2 +- gemfiles/jruby_9.2_rails5_mysql2.gemfile.lock | 2 +- gemfiles/jruby_9.2_rails5_postgres.gemfile.lock | 2 +- gemfiles/jruby_9.2_rails5_postgres_redis.gemfile.lock | 2 +- .../jruby_9.2_rails5_postgres_redis_activesupport.gemfile.lock | 2 +- gemfiles/jruby_9.2_rails5_postgres_sidekiq.gemfile.lock | 2 +- gemfiles/jruby_9.2_rails5_semantic_logger.gemfile.lock | 2 +- gemfiles/jruby_9.2_rails61_mysql2.gemfile.lock | 2 +- gemfiles/jruby_9.2_rails61_postgres.gemfile.lock | 2 +- gemfiles/jruby_9.2_rails61_postgres_redis.gemfile.lock | 2 +- gemfiles/jruby_9.2_rails61_postgres_sidekiq.gemfile.lock | 2 +- gemfiles/jruby_9.2_rails61_semantic_logger.gemfile.lock | 2 +- gemfiles/jruby_9.2_rails6_mysql2.gemfile.lock | 2 +- gemfiles/jruby_9.2_rails6_postgres.gemfile.lock | 2 +- gemfiles/jruby_9.2_rails6_postgres_redis.gemfile.lock | 2 +- .../jruby_9.2_rails6_postgres_redis_activesupport.gemfile.lock | 2 +- gemfiles/jruby_9.2_rails6_postgres_sidekiq.gemfile.lock | 2 +- gemfiles/jruby_9.2_rails6_semantic_logger.gemfile.lock | 2 +- gemfiles/jruby_9.2_redis_3.gemfile.lock | 2 +- gemfiles/jruby_9.2_redis_4.gemfile.lock | 2 +- gemfiles/jruby_9.2_redis_5.gemfile.lock | 2 +- gemfiles/jruby_9.2_relational_db.gemfile.lock | 2 +- gemfiles/jruby_9.2_resque2_redis3.gemfile.lock | 2 +- gemfiles/jruby_9.2_resque2_redis4.gemfile.lock | 2 +- gemfiles/jruby_9.2_sinatra_2.gemfile.lock | 2 +- gemfiles/jruby_9.2_stripe_10.gemfile.lock | 2 +- gemfiles/jruby_9.2_stripe_11.gemfile.lock | 2 +- gemfiles/jruby_9.2_stripe_12.gemfile.lock | 2 +- gemfiles/jruby_9.2_stripe_7.gemfile.lock | 2 +- gemfiles/jruby_9.2_stripe_8.gemfile.lock | 2 +- gemfiles/jruby_9.2_stripe_9.gemfile.lock | 2 +- gemfiles/jruby_9.2_stripe_latest.gemfile.lock | 2 +- gemfiles/jruby_9.2_stripe_min.gemfile.lock | 2 +- gemfiles/jruby_9.3_activesupport.gemfile.lock | 2 +- gemfiles/jruby_9.3_aws.gemfile.lock | 2 +- gemfiles/jruby_9.3_contrib.gemfile.lock | 2 +- gemfiles/jruby_9.3_contrib_old.gemfile.lock | 2 +- gemfiles/jruby_9.3_core_old.gemfile.lock | 2 +- gemfiles/jruby_9.3_elasticsearch_7.gemfile.lock | 2 +- gemfiles/jruby_9.3_elasticsearch_8.gemfile.lock | 2 +- gemfiles/jruby_9.3_elasticsearch_latest.gemfile.lock | 2 +- gemfiles/jruby_9.3_graphql_1.13.gemfile.lock | 2 +- gemfiles/jruby_9.3_graphql_2.0.gemfile.lock | 2 +- gemfiles/jruby_9.3_http.gemfile.lock | 2 +- gemfiles/jruby_9.3_opensearch_2.gemfile.lock | 2 +- gemfiles/jruby_9.3_opensearch_3.gemfile.lock | 2 +- gemfiles/jruby_9.3_opensearch_latest.gemfile.lock | 2 +- gemfiles/jruby_9.3_rack_1.gemfile.lock | 2 +- gemfiles/jruby_9.3_rack_2.gemfile.lock | 2 +- gemfiles/jruby_9.3_rack_3.gemfile.lock | 2 +- gemfiles/jruby_9.3_rack_latest.gemfile.lock | 2 +- gemfiles/jruby_9.3_rails5_mysql2.gemfile.lock | 2 +- gemfiles/jruby_9.3_rails5_postgres.gemfile.lock | 2 +- gemfiles/jruby_9.3_rails5_postgres_redis.gemfile.lock | 2 +- .../jruby_9.3_rails5_postgres_redis_activesupport.gemfile.lock | 2 +- gemfiles/jruby_9.3_rails5_postgres_sidekiq.gemfile.lock | 2 +- gemfiles/jruby_9.3_rails5_semantic_logger.gemfile.lock | 2 +- gemfiles/jruby_9.3_rails61_mysql2.gemfile.lock | 2 +- gemfiles/jruby_9.3_rails61_postgres.gemfile.lock | 2 +- gemfiles/jruby_9.3_rails61_postgres_redis.gemfile.lock | 2 +- gemfiles/jruby_9.3_rails61_postgres_sidekiq.gemfile.lock | 2 +- gemfiles/jruby_9.3_rails61_semantic_logger.gemfile.lock | 2 +- gemfiles/jruby_9.3_rails6_mysql2.gemfile.lock | 2 +- gemfiles/jruby_9.3_rails6_postgres.gemfile.lock | 2 +- gemfiles/jruby_9.3_rails6_postgres_redis.gemfile.lock | 2 +- .../jruby_9.3_rails6_postgres_redis_activesupport.gemfile.lock | 2 +- gemfiles/jruby_9.3_rails6_postgres_sidekiq.gemfile.lock | 2 +- gemfiles/jruby_9.3_rails6_semantic_logger.gemfile.lock | 2 +- gemfiles/jruby_9.3_redis_3.gemfile.lock | 2 +- gemfiles/jruby_9.3_redis_4.gemfile.lock | 2 +- gemfiles/jruby_9.3_redis_5.gemfile.lock | 2 +- gemfiles/jruby_9.3_relational_db.gemfile.lock | 2 +- gemfiles/jruby_9.3_resque2_redis3.gemfile.lock | 2 +- gemfiles/jruby_9.3_resque2_redis4.gemfile.lock | 2 +- gemfiles/jruby_9.3_sinatra_2.gemfile.lock | 2 +- gemfiles/jruby_9.3_sinatra_3.gemfile.lock | 2 +- gemfiles/jruby_9.3_stripe_10.gemfile.lock | 2 +- gemfiles/jruby_9.3_stripe_11.gemfile.lock | 2 +- gemfiles/jruby_9.3_stripe_12.gemfile.lock | 2 +- gemfiles/jruby_9.3_stripe_7.gemfile.lock | 2 +- gemfiles/jruby_9.3_stripe_8.gemfile.lock | 2 +- gemfiles/jruby_9.3_stripe_9.gemfile.lock | 2 +- gemfiles/jruby_9.3_stripe_latest.gemfile.lock | 2 +- gemfiles/jruby_9.3_stripe_min.gemfile.lock | 2 +- gemfiles/jruby_9.4_activesupport.gemfile.lock | 2 +- gemfiles/jruby_9.4_aws.gemfile.lock | 2 +- gemfiles/jruby_9.4_contrib.gemfile.lock | 2 +- gemfiles/jruby_9.4_contrib_old.gemfile.lock | 2 +- gemfiles/jruby_9.4_core_old.gemfile.lock | 2 +- gemfiles/jruby_9.4_elasticsearch_7.gemfile.lock | 2 +- gemfiles/jruby_9.4_elasticsearch_8.gemfile.lock | 2 +- gemfiles/jruby_9.4_elasticsearch_latest.gemfile.lock | 2 +- gemfiles/jruby_9.4_graphql_1.13.gemfile.lock | 2 +- gemfiles/jruby_9.4_graphql_2.0.gemfile.lock | 2 +- gemfiles/jruby_9.4_graphql_2.1.gemfile.lock | 2 +- gemfiles/jruby_9.4_graphql_2.2.gemfile.lock | 2 +- gemfiles/jruby_9.4_graphql_2.3.gemfile.lock | 2 +- gemfiles/jruby_9.4_http.gemfile.lock | 2 +- gemfiles/jruby_9.4_opensearch_2.gemfile.lock | 2 +- gemfiles/jruby_9.4_opensearch_3.gemfile.lock | 2 +- gemfiles/jruby_9.4_opensearch_latest.gemfile.lock | 2 +- gemfiles/jruby_9.4_rack_1.gemfile.lock | 2 +- gemfiles/jruby_9.4_rack_2.gemfile.lock | 2 +- gemfiles/jruby_9.4_rack_3.gemfile.lock | 2 +- gemfiles/jruby_9.4_rack_latest.gemfile.lock | 2 +- gemfiles/jruby_9.4_rails61_mysql2.gemfile.lock | 2 +- gemfiles/jruby_9.4_rails61_postgres.gemfile.lock | 2 +- gemfiles/jruby_9.4_rails61_postgres_redis.gemfile.lock | 2 +- gemfiles/jruby_9.4_rails61_postgres_sidekiq.gemfile.lock | 2 +- gemfiles/jruby_9.4_rails61_semantic_logger.gemfile.lock | 2 +- gemfiles/jruby_9.4_redis_3.gemfile.lock | 2 +- gemfiles/jruby_9.4_redis_4.gemfile.lock | 2 +- gemfiles/jruby_9.4_redis_5.gemfile.lock | 2 +- gemfiles/jruby_9.4_relational_db.gemfile.lock | 2 +- gemfiles/jruby_9.4_resque2_redis3.gemfile.lock | 2 +- gemfiles/jruby_9.4_resque2_redis4.gemfile.lock | 2 +- gemfiles/jruby_9.4_sinatra_2.gemfile.lock | 2 +- gemfiles/jruby_9.4_sinatra_3.gemfile.lock | 2 +- gemfiles/jruby_9.4_sinatra_4.gemfile.lock | 2 +- gemfiles/jruby_9.4_stripe_10.gemfile.lock | 2 +- gemfiles/jruby_9.4_stripe_11.gemfile.lock | 2 +- gemfiles/jruby_9.4_stripe_12.gemfile.lock | 2 +- gemfiles/jruby_9.4_stripe_7.gemfile.lock | 2 +- gemfiles/jruby_9.4_stripe_8.gemfile.lock | 2 +- gemfiles/jruby_9.4_stripe_9.gemfile.lock | 2 +- gemfiles/jruby_9.4_stripe_latest.gemfile.lock | 2 +- gemfiles/jruby_9.4_stripe_min.gemfile.lock | 2 +- gemfiles/ruby_2.5_activesupport.gemfile.lock | 2 +- gemfiles/ruby_2.5_aws.gemfile.lock | 2 +- gemfiles/ruby_2.5_contrib.gemfile.lock | 2 +- gemfiles/ruby_2.5_contrib_old.gemfile.lock | 2 +- gemfiles/ruby_2.5_core_old.gemfile.lock | 2 +- gemfiles/ruby_2.5_elasticsearch_7.gemfile.lock | 2 +- gemfiles/ruby_2.5_elasticsearch_8.gemfile.lock | 2 +- gemfiles/ruby_2.5_elasticsearch_latest.gemfile.lock | 2 +- gemfiles/ruby_2.5_graphql_2.0.gemfile.lock | 2 +- gemfiles/ruby_2.5_hanami_1.gemfile.lock | 2 +- gemfiles/ruby_2.5_http.gemfile.lock | 2 +- gemfiles/ruby_2.5_opensearch_2.gemfile.lock | 2 +- gemfiles/ruby_2.5_opensearch_3.gemfile.lock | 2 +- gemfiles/ruby_2.5_opensearch_latest.gemfile.lock | 2 +- gemfiles/ruby_2.5_rack_1.gemfile.lock | 2 +- gemfiles/ruby_2.5_rack_2.gemfile.lock | 2 +- gemfiles/ruby_2.5_rack_3.gemfile.lock | 2 +- gemfiles/ruby_2.5_rack_latest.gemfile.lock | 2 +- gemfiles/ruby_2.5_rails4_mysql2.gemfile.lock | 2 +- gemfiles/ruby_2.5_rails4_postgres.gemfile.lock | 2 +- gemfiles/ruby_2.5_rails4_postgres_redis.gemfile.lock | 2 +- gemfiles/ruby_2.5_rails4_postgres_sidekiq.gemfile.lock | 2 +- gemfiles/ruby_2.5_rails4_semantic_logger.gemfile.lock | 2 +- gemfiles/ruby_2.5_rails5_mysql2.gemfile.lock | 2 +- gemfiles/ruby_2.5_rails5_postgres.gemfile.lock | 2 +- gemfiles/ruby_2.5_rails5_postgres_redis.gemfile.lock | 2 +- .../ruby_2.5_rails5_postgres_redis_activesupport.gemfile.lock | 2 +- gemfiles/ruby_2.5_rails5_postgres_sidekiq.gemfile.lock | 2 +- gemfiles/ruby_2.5_rails5_semantic_logger.gemfile.lock | 2 +- gemfiles/ruby_2.5_rails61_mysql2.gemfile.lock | 2 +- gemfiles/ruby_2.5_rails61_postgres.gemfile.lock | 2 +- gemfiles/ruby_2.5_rails61_postgres_redis.gemfile.lock | 2 +- gemfiles/ruby_2.5_rails61_postgres_sidekiq.gemfile.lock | 2 +- gemfiles/ruby_2.5_rails61_semantic_logger.gemfile.lock | 2 +- gemfiles/ruby_2.5_rails6_mysql2.gemfile.lock | 2 +- gemfiles/ruby_2.5_rails6_postgres.gemfile.lock | 2 +- gemfiles/ruby_2.5_rails6_postgres_redis.gemfile.lock | 2 +- .../ruby_2.5_rails6_postgres_redis_activesupport.gemfile.lock | 2 +- gemfiles/ruby_2.5_rails6_postgres_sidekiq.gemfile.lock | 2 +- gemfiles/ruby_2.5_rails6_semantic_logger.gemfile.lock | 2 +- gemfiles/ruby_2.5_redis_3.gemfile.lock | 2 +- gemfiles/ruby_2.5_redis_4.gemfile.lock | 2 +- gemfiles/ruby_2.5_redis_5.gemfile.lock | 2 +- gemfiles/ruby_2.5_relational_db.gemfile.lock | 2 +- gemfiles/ruby_2.5_resque2_redis3.gemfile.lock | 2 +- gemfiles/ruby_2.5_resque2_redis4.gemfile.lock | 2 +- gemfiles/ruby_2.5_sinatra_2.gemfile.lock | 2 +- gemfiles/ruby_2.5_stripe_10.gemfile.lock | 2 +- gemfiles/ruby_2.5_stripe_11.gemfile.lock | 2 +- gemfiles/ruby_2.5_stripe_12.gemfile.lock | 2 +- gemfiles/ruby_2.5_stripe_7.gemfile.lock | 2 +- gemfiles/ruby_2.5_stripe_8.gemfile.lock | 2 +- gemfiles/ruby_2.5_stripe_9.gemfile.lock | 2 +- gemfiles/ruby_2.5_stripe_latest.gemfile.lock | 2 +- gemfiles/ruby_2.5_stripe_min.gemfile.lock | 2 +- gemfiles/ruby_2.6_activesupport.gemfile.lock | 2 +- gemfiles/ruby_2.6_aws.gemfile.lock | 2 +- gemfiles/ruby_2.6_contrib.gemfile.lock | 2 +- gemfiles/ruby_2.6_contrib_old.gemfile.lock | 2 +- gemfiles/ruby_2.6_core_old.gemfile.lock | 2 +- gemfiles/ruby_2.6_elasticsearch_7.gemfile.lock | 2 +- gemfiles/ruby_2.6_elasticsearch_8.gemfile.lock | 2 +- gemfiles/ruby_2.6_elasticsearch_latest.gemfile.lock | 2 +- gemfiles/ruby_2.6_graphql_1.13.gemfile.lock | 2 +- gemfiles/ruby_2.6_graphql_2.0.gemfile.lock | 2 +- gemfiles/ruby_2.6_hanami_1.gemfile.lock | 2 +- gemfiles/ruby_2.6_http.gemfile.lock | 2 +- gemfiles/ruby_2.6_opensearch_2.gemfile.lock | 2 +- gemfiles/ruby_2.6_opensearch_3.gemfile.lock | 2 +- gemfiles/ruby_2.6_opensearch_latest.gemfile.lock | 2 +- gemfiles/ruby_2.6_opentelemetry.gemfile.lock | 2 +- gemfiles/ruby_2.6_opentelemetry_otlp.gemfile.lock | 2 +- gemfiles/ruby_2.6_rack_1.gemfile.lock | 2 +- gemfiles/ruby_2.6_rack_2.gemfile.lock | 2 +- gemfiles/ruby_2.6_rack_3.gemfile.lock | 2 +- gemfiles/ruby_2.6_rack_latest.gemfile.lock | 2 +- gemfiles/ruby_2.6_rails5_mysql2.gemfile.lock | 2 +- gemfiles/ruby_2.6_rails5_postgres.gemfile.lock | 2 +- gemfiles/ruby_2.6_rails5_postgres_redis.gemfile.lock | 2 +- .../ruby_2.6_rails5_postgres_redis_activesupport.gemfile.lock | 2 +- gemfiles/ruby_2.6_rails5_postgres_sidekiq.gemfile.lock | 2 +- gemfiles/ruby_2.6_rails5_semantic_logger.gemfile.lock | 2 +- gemfiles/ruby_2.6_rails61_mysql2.gemfile.lock | 2 +- gemfiles/ruby_2.6_rails61_postgres.gemfile.lock | 2 +- gemfiles/ruby_2.6_rails61_postgres_redis.gemfile.lock | 2 +- gemfiles/ruby_2.6_rails61_postgres_sidekiq.gemfile.lock | 2 +- gemfiles/ruby_2.6_rails61_semantic_logger.gemfile.lock | 2 +- gemfiles/ruby_2.6_rails6_mysql2.gemfile.lock | 2 +- gemfiles/ruby_2.6_rails6_postgres.gemfile.lock | 2 +- gemfiles/ruby_2.6_rails6_postgres_redis.gemfile.lock | 2 +- .../ruby_2.6_rails6_postgres_redis_activesupport.gemfile.lock | 2 +- gemfiles/ruby_2.6_rails6_postgres_sidekiq.gemfile.lock | 2 +- gemfiles/ruby_2.6_rails6_semantic_logger.gemfile.lock | 2 +- gemfiles/ruby_2.6_redis_3.gemfile.lock | 2 +- gemfiles/ruby_2.6_redis_4.gemfile.lock | 2 +- gemfiles/ruby_2.6_redis_5.gemfile.lock | 2 +- gemfiles/ruby_2.6_relational_db.gemfile.lock | 2 +- gemfiles/ruby_2.6_resque2_redis3.gemfile.lock | 2 +- gemfiles/ruby_2.6_resque2_redis4.gemfile.lock | 2 +- gemfiles/ruby_2.6_sinatra_2.gemfile.lock | 2 +- gemfiles/ruby_2.6_sinatra_3.gemfile.lock | 2 +- gemfiles/ruby_2.6_stripe_10.gemfile.lock | 2 +- gemfiles/ruby_2.6_stripe_11.gemfile.lock | 2 +- gemfiles/ruby_2.6_stripe_12.gemfile.lock | 2 +- gemfiles/ruby_2.6_stripe_7.gemfile.lock | 2 +- gemfiles/ruby_2.6_stripe_8.gemfile.lock | 2 +- gemfiles/ruby_2.6_stripe_9.gemfile.lock | 2 +- gemfiles/ruby_2.6_stripe_latest.gemfile.lock | 2 +- gemfiles/ruby_2.6_stripe_min.gemfile.lock | 2 +- gemfiles/ruby_2.7_activesupport.gemfile.lock | 2 +- gemfiles/ruby_2.7_aws.gemfile.lock | 2 +- gemfiles/ruby_2.7_contrib.gemfile.lock | 2 +- gemfiles/ruby_2.7_contrib_old.gemfile.lock | 2 +- gemfiles/ruby_2.7_core_old.gemfile.lock | 2 +- gemfiles/ruby_2.7_elasticsearch_7.gemfile.lock | 2 +- gemfiles/ruby_2.7_elasticsearch_8.gemfile.lock | 2 +- gemfiles/ruby_2.7_elasticsearch_latest.gemfile.lock | 2 +- gemfiles/ruby_2.7_graphql_1.13.gemfile.lock | 2 +- gemfiles/ruby_2.7_graphql_2.0.gemfile.lock | 2 +- gemfiles/ruby_2.7_graphql_2.1.gemfile.lock | 2 +- gemfiles/ruby_2.7_graphql_2.2.gemfile.lock | 2 +- gemfiles/ruby_2.7_graphql_2.3.gemfile.lock | 2 +- gemfiles/ruby_2.7_hanami_1.gemfile.lock | 2 +- gemfiles/ruby_2.7_http.gemfile.lock | 2 +- gemfiles/ruby_2.7_opensearch_2.gemfile.lock | 2 +- gemfiles/ruby_2.7_opensearch_3.gemfile.lock | 2 +- gemfiles/ruby_2.7_opensearch_latest.gemfile.lock | 2 +- gemfiles/ruby_2.7_opentelemetry.gemfile.lock | 2 +- gemfiles/ruby_2.7_opentelemetry_otlp.gemfile.lock | 2 +- gemfiles/ruby_2.7_rack_1.gemfile.lock | 2 +- gemfiles/ruby_2.7_rack_2.gemfile.lock | 2 +- gemfiles/ruby_2.7_rack_3.gemfile.lock | 2 +- gemfiles/ruby_2.7_rack_latest.gemfile.lock | 2 +- gemfiles/ruby_2.7_rails5_mysql2.gemfile.lock | 2 +- gemfiles/ruby_2.7_rails5_postgres.gemfile.lock | 2 +- gemfiles/ruby_2.7_rails5_postgres_redis.gemfile.lock | 2 +- .../ruby_2.7_rails5_postgres_redis_activesupport.gemfile.lock | 2 +- gemfiles/ruby_2.7_rails5_postgres_sidekiq.gemfile.lock | 2 +- gemfiles/ruby_2.7_rails5_semantic_logger.gemfile.lock | 2 +- gemfiles/ruby_2.7_rails61_mysql2.gemfile.lock | 2 +- gemfiles/ruby_2.7_rails61_postgres.gemfile.lock | 2 +- gemfiles/ruby_2.7_rails61_postgres_redis.gemfile.lock | 2 +- gemfiles/ruby_2.7_rails61_postgres_sidekiq.gemfile.lock | 2 +- gemfiles/ruby_2.7_rails61_semantic_logger.gemfile.lock | 2 +- gemfiles/ruby_2.7_rails6_mysql2.gemfile.lock | 2 +- gemfiles/ruby_2.7_rails6_postgres.gemfile.lock | 2 +- gemfiles/ruby_2.7_rails6_postgres_redis.gemfile.lock | 2 +- .../ruby_2.7_rails6_postgres_redis_activesupport.gemfile.lock | 2 +- gemfiles/ruby_2.7_rails6_postgres_sidekiq.gemfile.lock | 2 +- gemfiles/ruby_2.7_rails6_semantic_logger.gemfile.lock | 2 +- gemfiles/ruby_2.7_redis_3.gemfile.lock | 2 +- gemfiles/ruby_2.7_redis_4.gemfile.lock | 2 +- gemfiles/ruby_2.7_redis_5.gemfile.lock | 2 +- gemfiles/ruby_2.7_relational_db.gemfile.lock | 2 +- gemfiles/ruby_2.7_resque2_redis3.gemfile.lock | 2 +- gemfiles/ruby_2.7_resque2_redis4.gemfile.lock | 2 +- gemfiles/ruby_2.7_sinatra_2.gemfile.lock | 2 +- gemfiles/ruby_2.7_sinatra_3.gemfile.lock | 2 +- gemfiles/ruby_2.7_stripe_10.gemfile.lock | 2 +- gemfiles/ruby_2.7_stripe_11.gemfile.lock | 2 +- gemfiles/ruby_2.7_stripe_12.gemfile.lock | 2 +- gemfiles/ruby_2.7_stripe_7.gemfile.lock | 2 +- gemfiles/ruby_2.7_stripe_8.gemfile.lock | 2 +- gemfiles/ruby_2.7_stripe_9.gemfile.lock | 2 +- gemfiles/ruby_2.7_stripe_latest.gemfile.lock | 2 +- gemfiles/ruby_2.7_stripe_min.gemfile.lock | 2 +- gemfiles/ruby_3.0_activesupport.gemfile.lock | 2 +- gemfiles/ruby_3.0_aws.gemfile.lock | 2 +- gemfiles/ruby_3.0_contrib.gemfile.lock | 2 +- gemfiles/ruby_3.0_contrib_old.gemfile.lock | 2 +- gemfiles/ruby_3.0_core_old.gemfile.lock | 2 +- gemfiles/ruby_3.0_elasticsearch_7.gemfile.lock | 2 +- gemfiles/ruby_3.0_elasticsearch_8.gemfile.lock | 2 +- gemfiles/ruby_3.0_elasticsearch_latest.gemfile.lock | 2 +- gemfiles/ruby_3.0_graphql_1.13.gemfile.lock | 2 +- gemfiles/ruby_3.0_graphql_2.0.gemfile.lock | 2 +- gemfiles/ruby_3.0_graphql_2.1.gemfile.lock | 2 +- gemfiles/ruby_3.0_graphql_2.2.gemfile.lock | 2 +- gemfiles/ruby_3.0_graphql_2.3.gemfile.lock | 2 +- gemfiles/ruby_3.0_http.gemfile.lock | 2 +- gemfiles/ruby_3.0_opensearch_2.gemfile.lock | 2 +- gemfiles/ruby_3.0_opensearch_3.gemfile.lock | 2 +- gemfiles/ruby_3.0_opensearch_latest.gemfile.lock | 2 +- gemfiles/ruby_3.0_opentelemetry.gemfile.lock | 2 +- gemfiles/ruby_3.0_opentelemetry_otlp.gemfile.lock | 2 +- gemfiles/ruby_3.0_rack_1.gemfile.lock | 2 +- gemfiles/ruby_3.0_rack_2.gemfile.lock | 2 +- gemfiles/ruby_3.0_rack_3.gemfile.lock | 2 +- gemfiles/ruby_3.0_rack_latest.gemfile.lock | 2 +- gemfiles/ruby_3.0_rails61_mysql2.gemfile.lock | 2 +- gemfiles/ruby_3.0_rails61_postgres.gemfile.lock | 2 +- gemfiles/ruby_3.0_rails61_postgres_redis.gemfile.lock | 2 +- gemfiles/ruby_3.0_rails61_postgres_sidekiq.gemfile.lock | 2 +- gemfiles/ruby_3.0_rails61_semantic_logger.gemfile.lock | 2 +- gemfiles/ruby_3.0_rails61_trilogy.gemfile.lock | 2 +- gemfiles/ruby_3.0_rails7.gemfile.lock | 2 +- gemfiles/ruby_3.0_rails71.gemfile.lock | 2 +- gemfiles/ruby_3.0_redis_3.gemfile.lock | 2 +- gemfiles/ruby_3.0_redis_4.gemfile.lock | 2 +- gemfiles/ruby_3.0_redis_5.gemfile.lock | 2 +- gemfiles/ruby_3.0_relational_db.gemfile.lock | 2 +- gemfiles/ruby_3.0_resque2_redis3.gemfile.lock | 2 +- gemfiles/ruby_3.0_resque2_redis4.gemfile.lock | 2 +- gemfiles/ruby_3.0_sinatra_2.gemfile.lock | 2 +- gemfiles/ruby_3.0_sinatra_3.gemfile.lock | 2 +- gemfiles/ruby_3.0_sinatra_4.gemfile.lock | 2 +- gemfiles/ruby_3.0_stripe_10.gemfile.lock | 2 +- gemfiles/ruby_3.0_stripe_11.gemfile.lock | 2 +- gemfiles/ruby_3.0_stripe_12.gemfile.lock | 2 +- gemfiles/ruby_3.0_stripe_7.gemfile.lock | 2 +- gemfiles/ruby_3.0_stripe_8.gemfile.lock | 2 +- gemfiles/ruby_3.0_stripe_9.gemfile.lock | 2 +- gemfiles/ruby_3.0_stripe_latest.gemfile.lock | 2 +- gemfiles/ruby_3.0_stripe_min.gemfile.lock | 2 +- gemfiles/ruby_3.1_activesupport.gemfile.lock | 2 +- gemfiles/ruby_3.1_aws.gemfile.lock | 2 +- gemfiles/ruby_3.1_contrib.gemfile.lock | 2 +- gemfiles/ruby_3.1_contrib_old.gemfile.lock | 2 +- gemfiles/ruby_3.1_core_old.gemfile.lock | 2 +- gemfiles/ruby_3.1_elasticsearch_7.gemfile.lock | 2 +- gemfiles/ruby_3.1_elasticsearch_8.gemfile.lock | 2 +- gemfiles/ruby_3.1_elasticsearch_latest.gemfile.lock | 2 +- gemfiles/ruby_3.1_graphql_1.13.gemfile.lock | 2 +- gemfiles/ruby_3.1_graphql_2.0.gemfile.lock | 2 +- gemfiles/ruby_3.1_graphql_2.1.gemfile.lock | 2 +- gemfiles/ruby_3.1_graphql_2.2.gemfile.lock | 2 +- gemfiles/ruby_3.1_graphql_2.3.gemfile.lock | 2 +- gemfiles/ruby_3.1_http.gemfile.lock | 2 +- gemfiles/ruby_3.1_opensearch_2.gemfile.lock | 2 +- gemfiles/ruby_3.1_opensearch_3.gemfile.lock | 2 +- gemfiles/ruby_3.1_opensearch_latest.gemfile.lock | 2 +- gemfiles/ruby_3.1_opentelemetry.gemfile.lock | 2 +- gemfiles/ruby_3.1_opentelemetry_otlp.gemfile.lock | 2 +- gemfiles/ruby_3.1_rack_1.gemfile.lock | 2 +- gemfiles/ruby_3.1_rack_2.gemfile.lock | 2 +- gemfiles/ruby_3.1_rack_3.gemfile.lock | 2 +- gemfiles/ruby_3.1_rack_latest.gemfile.lock | 2 +- gemfiles/ruby_3.1_rails61_mysql2.gemfile.lock | 2 +- gemfiles/ruby_3.1_rails61_postgres.gemfile.lock | 2 +- gemfiles/ruby_3.1_rails61_postgres_redis.gemfile.lock | 2 +- gemfiles/ruby_3.1_rails61_postgres_sidekiq.gemfile.lock | 2 +- gemfiles/ruby_3.1_rails61_semantic_logger.gemfile.lock | 2 +- gemfiles/ruby_3.1_rails61_trilogy.gemfile.lock | 2 +- gemfiles/ruby_3.1_rails7.gemfile.lock | 2 +- gemfiles/ruby_3.1_rails71.gemfile.lock | 2 +- gemfiles/ruby_3.1_redis_3.gemfile.lock | 2 +- gemfiles/ruby_3.1_redis_4.gemfile.lock | 2 +- gemfiles/ruby_3.1_redis_5.gemfile.lock | 2 +- gemfiles/ruby_3.1_relational_db.gemfile.lock | 2 +- gemfiles/ruby_3.1_resque2_redis3.gemfile.lock | 2 +- gemfiles/ruby_3.1_resque2_redis4.gemfile.lock | 2 +- gemfiles/ruby_3.1_sinatra_2.gemfile.lock | 2 +- gemfiles/ruby_3.1_sinatra_3.gemfile.lock | 2 +- gemfiles/ruby_3.1_sinatra_4.gemfile.lock | 2 +- gemfiles/ruby_3.1_stripe_10.gemfile.lock | 2 +- gemfiles/ruby_3.1_stripe_11.gemfile.lock | 2 +- gemfiles/ruby_3.1_stripe_12.gemfile.lock | 2 +- gemfiles/ruby_3.1_stripe_7.gemfile.lock | 2 +- gemfiles/ruby_3.1_stripe_8.gemfile.lock | 2 +- gemfiles/ruby_3.1_stripe_9.gemfile.lock | 2 +- gemfiles/ruby_3.1_stripe_latest.gemfile.lock | 2 +- gemfiles/ruby_3.1_stripe_min.gemfile.lock | 2 +- gemfiles/ruby_3.2_activesupport.gemfile.lock | 2 +- gemfiles/ruby_3.2_aws.gemfile.lock | 2 +- gemfiles/ruby_3.2_contrib.gemfile.lock | 2 +- gemfiles/ruby_3.2_contrib_old.gemfile.lock | 2 +- gemfiles/ruby_3.2_core_old.gemfile.lock | 2 +- gemfiles/ruby_3.2_elasticsearch_7.gemfile.lock | 2 +- gemfiles/ruby_3.2_elasticsearch_8.gemfile.lock | 2 +- gemfiles/ruby_3.2_elasticsearch_latest.gemfile.lock | 2 +- gemfiles/ruby_3.2_graphql_1.13.gemfile.lock | 2 +- gemfiles/ruby_3.2_graphql_2.0.gemfile.lock | 2 +- gemfiles/ruby_3.2_graphql_2.1.gemfile.lock | 2 +- gemfiles/ruby_3.2_graphql_2.2.gemfile.lock | 2 +- gemfiles/ruby_3.2_graphql_2.3.gemfile.lock | 2 +- gemfiles/ruby_3.2_http.gemfile.lock | 2 +- gemfiles/ruby_3.2_opensearch_2.gemfile.lock | 2 +- gemfiles/ruby_3.2_opensearch_3.gemfile.lock | 2 +- gemfiles/ruby_3.2_opensearch_latest.gemfile.lock | 2 +- gemfiles/ruby_3.2_opentelemetry.gemfile.lock | 2 +- gemfiles/ruby_3.2_opentelemetry_otlp.gemfile.lock | 2 +- gemfiles/ruby_3.2_rack_1.gemfile.lock | 2 +- gemfiles/ruby_3.2_rack_2.gemfile.lock | 2 +- gemfiles/ruby_3.2_rack_3.gemfile.lock | 2 +- gemfiles/ruby_3.2_rack_latest.gemfile.lock | 2 +- gemfiles/ruby_3.2_rails61_mysql2.gemfile.lock | 2 +- gemfiles/ruby_3.2_rails61_postgres.gemfile.lock | 2 +- gemfiles/ruby_3.2_rails61_postgres_redis.gemfile.lock | 2 +- gemfiles/ruby_3.2_rails61_postgres_sidekiq.gemfile.lock | 2 +- gemfiles/ruby_3.2_rails61_semantic_logger.gemfile.lock | 2 +- gemfiles/ruby_3.2_rails61_trilogy.gemfile.lock | 2 +- gemfiles/ruby_3.2_rails7.gemfile.lock | 2 +- gemfiles/ruby_3.2_rails71.gemfile.lock | 2 +- gemfiles/ruby_3.2_redis_3.gemfile.lock | 2 +- gemfiles/ruby_3.2_redis_4.gemfile.lock | 2 +- gemfiles/ruby_3.2_redis_5.gemfile.lock | 2 +- gemfiles/ruby_3.2_relational_db.gemfile.lock | 2 +- gemfiles/ruby_3.2_resque2_redis3.gemfile.lock | 2 +- gemfiles/ruby_3.2_resque2_redis4.gemfile.lock | 2 +- gemfiles/ruby_3.2_sinatra_2.gemfile.lock | 2 +- gemfiles/ruby_3.2_sinatra_3.gemfile.lock | 2 +- gemfiles/ruby_3.2_sinatra_4.gemfile.lock | 2 +- gemfiles/ruby_3.2_stripe_10.gemfile.lock | 2 +- gemfiles/ruby_3.2_stripe_11.gemfile.lock | 2 +- gemfiles/ruby_3.2_stripe_12.gemfile.lock | 2 +- gemfiles/ruby_3.2_stripe_7.gemfile.lock | 2 +- gemfiles/ruby_3.2_stripe_8.gemfile.lock | 2 +- gemfiles/ruby_3.2_stripe_9.gemfile.lock | 2 +- gemfiles/ruby_3.2_stripe_latest.gemfile.lock | 2 +- gemfiles/ruby_3.2_stripe_min.gemfile.lock | 2 +- gemfiles/ruby_3.3_activesupport.gemfile.lock | 2 +- gemfiles/ruby_3.3_aws.gemfile.lock | 2 +- gemfiles/ruby_3.3_contrib.gemfile.lock | 2 +- gemfiles/ruby_3.3_contrib_old.gemfile.lock | 2 +- gemfiles/ruby_3.3_core_old.gemfile.lock | 2 +- gemfiles/ruby_3.3_elasticsearch_7.gemfile.lock | 2 +- gemfiles/ruby_3.3_elasticsearch_8.gemfile.lock | 2 +- gemfiles/ruby_3.3_elasticsearch_latest.gemfile.lock | 2 +- gemfiles/ruby_3.3_graphql_1.13.gemfile.lock | 2 +- gemfiles/ruby_3.3_graphql_2.0.gemfile.lock | 2 +- gemfiles/ruby_3.3_graphql_2.1.gemfile.lock | 2 +- gemfiles/ruby_3.3_graphql_2.2.gemfile.lock | 2 +- gemfiles/ruby_3.3_graphql_2.3.gemfile.lock | 2 +- gemfiles/ruby_3.3_http.gemfile.lock | 2 +- gemfiles/ruby_3.3_opensearch_2.gemfile.lock | 2 +- gemfiles/ruby_3.3_opensearch_3.gemfile.lock | 2 +- gemfiles/ruby_3.3_opensearch_latest.gemfile.lock | 2 +- gemfiles/ruby_3.3_opentelemetry.gemfile.lock | 2 +- gemfiles/ruby_3.3_opentelemetry_otlp.gemfile.lock | 2 +- gemfiles/ruby_3.3_rack_2.gemfile.lock | 2 +- gemfiles/ruby_3.3_rack_3.gemfile.lock | 2 +- gemfiles/ruby_3.3_rack_latest.gemfile.lock | 2 +- gemfiles/ruby_3.3_rails61_mysql2.gemfile.lock | 2 +- gemfiles/ruby_3.3_rails61_postgres.gemfile.lock | 2 +- gemfiles/ruby_3.3_rails61_postgres_redis.gemfile.lock | 2 +- gemfiles/ruby_3.3_rails61_postgres_sidekiq.gemfile.lock | 2 +- gemfiles/ruby_3.3_rails61_semantic_logger.gemfile.lock | 2 +- gemfiles/ruby_3.3_rails61_trilogy.gemfile.lock | 2 +- gemfiles/ruby_3.3_rails7.gemfile.lock | 2 +- gemfiles/ruby_3.3_rails71.gemfile.lock | 2 +- gemfiles/ruby_3.3_redis_3.gemfile.lock | 2 +- gemfiles/ruby_3.3_redis_4.gemfile.lock | 2 +- gemfiles/ruby_3.3_redis_5.gemfile.lock | 2 +- gemfiles/ruby_3.3_relational_db.gemfile.lock | 2 +- gemfiles/ruby_3.3_resque2_redis3.gemfile.lock | 2 +- gemfiles/ruby_3.3_resque2_redis4.gemfile.lock | 2 +- gemfiles/ruby_3.3_sinatra_2.gemfile.lock | 2 +- gemfiles/ruby_3.3_sinatra_3.gemfile.lock | 2 +- gemfiles/ruby_3.3_sinatra_4.gemfile.lock | 2 +- gemfiles/ruby_3.3_stripe_10.gemfile.lock | 2 +- gemfiles/ruby_3.3_stripe_11.gemfile.lock | 2 +- gemfiles/ruby_3.3_stripe_12.gemfile.lock | 2 +- gemfiles/ruby_3.3_stripe_7.gemfile.lock | 2 +- gemfiles/ruby_3.3_stripe_8.gemfile.lock | 2 +- gemfiles/ruby_3.3_stripe_9.gemfile.lock | 2 +- gemfiles/ruby_3.3_stripe_latest.gemfile.lock | 2 +- gemfiles/ruby_3.3_stripe_min.gemfile.lock | 2 +- gemfiles/ruby_3.4_activesupport.gemfile.lock | 2 +- gemfiles/ruby_3.4_aws.gemfile.lock | 2 +- gemfiles/ruby_3.4_contrib.gemfile.lock | 2 +- gemfiles/ruby_3.4_contrib_old.gemfile.lock | 2 +- gemfiles/ruby_3.4_core_old.gemfile.lock | 2 +- gemfiles/ruby_3.4_elasticsearch_7.gemfile.lock | 2 +- gemfiles/ruby_3.4_elasticsearch_8.gemfile.lock | 2 +- gemfiles/ruby_3.4_elasticsearch_latest.gemfile.lock | 2 +- gemfiles/ruby_3.4_graphql_1.13.gemfile.lock | 2 +- gemfiles/ruby_3.4_graphql_2.0.gemfile.lock | 2 +- gemfiles/ruby_3.4_graphql_2.1.gemfile.lock | 2 +- gemfiles/ruby_3.4_graphql_2.2.gemfile.lock | 2 +- gemfiles/ruby_3.4_graphql_2.3.gemfile.lock | 2 +- gemfiles/ruby_3.4_http.gemfile.lock | 2 +- gemfiles/ruby_3.4_opensearch_2.gemfile.lock | 2 +- gemfiles/ruby_3.4_opensearch_3.gemfile.lock | 2 +- gemfiles/ruby_3.4_opensearch_latest.gemfile.lock | 2 +- gemfiles/ruby_3.4_opentelemetry.gemfile.lock | 2 +- gemfiles/ruby_3.4_opentelemetry_otlp.gemfile.lock | 2 +- gemfiles/ruby_3.4_rack_2.gemfile.lock | 2 +- gemfiles/ruby_3.4_rack_3.gemfile.lock | 2 +- gemfiles/ruby_3.4_rack_latest.gemfile.lock | 2 +- gemfiles/ruby_3.4_rails61_mysql2.gemfile.lock | 2 +- gemfiles/ruby_3.4_rails61_postgres.gemfile.lock | 2 +- gemfiles/ruby_3.4_rails61_postgres_redis.gemfile.lock | 2 +- gemfiles/ruby_3.4_rails61_postgres_sidekiq.gemfile.lock | 2 +- gemfiles/ruby_3.4_rails61_semantic_logger.gemfile.lock | 2 +- gemfiles/ruby_3.4_rails61_trilogy.gemfile.lock | 2 +- gemfiles/ruby_3.4_rails7.gemfile.lock | 2 +- gemfiles/ruby_3.4_rails71.gemfile.lock | 2 +- gemfiles/ruby_3.4_redis_3.gemfile.lock | 2 +- gemfiles/ruby_3.4_redis_4.gemfile.lock | 2 +- gemfiles/ruby_3.4_redis_5.gemfile.lock | 2 +- gemfiles/ruby_3.4_relational_db.gemfile.lock | 2 +- gemfiles/ruby_3.4_resque2_redis3.gemfile.lock | 2 +- gemfiles/ruby_3.4_resque2_redis4.gemfile.lock | 2 +- gemfiles/ruby_3.4_sinatra_2.gemfile.lock | 2 +- gemfiles/ruby_3.4_sinatra_3.gemfile.lock | 2 +- gemfiles/ruby_3.4_sinatra_4.gemfile.lock | 2 +- gemfiles/ruby_3.4_stripe_10.gemfile.lock | 2 +- gemfiles/ruby_3.4_stripe_11.gemfile.lock | 2 +- gemfiles/ruby_3.4_stripe_12.gemfile.lock | 2 +- gemfiles/ruby_3.4_stripe_7.gemfile.lock | 2 +- gemfiles/ruby_3.4_stripe_8.gemfile.lock | 2 +- gemfiles/ruby_3.4_stripe_9.gemfile.lock | 2 +- gemfiles/ruby_3.4_stripe_latest.gemfile.lock | 2 +- gemfiles/ruby_3.4_stripe_min.gemfile.lock | 2 +- 547 files changed, 547 insertions(+), 547 deletions(-) diff --git a/gemfiles/jruby_9.2_activesupport.gemfile.lock b/gemfiles/jruby_9.2_activesupport.gemfile.lock index 29c2a20c8ae..9bf5e96f26a 100644 --- a/gemfiles/jruby_9.2_activesupport.gemfile.lock +++ b/gemfiles/jruby_9.2_activesupport.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.2_aws.gemfile.lock b/gemfiles/jruby_9.2_aws.gemfile.lock index 4810f768c1c..79f9e967a6d 100644 --- a/gemfiles/jruby_9.2_aws.gemfile.lock +++ b/gemfiles/jruby_9.2_aws.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.2_contrib.gemfile.lock b/gemfiles/jruby_9.2_contrib.gemfile.lock index 34da7e1f063..344707ccb8f 100644 --- a/gemfiles/jruby_9.2_contrib.gemfile.lock +++ b/gemfiles/jruby_9.2_contrib.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.2_contrib_old.gemfile.lock b/gemfiles/jruby_9.2_contrib_old.gemfile.lock index 01a99e3acdc..5a71982e439 100644 --- a/gemfiles/jruby_9.2_contrib_old.gemfile.lock +++ b/gemfiles/jruby_9.2_contrib_old.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.2_core_old.gemfile.lock b/gemfiles/jruby_9.2_core_old.gemfile.lock index 45774b88caa..c3a4f8b5b43 100644 --- a/gemfiles/jruby_9.2_core_old.gemfile.lock +++ b/gemfiles/jruby_9.2_core_old.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.2_elasticsearch_7.gemfile.lock b/gemfiles/jruby_9.2_elasticsearch_7.gemfile.lock index 0b6b8b61f6b..a17307ae52a 100644 --- a/gemfiles/jruby_9.2_elasticsearch_7.gemfile.lock +++ b/gemfiles/jruby_9.2_elasticsearch_7.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.2_elasticsearch_8.gemfile.lock b/gemfiles/jruby_9.2_elasticsearch_8.gemfile.lock index ab2dfb549c2..959f298db71 100644 --- a/gemfiles/jruby_9.2_elasticsearch_8.gemfile.lock +++ b/gemfiles/jruby_9.2_elasticsearch_8.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.2_elasticsearch_latest.gemfile.lock b/gemfiles/jruby_9.2_elasticsearch_latest.gemfile.lock index a2cae031c3d..67342aac216 100644 --- a/gemfiles/jruby_9.2_elasticsearch_latest.gemfile.lock +++ b/gemfiles/jruby_9.2_elasticsearch_latest.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.2_graphql_2.0.gemfile.lock b/gemfiles/jruby_9.2_graphql_2.0.gemfile.lock index 9453e1af151..155aecaf5f7 100644 --- a/gemfiles/jruby_9.2_graphql_2.0.gemfile.lock +++ b/gemfiles/jruby_9.2_graphql_2.0.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.2_http.gemfile.lock b/gemfiles/jruby_9.2_http.gemfile.lock index 341baa6340f..8080591517a 100644 --- a/gemfiles/jruby_9.2_http.gemfile.lock +++ b/gemfiles/jruby_9.2_http.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.2_opensearch_2.gemfile.lock b/gemfiles/jruby_9.2_opensearch_2.gemfile.lock index b352c7a3c8e..f8cf89731b8 100644 --- a/gemfiles/jruby_9.2_opensearch_2.gemfile.lock +++ b/gemfiles/jruby_9.2_opensearch_2.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.2_opensearch_3.gemfile.lock b/gemfiles/jruby_9.2_opensearch_3.gemfile.lock index be66df42c86..000200a3e97 100644 --- a/gemfiles/jruby_9.2_opensearch_3.gemfile.lock +++ b/gemfiles/jruby_9.2_opensearch_3.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.2_opensearch_latest.gemfile.lock b/gemfiles/jruby_9.2_opensearch_latest.gemfile.lock index 65721e1fe8c..38408593cf0 100644 --- a/gemfiles/jruby_9.2_opensearch_latest.gemfile.lock +++ b/gemfiles/jruby_9.2_opensearch_latest.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.2_rack_1.gemfile.lock b/gemfiles/jruby_9.2_rack_1.gemfile.lock index 06357176407..71c9b564830 100644 --- a/gemfiles/jruby_9.2_rack_1.gemfile.lock +++ b/gemfiles/jruby_9.2_rack_1.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.2_rack_2.gemfile.lock b/gemfiles/jruby_9.2_rack_2.gemfile.lock index 6f8059655e9..7ff144c29b9 100644 --- a/gemfiles/jruby_9.2_rack_2.gemfile.lock +++ b/gemfiles/jruby_9.2_rack_2.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.2_rack_3.gemfile.lock b/gemfiles/jruby_9.2_rack_3.gemfile.lock index 0ad0aec37a7..986947cfc0f 100644 --- a/gemfiles/jruby_9.2_rack_3.gemfile.lock +++ b/gemfiles/jruby_9.2_rack_3.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.2_rack_latest.gemfile.lock b/gemfiles/jruby_9.2_rack_latest.gemfile.lock index 620de970d4b..2f9dfbf89ad 100644 --- a/gemfiles/jruby_9.2_rack_latest.gemfile.lock +++ b/gemfiles/jruby_9.2_rack_latest.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.2_rails5_mysql2.gemfile.lock b/gemfiles/jruby_9.2_rails5_mysql2.gemfile.lock index 5e2481fc1f6..5e23224efdc 100644 --- a/gemfiles/jruby_9.2_rails5_mysql2.gemfile.lock +++ b/gemfiles/jruby_9.2_rails5_mysql2.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.2_rails5_postgres.gemfile.lock b/gemfiles/jruby_9.2_rails5_postgres.gemfile.lock index ddf49e42c1a..30eedeeb02a 100644 --- a/gemfiles/jruby_9.2_rails5_postgres.gemfile.lock +++ b/gemfiles/jruby_9.2_rails5_postgres.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.2_rails5_postgres_redis.gemfile.lock b/gemfiles/jruby_9.2_rails5_postgres_redis.gemfile.lock index badf491b0d9..76a359e0d39 100644 --- a/gemfiles/jruby_9.2_rails5_postgres_redis.gemfile.lock +++ b/gemfiles/jruby_9.2_rails5_postgres_redis.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.2_rails5_postgres_redis_activesupport.gemfile.lock b/gemfiles/jruby_9.2_rails5_postgres_redis_activesupport.gemfile.lock index 3f27da56309..a7420ab5818 100644 --- a/gemfiles/jruby_9.2_rails5_postgres_redis_activesupport.gemfile.lock +++ b/gemfiles/jruby_9.2_rails5_postgres_redis_activesupport.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.2_rails5_postgres_sidekiq.gemfile.lock b/gemfiles/jruby_9.2_rails5_postgres_sidekiq.gemfile.lock index f62fbd5e162..f208b42d33d 100644 --- a/gemfiles/jruby_9.2_rails5_postgres_sidekiq.gemfile.lock +++ b/gemfiles/jruby_9.2_rails5_postgres_sidekiq.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.2_rails5_semantic_logger.gemfile.lock b/gemfiles/jruby_9.2_rails5_semantic_logger.gemfile.lock index 117b628d002..da049562388 100644 --- a/gemfiles/jruby_9.2_rails5_semantic_logger.gemfile.lock +++ b/gemfiles/jruby_9.2_rails5_semantic_logger.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.2_rails61_mysql2.gemfile.lock b/gemfiles/jruby_9.2_rails61_mysql2.gemfile.lock index b75b3938cb4..b6bf5a22cba 100644 --- a/gemfiles/jruby_9.2_rails61_mysql2.gemfile.lock +++ b/gemfiles/jruby_9.2_rails61_mysql2.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.2_rails61_postgres.gemfile.lock b/gemfiles/jruby_9.2_rails61_postgres.gemfile.lock index da8029504a3..3198ced226f 100644 --- a/gemfiles/jruby_9.2_rails61_postgres.gemfile.lock +++ b/gemfiles/jruby_9.2_rails61_postgres.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.2_rails61_postgres_redis.gemfile.lock b/gemfiles/jruby_9.2_rails61_postgres_redis.gemfile.lock index 3f46ef92827..2c55cd1278c 100644 --- a/gemfiles/jruby_9.2_rails61_postgres_redis.gemfile.lock +++ b/gemfiles/jruby_9.2_rails61_postgres_redis.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.2_rails61_postgres_sidekiq.gemfile.lock b/gemfiles/jruby_9.2_rails61_postgres_sidekiq.gemfile.lock index 9ca50ef0fe2..492a6100a3b 100644 --- a/gemfiles/jruby_9.2_rails61_postgres_sidekiq.gemfile.lock +++ b/gemfiles/jruby_9.2_rails61_postgres_sidekiq.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.2_rails61_semantic_logger.gemfile.lock b/gemfiles/jruby_9.2_rails61_semantic_logger.gemfile.lock index c8433decf43..f76be545796 100644 --- a/gemfiles/jruby_9.2_rails61_semantic_logger.gemfile.lock +++ b/gemfiles/jruby_9.2_rails61_semantic_logger.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.2_rails6_mysql2.gemfile.lock b/gemfiles/jruby_9.2_rails6_mysql2.gemfile.lock index a21ad8d8b08..d7d37027e31 100644 --- a/gemfiles/jruby_9.2_rails6_mysql2.gemfile.lock +++ b/gemfiles/jruby_9.2_rails6_mysql2.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.2_rails6_postgres.gemfile.lock b/gemfiles/jruby_9.2_rails6_postgres.gemfile.lock index 9c9f60337fe..14cf486f2d4 100644 --- a/gemfiles/jruby_9.2_rails6_postgres.gemfile.lock +++ b/gemfiles/jruby_9.2_rails6_postgres.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.2_rails6_postgres_redis.gemfile.lock b/gemfiles/jruby_9.2_rails6_postgres_redis.gemfile.lock index aa64a84b97d..2ff6244cb52 100644 --- a/gemfiles/jruby_9.2_rails6_postgres_redis.gemfile.lock +++ b/gemfiles/jruby_9.2_rails6_postgres_redis.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.2_rails6_postgres_redis_activesupport.gemfile.lock b/gemfiles/jruby_9.2_rails6_postgres_redis_activesupport.gemfile.lock index e6619cf0273..003ce24953d 100644 --- a/gemfiles/jruby_9.2_rails6_postgres_redis_activesupport.gemfile.lock +++ b/gemfiles/jruby_9.2_rails6_postgres_redis_activesupport.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.2_rails6_postgres_sidekiq.gemfile.lock b/gemfiles/jruby_9.2_rails6_postgres_sidekiq.gemfile.lock index 6350f10166b..b3394a3dc50 100644 --- a/gemfiles/jruby_9.2_rails6_postgres_sidekiq.gemfile.lock +++ b/gemfiles/jruby_9.2_rails6_postgres_sidekiq.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.2_rails6_semantic_logger.gemfile.lock b/gemfiles/jruby_9.2_rails6_semantic_logger.gemfile.lock index 0deee945b90..8b23a06e260 100644 --- a/gemfiles/jruby_9.2_rails6_semantic_logger.gemfile.lock +++ b/gemfiles/jruby_9.2_rails6_semantic_logger.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.2_redis_3.gemfile.lock b/gemfiles/jruby_9.2_redis_3.gemfile.lock index fb71a7f1775..e1d6c6bdf31 100644 --- a/gemfiles/jruby_9.2_redis_3.gemfile.lock +++ b/gemfiles/jruby_9.2_redis_3.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.2_redis_4.gemfile.lock b/gemfiles/jruby_9.2_redis_4.gemfile.lock index b3f0f19afd8..0ada356b866 100644 --- a/gemfiles/jruby_9.2_redis_4.gemfile.lock +++ b/gemfiles/jruby_9.2_redis_4.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.2_redis_5.gemfile.lock b/gemfiles/jruby_9.2_redis_5.gemfile.lock index eb9e890c175..632e821be23 100644 --- a/gemfiles/jruby_9.2_redis_5.gemfile.lock +++ b/gemfiles/jruby_9.2_redis_5.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.2_relational_db.gemfile.lock b/gemfiles/jruby_9.2_relational_db.gemfile.lock index 939fd7f254f..f7293d67cc6 100644 --- a/gemfiles/jruby_9.2_relational_db.gemfile.lock +++ b/gemfiles/jruby_9.2_relational_db.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.2_resque2_redis3.gemfile.lock b/gemfiles/jruby_9.2_resque2_redis3.gemfile.lock index e25a548d303..5a8cc87429d 100644 --- a/gemfiles/jruby_9.2_resque2_redis3.gemfile.lock +++ b/gemfiles/jruby_9.2_resque2_redis3.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.2_resque2_redis4.gemfile.lock b/gemfiles/jruby_9.2_resque2_redis4.gemfile.lock index fa5bfb385a6..bc170977399 100644 --- a/gemfiles/jruby_9.2_resque2_redis4.gemfile.lock +++ b/gemfiles/jruby_9.2_resque2_redis4.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.2_sinatra_2.gemfile.lock b/gemfiles/jruby_9.2_sinatra_2.gemfile.lock index eb0e445ddfe..b281abe8ad7 100644 --- a/gemfiles/jruby_9.2_sinatra_2.gemfile.lock +++ b/gemfiles/jruby_9.2_sinatra_2.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.2_stripe_10.gemfile.lock b/gemfiles/jruby_9.2_stripe_10.gemfile.lock index 70a1176d56e..cdf0729b42c 100644 --- a/gemfiles/jruby_9.2_stripe_10.gemfile.lock +++ b/gemfiles/jruby_9.2_stripe_10.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.2_stripe_11.gemfile.lock b/gemfiles/jruby_9.2_stripe_11.gemfile.lock index 774b2e48e35..8500e81ceee 100644 --- a/gemfiles/jruby_9.2_stripe_11.gemfile.lock +++ b/gemfiles/jruby_9.2_stripe_11.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.2_stripe_12.gemfile.lock b/gemfiles/jruby_9.2_stripe_12.gemfile.lock index 532feda0256..f2c0f6ba77c 100644 --- a/gemfiles/jruby_9.2_stripe_12.gemfile.lock +++ b/gemfiles/jruby_9.2_stripe_12.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.2_stripe_7.gemfile.lock b/gemfiles/jruby_9.2_stripe_7.gemfile.lock index 74bfc8643fd..cb780e62139 100644 --- a/gemfiles/jruby_9.2_stripe_7.gemfile.lock +++ b/gemfiles/jruby_9.2_stripe_7.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.2_stripe_8.gemfile.lock b/gemfiles/jruby_9.2_stripe_8.gemfile.lock index 9b5e28d5edb..bf8429da671 100644 --- a/gemfiles/jruby_9.2_stripe_8.gemfile.lock +++ b/gemfiles/jruby_9.2_stripe_8.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.2_stripe_9.gemfile.lock b/gemfiles/jruby_9.2_stripe_9.gemfile.lock index 0822eb7ce35..e68002262b0 100644 --- a/gemfiles/jruby_9.2_stripe_9.gemfile.lock +++ b/gemfiles/jruby_9.2_stripe_9.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.2_stripe_latest.gemfile.lock b/gemfiles/jruby_9.2_stripe_latest.gemfile.lock index 3956b7790a1..578cc56ab3b 100644 --- a/gemfiles/jruby_9.2_stripe_latest.gemfile.lock +++ b/gemfiles/jruby_9.2_stripe_latest.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.2_stripe_min.gemfile.lock b/gemfiles/jruby_9.2_stripe_min.gemfile.lock index 52e693c6ddb..7e9ee8ebc27 100644 --- a/gemfiles/jruby_9.2_stripe_min.gemfile.lock +++ b/gemfiles/jruby_9.2_stripe_min.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.3_activesupport.gemfile.lock b/gemfiles/jruby_9.3_activesupport.gemfile.lock index 8332239fcfc..1bfe875613c 100644 --- a/gemfiles/jruby_9.3_activesupport.gemfile.lock +++ b/gemfiles/jruby_9.3_activesupport.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.3_aws.gemfile.lock b/gemfiles/jruby_9.3_aws.gemfile.lock index 1e69e3d885d..934ca3d1324 100644 --- a/gemfiles/jruby_9.3_aws.gemfile.lock +++ b/gemfiles/jruby_9.3_aws.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.3_contrib.gemfile.lock b/gemfiles/jruby_9.3_contrib.gemfile.lock index c8aacee2060..cb90b9ce044 100644 --- a/gemfiles/jruby_9.3_contrib.gemfile.lock +++ b/gemfiles/jruby_9.3_contrib.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.3_contrib_old.gemfile.lock b/gemfiles/jruby_9.3_contrib_old.gemfile.lock index 58ae4f5294d..e6617ee4af9 100644 --- a/gemfiles/jruby_9.3_contrib_old.gemfile.lock +++ b/gemfiles/jruby_9.3_contrib_old.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.3_core_old.gemfile.lock b/gemfiles/jruby_9.3_core_old.gemfile.lock index b78e36a3ab9..470db9b0443 100644 --- a/gemfiles/jruby_9.3_core_old.gemfile.lock +++ b/gemfiles/jruby_9.3_core_old.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.3_elasticsearch_7.gemfile.lock b/gemfiles/jruby_9.3_elasticsearch_7.gemfile.lock index f8beb359621..59925be7174 100644 --- a/gemfiles/jruby_9.3_elasticsearch_7.gemfile.lock +++ b/gemfiles/jruby_9.3_elasticsearch_7.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.3_elasticsearch_8.gemfile.lock b/gemfiles/jruby_9.3_elasticsearch_8.gemfile.lock index 09f58b13af2..5b5d1093bf0 100644 --- a/gemfiles/jruby_9.3_elasticsearch_8.gemfile.lock +++ b/gemfiles/jruby_9.3_elasticsearch_8.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.3_elasticsearch_latest.gemfile.lock b/gemfiles/jruby_9.3_elasticsearch_latest.gemfile.lock index cd7b07bde9a..1b279a51a60 100644 --- a/gemfiles/jruby_9.3_elasticsearch_latest.gemfile.lock +++ b/gemfiles/jruby_9.3_elasticsearch_latest.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.3_graphql_1.13.gemfile.lock b/gemfiles/jruby_9.3_graphql_1.13.gemfile.lock index 65486bbc8cd..097dfa8875f 100644 --- a/gemfiles/jruby_9.3_graphql_1.13.gemfile.lock +++ b/gemfiles/jruby_9.3_graphql_1.13.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.3_graphql_2.0.gemfile.lock b/gemfiles/jruby_9.3_graphql_2.0.gemfile.lock index c5baec0caac..767133fd046 100644 --- a/gemfiles/jruby_9.3_graphql_2.0.gemfile.lock +++ b/gemfiles/jruby_9.3_graphql_2.0.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.3_http.gemfile.lock b/gemfiles/jruby_9.3_http.gemfile.lock index 32eec249d04..3d759bc90f2 100644 --- a/gemfiles/jruby_9.3_http.gemfile.lock +++ b/gemfiles/jruby_9.3_http.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.3_opensearch_2.gemfile.lock b/gemfiles/jruby_9.3_opensearch_2.gemfile.lock index 8e24b90dca8..cc0dabc2eba 100644 --- a/gemfiles/jruby_9.3_opensearch_2.gemfile.lock +++ b/gemfiles/jruby_9.3_opensearch_2.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.3_opensearch_3.gemfile.lock b/gemfiles/jruby_9.3_opensearch_3.gemfile.lock index 4e41ee171f5..81ceb842e7b 100644 --- a/gemfiles/jruby_9.3_opensearch_3.gemfile.lock +++ b/gemfiles/jruby_9.3_opensearch_3.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.3_opensearch_latest.gemfile.lock b/gemfiles/jruby_9.3_opensearch_latest.gemfile.lock index e942a7fc68a..5b3d0c6af63 100644 --- a/gemfiles/jruby_9.3_opensearch_latest.gemfile.lock +++ b/gemfiles/jruby_9.3_opensearch_latest.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.3_rack_1.gemfile.lock b/gemfiles/jruby_9.3_rack_1.gemfile.lock index 4cffdd5f1fe..5d13847e15b 100644 --- a/gemfiles/jruby_9.3_rack_1.gemfile.lock +++ b/gemfiles/jruby_9.3_rack_1.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.3_rack_2.gemfile.lock b/gemfiles/jruby_9.3_rack_2.gemfile.lock index 44b05efe6bb..90dd33aeac3 100644 --- a/gemfiles/jruby_9.3_rack_2.gemfile.lock +++ b/gemfiles/jruby_9.3_rack_2.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.3_rack_3.gemfile.lock b/gemfiles/jruby_9.3_rack_3.gemfile.lock index ad2260884bd..0cb98c5ca93 100644 --- a/gemfiles/jruby_9.3_rack_3.gemfile.lock +++ b/gemfiles/jruby_9.3_rack_3.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.3_rack_latest.gemfile.lock b/gemfiles/jruby_9.3_rack_latest.gemfile.lock index ec4426f92f0..a32e2c86370 100644 --- a/gemfiles/jruby_9.3_rack_latest.gemfile.lock +++ b/gemfiles/jruby_9.3_rack_latest.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.3_rails5_mysql2.gemfile.lock b/gemfiles/jruby_9.3_rails5_mysql2.gemfile.lock index 07cf4c8d05d..4d0d03ecec9 100644 --- a/gemfiles/jruby_9.3_rails5_mysql2.gemfile.lock +++ b/gemfiles/jruby_9.3_rails5_mysql2.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.3_rails5_postgres.gemfile.lock b/gemfiles/jruby_9.3_rails5_postgres.gemfile.lock index 56c1040d222..065ff9b9437 100644 --- a/gemfiles/jruby_9.3_rails5_postgres.gemfile.lock +++ b/gemfiles/jruby_9.3_rails5_postgres.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.3_rails5_postgres_redis.gemfile.lock b/gemfiles/jruby_9.3_rails5_postgres_redis.gemfile.lock index 45f3c44dea8..fb7e41b396d 100644 --- a/gemfiles/jruby_9.3_rails5_postgres_redis.gemfile.lock +++ b/gemfiles/jruby_9.3_rails5_postgres_redis.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.3_rails5_postgres_redis_activesupport.gemfile.lock b/gemfiles/jruby_9.3_rails5_postgres_redis_activesupport.gemfile.lock index cc9561b2902..733dfd4121b 100644 --- a/gemfiles/jruby_9.3_rails5_postgres_redis_activesupport.gemfile.lock +++ b/gemfiles/jruby_9.3_rails5_postgres_redis_activesupport.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.3_rails5_postgres_sidekiq.gemfile.lock b/gemfiles/jruby_9.3_rails5_postgres_sidekiq.gemfile.lock index 4a4d1cd9f33..c5abee2d4e7 100644 --- a/gemfiles/jruby_9.3_rails5_postgres_sidekiq.gemfile.lock +++ b/gemfiles/jruby_9.3_rails5_postgres_sidekiq.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.3_rails5_semantic_logger.gemfile.lock b/gemfiles/jruby_9.3_rails5_semantic_logger.gemfile.lock index 9090edc767a..6e83c77d067 100644 --- a/gemfiles/jruby_9.3_rails5_semantic_logger.gemfile.lock +++ b/gemfiles/jruby_9.3_rails5_semantic_logger.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.3_rails61_mysql2.gemfile.lock b/gemfiles/jruby_9.3_rails61_mysql2.gemfile.lock index 3dfae82a729..b648b29cd4b 100644 --- a/gemfiles/jruby_9.3_rails61_mysql2.gemfile.lock +++ b/gemfiles/jruby_9.3_rails61_mysql2.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.3_rails61_postgres.gemfile.lock b/gemfiles/jruby_9.3_rails61_postgres.gemfile.lock index 3c0a3979986..4b33f761a5a 100644 --- a/gemfiles/jruby_9.3_rails61_postgres.gemfile.lock +++ b/gemfiles/jruby_9.3_rails61_postgres.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.3_rails61_postgres_redis.gemfile.lock b/gemfiles/jruby_9.3_rails61_postgres_redis.gemfile.lock index 8dc42ebfc06..42621403744 100644 --- a/gemfiles/jruby_9.3_rails61_postgres_redis.gemfile.lock +++ b/gemfiles/jruby_9.3_rails61_postgres_redis.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.3_rails61_postgres_sidekiq.gemfile.lock b/gemfiles/jruby_9.3_rails61_postgres_sidekiq.gemfile.lock index 470ff601fa1..62b72425c6b 100644 --- a/gemfiles/jruby_9.3_rails61_postgres_sidekiq.gemfile.lock +++ b/gemfiles/jruby_9.3_rails61_postgres_sidekiq.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.3_rails61_semantic_logger.gemfile.lock b/gemfiles/jruby_9.3_rails61_semantic_logger.gemfile.lock index 692ab352962..e03ea6088b8 100644 --- a/gemfiles/jruby_9.3_rails61_semantic_logger.gemfile.lock +++ b/gemfiles/jruby_9.3_rails61_semantic_logger.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.3_rails6_mysql2.gemfile.lock b/gemfiles/jruby_9.3_rails6_mysql2.gemfile.lock index b77ce02f2b4..1022540390d 100644 --- a/gemfiles/jruby_9.3_rails6_mysql2.gemfile.lock +++ b/gemfiles/jruby_9.3_rails6_mysql2.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.3_rails6_postgres.gemfile.lock b/gemfiles/jruby_9.3_rails6_postgres.gemfile.lock index fd31c4adce3..88b20a7403e 100644 --- a/gemfiles/jruby_9.3_rails6_postgres.gemfile.lock +++ b/gemfiles/jruby_9.3_rails6_postgres.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.3_rails6_postgres_redis.gemfile.lock b/gemfiles/jruby_9.3_rails6_postgres_redis.gemfile.lock index 53ebc45d89c..939f8b52af1 100644 --- a/gemfiles/jruby_9.3_rails6_postgres_redis.gemfile.lock +++ b/gemfiles/jruby_9.3_rails6_postgres_redis.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.3_rails6_postgres_redis_activesupport.gemfile.lock b/gemfiles/jruby_9.3_rails6_postgres_redis_activesupport.gemfile.lock index 031fbf17fa7..3ab26e70706 100644 --- a/gemfiles/jruby_9.3_rails6_postgres_redis_activesupport.gemfile.lock +++ b/gemfiles/jruby_9.3_rails6_postgres_redis_activesupport.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.3_rails6_postgres_sidekiq.gemfile.lock b/gemfiles/jruby_9.3_rails6_postgres_sidekiq.gemfile.lock index 3fd0e653490..a8b30e7a7f7 100644 --- a/gemfiles/jruby_9.3_rails6_postgres_sidekiq.gemfile.lock +++ b/gemfiles/jruby_9.3_rails6_postgres_sidekiq.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.3_rails6_semantic_logger.gemfile.lock b/gemfiles/jruby_9.3_rails6_semantic_logger.gemfile.lock index 8a3e52485c2..a49415b1f3d 100644 --- a/gemfiles/jruby_9.3_rails6_semantic_logger.gemfile.lock +++ b/gemfiles/jruby_9.3_rails6_semantic_logger.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.3_redis_3.gemfile.lock b/gemfiles/jruby_9.3_redis_3.gemfile.lock index 956dae836ca..6afccc8a014 100644 --- a/gemfiles/jruby_9.3_redis_3.gemfile.lock +++ b/gemfiles/jruby_9.3_redis_3.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.3_redis_4.gemfile.lock b/gemfiles/jruby_9.3_redis_4.gemfile.lock index 232e5c88759..b2b7a352437 100644 --- a/gemfiles/jruby_9.3_redis_4.gemfile.lock +++ b/gemfiles/jruby_9.3_redis_4.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.3_redis_5.gemfile.lock b/gemfiles/jruby_9.3_redis_5.gemfile.lock index 7460e8af48c..5f8de24ebde 100644 --- a/gemfiles/jruby_9.3_redis_5.gemfile.lock +++ b/gemfiles/jruby_9.3_redis_5.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.3_relational_db.gemfile.lock b/gemfiles/jruby_9.3_relational_db.gemfile.lock index 699ef2ee293..2edd2eaaea7 100644 --- a/gemfiles/jruby_9.3_relational_db.gemfile.lock +++ b/gemfiles/jruby_9.3_relational_db.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.3_resque2_redis3.gemfile.lock b/gemfiles/jruby_9.3_resque2_redis3.gemfile.lock index 7ca3dd6cc0b..f76cdb14ee2 100644 --- a/gemfiles/jruby_9.3_resque2_redis3.gemfile.lock +++ b/gemfiles/jruby_9.3_resque2_redis3.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.3_resque2_redis4.gemfile.lock b/gemfiles/jruby_9.3_resque2_redis4.gemfile.lock index 0fa3cbd26ec..5cc1e3d5398 100644 --- a/gemfiles/jruby_9.3_resque2_redis4.gemfile.lock +++ b/gemfiles/jruby_9.3_resque2_redis4.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.3_sinatra_2.gemfile.lock b/gemfiles/jruby_9.3_sinatra_2.gemfile.lock index 70a624dd2fb..895fa4c2ace 100644 --- a/gemfiles/jruby_9.3_sinatra_2.gemfile.lock +++ b/gemfiles/jruby_9.3_sinatra_2.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.3_sinatra_3.gemfile.lock b/gemfiles/jruby_9.3_sinatra_3.gemfile.lock index 29d0683a7d1..6592eaf2421 100644 --- a/gemfiles/jruby_9.3_sinatra_3.gemfile.lock +++ b/gemfiles/jruby_9.3_sinatra_3.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.3_stripe_10.gemfile.lock b/gemfiles/jruby_9.3_stripe_10.gemfile.lock index 90e4ae814ed..d0f97e2f978 100644 --- a/gemfiles/jruby_9.3_stripe_10.gemfile.lock +++ b/gemfiles/jruby_9.3_stripe_10.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.3_stripe_11.gemfile.lock b/gemfiles/jruby_9.3_stripe_11.gemfile.lock index f68ed9f141d..1010b039c2f 100644 --- a/gemfiles/jruby_9.3_stripe_11.gemfile.lock +++ b/gemfiles/jruby_9.3_stripe_11.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.3_stripe_12.gemfile.lock b/gemfiles/jruby_9.3_stripe_12.gemfile.lock index f64de66dc88..3b76a6b0f69 100644 --- a/gemfiles/jruby_9.3_stripe_12.gemfile.lock +++ b/gemfiles/jruby_9.3_stripe_12.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.3_stripe_7.gemfile.lock b/gemfiles/jruby_9.3_stripe_7.gemfile.lock index 0e6b7bb4e02..60f66a54588 100644 --- a/gemfiles/jruby_9.3_stripe_7.gemfile.lock +++ b/gemfiles/jruby_9.3_stripe_7.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.3_stripe_8.gemfile.lock b/gemfiles/jruby_9.3_stripe_8.gemfile.lock index 49d8dde5eb0..7ffa57b3d01 100644 --- a/gemfiles/jruby_9.3_stripe_8.gemfile.lock +++ b/gemfiles/jruby_9.3_stripe_8.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.3_stripe_9.gemfile.lock b/gemfiles/jruby_9.3_stripe_9.gemfile.lock index 28355136756..2f862ad9f96 100644 --- a/gemfiles/jruby_9.3_stripe_9.gemfile.lock +++ b/gemfiles/jruby_9.3_stripe_9.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.3_stripe_latest.gemfile.lock b/gemfiles/jruby_9.3_stripe_latest.gemfile.lock index fdb7cba3a3a..6c0c1603e88 100644 --- a/gemfiles/jruby_9.3_stripe_latest.gemfile.lock +++ b/gemfiles/jruby_9.3_stripe_latest.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.3_stripe_min.gemfile.lock b/gemfiles/jruby_9.3_stripe_min.gemfile.lock index dabed1bde9f..2e19d239663 100644 --- a/gemfiles/jruby_9.3_stripe_min.gemfile.lock +++ b/gemfiles/jruby_9.3_stripe_min.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.4_activesupport.gemfile.lock b/gemfiles/jruby_9.4_activesupport.gemfile.lock index d40200e25bf..5386c77ca59 100644 --- a/gemfiles/jruby_9.4_activesupport.gemfile.lock +++ b/gemfiles/jruby_9.4_activesupport.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.4_aws.gemfile.lock b/gemfiles/jruby_9.4_aws.gemfile.lock index 0fc8bb25c10..f5c4a76890a 100644 --- a/gemfiles/jruby_9.4_aws.gemfile.lock +++ b/gemfiles/jruby_9.4_aws.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.4_contrib.gemfile.lock b/gemfiles/jruby_9.4_contrib.gemfile.lock index a46a56d6d94..28aaba0778a 100644 --- a/gemfiles/jruby_9.4_contrib.gemfile.lock +++ b/gemfiles/jruby_9.4_contrib.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.4_contrib_old.gemfile.lock b/gemfiles/jruby_9.4_contrib_old.gemfile.lock index f2544a4ac66..6e3b9614e34 100644 --- a/gemfiles/jruby_9.4_contrib_old.gemfile.lock +++ b/gemfiles/jruby_9.4_contrib_old.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.4_core_old.gemfile.lock b/gemfiles/jruby_9.4_core_old.gemfile.lock index 3718c912883..b436fc94dfb 100644 --- a/gemfiles/jruby_9.4_core_old.gemfile.lock +++ b/gemfiles/jruby_9.4_core_old.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.4_elasticsearch_7.gemfile.lock b/gemfiles/jruby_9.4_elasticsearch_7.gemfile.lock index c641e179f04..7e29a3af42b 100644 --- a/gemfiles/jruby_9.4_elasticsearch_7.gemfile.lock +++ b/gemfiles/jruby_9.4_elasticsearch_7.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.4_elasticsearch_8.gemfile.lock b/gemfiles/jruby_9.4_elasticsearch_8.gemfile.lock index b2d69dc271a..050b977c89f 100644 --- a/gemfiles/jruby_9.4_elasticsearch_8.gemfile.lock +++ b/gemfiles/jruby_9.4_elasticsearch_8.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.4_elasticsearch_latest.gemfile.lock b/gemfiles/jruby_9.4_elasticsearch_latest.gemfile.lock index 5261c16b793..72ad849483b 100644 --- a/gemfiles/jruby_9.4_elasticsearch_latest.gemfile.lock +++ b/gemfiles/jruby_9.4_elasticsearch_latest.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.4_graphql_1.13.gemfile.lock b/gemfiles/jruby_9.4_graphql_1.13.gemfile.lock index 63c26f7eb95..c5234d478d8 100644 --- a/gemfiles/jruby_9.4_graphql_1.13.gemfile.lock +++ b/gemfiles/jruby_9.4_graphql_1.13.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.4_graphql_2.0.gemfile.lock b/gemfiles/jruby_9.4_graphql_2.0.gemfile.lock index 1f31be5e4b7..5b3777da2a9 100644 --- a/gemfiles/jruby_9.4_graphql_2.0.gemfile.lock +++ b/gemfiles/jruby_9.4_graphql_2.0.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.4_graphql_2.1.gemfile.lock b/gemfiles/jruby_9.4_graphql_2.1.gemfile.lock index f1e373ff35f..a3c8a4d4c4e 100644 --- a/gemfiles/jruby_9.4_graphql_2.1.gemfile.lock +++ b/gemfiles/jruby_9.4_graphql_2.1.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.4_graphql_2.2.gemfile.lock b/gemfiles/jruby_9.4_graphql_2.2.gemfile.lock index be9e39894bf..27b01a20cca 100644 --- a/gemfiles/jruby_9.4_graphql_2.2.gemfile.lock +++ b/gemfiles/jruby_9.4_graphql_2.2.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.4_graphql_2.3.gemfile.lock b/gemfiles/jruby_9.4_graphql_2.3.gemfile.lock index 99612b45863..dfd5cca4ff4 100644 --- a/gemfiles/jruby_9.4_graphql_2.3.gemfile.lock +++ b/gemfiles/jruby_9.4_graphql_2.3.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.4_http.gemfile.lock b/gemfiles/jruby_9.4_http.gemfile.lock index 35f6e839a48..e22941072c4 100644 --- a/gemfiles/jruby_9.4_http.gemfile.lock +++ b/gemfiles/jruby_9.4_http.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.4_opensearch_2.gemfile.lock b/gemfiles/jruby_9.4_opensearch_2.gemfile.lock index ecd6e671df6..c6643667d8b 100644 --- a/gemfiles/jruby_9.4_opensearch_2.gemfile.lock +++ b/gemfiles/jruby_9.4_opensearch_2.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.4_opensearch_3.gemfile.lock b/gemfiles/jruby_9.4_opensearch_3.gemfile.lock index ac517bb8edf..f2f602e68fe 100644 --- a/gemfiles/jruby_9.4_opensearch_3.gemfile.lock +++ b/gemfiles/jruby_9.4_opensearch_3.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.4_opensearch_latest.gemfile.lock b/gemfiles/jruby_9.4_opensearch_latest.gemfile.lock index 0db874e8a16..17f92fa1aac 100644 --- a/gemfiles/jruby_9.4_opensearch_latest.gemfile.lock +++ b/gemfiles/jruby_9.4_opensearch_latest.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.4_rack_1.gemfile.lock b/gemfiles/jruby_9.4_rack_1.gemfile.lock index 091f6d8ea82..a962abee129 100644 --- a/gemfiles/jruby_9.4_rack_1.gemfile.lock +++ b/gemfiles/jruby_9.4_rack_1.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.4_rack_2.gemfile.lock b/gemfiles/jruby_9.4_rack_2.gemfile.lock index 35135491b0d..0d0f945ac96 100644 --- a/gemfiles/jruby_9.4_rack_2.gemfile.lock +++ b/gemfiles/jruby_9.4_rack_2.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.4_rack_3.gemfile.lock b/gemfiles/jruby_9.4_rack_3.gemfile.lock index cba73788342..97c78c5a4fd 100644 --- a/gemfiles/jruby_9.4_rack_3.gemfile.lock +++ b/gemfiles/jruby_9.4_rack_3.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.4_rack_latest.gemfile.lock b/gemfiles/jruby_9.4_rack_latest.gemfile.lock index 9936b4af6b8..02268386f80 100644 --- a/gemfiles/jruby_9.4_rack_latest.gemfile.lock +++ b/gemfiles/jruby_9.4_rack_latest.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.4_rails61_mysql2.gemfile.lock b/gemfiles/jruby_9.4_rails61_mysql2.gemfile.lock index 38be2d44154..e7c92bb4d7f 100644 --- a/gemfiles/jruby_9.4_rails61_mysql2.gemfile.lock +++ b/gemfiles/jruby_9.4_rails61_mysql2.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.4_rails61_postgres.gemfile.lock b/gemfiles/jruby_9.4_rails61_postgres.gemfile.lock index 051d05c1952..ce01db91320 100644 --- a/gemfiles/jruby_9.4_rails61_postgres.gemfile.lock +++ b/gemfiles/jruby_9.4_rails61_postgres.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.4_rails61_postgres_redis.gemfile.lock b/gemfiles/jruby_9.4_rails61_postgres_redis.gemfile.lock index 23973263375..6075d38285d 100644 --- a/gemfiles/jruby_9.4_rails61_postgres_redis.gemfile.lock +++ b/gemfiles/jruby_9.4_rails61_postgres_redis.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.4_rails61_postgres_sidekiq.gemfile.lock b/gemfiles/jruby_9.4_rails61_postgres_sidekiq.gemfile.lock index a4429d9640a..f5694f8bfb3 100644 --- a/gemfiles/jruby_9.4_rails61_postgres_sidekiq.gemfile.lock +++ b/gemfiles/jruby_9.4_rails61_postgres_sidekiq.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.4_rails61_semantic_logger.gemfile.lock b/gemfiles/jruby_9.4_rails61_semantic_logger.gemfile.lock index 80a693097d2..9a1b4fe1f5a 100644 --- a/gemfiles/jruby_9.4_rails61_semantic_logger.gemfile.lock +++ b/gemfiles/jruby_9.4_rails61_semantic_logger.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.4_redis_3.gemfile.lock b/gemfiles/jruby_9.4_redis_3.gemfile.lock index 7b488cd58d6..2d56edea0c4 100644 --- a/gemfiles/jruby_9.4_redis_3.gemfile.lock +++ b/gemfiles/jruby_9.4_redis_3.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.4_redis_4.gemfile.lock b/gemfiles/jruby_9.4_redis_4.gemfile.lock index 8eb2c558081..4dde71f800d 100644 --- a/gemfiles/jruby_9.4_redis_4.gemfile.lock +++ b/gemfiles/jruby_9.4_redis_4.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.4_redis_5.gemfile.lock b/gemfiles/jruby_9.4_redis_5.gemfile.lock index a2f939196eb..139681039e0 100644 --- a/gemfiles/jruby_9.4_redis_5.gemfile.lock +++ b/gemfiles/jruby_9.4_redis_5.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.4_relational_db.gemfile.lock b/gemfiles/jruby_9.4_relational_db.gemfile.lock index 5f8343da715..a17c2ae1c5d 100644 --- a/gemfiles/jruby_9.4_relational_db.gemfile.lock +++ b/gemfiles/jruby_9.4_relational_db.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.4_resque2_redis3.gemfile.lock b/gemfiles/jruby_9.4_resque2_redis3.gemfile.lock index 3eb76f2284d..019801e8236 100644 --- a/gemfiles/jruby_9.4_resque2_redis3.gemfile.lock +++ b/gemfiles/jruby_9.4_resque2_redis3.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.4_resque2_redis4.gemfile.lock b/gemfiles/jruby_9.4_resque2_redis4.gemfile.lock index b465c43f4ad..579e03877e5 100644 --- a/gemfiles/jruby_9.4_resque2_redis4.gemfile.lock +++ b/gemfiles/jruby_9.4_resque2_redis4.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.4_sinatra_2.gemfile.lock b/gemfiles/jruby_9.4_sinatra_2.gemfile.lock index 0ead0764b66..a474aef6013 100644 --- a/gemfiles/jruby_9.4_sinatra_2.gemfile.lock +++ b/gemfiles/jruby_9.4_sinatra_2.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.4_sinatra_3.gemfile.lock b/gemfiles/jruby_9.4_sinatra_3.gemfile.lock index 853d47e26ce..d2dce70e58b 100644 --- a/gemfiles/jruby_9.4_sinatra_3.gemfile.lock +++ b/gemfiles/jruby_9.4_sinatra_3.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.4_sinatra_4.gemfile.lock b/gemfiles/jruby_9.4_sinatra_4.gemfile.lock index 87cb553ef28..d35ed99866e 100644 --- a/gemfiles/jruby_9.4_sinatra_4.gemfile.lock +++ b/gemfiles/jruby_9.4_sinatra_4.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.4_stripe_10.gemfile.lock b/gemfiles/jruby_9.4_stripe_10.gemfile.lock index 29c25f99dec..7c3aaa4606b 100644 --- a/gemfiles/jruby_9.4_stripe_10.gemfile.lock +++ b/gemfiles/jruby_9.4_stripe_10.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.4_stripe_11.gemfile.lock b/gemfiles/jruby_9.4_stripe_11.gemfile.lock index ca12fd56543..0dc6a82238d 100644 --- a/gemfiles/jruby_9.4_stripe_11.gemfile.lock +++ b/gemfiles/jruby_9.4_stripe_11.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.4_stripe_12.gemfile.lock b/gemfiles/jruby_9.4_stripe_12.gemfile.lock index 7a1fd9bd8a1..8adf4020322 100644 --- a/gemfiles/jruby_9.4_stripe_12.gemfile.lock +++ b/gemfiles/jruby_9.4_stripe_12.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.4_stripe_7.gemfile.lock b/gemfiles/jruby_9.4_stripe_7.gemfile.lock index 8f37279a8b7..8f6e9d54c50 100644 --- a/gemfiles/jruby_9.4_stripe_7.gemfile.lock +++ b/gemfiles/jruby_9.4_stripe_7.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.4_stripe_8.gemfile.lock b/gemfiles/jruby_9.4_stripe_8.gemfile.lock index 6635823e4b7..d97feba5f49 100644 --- a/gemfiles/jruby_9.4_stripe_8.gemfile.lock +++ b/gemfiles/jruby_9.4_stripe_8.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.4_stripe_9.gemfile.lock b/gemfiles/jruby_9.4_stripe_9.gemfile.lock index ee21cf6fc35..5ac27509ae3 100644 --- a/gemfiles/jruby_9.4_stripe_9.gemfile.lock +++ b/gemfiles/jruby_9.4_stripe_9.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.4_stripe_latest.gemfile.lock b/gemfiles/jruby_9.4_stripe_latest.gemfile.lock index ab740511736..f44944fe9cf 100644 --- a/gemfiles/jruby_9.4_stripe_latest.gemfile.lock +++ b/gemfiles/jruby_9.4_stripe_latest.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.4_stripe_min.gemfile.lock b/gemfiles/jruby_9.4_stripe_min.gemfile.lock index 107a1f0ccbd..f555360366c 100644 --- a/gemfiles/jruby_9.4_stripe_min.gemfile.lock +++ b/gemfiles/jruby_9.4_stripe_min.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.5_activesupport.gemfile.lock b/gemfiles/ruby_2.5_activesupport.gemfile.lock index 21ff8b9391b..8159994291d 100644 --- a/gemfiles/ruby_2.5_activesupport.gemfile.lock +++ b/gemfiles/ruby_2.5_activesupport.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.5_aws.gemfile.lock b/gemfiles/ruby_2.5_aws.gemfile.lock index 268f43d5814..7b92c93dd0a 100644 --- a/gemfiles/ruby_2.5_aws.gemfile.lock +++ b/gemfiles/ruby_2.5_aws.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.5_contrib.gemfile.lock b/gemfiles/ruby_2.5_contrib.gemfile.lock index 1fd3e14ca69..6039904ba6e 100644 --- a/gemfiles/ruby_2.5_contrib.gemfile.lock +++ b/gemfiles/ruby_2.5_contrib.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.5_contrib_old.gemfile.lock b/gemfiles/ruby_2.5_contrib_old.gemfile.lock index 1c9893a2c3b..ec989f107c4 100644 --- a/gemfiles/ruby_2.5_contrib_old.gemfile.lock +++ b/gemfiles/ruby_2.5_contrib_old.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.5_core_old.gemfile.lock b/gemfiles/ruby_2.5_core_old.gemfile.lock index cca8a469878..9e7480a53b2 100644 --- a/gemfiles/ruby_2.5_core_old.gemfile.lock +++ b/gemfiles/ruby_2.5_core_old.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.5_elasticsearch_7.gemfile.lock b/gemfiles/ruby_2.5_elasticsearch_7.gemfile.lock index 0a4bed72f70..6be75ac605b 100644 --- a/gemfiles/ruby_2.5_elasticsearch_7.gemfile.lock +++ b/gemfiles/ruby_2.5_elasticsearch_7.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.5_elasticsearch_8.gemfile.lock b/gemfiles/ruby_2.5_elasticsearch_8.gemfile.lock index 050f2024c31..94a00e6a94f 100644 --- a/gemfiles/ruby_2.5_elasticsearch_8.gemfile.lock +++ b/gemfiles/ruby_2.5_elasticsearch_8.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.5_elasticsearch_latest.gemfile.lock b/gemfiles/ruby_2.5_elasticsearch_latest.gemfile.lock index 3f79383b7be..433a3c65568 100644 --- a/gemfiles/ruby_2.5_elasticsearch_latest.gemfile.lock +++ b/gemfiles/ruby_2.5_elasticsearch_latest.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.5_graphql_2.0.gemfile.lock b/gemfiles/ruby_2.5_graphql_2.0.gemfile.lock index 5f463c81da1..41ca7a79da9 100644 --- a/gemfiles/ruby_2.5_graphql_2.0.gemfile.lock +++ b/gemfiles/ruby_2.5_graphql_2.0.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.5_hanami_1.gemfile.lock b/gemfiles/ruby_2.5_hanami_1.gemfile.lock index c861f462eb8..6f01e9aa51e 100644 --- a/gemfiles/ruby_2.5_hanami_1.gemfile.lock +++ b/gemfiles/ruby_2.5_hanami_1.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.5_http.gemfile.lock b/gemfiles/ruby_2.5_http.gemfile.lock index 5b0e364f7a1..4f2c6143cee 100644 --- a/gemfiles/ruby_2.5_http.gemfile.lock +++ b/gemfiles/ruby_2.5_http.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.5_opensearch_2.gemfile.lock b/gemfiles/ruby_2.5_opensearch_2.gemfile.lock index 5cc8c275c62..e453295a2d6 100644 --- a/gemfiles/ruby_2.5_opensearch_2.gemfile.lock +++ b/gemfiles/ruby_2.5_opensearch_2.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.5_opensearch_3.gemfile.lock b/gemfiles/ruby_2.5_opensearch_3.gemfile.lock index 7df1ab4c0ec..b78169010da 100644 --- a/gemfiles/ruby_2.5_opensearch_3.gemfile.lock +++ b/gemfiles/ruby_2.5_opensearch_3.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.5_opensearch_latest.gemfile.lock b/gemfiles/ruby_2.5_opensearch_latest.gemfile.lock index a38f44b9abf..e8c5cf944d9 100644 --- a/gemfiles/ruby_2.5_opensearch_latest.gemfile.lock +++ b/gemfiles/ruby_2.5_opensearch_latest.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.5_rack_1.gemfile.lock b/gemfiles/ruby_2.5_rack_1.gemfile.lock index 92b3a5dda45..78b32c4e3f9 100644 --- a/gemfiles/ruby_2.5_rack_1.gemfile.lock +++ b/gemfiles/ruby_2.5_rack_1.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.5_rack_2.gemfile.lock b/gemfiles/ruby_2.5_rack_2.gemfile.lock index 3c339870fd8..07fffccbea2 100644 --- a/gemfiles/ruby_2.5_rack_2.gemfile.lock +++ b/gemfiles/ruby_2.5_rack_2.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.5_rack_3.gemfile.lock b/gemfiles/ruby_2.5_rack_3.gemfile.lock index 8c667d132b6..bc410bd0905 100644 --- a/gemfiles/ruby_2.5_rack_3.gemfile.lock +++ b/gemfiles/ruby_2.5_rack_3.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.5_rack_latest.gemfile.lock b/gemfiles/ruby_2.5_rack_latest.gemfile.lock index b98a304d379..77138773195 100644 --- a/gemfiles/ruby_2.5_rack_latest.gemfile.lock +++ b/gemfiles/ruby_2.5_rack_latest.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.5_rails4_mysql2.gemfile.lock b/gemfiles/ruby_2.5_rails4_mysql2.gemfile.lock index b737cd9d2de..4c37bf0149a 100644 --- a/gemfiles/ruby_2.5_rails4_mysql2.gemfile.lock +++ b/gemfiles/ruby_2.5_rails4_mysql2.gemfile.lock @@ -67,7 +67,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.5_rails4_postgres.gemfile.lock b/gemfiles/ruby_2.5_rails4_postgres.gemfile.lock index 8803785171a..263ddc4e6a7 100644 --- a/gemfiles/ruby_2.5_rails4_postgres.gemfile.lock +++ b/gemfiles/ruby_2.5_rails4_postgres.gemfile.lock @@ -67,7 +67,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.5_rails4_postgres_redis.gemfile.lock b/gemfiles/ruby_2.5_rails4_postgres_redis.gemfile.lock index 83471f65755..fb158865162 100644 --- a/gemfiles/ruby_2.5_rails4_postgres_redis.gemfile.lock +++ b/gemfiles/ruby_2.5_rails4_postgres_redis.gemfile.lock @@ -67,7 +67,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.5_rails4_postgres_sidekiq.gemfile.lock b/gemfiles/ruby_2.5_rails4_postgres_sidekiq.gemfile.lock index 06647127fbf..e60d038cbb2 100644 --- a/gemfiles/ruby_2.5_rails4_postgres_sidekiq.gemfile.lock +++ b/gemfiles/ruby_2.5_rails4_postgres_sidekiq.gemfile.lock @@ -64,7 +64,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.5_rails4_semantic_logger.gemfile.lock b/gemfiles/ruby_2.5_rails4_semantic_logger.gemfile.lock index 29c549bc3c5..c0132e5678e 100644 --- a/gemfiles/ruby_2.5_rails4_semantic_logger.gemfile.lock +++ b/gemfiles/ruby_2.5_rails4_semantic_logger.gemfile.lock @@ -67,7 +67,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.5_rails5_mysql2.gemfile.lock b/gemfiles/ruby_2.5_rails5_mysql2.gemfile.lock index fb1eca3f089..5413a83123f 100644 --- a/gemfiles/ruby_2.5_rails5_mysql2.gemfile.lock +++ b/gemfiles/ruby_2.5_rails5_mysql2.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.5_rails5_postgres.gemfile.lock b/gemfiles/ruby_2.5_rails5_postgres.gemfile.lock index 7571efc7a52..27a265786f3 100644 --- a/gemfiles/ruby_2.5_rails5_postgres.gemfile.lock +++ b/gemfiles/ruby_2.5_rails5_postgres.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.5_rails5_postgres_redis.gemfile.lock b/gemfiles/ruby_2.5_rails5_postgres_redis.gemfile.lock index 9dc3e274aad..98bf1da5162 100644 --- a/gemfiles/ruby_2.5_rails5_postgres_redis.gemfile.lock +++ b/gemfiles/ruby_2.5_rails5_postgres_redis.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.5_rails5_postgres_redis_activesupport.gemfile.lock b/gemfiles/ruby_2.5_rails5_postgres_redis_activesupport.gemfile.lock index 03e0571e199..ff4bc48c711 100644 --- a/gemfiles/ruby_2.5_rails5_postgres_redis_activesupport.gemfile.lock +++ b/gemfiles/ruby_2.5_rails5_postgres_redis_activesupport.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.5_rails5_postgres_sidekiq.gemfile.lock b/gemfiles/ruby_2.5_rails5_postgres_sidekiq.gemfile.lock index 5b56c4279e1..e2b2939616e 100644 --- a/gemfiles/ruby_2.5_rails5_postgres_sidekiq.gemfile.lock +++ b/gemfiles/ruby_2.5_rails5_postgres_sidekiq.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.5_rails5_semantic_logger.gemfile.lock b/gemfiles/ruby_2.5_rails5_semantic_logger.gemfile.lock index 9f1ee31cf83..f3035de2a6e 100644 --- a/gemfiles/ruby_2.5_rails5_semantic_logger.gemfile.lock +++ b/gemfiles/ruby_2.5_rails5_semantic_logger.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.5_rails61_mysql2.gemfile.lock b/gemfiles/ruby_2.5_rails61_mysql2.gemfile.lock index 443f2815ea5..79e3e3ee1c7 100644 --- a/gemfiles/ruby_2.5_rails61_mysql2.gemfile.lock +++ b/gemfiles/ruby_2.5_rails61_mysql2.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.5_rails61_postgres.gemfile.lock b/gemfiles/ruby_2.5_rails61_postgres.gemfile.lock index 27ed475fb31..16199c952cb 100644 --- a/gemfiles/ruby_2.5_rails61_postgres.gemfile.lock +++ b/gemfiles/ruby_2.5_rails61_postgres.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.5_rails61_postgres_redis.gemfile.lock b/gemfiles/ruby_2.5_rails61_postgres_redis.gemfile.lock index 3b479a316db..80623706ec4 100644 --- a/gemfiles/ruby_2.5_rails61_postgres_redis.gemfile.lock +++ b/gemfiles/ruby_2.5_rails61_postgres_redis.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.5_rails61_postgres_sidekiq.gemfile.lock b/gemfiles/ruby_2.5_rails61_postgres_sidekiq.gemfile.lock index b5342a3a5ac..a8c7d893753 100644 --- a/gemfiles/ruby_2.5_rails61_postgres_sidekiq.gemfile.lock +++ b/gemfiles/ruby_2.5_rails61_postgres_sidekiq.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.5_rails61_semantic_logger.gemfile.lock b/gemfiles/ruby_2.5_rails61_semantic_logger.gemfile.lock index 60b967375dc..a89c76a5014 100644 --- a/gemfiles/ruby_2.5_rails61_semantic_logger.gemfile.lock +++ b/gemfiles/ruby_2.5_rails61_semantic_logger.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.5_rails6_mysql2.gemfile.lock b/gemfiles/ruby_2.5_rails6_mysql2.gemfile.lock index b577a6ed5e8..ce9c4887bbf 100644 --- a/gemfiles/ruby_2.5_rails6_mysql2.gemfile.lock +++ b/gemfiles/ruby_2.5_rails6_mysql2.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.5_rails6_postgres.gemfile.lock b/gemfiles/ruby_2.5_rails6_postgres.gemfile.lock index c3934880f64..de2f9ae702d 100644 --- a/gemfiles/ruby_2.5_rails6_postgres.gemfile.lock +++ b/gemfiles/ruby_2.5_rails6_postgres.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.5_rails6_postgres_redis.gemfile.lock b/gemfiles/ruby_2.5_rails6_postgres_redis.gemfile.lock index 8933ffaaf0b..0d4f40ee175 100644 --- a/gemfiles/ruby_2.5_rails6_postgres_redis.gemfile.lock +++ b/gemfiles/ruby_2.5_rails6_postgres_redis.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.5_rails6_postgres_redis_activesupport.gemfile.lock b/gemfiles/ruby_2.5_rails6_postgres_redis_activesupport.gemfile.lock index aea81391ec3..887c6e9dee0 100644 --- a/gemfiles/ruby_2.5_rails6_postgres_redis_activesupport.gemfile.lock +++ b/gemfiles/ruby_2.5_rails6_postgres_redis_activesupport.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.5_rails6_postgres_sidekiq.gemfile.lock b/gemfiles/ruby_2.5_rails6_postgres_sidekiq.gemfile.lock index ad5ceafeba0..dbdd89cf0dc 100644 --- a/gemfiles/ruby_2.5_rails6_postgres_sidekiq.gemfile.lock +++ b/gemfiles/ruby_2.5_rails6_postgres_sidekiq.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.5_rails6_semantic_logger.gemfile.lock b/gemfiles/ruby_2.5_rails6_semantic_logger.gemfile.lock index aa1004aafae..5987b6305e0 100644 --- a/gemfiles/ruby_2.5_rails6_semantic_logger.gemfile.lock +++ b/gemfiles/ruby_2.5_rails6_semantic_logger.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.5_redis_3.gemfile.lock b/gemfiles/ruby_2.5_redis_3.gemfile.lock index 393846b396d..78ccb25dcba 100644 --- a/gemfiles/ruby_2.5_redis_3.gemfile.lock +++ b/gemfiles/ruby_2.5_redis_3.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.5_redis_4.gemfile.lock b/gemfiles/ruby_2.5_redis_4.gemfile.lock index 1a81936f8b0..a8e84021d7d 100644 --- a/gemfiles/ruby_2.5_redis_4.gemfile.lock +++ b/gemfiles/ruby_2.5_redis_4.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.5_redis_5.gemfile.lock b/gemfiles/ruby_2.5_redis_5.gemfile.lock index 809b7d4a411..c05b0e08a72 100644 --- a/gemfiles/ruby_2.5_redis_5.gemfile.lock +++ b/gemfiles/ruby_2.5_redis_5.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.5_relational_db.gemfile.lock b/gemfiles/ruby_2.5_relational_db.gemfile.lock index 9da91b1bbdd..cd0e5a25ea6 100644 --- a/gemfiles/ruby_2.5_relational_db.gemfile.lock +++ b/gemfiles/ruby_2.5_relational_db.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.5_resque2_redis3.gemfile.lock b/gemfiles/ruby_2.5_resque2_redis3.gemfile.lock index d19a9c09484..4c4969c8750 100644 --- a/gemfiles/ruby_2.5_resque2_redis3.gemfile.lock +++ b/gemfiles/ruby_2.5_resque2_redis3.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.5_resque2_redis4.gemfile.lock b/gemfiles/ruby_2.5_resque2_redis4.gemfile.lock index c74c76c4105..6d6aea9b4c7 100644 --- a/gemfiles/ruby_2.5_resque2_redis4.gemfile.lock +++ b/gemfiles/ruby_2.5_resque2_redis4.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.5_sinatra_2.gemfile.lock b/gemfiles/ruby_2.5_sinatra_2.gemfile.lock index ee3e7ff97a8..1361958a1a6 100644 --- a/gemfiles/ruby_2.5_sinatra_2.gemfile.lock +++ b/gemfiles/ruby_2.5_sinatra_2.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.5_stripe_10.gemfile.lock b/gemfiles/ruby_2.5_stripe_10.gemfile.lock index aa1c71ae256..2eec271d89d 100644 --- a/gemfiles/ruby_2.5_stripe_10.gemfile.lock +++ b/gemfiles/ruby_2.5_stripe_10.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.5_stripe_11.gemfile.lock b/gemfiles/ruby_2.5_stripe_11.gemfile.lock index 8d9fa286492..104d135ad28 100644 --- a/gemfiles/ruby_2.5_stripe_11.gemfile.lock +++ b/gemfiles/ruby_2.5_stripe_11.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.5_stripe_12.gemfile.lock b/gemfiles/ruby_2.5_stripe_12.gemfile.lock index 9a31815bff1..5d0524b5d7b 100644 --- a/gemfiles/ruby_2.5_stripe_12.gemfile.lock +++ b/gemfiles/ruby_2.5_stripe_12.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.5_stripe_7.gemfile.lock b/gemfiles/ruby_2.5_stripe_7.gemfile.lock index 91219a9021c..984329829c2 100644 --- a/gemfiles/ruby_2.5_stripe_7.gemfile.lock +++ b/gemfiles/ruby_2.5_stripe_7.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.5_stripe_8.gemfile.lock b/gemfiles/ruby_2.5_stripe_8.gemfile.lock index 88b3e7a7fa4..525c1f6bca0 100644 --- a/gemfiles/ruby_2.5_stripe_8.gemfile.lock +++ b/gemfiles/ruby_2.5_stripe_8.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.5_stripe_9.gemfile.lock b/gemfiles/ruby_2.5_stripe_9.gemfile.lock index c961687e66c..0178e31590e 100644 --- a/gemfiles/ruby_2.5_stripe_9.gemfile.lock +++ b/gemfiles/ruby_2.5_stripe_9.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.5_stripe_latest.gemfile.lock b/gemfiles/ruby_2.5_stripe_latest.gemfile.lock index 1c22b2947a3..12b8e16ab5a 100644 --- a/gemfiles/ruby_2.5_stripe_latest.gemfile.lock +++ b/gemfiles/ruby_2.5_stripe_latest.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.5_stripe_min.gemfile.lock b/gemfiles/ruby_2.5_stripe_min.gemfile.lock index 849750ca9bf..a5d56b04fb8 100644 --- a/gemfiles/ruby_2.5_stripe_min.gemfile.lock +++ b/gemfiles/ruby_2.5_stripe_min.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.6_activesupport.gemfile.lock b/gemfiles/ruby_2.6_activesupport.gemfile.lock index 16fee730451..c1d541bfaac 100644 --- a/gemfiles/ruby_2.6_activesupport.gemfile.lock +++ b/gemfiles/ruby_2.6_activesupport.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.6_aws.gemfile.lock b/gemfiles/ruby_2.6_aws.gemfile.lock index 17660acff51..53140566503 100644 --- a/gemfiles/ruby_2.6_aws.gemfile.lock +++ b/gemfiles/ruby_2.6_aws.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.6_contrib.gemfile.lock b/gemfiles/ruby_2.6_contrib.gemfile.lock index 832c1f6004e..e15736f0358 100644 --- a/gemfiles/ruby_2.6_contrib.gemfile.lock +++ b/gemfiles/ruby_2.6_contrib.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.6_contrib_old.gemfile.lock b/gemfiles/ruby_2.6_contrib_old.gemfile.lock index 15fa60bbfa0..e88f52aff99 100644 --- a/gemfiles/ruby_2.6_contrib_old.gemfile.lock +++ b/gemfiles/ruby_2.6_contrib_old.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.6_core_old.gemfile.lock b/gemfiles/ruby_2.6_core_old.gemfile.lock index 691f0ba305f..49fe7a9e983 100644 --- a/gemfiles/ruby_2.6_core_old.gemfile.lock +++ b/gemfiles/ruby_2.6_core_old.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.6_elasticsearch_7.gemfile.lock b/gemfiles/ruby_2.6_elasticsearch_7.gemfile.lock index 4ec510b7f6d..aed8606c6da 100644 --- a/gemfiles/ruby_2.6_elasticsearch_7.gemfile.lock +++ b/gemfiles/ruby_2.6_elasticsearch_7.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.6_elasticsearch_8.gemfile.lock b/gemfiles/ruby_2.6_elasticsearch_8.gemfile.lock index a54df8f0016..d0ca784c49d 100644 --- a/gemfiles/ruby_2.6_elasticsearch_8.gemfile.lock +++ b/gemfiles/ruby_2.6_elasticsearch_8.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.6_elasticsearch_latest.gemfile.lock b/gemfiles/ruby_2.6_elasticsearch_latest.gemfile.lock index 3fba385c1be..365202f0fad 100644 --- a/gemfiles/ruby_2.6_elasticsearch_latest.gemfile.lock +++ b/gemfiles/ruby_2.6_elasticsearch_latest.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.6_graphql_1.13.gemfile.lock b/gemfiles/ruby_2.6_graphql_1.13.gemfile.lock index 900682890d7..1452f1772fc 100644 --- a/gemfiles/ruby_2.6_graphql_1.13.gemfile.lock +++ b/gemfiles/ruby_2.6_graphql_1.13.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.6_graphql_2.0.gemfile.lock b/gemfiles/ruby_2.6_graphql_2.0.gemfile.lock index 43d83f3ebbb..7e0f7fe35e1 100644 --- a/gemfiles/ruby_2.6_graphql_2.0.gemfile.lock +++ b/gemfiles/ruby_2.6_graphql_2.0.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.6_hanami_1.gemfile.lock b/gemfiles/ruby_2.6_hanami_1.gemfile.lock index 6de9dfd46e7..dedc5642433 100644 --- a/gemfiles/ruby_2.6_hanami_1.gemfile.lock +++ b/gemfiles/ruby_2.6_hanami_1.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.6_http.gemfile.lock b/gemfiles/ruby_2.6_http.gemfile.lock index e0a3bd67c99..6df85a899cb 100644 --- a/gemfiles/ruby_2.6_http.gemfile.lock +++ b/gemfiles/ruby_2.6_http.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.6_opensearch_2.gemfile.lock b/gemfiles/ruby_2.6_opensearch_2.gemfile.lock index 3f19e4c8336..802e7a3766c 100644 --- a/gemfiles/ruby_2.6_opensearch_2.gemfile.lock +++ b/gemfiles/ruby_2.6_opensearch_2.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.6_opensearch_3.gemfile.lock b/gemfiles/ruby_2.6_opensearch_3.gemfile.lock index c85a2c6771b..a14ba69ef0f 100644 --- a/gemfiles/ruby_2.6_opensearch_3.gemfile.lock +++ b/gemfiles/ruby_2.6_opensearch_3.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.6_opensearch_latest.gemfile.lock b/gemfiles/ruby_2.6_opensearch_latest.gemfile.lock index 554640f4276..bdfa45fa726 100644 --- a/gemfiles/ruby_2.6_opensearch_latest.gemfile.lock +++ b/gemfiles/ruby_2.6_opensearch_latest.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.6_opentelemetry.gemfile.lock b/gemfiles/ruby_2.6_opentelemetry.gemfile.lock index 04b88cdca86..78178910bcc 100755 --- a/gemfiles/ruby_2.6_opentelemetry.gemfile.lock +++ b/gemfiles/ruby_2.6_opentelemetry.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.6_opentelemetry_otlp.gemfile.lock b/gemfiles/ruby_2.6_opentelemetry_otlp.gemfile.lock index 75dc714d534..06722001f16 100644 --- a/gemfiles/ruby_2.6_opentelemetry_otlp.gemfile.lock +++ b/gemfiles/ruby_2.6_opentelemetry_otlp.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.6_rack_1.gemfile.lock b/gemfiles/ruby_2.6_rack_1.gemfile.lock index 28cc9cf5381..4f46efd4e5d 100644 --- a/gemfiles/ruby_2.6_rack_1.gemfile.lock +++ b/gemfiles/ruby_2.6_rack_1.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.6_rack_2.gemfile.lock b/gemfiles/ruby_2.6_rack_2.gemfile.lock index f26a0b1ad29..84b4452c6b6 100644 --- a/gemfiles/ruby_2.6_rack_2.gemfile.lock +++ b/gemfiles/ruby_2.6_rack_2.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.6_rack_3.gemfile.lock b/gemfiles/ruby_2.6_rack_3.gemfile.lock index 46235b061d4..b634fbbbc25 100644 --- a/gemfiles/ruby_2.6_rack_3.gemfile.lock +++ b/gemfiles/ruby_2.6_rack_3.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.6_rack_latest.gemfile.lock b/gemfiles/ruby_2.6_rack_latest.gemfile.lock index fff14ecb8e0..71988c4dcaa 100644 --- a/gemfiles/ruby_2.6_rack_latest.gemfile.lock +++ b/gemfiles/ruby_2.6_rack_latest.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.6_rails5_mysql2.gemfile.lock b/gemfiles/ruby_2.6_rails5_mysql2.gemfile.lock index c0c8d2fb6c8..e668d8cdd1a 100644 --- a/gemfiles/ruby_2.6_rails5_mysql2.gemfile.lock +++ b/gemfiles/ruby_2.6_rails5_mysql2.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.6_rails5_postgres.gemfile.lock b/gemfiles/ruby_2.6_rails5_postgres.gemfile.lock index 2f7b15bdd26..ffb91eb2473 100644 --- a/gemfiles/ruby_2.6_rails5_postgres.gemfile.lock +++ b/gemfiles/ruby_2.6_rails5_postgres.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.6_rails5_postgres_redis.gemfile.lock b/gemfiles/ruby_2.6_rails5_postgres_redis.gemfile.lock index 341449462c4..2af33cc8cef 100644 --- a/gemfiles/ruby_2.6_rails5_postgres_redis.gemfile.lock +++ b/gemfiles/ruby_2.6_rails5_postgres_redis.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.6_rails5_postgres_redis_activesupport.gemfile.lock b/gemfiles/ruby_2.6_rails5_postgres_redis_activesupport.gemfile.lock index 35b7e512c67..d9207a5021c 100644 --- a/gemfiles/ruby_2.6_rails5_postgres_redis_activesupport.gemfile.lock +++ b/gemfiles/ruby_2.6_rails5_postgres_redis_activesupport.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.6_rails5_postgres_sidekiq.gemfile.lock b/gemfiles/ruby_2.6_rails5_postgres_sidekiq.gemfile.lock index 9dabf0b07d8..0ba0d6526c3 100644 --- a/gemfiles/ruby_2.6_rails5_postgres_sidekiq.gemfile.lock +++ b/gemfiles/ruby_2.6_rails5_postgres_sidekiq.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.6_rails5_semantic_logger.gemfile.lock b/gemfiles/ruby_2.6_rails5_semantic_logger.gemfile.lock index 627562caa7c..19d7285c5cd 100644 --- a/gemfiles/ruby_2.6_rails5_semantic_logger.gemfile.lock +++ b/gemfiles/ruby_2.6_rails5_semantic_logger.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.6_rails61_mysql2.gemfile.lock b/gemfiles/ruby_2.6_rails61_mysql2.gemfile.lock index 140355eb4a1..8b333fc3736 100644 --- a/gemfiles/ruby_2.6_rails61_mysql2.gemfile.lock +++ b/gemfiles/ruby_2.6_rails61_mysql2.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.6_rails61_postgres.gemfile.lock b/gemfiles/ruby_2.6_rails61_postgres.gemfile.lock index cb10b1730a8..b7a936f64b4 100644 --- a/gemfiles/ruby_2.6_rails61_postgres.gemfile.lock +++ b/gemfiles/ruby_2.6_rails61_postgres.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.6_rails61_postgres_redis.gemfile.lock b/gemfiles/ruby_2.6_rails61_postgres_redis.gemfile.lock index 1f5b348c424..24f82360ae2 100644 --- a/gemfiles/ruby_2.6_rails61_postgres_redis.gemfile.lock +++ b/gemfiles/ruby_2.6_rails61_postgres_redis.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.6_rails61_postgres_sidekiq.gemfile.lock b/gemfiles/ruby_2.6_rails61_postgres_sidekiq.gemfile.lock index c8edde7f67a..f8490fc342d 100644 --- a/gemfiles/ruby_2.6_rails61_postgres_sidekiq.gemfile.lock +++ b/gemfiles/ruby_2.6_rails61_postgres_sidekiq.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.6_rails61_semantic_logger.gemfile.lock b/gemfiles/ruby_2.6_rails61_semantic_logger.gemfile.lock index 78f162881de..3b0fa5ace0b 100644 --- a/gemfiles/ruby_2.6_rails61_semantic_logger.gemfile.lock +++ b/gemfiles/ruby_2.6_rails61_semantic_logger.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.6_rails6_mysql2.gemfile.lock b/gemfiles/ruby_2.6_rails6_mysql2.gemfile.lock index a481e5e9761..be871912455 100644 --- a/gemfiles/ruby_2.6_rails6_mysql2.gemfile.lock +++ b/gemfiles/ruby_2.6_rails6_mysql2.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.6_rails6_postgres.gemfile.lock b/gemfiles/ruby_2.6_rails6_postgres.gemfile.lock index afa5d324fcf..e5069faab50 100644 --- a/gemfiles/ruby_2.6_rails6_postgres.gemfile.lock +++ b/gemfiles/ruby_2.6_rails6_postgres.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.6_rails6_postgres_redis.gemfile.lock b/gemfiles/ruby_2.6_rails6_postgres_redis.gemfile.lock index 41dbabf1bbe..0c296b0a2dd 100644 --- a/gemfiles/ruby_2.6_rails6_postgres_redis.gemfile.lock +++ b/gemfiles/ruby_2.6_rails6_postgres_redis.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.6_rails6_postgres_redis_activesupport.gemfile.lock b/gemfiles/ruby_2.6_rails6_postgres_redis_activesupport.gemfile.lock index 9dafe14b09d..cbc4e538597 100644 --- a/gemfiles/ruby_2.6_rails6_postgres_redis_activesupport.gemfile.lock +++ b/gemfiles/ruby_2.6_rails6_postgres_redis_activesupport.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.6_rails6_postgres_sidekiq.gemfile.lock b/gemfiles/ruby_2.6_rails6_postgres_sidekiq.gemfile.lock index 1d183915764..5a2429f536d 100644 --- a/gemfiles/ruby_2.6_rails6_postgres_sidekiq.gemfile.lock +++ b/gemfiles/ruby_2.6_rails6_postgres_sidekiq.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.6_rails6_semantic_logger.gemfile.lock b/gemfiles/ruby_2.6_rails6_semantic_logger.gemfile.lock index 2537ad00995..5d5964eb621 100644 --- a/gemfiles/ruby_2.6_rails6_semantic_logger.gemfile.lock +++ b/gemfiles/ruby_2.6_rails6_semantic_logger.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.6_redis_3.gemfile.lock b/gemfiles/ruby_2.6_redis_3.gemfile.lock index 685da637d84..79b4935fac5 100644 --- a/gemfiles/ruby_2.6_redis_3.gemfile.lock +++ b/gemfiles/ruby_2.6_redis_3.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.6_redis_4.gemfile.lock b/gemfiles/ruby_2.6_redis_4.gemfile.lock index 9eba44c36c8..67921f0ae75 100644 --- a/gemfiles/ruby_2.6_redis_4.gemfile.lock +++ b/gemfiles/ruby_2.6_redis_4.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.6_redis_5.gemfile.lock b/gemfiles/ruby_2.6_redis_5.gemfile.lock index fbf0f791ead..eabf984246e 100644 --- a/gemfiles/ruby_2.6_redis_5.gemfile.lock +++ b/gemfiles/ruby_2.6_redis_5.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.6_relational_db.gemfile.lock b/gemfiles/ruby_2.6_relational_db.gemfile.lock index 6603a2a90be..9371a9061f0 100644 --- a/gemfiles/ruby_2.6_relational_db.gemfile.lock +++ b/gemfiles/ruby_2.6_relational_db.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.6_resque2_redis3.gemfile.lock b/gemfiles/ruby_2.6_resque2_redis3.gemfile.lock index 00edbd39834..d06fec706f5 100644 --- a/gemfiles/ruby_2.6_resque2_redis3.gemfile.lock +++ b/gemfiles/ruby_2.6_resque2_redis3.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.6_resque2_redis4.gemfile.lock b/gemfiles/ruby_2.6_resque2_redis4.gemfile.lock index a03c8bdd80a..5f8a4199633 100644 --- a/gemfiles/ruby_2.6_resque2_redis4.gemfile.lock +++ b/gemfiles/ruby_2.6_resque2_redis4.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.6_sinatra_2.gemfile.lock b/gemfiles/ruby_2.6_sinatra_2.gemfile.lock index d986830b835..668e26983c7 100644 --- a/gemfiles/ruby_2.6_sinatra_2.gemfile.lock +++ b/gemfiles/ruby_2.6_sinatra_2.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.6_sinatra_3.gemfile.lock b/gemfiles/ruby_2.6_sinatra_3.gemfile.lock index 89706a2851d..9a8b1a90382 100644 --- a/gemfiles/ruby_2.6_sinatra_3.gemfile.lock +++ b/gemfiles/ruby_2.6_sinatra_3.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.6_stripe_10.gemfile.lock b/gemfiles/ruby_2.6_stripe_10.gemfile.lock index 1be7fd08293..e80d519b717 100644 --- a/gemfiles/ruby_2.6_stripe_10.gemfile.lock +++ b/gemfiles/ruby_2.6_stripe_10.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.6_stripe_11.gemfile.lock b/gemfiles/ruby_2.6_stripe_11.gemfile.lock index fe267fed141..af99903fdd1 100644 --- a/gemfiles/ruby_2.6_stripe_11.gemfile.lock +++ b/gemfiles/ruby_2.6_stripe_11.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.6_stripe_12.gemfile.lock b/gemfiles/ruby_2.6_stripe_12.gemfile.lock index 167ac64f281..4ce12be9267 100644 --- a/gemfiles/ruby_2.6_stripe_12.gemfile.lock +++ b/gemfiles/ruby_2.6_stripe_12.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.6_stripe_7.gemfile.lock b/gemfiles/ruby_2.6_stripe_7.gemfile.lock index e5584842534..4f12b8dcb6a 100644 --- a/gemfiles/ruby_2.6_stripe_7.gemfile.lock +++ b/gemfiles/ruby_2.6_stripe_7.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.6_stripe_8.gemfile.lock b/gemfiles/ruby_2.6_stripe_8.gemfile.lock index ccf29aae3e3..2db4a71f9de 100644 --- a/gemfiles/ruby_2.6_stripe_8.gemfile.lock +++ b/gemfiles/ruby_2.6_stripe_8.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.6_stripe_9.gemfile.lock b/gemfiles/ruby_2.6_stripe_9.gemfile.lock index 45d27e7e801..cc47edda218 100644 --- a/gemfiles/ruby_2.6_stripe_9.gemfile.lock +++ b/gemfiles/ruby_2.6_stripe_9.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.6_stripe_latest.gemfile.lock b/gemfiles/ruby_2.6_stripe_latest.gemfile.lock index 8729fce387b..e23b6597fdc 100644 --- a/gemfiles/ruby_2.6_stripe_latest.gemfile.lock +++ b/gemfiles/ruby_2.6_stripe_latest.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.6_stripe_min.gemfile.lock b/gemfiles/ruby_2.6_stripe_min.gemfile.lock index f7c35c61d55..cdc2c637ea9 100644 --- a/gemfiles/ruby_2.6_stripe_min.gemfile.lock +++ b/gemfiles/ruby_2.6_stripe_min.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.7_activesupport.gemfile.lock b/gemfiles/ruby_2.7_activesupport.gemfile.lock index 129af9d08aa..bc1e3765678 100644 --- a/gemfiles/ruby_2.7_activesupport.gemfile.lock +++ b/gemfiles/ruby_2.7_activesupport.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.7_aws.gemfile.lock b/gemfiles/ruby_2.7_aws.gemfile.lock index fe061edaf68..0ac539b7685 100644 --- a/gemfiles/ruby_2.7_aws.gemfile.lock +++ b/gemfiles/ruby_2.7_aws.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.7_contrib.gemfile.lock b/gemfiles/ruby_2.7_contrib.gemfile.lock index 76d3135f790..3d04ed0b39b 100644 --- a/gemfiles/ruby_2.7_contrib.gemfile.lock +++ b/gemfiles/ruby_2.7_contrib.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.7_contrib_old.gemfile.lock b/gemfiles/ruby_2.7_contrib_old.gemfile.lock index bb01228935e..41d2f80ef8c 100644 --- a/gemfiles/ruby_2.7_contrib_old.gemfile.lock +++ b/gemfiles/ruby_2.7_contrib_old.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.7_core_old.gemfile.lock b/gemfiles/ruby_2.7_core_old.gemfile.lock index 09ed7267cdb..547b3a83e40 100644 --- a/gemfiles/ruby_2.7_core_old.gemfile.lock +++ b/gemfiles/ruby_2.7_core_old.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.7_elasticsearch_7.gemfile.lock b/gemfiles/ruby_2.7_elasticsearch_7.gemfile.lock index 95f54ee9422..2f56e49acb5 100644 --- a/gemfiles/ruby_2.7_elasticsearch_7.gemfile.lock +++ b/gemfiles/ruby_2.7_elasticsearch_7.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.7_elasticsearch_8.gemfile.lock b/gemfiles/ruby_2.7_elasticsearch_8.gemfile.lock index 3707e9f5a8d..48b79cf3c75 100644 --- a/gemfiles/ruby_2.7_elasticsearch_8.gemfile.lock +++ b/gemfiles/ruby_2.7_elasticsearch_8.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.7_elasticsearch_latest.gemfile.lock b/gemfiles/ruby_2.7_elasticsearch_latest.gemfile.lock index 2bb9c05d613..941c432765e 100644 --- a/gemfiles/ruby_2.7_elasticsearch_latest.gemfile.lock +++ b/gemfiles/ruby_2.7_elasticsearch_latest.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.7_graphql_1.13.gemfile.lock b/gemfiles/ruby_2.7_graphql_1.13.gemfile.lock index 18c0079dff4..1bb63d012bd 100644 --- a/gemfiles/ruby_2.7_graphql_1.13.gemfile.lock +++ b/gemfiles/ruby_2.7_graphql_1.13.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.7_graphql_2.0.gemfile.lock b/gemfiles/ruby_2.7_graphql_2.0.gemfile.lock index 0173e91fa12..e4b5c28dc06 100644 --- a/gemfiles/ruby_2.7_graphql_2.0.gemfile.lock +++ b/gemfiles/ruby_2.7_graphql_2.0.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.7_graphql_2.1.gemfile.lock b/gemfiles/ruby_2.7_graphql_2.1.gemfile.lock index 45605df96a5..2f4c0d227f2 100644 --- a/gemfiles/ruby_2.7_graphql_2.1.gemfile.lock +++ b/gemfiles/ruby_2.7_graphql_2.1.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.7_graphql_2.2.gemfile.lock b/gemfiles/ruby_2.7_graphql_2.2.gemfile.lock index ae2203b7c23..2abf65a72f5 100644 --- a/gemfiles/ruby_2.7_graphql_2.2.gemfile.lock +++ b/gemfiles/ruby_2.7_graphql_2.2.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.7_graphql_2.3.gemfile.lock b/gemfiles/ruby_2.7_graphql_2.3.gemfile.lock index 88e0c03f69d..1afe7532c59 100644 --- a/gemfiles/ruby_2.7_graphql_2.3.gemfile.lock +++ b/gemfiles/ruby_2.7_graphql_2.3.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.7_hanami_1.gemfile.lock b/gemfiles/ruby_2.7_hanami_1.gemfile.lock index 6f7ff8b9a88..412cb6dd966 100644 --- a/gemfiles/ruby_2.7_hanami_1.gemfile.lock +++ b/gemfiles/ruby_2.7_hanami_1.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.7_http.gemfile.lock b/gemfiles/ruby_2.7_http.gemfile.lock index 315d5912576..59e38fbbe95 100644 --- a/gemfiles/ruby_2.7_http.gemfile.lock +++ b/gemfiles/ruby_2.7_http.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.7_opensearch_2.gemfile.lock b/gemfiles/ruby_2.7_opensearch_2.gemfile.lock index e6452e01c57..9bfd335c84c 100644 --- a/gemfiles/ruby_2.7_opensearch_2.gemfile.lock +++ b/gemfiles/ruby_2.7_opensearch_2.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.7_opensearch_3.gemfile.lock b/gemfiles/ruby_2.7_opensearch_3.gemfile.lock index bc207107270..8a1378e79ed 100644 --- a/gemfiles/ruby_2.7_opensearch_3.gemfile.lock +++ b/gemfiles/ruby_2.7_opensearch_3.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.7_opensearch_latest.gemfile.lock b/gemfiles/ruby_2.7_opensearch_latest.gemfile.lock index c67b0df15e3..5a1a410d14e 100644 --- a/gemfiles/ruby_2.7_opensearch_latest.gemfile.lock +++ b/gemfiles/ruby_2.7_opensearch_latest.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.7_opentelemetry.gemfile.lock b/gemfiles/ruby_2.7_opentelemetry.gemfile.lock index 6d98a1bb7e9..b237b9791a4 100755 --- a/gemfiles/ruby_2.7_opentelemetry.gemfile.lock +++ b/gemfiles/ruby_2.7_opentelemetry.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.7_opentelemetry_otlp.gemfile.lock b/gemfiles/ruby_2.7_opentelemetry_otlp.gemfile.lock index 50807b401c0..952e99c37f0 100644 --- a/gemfiles/ruby_2.7_opentelemetry_otlp.gemfile.lock +++ b/gemfiles/ruby_2.7_opentelemetry_otlp.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.7_rack_1.gemfile.lock b/gemfiles/ruby_2.7_rack_1.gemfile.lock index 3c7ef831688..02f793f4fb0 100644 --- a/gemfiles/ruby_2.7_rack_1.gemfile.lock +++ b/gemfiles/ruby_2.7_rack_1.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.7_rack_2.gemfile.lock b/gemfiles/ruby_2.7_rack_2.gemfile.lock index be2a6273e13..2682d3bea22 100644 --- a/gemfiles/ruby_2.7_rack_2.gemfile.lock +++ b/gemfiles/ruby_2.7_rack_2.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.7_rack_3.gemfile.lock b/gemfiles/ruby_2.7_rack_3.gemfile.lock index 0034a02fe8d..b1785819dfc 100644 --- a/gemfiles/ruby_2.7_rack_3.gemfile.lock +++ b/gemfiles/ruby_2.7_rack_3.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.7_rack_latest.gemfile.lock b/gemfiles/ruby_2.7_rack_latest.gemfile.lock index 701094517fe..4c26f0a3e54 100644 --- a/gemfiles/ruby_2.7_rack_latest.gemfile.lock +++ b/gemfiles/ruby_2.7_rack_latest.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.7_rails5_mysql2.gemfile.lock b/gemfiles/ruby_2.7_rails5_mysql2.gemfile.lock index de26fc472e3..e9bd8a65a2c 100644 --- a/gemfiles/ruby_2.7_rails5_mysql2.gemfile.lock +++ b/gemfiles/ruby_2.7_rails5_mysql2.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.7_rails5_postgres.gemfile.lock b/gemfiles/ruby_2.7_rails5_postgres.gemfile.lock index 24d7a4148ea..72827cace49 100644 --- a/gemfiles/ruby_2.7_rails5_postgres.gemfile.lock +++ b/gemfiles/ruby_2.7_rails5_postgres.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.7_rails5_postgres_redis.gemfile.lock b/gemfiles/ruby_2.7_rails5_postgres_redis.gemfile.lock index aee37fb4097..9068317e805 100644 --- a/gemfiles/ruby_2.7_rails5_postgres_redis.gemfile.lock +++ b/gemfiles/ruby_2.7_rails5_postgres_redis.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.7_rails5_postgres_redis_activesupport.gemfile.lock b/gemfiles/ruby_2.7_rails5_postgres_redis_activesupport.gemfile.lock index 0890a4c8dc1..1cbdec8ede1 100644 --- a/gemfiles/ruby_2.7_rails5_postgres_redis_activesupport.gemfile.lock +++ b/gemfiles/ruby_2.7_rails5_postgres_redis_activesupport.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.7_rails5_postgres_sidekiq.gemfile.lock b/gemfiles/ruby_2.7_rails5_postgres_sidekiq.gemfile.lock index 8cc57002755..8a5174fcb7d 100644 --- a/gemfiles/ruby_2.7_rails5_postgres_sidekiq.gemfile.lock +++ b/gemfiles/ruby_2.7_rails5_postgres_sidekiq.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.7_rails5_semantic_logger.gemfile.lock b/gemfiles/ruby_2.7_rails5_semantic_logger.gemfile.lock index c4a00b9fc2d..801da5e0e25 100644 --- a/gemfiles/ruby_2.7_rails5_semantic_logger.gemfile.lock +++ b/gemfiles/ruby_2.7_rails5_semantic_logger.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.7_rails61_mysql2.gemfile.lock b/gemfiles/ruby_2.7_rails61_mysql2.gemfile.lock index 06d941f4da3..4b682a6fefc 100644 --- a/gemfiles/ruby_2.7_rails61_mysql2.gemfile.lock +++ b/gemfiles/ruby_2.7_rails61_mysql2.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.7_rails61_postgres.gemfile.lock b/gemfiles/ruby_2.7_rails61_postgres.gemfile.lock index 766e4225870..439294cca0a 100644 --- a/gemfiles/ruby_2.7_rails61_postgres.gemfile.lock +++ b/gemfiles/ruby_2.7_rails61_postgres.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.7_rails61_postgres_redis.gemfile.lock b/gemfiles/ruby_2.7_rails61_postgres_redis.gemfile.lock index a499d30eede..09ba48a0b7c 100644 --- a/gemfiles/ruby_2.7_rails61_postgres_redis.gemfile.lock +++ b/gemfiles/ruby_2.7_rails61_postgres_redis.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.7_rails61_postgres_sidekiq.gemfile.lock b/gemfiles/ruby_2.7_rails61_postgres_sidekiq.gemfile.lock index 0bb749f27f3..672772bef2c 100644 --- a/gemfiles/ruby_2.7_rails61_postgres_sidekiq.gemfile.lock +++ b/gemfiles/ruby_2.7_rails61_postgres_sidekiq.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.7_rails61_semantic_logger.gemfile.lock b/gemfiles/ruby_2.7_rails61_semantic_logger.gemfile.lock index b81b47d52ce..0526fca22ef 100644 --- a/gemfiles/ruby_2.7_rails61_semantic_logger.gemfile.lock +++ b/gemfiles/ruby_2.7_rails61_semantic_logger.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.7_rails6_mysql2.gemfile.lock b/gemfiles/ruby_2.7_rails6_mysql2.gemfile.lock index facb0beba9d..74e2ae48420 100644 --- a/gemfiles/ruby_2.7_rails6_mysql2.gemfile.lock +++ b/gemfiles/ruby_2.7_rails6_mysql2.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.7_rails6_postgres.gemfile.lock b/gemfiles/ruby_2.7_rails6_postgres.gemfile.lock index 9c63e9ed2a8..44b3f8dc13b 100644 --- a/gemfiles/ruby_2.7_rails6_postgres.gemfile.lock +++ b/gemfiles/ruby_2.7_rails6_postgres.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.7_rails6_postgres_redis.gemfile.lock b/gemfiles/ruby_2.7_rails6_postgres_redis.gemfile.lock index e5e5116fa10..b414b713c38 100644 --- a/gemfiles/ruby_2.7_rails6_postgres_redis.gemfile.lock +++ b/gemfiles/ruby_2.7_rails6_postgres_redis.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.7_rails6_postgres_redis_activesupport.gemfile.lock b/gemfiles/ruby_2.7_rails6_postgres_redis_activesupport.gemfile.lock index 7353d1943f2..860843ba705 100644 --- a/gemfiles/ruby_2.7_rails6_postgres_redis_activesupport.gemfile.lock +++ b/gemfiles/ruby_2.7_rails6_postgres_redis_activesupport.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.7_rails6_postgres_sidekiq.gemfile.lock b/gemfiles/ruby_2.7_rails6_postgres_sidekiq.gemfile.lock index 02d8ce66488..b7f187fc15c 100644 --- a/gemfiles/ruby_2.7_rails6_postgres_sidekiq.gemfile.lock +++ b/gemfiles/ruby_2.7_rails6_postgres_sidekiq.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.7_rails6_semantic_logger.gemfile.lock b/gemfiles/ruby_2.7_rails6_semantic_logger.gemfile.lock index efcc220e03d..e74738464b4 100644 --- a/gemfiles/ruby_2.7_rails6_semantic_logger.gemfile.lock +++ b/gemfiles/ruby_2.7_rails6_semantic_logger.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.7_redis_3.gemfile.lock b/gemfiles/ruby_2.7_redis_3.gemfile.lock index d74397adfa3..bec9919c891 100644 --- a/gemfiles/ruby_2.7_redis_3.gemfile.lock +++ b/gemfiles/ruby_2.7_redis_3.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.7_redis_4.gemfile.lock b/gemfiles/ruby_2.7_redis_4.gemfile.lock index 7bf5a4514c5..d75c25a6a8b 100644 --- a/gemfiles/ruby_2.7_redis_4.gemfile.lock +++ b/gemfiles/ruby_2.7_redis_4.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.7_redis_5.gemfile.lock b/gemfiles/ruby_2.7_redis_5.gemfile.lock index d0ba92b2f08..4dcf340bd2f 100644 --- a/gemfiles/ruby_2.7_redis_5.gemfile.lock +++ b/gemfiles/ruby_2.7_redis_5.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.7_relational_db.gemfile.lock b/gemfiles/ruby_2.7_relational_db.gemfile.lock index 7a9b4767c6c..45951fb9cc6 100644 --- a/gemfiles/ruby_2.7_relational_db.gemfile.lock +++ b/gemfiles/ruby_2.7_relational_db.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.7_resque2_redis3.gemfile.lock b/gemfiles/ruby_2.7_resque2_redis3.gemfile.lock index 912ba968c65..d80978073eb 100644 --- a/gemfiles/ruby_2.7_resque2_redis3.gemfile.lock +++ b/gemfiles/ruby_2.7_resque2_redis3.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.7_resque2_redis4.gemfile.lock b/gemfiles/ruby_2.7_resque2_redis4.gemfile.lock index 34bc54b0124..6e2dd71d055 100644 --- a/gemfiles/ruby_2.7_resque2_redis4.gemfile.lock +++ b/gemfiles/ruby_2.7_resque2_redis4.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.7_sinatra_2.gemfile.lock b/gemfiles/ruby_2.7_sinatra_2.gemfile.lock index 58aa93f9506..b269b1d2045 100644 --- a/gemfiles/ruby_2.7_sinatra_2.gemfile.lock +++ b/gemfiles/ruby_2.7_sinatra_2.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.7_sinatra_3.gemfile.lock b/gemfiles/ruby_2.7_sinatra_3.gemfile.lock index 18429c10019..cf19f271115 100644 --- a/gemfiles/ruby_2.7_sinatra_3.gemfile.lock +++ b/gemfiles/ruby_2.7_sinatra_3.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.7_stripe_10.gemfile.lock b/gemfiles/ruby_2.7_stripe_10.gemfile.lock index 8993cc71a3f..db5c2e1e0b8 100644 --- a/gemfiles/ruby_2.7_stripe_10.gemfile.lock +++ b/gemfiles/ruby_2.7_stripe_10.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.7_stripe_11.gemfile.lock b/gemfiles/ruby_2.7_stripe_11.gemfile.lock index 0b0561f8f80..3237b0b04ed 100644 --- a/gemfiles/ruby_2.7_stripe_11.gemfile.lock +++ b/gemfiles/ruby_2.7_stripe_11.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.7_stripe_12.gemfile.lock b/gemfiles/ruby_2.7_stripe_12.gemfile.lock index 2cd7ed3b316..b1fb3952da9 100644 --- a/gemfiles/ruby_2.7_stripe_12.gemfile.lock +++ b/gemfiles/ruby_2.7_stripe_12.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.7_stripe_7.gemfile.lock b/gemfiles/ruby_2.7_stripe_7.gemfile.lock index 2751aeb3574..f6a96cc35dc 100644 --- a/gemfiles/ruby_2.7_stripe_7.gemfile.lock +++ b/gemfiles/ruby_2.7_stripe_7.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.7_stripe_8.gemfile.lock b/gemfiles/ruby_2.7_stripe_8.gemfile.lock index 76e2a849bd0..93bf4c1263d 100644 --- a/gemfiles/ruby_2.7_stripe_8.gemfile.lock +++ b/gemfiles/ruby_2.7_stripe_8.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.7_stripe_9.gemfile.lock b/gemfiles/ruby_2.7_stripe_9.gemfile.lock index 0134478423b..4e3625f8d94 100644 --- a/gemfiles/ruby_2.7_stripe_9.gemfile.lock +++ b/gemfiles/ruby_2.7_stripe_9.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.7_stripe_latest.gemfile.lock b/gemfiles/ruby_2.7_stripe_latest.gemfile.lock index 6adfa9cb7a3..5c06b6da698 100644 --- a/gemfiles/ruby_2.7_stripe_latest.gemfile.lock +++ b/gemfiles/ruby_2.7_stripe_latest.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.7_stripe_min.gemfile.lock b/gemfiles/ruby_2.7_stripe_min.gemfile.lock index 5b705cd9ce3..d777c1b5476 100644 --- a/gemfiles/ruby_2.7_stripe_min.gemfile.lock +++ b/gemfiles/ruby_2.7_stripe_min.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.0_activesupport.gemfile.lock b/gemfiles/ruby_3.0_activesupport.gemfile.lock index a778bb71a40..7a540adaf03 100644 --- a/gemfiles/ruby_3.0_activesupport.gemfile.lock +++ b/gemfiles/ruby_3.0_activesupport.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.0_aws.gemfile.lock b/gemfiles/ruby_3.0_aws.gemfile.lock index eb6c5d50deb..c8947e3ccfb 100644 --- a/gemfiles/ruby_3.0_aws.gemfile.lock +++ b/gemfiles/ruby_3.0_aws.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.0_contrib.gemfile.lock b/gemfiles/ruby_3.0_contrib.gemfile.lock index b30629e79b1..c05a3dc6fa8 100644 --- a/gemfiles/ruby_3.0_contrib.gemfile.lock +++ b/gemfiles/ruby_3.0_contrib.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.0_contrib_old.gemfile.lock b/gemfiles/ruby_3.0_contrib_old.gemfile.lock index 33265c54763..62a28c9cfa7 100644 --- a/gemfiles/ruby_3.0_contrib_old.gemfile.lock +++ b/gemfiles/ruby_3.0_contrib_old.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.0_core_old.gemfile.lock b/gemfiles/ruby_3.0_core_old.gemfile.lock index a2446422712..a673b3513ac 100644 --- a/gemfiles/ruby_3.0_core_old.gemfile.lock +++ b/gemfiles/ruby_3.0_core_old.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.0_elasticsearch_7.gemfile.lock b/gemfiles/ruby_3.0_elasticsearch_7.gemfile.lock index 9d3e200a4a1..fad3533337e 100644 --- a/gemfiles/ruby_3.0_elasticsearch_7.gemfile.lock +++ b/gemfiles/ruby_3.0_elasticsearch_7.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.0_elasticsearch_8.gemfile.lock b/gemfiles/ruby_3.0_elasticsearch_8.gemfile.lock index 5638bd0696a..7382d596112 100644 --- a/gemfiles/ruby_3.0_elasticsearch_8.gemfile.lock +++ b/gemfiles/ruby_3.0_elasticsearch_8.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.0_elasticsearch_latest.gemfile.lock b/gemfiles/ruby_3.0_elasticsearch_latest.gemfile.lock index 6f5e643050b..b5c748ab825 100644 --- a/gemfiles/ruby_3.0_elasticsearch_latest.gemfile.lock +++ b/gemfiles/ruby_3.0_elasticsearch_latest.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.0_graphql_1.13.gemfile.lock b/gemfiles/ruby_3.0_graphql_1.13.gemfile.lock index 451459beb72..6bb9ad8f88b 100644 --- a/gemfiles/ruby_3.0_graphql_1.13.gemfile.lock +++ b/gemfiles/ruby_3.0_graphql_1.13.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.0_graphql_2.0.gemfile.lock b/gemfiles/ruby_3.0_graphql_2.0.gemfile.lock index 7fb3ae1300d..2e3d0cb2b98 100644 --- a/gemfiles/ruby_3.0_graphql_2.0.gemfile.lock +++ b/gemfiles/ruby_3.0_graphql_2.0.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.0_graphql_2.1.gemfile.lock b/gemfiles/ruby_3.0_graphql_2.1.gemfile.lock index 270ecf04df7..ab2f7c3a16a 100644 --- a/gemfiles/ruby_3.0_graphql_2.1.gemfile.lock +++ b/gemfiles/ruby_3.0_graphql_2.1.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.0_graphql_2.2.gemfile.lock b/gemfiles/ruby_3.0_graphql_2.2.gemfile.lock index 5902b20124b..3a2f2cde502 100644 --- a/gemfiles/ruby_3.0_graphql_2.2.gemfile.lock +++ b/gemfiles/ruby_3.0_graphql_2.2.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.0_graphql_2.3.gemfile.lock b/gemfiles/ruby_3.0_graphql_2.3.gemfile.lock index 81b4a11c261..9125d50f37d 100644 --- a/gemfiles/ruby_3.0_graphql_2.3.gemfile.lock +++ b/gemfiles/ruby_3.0_graphql_2.3.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.0_http.gemfile.lock b/gemfiles/ruby_3.0_http.gemfile.lock index 47668c153b6..99792f58977 100644 --- a/gemfiles/ruby_3.0_http.gemfile.lock +++ b/gemfiles/ruby_3.0_http.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.0_opensearch_2.gemfile.lock b/gemfiles/ruby_3.0_opensearch_2.gemfile.lock index 1954a8eab0e..4321b9bdc02 100644 --- a/gemfiles/ruby_3.0_opensearch_2.gemfile.lock +++ b/gemfiles/ruby_3.0_opensearch_2.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.0_opensearch_3.gemfile.lock b/gemfiles/ruby_3.0_opensearch_3.gemfile.lock index 27fee92c3a9..95a12c3df01 100644 --- a/gemfiles/ruby_3.0_opensearch_3.gemfile.lock +++ b/gemfiles/ruby_3.0_opensearch_3.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.0_opensearch_latest.gemfile.lock b/gemfiles/ruby_3.0_opensearch_latest.gemfile.lock index 9b5838effa4..b5ace5ca402 100644 --- a/gemfiles/ruby_3.0_opensearch_latest.gemfile.lock +++ b/gemfiles/ruby_3.0_opensearch_latest.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.0_opentelemetry.gemfile.lock b/gemfiles/ruby_3.0_opentelemetry.gemfile.lock index 7b7a889baad..2e7c25344a3 100755 --- a/gemfiles/ruby_3.0_opentelemetry.gemfile.lock +++ b/gemfiles/ruby_3.0_opentelemetry.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.0_opentelemetry_otlp.gemfile.lock b/gemfiles/ruby_3.0_opentelemetry_otlp.gemfile.lock index 400d1fea660..7e88166b01e 100644 --- a/gemfiles/ruby_3.0_opentelemetry_otlp.gemfile.lock +++ b/gemfiles/ruby_3.0_opentelemetry_otlp.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.0_rack_1.gemfile.lock b/gemfiles/ruby_3.0_rack_1.gemfile.lock index db4db5cc066..5d0039091d8 100644 --- a/gemfiles/ruby_3.0_rack_1.gemfile.lock +++ b/gemfiles/ruby_3.0_rack_1.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.0_rack_2.gemfile.lock b/gemfiles/ruby_3.0_rack_2.gemfile.lock index a1af6670d0e..cf2da39f450 100644 --- a/gemfiles/ruby_3.0_rack_2.gemfile.lock +++ b/gemfiles/ruby_3.0_rack_2.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.0_rack_3.gemfile.lock b/gemfiles/ruby_3.0_rack_3.gemfile.lock index 8664c6f72f4..d25ba9533bb 100644 --- a/gemfiles/ruby_3.0_rack_3.gemfile.lock +++ b/gemfiles/ruby_3.0_rack_3.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.0_rack_latest.gemfile.lock b/gemfiles/ruby_3.0_rack_latest.gemfile.lock index c9d66812835..34584316ced 100644 --- a/gemfiles/ruby_3.0_rack_latest.gemfile.lock +++ b/gemfiles/ruby_3.0_rack_latest.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.0_rails61_mysql2.gemfile.lock b/gemfiles/ruby_3.0_rails61_mysql2.gemfile.lock index fd24cf51aa1..55a77259e1b 100644 --- a/gemfiles/ruby_3.0_rails61_mysql2.gemfile.lock +++ b/gemfiles/ruby_3.0_rails61_mysql2.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.0_rails61_postgres.gemfile.lock b/gemfiles/ruby_3.0_rails61_postgres.gemfile.lock index 9a8b0426b6c..dd609a4bf99 100644 --- a/gemfiles/ruby_3.0_rails61_postgres.gemfile.lock +++ b/gemfiles/ruby_3.0_rails61_postgres.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.0_rails61_postgres_redis.gemfile.lock b/gemfiles/ruby_3.0_rails61_postgres_redis.gemfile.lock index 2e51c67b88e..b9a723b57fb 100644 --- a/gemfiles/ruby_3.0_rails61_postgres_redis.gemfile.lock +++ b/gemfiles/ruby_3.0_rails61_postgres_redis.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.0_rails61_postgres_sidekiq.gemfile.lock b/gemfiles/ruby_3.0_rails61_postgres_sidekiq.gemfile.lock index 4998295b138..5dc662d2df6 100644 --- a/gemfiles/ruby_3.0_rails61_postgres_sidekiq.gemfile.lock +++ b/gemfiles/ruby_3.0_rails61_postgres_sidekiq.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.0_rails61_semantic_logger.gemfile.lock b/gemfiles/ruby_3.0_rails61_semantic_logger.gemfile.lock index fe6ea73f018..be4f1d7b082 100644 --- a/gemfiles/ruby_3.0_rails61_semantic_logger.gemfile.lock +++ b/gemfiles/ruby_3.0_rails61_semantic_logger.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.0_rails61_trilogy.gemfile.lock b/gemfiles/ruby_3.0_rails61_trilogy.gemfile.lock index 98dccecfbce..7704593046a 100644 --- a/gemfiles/ruby_3.0_rails61_trilogy.gemfile.lock +++ b/gemfiles/ruby_3.0_rails61_trilogy.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.0_rails7.gemfile.lock b/gemfiles/ruby_3.0_rails7.gemfile.lock index f0c9a8aa064..3875a1f9953 100644 --- a/gemfiles/ruby_3.0_rails7.gemfile.lock +++ b/gemfiles/ruby_3.0_rails7.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.0_rails71.gemfile.lock b/gemfiles/ruby_3.0_rails71.gemfile.lock index 24d29f3b21b..53d2f3232bd 100644 --- a/gemfiles/ruby_3.0_rails71.gemfile.lock +++ b/gemfiles/ruby_3.0_rails71.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.0_redis_3.gemfile.lock b/gemfiles/ruby_3.0_redis_3.gemfile.lock index 13f5057e2ac..d110fdf89db 100644 --- a/gemfiles/ruby_3.0_redis_3.gemfile.lock +++ b/gemfiles/ruby_3.0_redis_3.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.0_redis_4.gemfile.lock b/gemfiles/ruby_3.0_redis_4.gemfile.lock index d4396fdc2d4..10d8d5f099d 100644 --- a/gemfiles/ruby_3.0_redis_4.gemfile.lock +++ b/gemfiles/ruby_3.0_redis_4.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.0_redis_5.gemfile.lock b/gemfiles/ruby_3.0_redis_5.gemfile.lock index 965b6f2caf2..6e02f4ec403 100644 --- a/gemfiles/ruby_3.0_redis_5.gemfile.lock +++ b/gemfiles/ruby_3.0_redis_5.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.0_relational_db.gemfile.lock b/gemfiles/ruby_3.0_relational_db.gemfile.lock index 00f19dc2355..a0c7095f061 100644 --- a/gemfiles/ruby_3.0_relational_db.gemfile.lock +++ b/gemfiles/ruby_3.0_relational_db.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.0_resque2_redis3.gemfile.lock b/gemfiles/ruby_3.0_resque2_redis3.gemfile.lock index e7a2d6fc8a9..da41e378e0e 100644 --- a/gemfiles/ruby_3.0_resque2_redis3.gemfile.lock +++ b/gemfiles/ruby_3.0_resque2_redis3.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.0_resque2_redis4.gemfile.lock b/gemfiles/ruby_3.0_resque2_redis4.gemfile.lock index b6e675aa480..0e7eee98c9e 100644 --- a/gemfiles/ruby_3.0_resque2_redis4.gemfile.lock +++ b/gemfiles/ruby_3.0_resque2_redis4.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.0_sinatra_2.gemfile.lock b/gemfiles/ruby_3.0_sinatra_2.gemfile.lock index 4aa186cb966..3705c38684e 100644 --- a/gemfiles/ruby_3.0_sinatra_2.gemfile.lock +++ b/gemfiles/ruby_3.0_sinatra_2.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.0_sinatra_3.gemfile.lock b/gemfiles/ruby_3.0_sinatra_3.gemfile.lock index 050a72b0b24..922d70da1b6 100644 --- a/gemfiles/ruby_3.0_sinatra_3.gemfile.lock +++ b/gemfiles/ruby_3.0_sinatra_3.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.0_sinatra_4.gemfile.lock b/gemfiles/ruby_3.0_sinatra_4.gemfile.lock index 27472610286..732e0ec7157 100644 --- a/gemfiles/ruby_3.0_sinatra_4.gemfile.lock +++ b/gemfiles/ruby_3.0_sinatra_4.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.0_stripe_10.gemfile.lock b/gemfiles/ruby_3.0_stripe_10.gemfile.lock index 347d5d38316..46c3e37baa0 100644 --- a/gemfiles/ruby_3.0_stripe_10.gemfile.lock +++ b/gemfiles/ruby_3.0_stripe_10.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.0_stripe_11.gemfile.lock b/gemfiles/ruby_3.0_stripe_11.gemfile.lock index cd70028f68b..9a16f527654 100644 --- a/gemfiles/ruby_3.0_stripe_11.gemfile.lock +++ b/gemfiles/ruby_3.0_stripe_11.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.0_stripe_12.gemfile.lock b/gemfiles/ruby_3.0_stripe_12.gemfile.lock index 4122469ba22..9203d631052 100644 --- a/gemfiles/ruby_3.0_stripe_12.gemfile.lock +++ b/gemfiles/ruby_3.0_stripe_12.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.0_stripe_7.gemfile.lock b/gemfiles/ruby_3.0_stripe_7.gemfile.lock index 67af3718b46..a4e9c098bdf 100644 --- a/gemfiles/ruby_3.0_stripe_7.gemfile.lock +++ b/gemfiles/ruby_3.0_stripe_7.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.0_stripe_8.gemfile.lock b/gemfiles/ruby_3.0_stripe_8.gemfile.lock index 4925941bb40..70ec3448ade 100644 --- a/gemfiles/ruby_3.0_stripe_8.gemfile.lock +++ b/gemfiles/ruby_3.0_stripe_8.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.0_stripe_9.gemfile.lock b/gemfiles/ruby_3.0_stripe_9.gemfile.lock index 2763bc50c78..0b2fcabd90d 100644 --- a/gemfiles/ruby_3.0_stripe_9.gemfile.lock +++ b/gemfiles/ruby_3.0_stripe_9.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.0_stripe_latest.gemfile.lock b/gemfiles/ruby_3.0_stripe_latest.gemfile.lock index 9aba51dbc4d..fc2db6db7ed 100644 --- a/gemfiles/ruby_3.0_stripe_latest.gemfile.lock +++ b/gemfiles/ruby_3.0_stripe_latest.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.0_stripe_min.gemfile.lock b/gemfiles/ruby_3.0_stripe_min.gemfile.lock index c3626c3c576..5c48594238d 100644 --- a/gemfiles/ruby_3.0_stripe_min.gemfile.lock +++ b/gemfiles/ruby_3.0_stripe_min.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.1_activesupport.gemfile.lock b/gemfiles/ruby_3.1_activesupport.gemfile.lock index a778bb71a40..7a540adaf03 100644 --- a/gemfiles/ruby_3.1_activesupport.gemfile.lock +++ b/gemfiles/ruby_3.1_activesupport.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.1_aws.gemfile.lock b/gemfiles/ruby_3.1_aws.gemfile.lock index eb6c5d50deb..c8947e3ccfb 100644 --- a/gemfiles/ruby_3.1_aws.gemfile.lock +++ b/gemfiles/ruby_3.1_aws.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.1_contrib.gemfile.lock b/gemfiles/ruby_3.1_contrib.gemfile.lock index b30629e79b1..c05a3dc6fa8 100644 --- a/gemfiles/ruby_3.1_contrib.gemfile.lock +++ b/gemfiles/ruby_3.1_contrib.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.1_contrib_old.gemfile.lock b/gemfiles/ruby_3.1_contrib_old.gemfile.lock index 33265c54763..62a28c9cfa7 100644 --- a/gemfiles/ruby_3.1_contrib_old.gemfile.lock +++ b/gemfiles/ruby_3.1_contrib_old.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.1_core_old.gemfile.lock b/gemfiles/ruby_3.1_core_old.gemfile.lock index a2446422712..a673b3513ac 100644 --- a/gemfiles/ruby_3.1_core_old.gemfile.lock +++ b/gemfiles/ruby_3.1_core_old.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.1_elasticsearch_7.gemfile.lock b/gemfiles/ruby_3.1_elasticsearch_7.gemfile.lock index 9d3e200a4a1..fad3533337e 100644 --- a/gemfiles/ruby_3.1_elasticsearch_7.gemfile.lock +++ b/gemfiles/ruby_3.1_elasticsearch_7.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.1_elasticsearch_8.gemfile.lock b/gemfiles/ruby_3.1_elasticsearch_8.gemfile.lock index 5638bd0696a..7382d596112 100644 --- a/gemfiles/ruby_3.1_elasticsearch_8.gemfile.lock +++ b/gemfiles/ruby_3.1_elasticsearch_8.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.1_elasticsearch_latest.gemfile.lock b/gemfiles/ruby_3.1_elasticsearch_latest.gemfile.lock index 6f5e643050b..b5c748ab825 100644 --- a/gemfiles/ruby_3.1_elasticsearch_latest.gemfile.lock +++ b/gemfiles/ruby_3.1_elasticsearch_latest.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.1_graphql_1.13.gemfile.lock b/gemfiles/ruby_3.1_graphql_1.13.gemfile.lock index 451459beb72..6bb9ad8f88b 100644 --- a/gemfiles/ruby_3.1_graphql_1.13.gemfile.lock +++ b/gemfiles/ruby_3.1_graphql_1.13.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.1_graphql_2.0.gemfile.lock b/gemfiles/ruby_3.1_graphql_2.0.gemfile.lock index 7fb3ae1300d..2e3d0cb2b98 100644 --- a/gemfiles/ruby_3.1_graphql_2.0.gemfile.lock +++ b/gemfiles/ruby_3.1_graphql_2.0.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.1_graphql_2.1.gemfile.lock b/gemfiles/ruby_3.1_graphql_2.1.gemfile.lock index 270ecf04df7..ab2f7c3a16a 100644 --- a/gemfiles/ruby_3.1_graphql_2.1.gemfile.lock +++ b/gemfiles/ruby_3.1_graphql_2.1.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.1_graphql_2.2.gemfile.lock b/gemfiles/ruby_3.1_graphql_2.2.gemfile.lock index 5902b20124b..3a2f2cde502 100644 --- a/gemfiles/ruby_3.1_graphql_2.2.gemfile.lock +++ b/gemfiles/ruby_3.1_graphql_2.2.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.1_graphql_2.3.gemfile.lock b/gemfiles/ruby_3.1_graphql_2.3.gemfile.lock index 81b4a11c261..9125d50f37d 100644 --- a/gemfiles/ruby_3.1_graphql_2.3.gemfile.lock +++ b/gemfiles/ruby_3.1_graphql_2.3.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.1_http.gemfile.lock b/gemfiles/ruby_3.1_http.gemfile.lock index 47668c153b6..99792f58977 100644 --- a/gemfiles/ruby_3.1_http.gemfile.lock +++ b/gemfiles/ruby_3.1_http.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.1_opensearch_2.gemfile.lock b/gemfiles/ruby_3.1_opensearch_2.gemfile.lock index 1954a8eab0e..4321b9bdc02 100644 --- a/gemfiles/ruby_3.1_opensearch_2.gemfile.lock +++ b/gemfiles/ruby_3.1_opensearch_2.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.1_opensearch_3.gemfile.lock b/gemfiles/ruby_3.1_opensearch_3.gemfile.lock index 27fee92c3a9..95a12c3df01 100644 --- a/gemfiles/ruby_3.1_opensearch_3.gemfile.lock +++ b/gemfiles/ruby_3.1_opensearch_3.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.1_opensearch_latest.gemfile.lock b/gemfiles/ruby_3.1_opensearch_latest.gemfile.lock index 9b5838effa4..b5ace5ca402 100644 --- a/gemfiles/ruby_3.1_opensearch_latest.gemfile.lock +++ b/gemfiles/ruby_3.1_opensearch_latest.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.1_opentelemetry.gemfile.lock b/gemfiles/ruby_3.1_opentelemetry.gemfile.lock index d83ed02c73b..e5216727125 100644 --- a/gemfiles/ruby_3.1_opentelemetry.gemfile.lock +++ b/gemfiles/ruby_3.1_opentelemetry.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.1_opentelemetry_otlp.gemfile.lock b/gemfiles/ruby_3.1_opentelemetry_otlp.gemfile.lock index 400d1fea660..7e88166b01e 100644 --- a/gemfiles/ruby_3.1_opentelemetry_otlp.gemfile.lock +++ b/gemfiles/ruby_3.1_opentelemetry_otlp.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.1_rack_1.gemfile.lock b/gemfiles/ruby_3.1_rack_1.gemfile.lock index db4db5cc066..5d0039091d8 100644 --- a/gemfiles/ruby_3.1_rack_1.gemfile.lock +++ b/gemfiles/ruby_3.1_rack_1.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.1_rack_2.gemfile.lock b/gemfiles/ruby_3.1_rack_2.gemfile.lock index a1af6670d0e..cf2da39f450 100644 --- a/gemfiles/ruby_3.1_rack_2.gemfile.lock +++ b/gemfiles/ruby_3.1_rack_2.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.1_rack_3.gemfile.lock b/gemfiles/ruby_3.1_rack_3.gemfile.lock index 8664c6f72f4..d25ba9533bb 100644 --- a/gemfiles/ruby_3.1_rack_3.gemfile.lock +++ b/gemfiles/ruby_3.1_rack_3.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.1_rack_latest.gemfile.lock b/gemfiles/ruby_3.1_rack_latest.gemfile.lock index c9d66812835..34584316ced 100644 --- a/gemfiles/ruby_3.1_rack_latest.gemfile.lock +++ b/gemfiles/ruby_3.1_rack_latest.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.1_rails61_mysql2.gemfile.lock b/gemfiles/ruby_3.1_rails61_mysql2.gemfile.lock index fd24cf51aa1..55a77259e1b 100644 --- a/gemfiles/ruby_3.1_rails61_mysql2.gemfile.lock +++ b/gemfiles/ruby_3.1_rails61_mysql2.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.1_rails61_postgres.gemfile.lock b/gemfiles/ruby_3.1_rails61_postgres.gemfile.lock index 9a8b0426b6c..dd609a4bf99 100644 --- a/gemfiles/ruby_3.1_rails61_postgres.gemfile.lock +++ b/gemfiles/ruby_3.1_rails61_postgres.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.1_rails61_postgres_redis.gemfile.lock b/gemfiles/ruby_3.1_rails61_postgres_redis.gemfile.lock index 2e51c67b88e..b9a723b57fb 100644 --- a/gemfiles/ruby_3.1_rails61_postgres_redis.gemfile.lock +++ b/gemfiles/ruby_3.1_rails61_postgres_redis.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.1_rails61_postgres_sidekiq.gemfile.lock b/gemfiles/ruby_3.1_rails61_postgres_sidekiq.gemfile.lock index 4998295b138..5dc662d2df6 100644 --- a/gemfiles/ruby_3.1_rails61_postgres_sidekiq.gemfile.lock +++ b/gemfiles/ruby_3.1_rails61_postgres_sidekiq.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.1_rails61_semantic_logger.gemfile.lock b/gemfiles/ruby_3.1_rails61_semantic_logger.gemfile.lock index fe6ea73f018..be4f1d7b082 100644 --- a/gemfiles/ruby_3.1_rails61_semantic_logger.gemfile.lock +++ b/gemfiles/ruby_3.1_rails61_semantic_logger.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.1_rails61_trilogy.gemfile.lock b/gemfiles/ruby_3.1_rails61_trilogy.gemfile.lock index 98dccecfbce..7704593046a 100644 --- a/gemfiles/ruby_3.1_rails61_trilogy.gemfile.lock +++ b/gemfiles/ruby_3.1_rails61_trilogy.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.1_rails7.gemfile.lock b/gemfiles/ruby_3.1_rails7.gemfile.lock index f0c9a8aa064..3875a1f9953 100644 --- a/gemfiles/ruby_3.1_rails7.gemfile.lock +++ b/gemfiles/ruby_3.1_rails7.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.1_rails71.gemfile.lock b/gemfiles/ruby_3.1_rails71.gemfile.lock index 24d29f3b21b..53d2f3232bd 100644 --- a/gemfiles/ruby_3.1_rails71.gemfile.lock +++ b/gemfiles/ruby_3.1_rails71.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.1_redis_3.gemfile.lock b/gemfiles/ruby_3.1_redis_3.gemfile.lock index 13f5057e2ac..d110fdf89db 100644 --- a/gemfiles/ruby_3.1_redis_3.gemfile.lock +++ b/gemfiles/ruby_3.1_redis_3.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.1_redis_4.gemfile.lock b/gemfiles/ruby_3.1_redis_4.gemfile.lock index d4396fdc2d4..10d8d5f099d 100644 --- a/gemfiles/ruby_3.1_redis_4.gemfile.lock +++ b/gemfiles/ruby_3.1_redis_4.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.1_redis_5.gemfile.lock b/gemfiles/ruby_3.1_redis_5.gemfile.lock index 965b6f2caf2..6e02f4ec403 100644 --- a/gemfiles/ruby_3.1_redis_5.gemfile.lock +++ b/gemfiles/ruby_3.1_redis_5.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.1_relational_db.gemfile.lock b/gemfiles/ruby_3.1_relational_db.gemfile.lock index 00f19dc2355..a0c7095f061 100644 --- a/gemfiles/ruby_3.1_relational_db.gemfile.lock +++ b/gemfiles/ruby_3.1_relational_db.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.1_resque2_redis3.gemfile.lock b/gemfiles/ruby_3.1_resque2_redis3.gemfile.lock index e7a2d6fc8a9..da41e378e0e 100644 --- a/gemfiles/ruby_3.1_resque2_redis3.gemfile.lock +++ b/gemfiles/ruby_3.1_resque2_redis3.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.1_resque2_redis4.gemfile.lock b/gemfiles/ruby_3.1_resque2_redis4.gemfile.lock index b6e675aa480..0e7eee98c9e 100644 --- a/gemfiles/ruby_3.1_resque2_redis4.gemfile.lock +++ b/gemfiles/ruby_3.1_resque2_redis4.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.1_sinatra_2.gemfile.lock b/gemfiles/ruby_3.1_sinatra_2.gemfile.lock index 4aa186cb966..3705c38684e 100644 --- a/gemfiles/ruby_3.1_sinatra_2.gemfile.lock +++ b/gemfiles/ruby_3.1_sinatra_2.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.1_sinatra_3.gemfile.lock b/gemfiles/ruby_3.1_sinatra_3.gemfile.lock index 050a72b0b24..922d70da1b6 100644 --- a/gemfiles/ruby_3.1_sinatra_3.gemfile.lock +++ b/gemfiles/ruby_3.1_sinatra_3.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.1_sinatra_4.gemfile.lock b/gemfiles/ruby_3.1_sinatra_4.gemfile.lock index 27472610286..732e0ec7157 100644 --- a/gemfiles/ruby_3.1_sinatra_4.gemfile.lock +++ b/gemfiles/ruby_3.1_sinatra_4.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.1_stripe_10.gemfile.lock b/gemfiles/ruby_3.1_stripe_10.gemfile.lock index 347d5d38316..46c3e37baa0 100644 --- a/gemfiles/ruby_3.1_stripe_10.gemfile.lock +++ b/gemfiles/ruby_3.1_stripe_10.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.1_stripe_11.gemfile.lock b/gemfiles/ruby_3.1_stripe_11.gemfile.lock index cd70028f68b..9a16f527654 100644 --- a/gemfiles/ruby_3.1_stripe_11.gemfile.lock +++ b/gemfiles/ruby_3.1_stripe_11.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.1_stripe_12.gemfile.lock b/gemfiles/ruby_3.1_stripe_12.gemfile.lock index 4122469ba22..9203d631052 100644 --- a/gemfiles/ruby_3.1_stripe_12.gemfile.lock +++ b/gemfiles/ruby_3.1_stripe_12.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.1_stripe_7.gemfile.lock b/gemfiles/ruby_3.1_stripe_7.gemfile.lock index 67af3718b46..a4e9c098bdf 100644 --- a/gemfiles/ruby_3.1_stripe_7.gemfile.lock +++ b/gemfiles/ruby_3.1_stripe_7.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.1_stripe_8.gemfile.lock b/gemfiles/ruby_3.1_stripe_8.gemfile.lock index 4925941bb40..70ec3448ade 100644 --- a/gemfiles/ruby_3.1_stripe_8.gemfile.lock +++ b/gemfiles/ruby_3.1_stripe_8.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.1_stripe_9.gemfile.lock b/gemfiles/ruby_3.1_stripe_9.gemfile.lock index 2763bc50c78..0b2fcabd90d 100644 --- a/gemfiles/ruby_3.1_stripe_9.gemfile.lock +++ b/gemfiles/ruby_3.1_stripe_9.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.1_stripe_latest.gemfile.lock b/gemfiles/ruby_3.1_stripe_latest.gemfile.lock index 9aba51dbc4d..fc2db6db7ed 100644 --- a/gemfiles/ruby_3.1_stripe_latest.gemfile.lock +++ b/gemfiles/ruby_3.1_stripe_latest.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.1_stripe_min.gemfile.lock b/gemfiles/ruby_3.1_stripe_min.gemfile.lock index c3626c3c576..5c48594238d 100644 --- a/gemfiles/ruby_3.1_stripe_min.gemfile.lock +++ b/gemfiles/ruby_3.1_stripe_min.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.2_activesupport.gemfile.lock b/gemfiles/ruby_3.2_activesupport.gemfile.lock index 1b5e81bcca5..1981e05d87d 100644 --- a/gemfiles/ruby_3.2_activesupport.gemfile.lock +++ b/gemfiles/ruby_3.2_activesupport.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.2_aws.gemfile.lock b/gemfiles/ruby_3.2_aws.gemfile.lock index b16acd4339f..27804b67ef7 100644 --- a/gemfiles/ruby_3.2_aws.gemfile.lock +++ b/gemfiles/ruby_3.2_aws.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.2_contrib.gemfile.lock b/gemfiles/ruby_3.2_contrib.gemfile.lock index 867018cec04..c1026f76e97 100644 --- a/gemfiles/ruby_3.2_contrib.gemfile.lock +++ b/gemfiles/ruby_3.2_contrib.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.2_contrib_old.gemfile.lock b/gemfiles/ruby_3.2_contrib_old.gemfile.lock index a942d910b15..08d5a4c6ee6 100644 --- a/gemfiles/ruby_3.2_contrib_old.gemfile.lock +++ b/gemfiles/ruby_3.2_contrib_old.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.2_core_old.gemfile.lock b/gemfiles/ruby_3.2_core_old.gemfile.lock index f45c8d24cc0..dc1e7fa210c 100644 --- a/gemfiles/ruby_3.2_core_old.gemfile.lock +++ b/gemfiles/ruby_3.2_core_old.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.2_elasticsearch_7.gemfile.lock b/gemfiles/ruby_3.2_elasticsearch_7.gemfile.lock index 1e40bae0751..2c2f48d1760 100644 --- a/gemfiles/ruby_3.2_elasticsearch_7.gemfile.lock +++ b/gemfiles/ruby_3.2_elasticsearch_7.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.2_elasticsearch_8.gemfile.lock b/gemfiles/ruby_3.2_elasticsearch_8.gemfile.lock index 26bae1df216..29e59ca0653 100644 --- a/gemfiles/ruby_3.2_elasticsearch_8.gemfile.lock +++ b/gemfiles/ruby_3.2_elasticsearch_8.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.2_elasticsearch_latest.gemfile.lock b/gemfiles/ruby_3.2_elasticsearch_latest.gemfile.lock index fd27f60ee79..89aa408d497 100644 --- a/gemfiles/ruby_3.2_elasticsearch_latest.gemfile.lock +++ b/gemfiles/ruby_3.2_elasticsearch_latest.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.2_graphql_1.13.gemfile.lock b/gemfiles/ruby_3.2_graphql_1.13.gemfile.lock index b460fea1416..d1229f40c18 100644 --- a/gemfiles/ruby_3.2_graphql_1.13.gemfile.lock +++ b/gemfiles/ruby_3.2_graphql_1.13.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.2_graphql_2.0.gemfile.lock b/gemfiles/ruby_3.2_graphql_2.0.gemfile.lock index 7227c34c8d9..2edabca7590 100644 --- a/gemfiles/ruby_3.2_graphql_2.0.gemfile.lock +++ b/gemfiles/ruby_3.2_graphql_2.0.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.2_graphql_2.1.gemfile.lock b/gemfiles/ruby_3.2_graphql_2.1.gemfile.lock index 4de280ec1e5..e97bb88591f 100644 --- a/gemfiles/ruby_3.2_graphql_2.1.gemfile.lock +++ b/gemfiles/ruby_3.2_graphql_2.1.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.2_graphql_2.2.gemfile.lock b/gemfiles/ruby_3.2_graphql_2.2.gemfile.lock index 7fb98bba991..6da8e71a5f5 100644 --- a/gemfiles/ruby_3.2_graphql_2.2.gemfile.lock +++ b/gemfiles/ruby_3.2_graphql_2.2.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.2_graphql_2.3.gemfile.lock b/gemfiles/ruby_3.2_graphql_2.3.gemfile.lock index 70f5fe6c1fa..e5e54f2a35e 100644 --- a/gemfiles/ruby_3.2_graphql_2.3.gemfile.lock +++ b/gemfiles/ruby_3.2_graphql_2.3.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.2_http.gemfile.lock b/gemfiles/ruby_3.2_http.gemfile.lock index 2b9b01e564e..534852e69aa 100644 --- a/gemfiles/ruby_3.2_http.gemfile.lock +++ b/gemfiles/ruby_3.2_http.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.2_opensearch_2.gemfile.lock b/gemfiles/ruby_3.2_opensearch_2.gemfile.lock index 25508222797..57b38e1b9f7 100644 --- a/gemfiles/ruby_3.2_opensearch_2.gemfile.lock +++ b/gemfiles/ruby_3.2_opensearch_2.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.2_opensearch_3.gemfile.lock b/gemfiles/ruby_3.2_opensearch_3.gemfile.lock index bc661abfd1f..932f9299022 100644 --- a/gemfiles/ruby_3.2_opensearch_3.gemfile.lock +++ b/gemfiles/ruby_3.2_opensearch_3.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.2_opensearch_latest.gemfile.lock b/gemfiles/ruby_3.2_opensearch_latest.gemfile.lock index 2d4cc2122e4..ee3b72c4016 100644 --- a/gemfiles/ruby_3.2_opensearch_latest.gemfile.lock +++ b/gemfiles/ruby_3.2_opensearch_latest.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.2_opentelemetry.gemfile.lock b/gemfiles/ruby_3.2_opentelemetry.gemfile.lock index d4309cfcef1..602d1e0b1c7 100644 --- a/gemfiles/ruby_3.2_opentelemetry.gemfile.lock +++ b/gemfiles/ruby_3.2_opentelemetry.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.2_opentelemetry_otlp.gemfile.lock b/gemfiles/ruby_3.2_opentelemetry_otlp.gemfile.lock index 58f8d0ad6c5..eb50a60a4d1 100644 --- a/gemfiles/ruby_3.2_opentelemetry_otlp.gemfile.lock +++ b/gemfiles/ruby_3.2_opentelemetry_otlp.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.2_rack_1.gemfile.lock b/gemfiles/ruby_3.2_rack_1.gemfile.lock index 834b06ff6aa..83f96701b97 100644 --- a/gemfiles/ruby_3.2_rack_1.gemfile.lock +++ b/gemfiles/ruby_3.2_rack_1.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.2_rack_2.gemfile.lock b/gemfiles/ruby_3.2_rack_2.gemfile.lock index 63d8c4ebcb2..a4586ae8285 100644 --- a/gemfiles/ruby_3.2_rack_2.gemfile.lock +++ b/gemfiles/ruby_3.2_rack_2.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.2_rack_3.gemfile.lock b/gemfiles/ruby_3.2_rack_3.gemfile.lock index 6c7e1722af6..0f9645b7053 100644 --- a/gemfiles/ruby_3.2_rack_3.gemfile.lock +++ b/gemfiles/ruby_3.2_rack_3.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.2_rack_latest.gemfile.lock b/gemfiles/ruby_3.2_rack_latest.gemfile.lock index cc7ee05cc7a..7ccaac04c5f 100644 --- a/gemfiles/ruby_3.2_rack_latest.gemfile.lock +++ b/gemfiles/ruby_3.2_rack_latest.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.2_rails61_mysql2.gemfile.lock b/gemfiles/ruby_3.2_rails61_mysql2.gemfile.lock index 07e4dfa76c9..ba4c165c523 100644 --- a/gemfiles/ruby_3.2_rails61_mysql2.gemfile.lock +++ b/gemfiles/ruby_3.2_rails61_mysql2.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.2_rails61_postgres.gemfile.lock b/gemfiles/ruby_3.2_rails61_postgres.gemfile.lock index 2c9b6dfe811..ef599294127 100644 --- a/gemfiles/ruby_3.2_rails61_postgres.gemfile.lock +++ b/gemfiles/ruby_3.2_rails61_postgres.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.2_rails61_postgres_redis.gemfile.lock b/gemfiles/ruby_3.2_rails61_postgres_redis.gemfile.lock index 6f36e3fc5ca..3b2841940f1 100644 --- a/gemfiles/ruby_3.2_rails61_postgres_redis.gemfile.lock +++ b/gemfiles/ruby_3.2_rails61_postgres_redis.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.2_rails61_postgres_sidekiq.gemfile.lock b/gemfiles/ruby_3.2_rails61_postgres_sidekiq.gemfile.lock index 066d1b35787..108158f2166 100644 --- a/gemfiles/ruby_3.2_rails61_postgres_sidekiq.gemfile.lock +++ b/gemfiles/ruby_3.2_rails61_postgres_sidekiq.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.2_rails61_semantic_logger.gemfile.lock b/gemfiles/ruby_3.2_rails61_semantic_logger.gemfile.lock index 2b332ec181f..9fbf6d78af6 100644 --- a/gemfiles/ruby_3.2_rails61_semantic_logger.gemfile.lock +++ b/gemfiles/ruby_3.2_rails61_semantic_logger.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.2_rails61_trilogy.gemfile.lock b/gemfiles/ruby_3.2_rails61_trilogy.gemfile.lock index d249fa844a5..616bdb32c14 100644 --- a/gemfiles/ruby_3.2_rails61_trilogy.gemfile.lock +++ b/gemfiles/ruby_3.2_rails61_trilogy.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.2_rails7.gemfile.lock b/gemfiles/ruby_3.2_rails7.gemfile.lock index af3026e32a1..acb7ef6e5f4 100644 --- a/gemfiles/ruby_3.2_rails7.gemfile.lock +++ b/gemfiles/ruby_3.2_rails7.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.2_rails71.gemfile.lock b/gemfiles/ruby_3.2_rails71.gemfile.lock index 22f8e06922b..b3466eec5f9 100644 --- a/gemfiles/ruby_3.2_rails71.gemfile.lock +++ b/gemfiles/ruby_3.2_rails71.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.2_redis_3.gemfile.lock b/gemfiles/ruby_3.2_redis_3.gemfile.lock index 5f734793a04..482b232ca95 100644 --- a/gemfiles/ruby_3.2_redis_3.gemfile.lock +++ b/gemfiles/ruby_3.2_redis_3.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.2_redis_4.gemfile.lock b/gemfiles/ruby_3.2_redis_4.gemfile.lock index 9724dbcb204..8fc48470074 100644 --- a/gemfiles/ruby_3.2_redis_4.gemfile.lock +++ b/gemfiles/ruby_3.2_redis_4.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.2_redis_5.gemfile.lock b/gemfiles/ruby_3.2_redis_5.gemfile.lock index 5269bdfd9b4..56c89546b49 100644 --- a/gemfiles/ruby_3.2_redis_5.gemfile.lock +++ b/gemfiles/ruby_3.2_redis_5.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.2_relational_db.gemfile.lock b/gemfiles/ruby_3.2_relational_db.gemfile.lock index a54e9e23127..50f05614c3b 100644 --- a/gemfiles/ruby_3.2_relational_db.gemfile.lock +++ b/gemfiles/ruby_3.2_relational_db.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.2_resque2_redis3.gemfile.lock b/gemfiles/ruby_3.2_resque2_redis3.gemfile.lock index 6aff930a45c..c64f9e6f508 100644 --- a/gemfiles/ruby_3.2_resque2_redis3.gemfile.lock +++ b/gemfiles/ruby_3.2_resque2_redis3.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.2_resque2_redis4.gemfile.lock b/gemfiles/ruby_3.2_resque2_redis4.gemfile.lock index 4d0949463c0..d633f835fb8 100644 --- a/gemfiles/ruby_3.2_resque2_redis4.gemfile.lock +++ b/gemfiles/ruby_3.2_resque2_redis4.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.2_sinatra_2.gemfile.lock b/gemfiles/ruby_3.2_sinatra_2.gemfile.lock index 36f06b2d2e5..ad40af69824 100644 --- a/gemfiles/ruby_3.2_sinatra_2.gemfile.lock +++ b/gemfiles/ruby_3.2_sinatra_2.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.2_sinatra_3.gemfile.lock b/gemfiles/ruby_3.2_sinatra_3.gemfile.lock index d4f54b395cc..0f02a837d3b 100644 --- a/gemfiles/ruby_3.2_sinatra_3.gemfile.lock +++ b/gemfiles/ruby_3.2_sinatra_3.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.2_sinatra_4.gemfile.lock b/gemfiles/ruby_3.2_sinatra_4.gemfile.lock index c525644009d..410abceaa61 100644 --- a/gemfiles/ruby_3.2_sinatra_4.gemfile.lock +++ b/gemfiles/ruby_3.2_sinatra_4.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.2_stripe_10.gemfile.lock b/gemfiles/ruby_3.2_stripe_10.gemfile.lock index 87757947e40..0f1f8988448 100644 --- a/gemfiles/ruby_3.2_stripe_10.gemfile.lock +++ b/gemfiles/ruby_3.2_stripe_10.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.2_stripe_11.gemfile.lock b/gemfiles/ruby_3.2_stripe_11.gemfile.lock index 35d109816cf..54f74d2ab08 100644 --- a/gemfiles/ruby_3.2_stripe_11.gemfile.lock +++ b/gemfiles/ruby_3.2_stripe_11.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.2_stripe_12.gemfile.lock b/gemfiles/ruby_3.2_stripe_12.gemfile.lock index 799c380ecf6..59324f8fe9e 100644 --- a/gemfiles/ruby_3.2_stripe_12.gemfile.lock +++ b/gemfiles/ruby_3.2_stripe_12.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.2_stripe_7.gemfile.lock b/gemfiles/ruby_3.2_stripe_7.gemfile.lock index 32cf3b2d265..fc491554bc8 100644 --- a/gemfiles/ruby_3.2_stripe_7.gemfile.lock +++ b/gemfiles/ruby_3.2_stripe_7.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.2_stripe_8.gemfile.lock b/gemfiles/ruby_3.2_stripe_8.gemfile.lock index cb50d598bdd..fe48a21e601 100644 --- a/gemfiles/ruby_3.2_stripe_8.gemfile.lock +++ b/gemfiles/ruby_3.2_stripe_8.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.2_stripe_9.gemfile.lock b/gemfiles/ruby_3.2_stripe_9.gemfile.lock index 5220af52942..51400d22a20 100644 --- a/gemfiles/ruby_3.2_stripe_9.gemfile.lock +++ b/gemfiles/ruby_3.2_stripe_9.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.2_stripe_latest.gemfile.lock b/gemfiles/ruby_3.2_stripe_latest.gemfile.lock index 1d3ae78d84b..1938b78a9ee 100644 --- a/gemfiles/ruby_3.2_stripe_latest.gemfile.lock +++ b/gemfiles/ruby_3.2_stripe_latest.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.2_stripe_min.gemfile.lock b/gemfiles/ruby_3.2_stripe_min.gemfile.lock index 3ee13845839..5295c8474e3 100644 --- a/gemfiles/ruby_3.2_stripe_min.gemfile.lock +++ b/gemfiles/ruby_3.2_stripe_min.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.3_activesupport.gemfile.lock b/gemfiles/ruby_3.3_activesupport.gemfile.lock index aa97a2861c0..f47879ad3de 100644 --- a/gemfiles/ruby_3.3_activesupport.gemfile.lock +++ b/gemfiles/ruby_3.3_activesupport.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.3_aws.gemfile.lock b/gemfiles/ruby_3.3_aws.gemfile.lock index 9d95eb255d0..50ec3351dee 100644 --- a/gemfiles/ruby_3.3_aws.gemfile.lock +++ b/gemfiles/ruby_3.3_aws.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.3_contrib.gemfile.lock b/gemfiles/ruby_3.3_contrib.gemfile.lock index add1e1c29d0..cd732a3316d 100644 --- a/gemfiles/ruby_3.3_contrib.gemfile.lock +++ b/gemfiles/ruby_3.3_contrib.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.3_contrib_old.gemfile.lock b/gemfiles/ruby_3.3_contrib_old.gemfile.lock index 474fbc6d27a..d3a5f150788 100644 --- a/gemfiles/ruby_3.3_contrib_old.gemfile.lock +++ b/gemfiles/ruby_3.3_contrib_old.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.3_core_old.gemfile.lock b/gemfiles/ruby_3.3_core_old.gemfile.lock index d259b8b51cc..d0322674de9 100644 --- a/gemfiles/ruby_3.3_core_old.gemfile.lock +++ b/gemfiles/ruby_3.3_core_old.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.3_elasticsearch_7.gemfile.lock b/gemfiles/ruby_3.3_elasticsearch_7.gemfile.lock index 924d3bbb17e..8455c7171b6 100644 --- a/gemfiles/ruby_3.3_elasticsearch_7.gemfile.lock +++ b/gemfiles/ruby_3.3_elasticsearch_7.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.3_elasticsearch_8.gemfile.lock b/gemfiles/ruby_3.3_elasticsearch_8.gemfile.lock index 1925919d836..62274828686 100644 --- a/gemfiles/ruby_3.3_elasticsearch_8.gemfile.lock +++ b/gemfiles/ruby_3.3_elasticsearch_8.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.3_elasticsearch_latest.gemfile.lock b/gemfiles/ruby_3.3_elasticsearch_latest.gemfile.lock index fd27f60ee79..89aa408d497 100644 --- a/gemfiles/ruby_3.3_elasticsearch_latest.gemfile.lock +++ b/gemfiles/ruby_3.3_elasticsearch_latest.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.3_graphql_1.13.gemfile.lock b/gemfiles/ruby_3.3_graphql_1.13.gemfile.lock index e36055ffcac..d63abd741e7 100644 --- a/gemfiles/ruby_3.3_graphql_1.13.gemfile.lock +++ b/gemfiles/ruby_3.3_graphql_1.13.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.3_graphql_2.0.gemfile.lock b/gemfiles/ruby_3.3_graphql_2.0.gemfile.lock index 04f971ad5e0..2e07bc16a7e 100644 --- a/gemfiles/ruby_3.3_graphql_2.0.gemfile.lock +++ b/gemfiles/ruby_3.3_graphql_2.0.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.3_graphql_2.1.gemfile.lock b/gemfiles/ruby_3.3_graphql_2.1.gemfile.lock index 26515c5550e..96dce2cac3f 100644 --- a/gemfiles/ruby_3.3_graphql_2.1.gemfile.lock +++ b/gemfiles/ruby_3.3_graphql_2.1.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.3_graphql_2.2.gemfile.lock b/gemfiles/ruby_3.3_graphql_2.2.gemfile.lock index 283a51fb8c8..341bfdcda99 100644 --- a/gemfiles/ruby_3.3_graphql_2.2.gemfile.lock +++ b/gemfiles/ruby_3.3_graphql_2.2.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.3_graphql_2.3.gemfile.lock b/gemfiles/ruby_3.3_graphql_2.3.gemfile.lock index 70f5fe6c1fa..e5e54f2a35e 100644 --- a/gemfiles/ruby_3.3_graphql_2.3.gemfile.lock +++ b/gemfiles/ruby_3.3_graphql_2.3.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.3_http.gemfile.lock b/gemfiles/ruby_3.3_http.gemfile.lock index 9c392eee3c1..a20e9af67eb 100644 --- a/gemfiles/ruby_3.3_http.gemfile.lock +++ b/gemfiles/ruby_3.3_http.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.3_opensearch_2.gemfile.lock b/gemfiles/ruby_3.3_opensearch_2.gemfile.lock index d6c96140383..4c047514a8b 100644 --- a/gemfiles/ruby_3.3_opensearch_2.gemfile.lock +++ b/gemfiles/ruby_3.3_opensearch_2.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.3_opensearch_3.gemfile.lock b/gemfiles/ruby_3.3_opensearch_3.gemfile.lock index c8d18ae8ec2..c06260e4ead 100644 --- a/gemfiles/ruby_3.3_opensearch_3.gemfile.lock +++ b/gemfiles/ruby_3.3_opensearch_3.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.3_opensearch_latest.gemfile.lock b/gemfiles/ruby_3.3_opensearch_latest.gemfile.lock index 2d4cc2122e4..ee3b72c4016 100644 --- a/gemfiles/ruby_3.3_opensearch_latest.gemfile.lock +++ b/gemfiles/ruby_3.3_opensearch_latest.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.3_opentelemetry.gemfile.lock b/gemfiles/ruby_3.3_opentelemetry.gemfile.lock index 10e99edb23b..7e69eb878a2 100644 --- a/gemfiles/ruby_3.3_opentelemetry.gemfile.lock +++ b/gemfiles/ruby_3.3_opentelemetry.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.3_opentelemetry_otlp.gemfile.lock b/gemfiles/ruby_3.3_opentelemetry_otlp.gemfile.lock index 58f8d0ad6c5..eb50a60a4d1 100644 --- a/gemfiles/ruby_3.3_opentelemetry_otlp.gemfile.lock +++ b/gemfiles/ruby_3.3_opentelemetry_otlp.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.3_rack_2.gemfile.lock b/gemfiles/ruby_3.3_rack_2.gemfile.lock index aa79391b69c..fcc06b5a10e 100644 --- a/gemfiles/ruby_3.3_rack_2.gemfile.lock +++ b/gemfiles/ruby_3.3_rack_2.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.3_rack_3.gemfile.lock b/gemfiles/ruby_3.3_rack_3.gemfile.lock index 78fa275de68..a9e47bc0483 100644 --- a/gemfiles/ruby_3.3_rack_3.gemfile.lock +++ b/gemfiles/ruby_3.3_rack_3.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.3_rack_latest.gemfile.lock b/gemfiles/ruby_3.3_rack_latest.gemfile.lock index cc7ee05cc7a..7ccaac04c5f 100644 --- a/gemfiles/ruby_3.3_rack_latest.gemfile.lock +++ b/gemfiles/ruby_3.3_rack_latest.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.3_rails61_mysql2.gemfile.lock b/gemfiles/ruby_3.3_rails61_mysql2.gemfile.lock index e5197080c0e..7e3608aaade 100644 --- a/gemfiles/ruby_3.3_rails61_mysql2.gemfile.lock +++ b/gemfiles/ruby_3.3_rails61_mysql2.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.3_rails61_postgres.gemfile.lock b/gemfiles/ruby_3.3_rails61_postgres.gemfile.lock index 593bc671fde..1da571d4c44 100644 --- a/gemfiles/ruby_3.3_rails61_postgres.gemfile.lock +++ b/gemfiles/ruby_3.3_rails61_postgres.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.3_rails61_postgres_redis.gemfile.lock b/gemfiles/ruby_3.3_rails61_postgres_redis.gemfile.lock index dfb36aa3711..cea69c15cf7 100644 --- a/gemfiles/ruby_3.3_rails61_postgres_redis.gemfile.lock +++ b/gemfiles/ruby_3.3_rails61_postgres_redis.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.3_rails61_postgres_sidekiq.gemfile.lock b/gemfiles/ruby_3.3_rails61_postgres_sidekiq.gemfile.lock index 80f53cb0bdd..b24c647071b 100644 --- a/gemfiles/ruby_3.3_rails61_postgres_sidekiq.gemfile.lock +++ b/gemfiles/ruby_3.3_rails61_postgres_sidekiq.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.3_rails61_semantic_logger.gemfile.lock b/gemfiles/ruby_3.3_rails61_semantic_logger.gemfile.lock index 6da94cfb456..eb9a7d36762 100644 --- a/gemfiles/ruby_3.3_rails61_semantic_logger.gemfile.lock +++ b/gemfiles/ruby_3.3_rails61_semantic_logger.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.3_rails61_trilogy.gemfile.lock b/gemfiles/ruby_3.3_rails61_trilogy.gemfile.lock index 78f63e2e0e6..dd88deb65c5 100644 --- a/gemfiles/ruby_3.3_rails61_trilogy.gemfile.lock +++ b/gemfiles/ruby_3.3_rails61_trilogy.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.3_rails7.gemfile.lock b/gemfiles/ruby_3.3_rails7.gemfile.lock index af3026e32a1..acb7ef6e5f4 100644 --- a/gemfiles/ruby_3.3_rails7.gemfile.lock +++ b/gemfiles/ruby_3.3_rails7.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.3_rails71.gemfile.lock b/gemfiles/ruby_3.3_rails71.gemfile.lock index 22f8e06922b..b3466eec5f9 100644 --- a/gemfiles/ruby_3.3_rails71.gemfile.lock +++ b/gemfiles/ruby_3.3_rails71.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.3_redis_3.gemfile.lock b/gemfiles/ruby_3.3_redis_3.gemfile.lock index c0dd9f00f42..4a5bba8c338 100644 --- a/gemfiles/ruby_3.3_redis_3.gemfile.lock +++ b/gemfiles/ruby_3.3_redis_3.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.3_redis_4.gemfile.lock b/gemfiles/ruby_3.3_redis_4.gemfile.lock index ad96a72b821..9a97ca1ad25 100644 --- a/gemfiles/ruby_3.3_redis_4.gemfile.lock +++ b/gemfiles/ruby_3.3_redis_4.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.3_redis_5.gemfile.lock b/gemfiles/ruby_3.3_redis_5.gemfile.lock index 6ed8bbed53b..0331256cd15 100644 --- a/gemfiles/ruby_3.3_redis_5.gemfile.lock +++ b/gemfiles/ruby_3.3_redis_5.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.3_relational_db.gemfile.lock b/gemfiles/ruby_3.3_relational_db.gemfile.lock index ec73cd404b3..feb1ed242ae 100644 --- a/gemfiles/ruby_3.3_relational_db.gemfile.lock +++ b/gemfiles/ruby_3.3_relational_db.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.3_resque2_redis3.gemfile.lock b/gemfiles/ruby_3.3_resque2_redis3.gemfile.lock index 230e2f1b30e..1459ab854c3 100644 --- a/gemfiles/ruby_3.3_resque2_redis3.gemfile.lock +++ b/gemfiles/ruby_3.3_resque2_redis3.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.3_resque2_redis4.gemfile.lock b/gemfiles/ruby_3.3_resque2_redis4.gemfile.lock index c5d95f74da7..dcf559dd749 100644 --- a/gemfiles/ruby_3.3_resque2_redis4.gemfile.lock +++ b/gemfiles/ruby_3.3_resque2_redis4.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.3_sinatra_2.gemfile.lock b/gemfiles/ruby_3.3_sinatra_2.gemfile.lock index 36f06b2d2e5..ad40af69824 100644 --- a/gemfiles/ruby_3.3_sinatra_2.gemfile.lock +++ b/gemfiles/ruby_3.3_sinatra_2.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.3_sinatra_3.gemfile.lock b/gemfiles/ruby_3.3_sinatra_3.gemfile.lock index d4f54b395cc..0f02a837d3b 100644 --- a/gemfiles/ruby_3.3_sinatra_3.gemfile.lock +++ b/gemfiles/ruby_3.3_sinatra_3.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.3_sinatra_4.gemfile.lock b/gemfiles/ruby_3.3_sinatra_4.gemfile.lock index c525644009d..410abceaa61 100644 --- a/gemfiles/ruby_3.3_sinatra_4.gemfile.lock +++ b/gemfiles/ruby_3.3_sinatra_4.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.3_stripe_10.gemfile.lock b/gemfiles/ruby_3.3_stripe_10.gemfile.lock index 87757947e40..0f1f8988448 100644 --- a/gemfiles/ruby_3.3_stripe_10.gemfile.lock +++ b/gemfiles/ruby_3.3_stripe_10.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.3_stripe_11.gemfile.lock b/gemfiles/ruby_3.3_stripe_11.gemfile.lock index 35d109816cf..54f74d2ab08 100644 --- a/gemfiles/ruby_3.3_stripe_11.gemfile.lock +++ b/gemfiles/ruby_3.3_stripe_11.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.3_stripe_12.gemfile.lock b/gemfiles/ruby_3.3_stripe_12.gemfile.lock index 799c380ecf6..59324f8fe9e 100644 --- a/gemfiles/ruby_3.3_stripe_12.gemfile.lock +++ b/gemfiles/ruby_3.3_stripe_12.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.3_stripe_7.gemfile.lock b/gemfiles/ruby_3.3_stripe_7.gemfile.lock index 32cf3b2d265..fc491554bc8 100644 --- a/gemfiles/ruby_3.3_stripe_7.gemfile.lock +++ b/gemfiles/ruby_3.3_stripe_7.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.3_stripe_8.gemfile.lock b/gemfiles/ruby_3.3_stripe_8.gemfile.lock index cb50d598bdd..fe48a21e601 100644 --- a/gemfiles/ruby_3.3_stripe_8.gemfile.lock +++ b/gemfiles/ruby_3.3_stripe_8.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.3_stripe_9.gemfile.lock b/gemfiles/ruby_3.3_stripe_9.gemfile.lock index 5220af52942..51400d22a20 100644 --- a/gemfiles/ruby_3.3_stripe_9.gemfile.lock +++ b/gemfiles/ruby_3.3_stripe_9.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.3_stripe_latest.gemfile.lock b/gemfiles/ruby_3.3_stripe_latest.gemfile.lock index 1d3ae78d84b..1938b78a9ee 100644 --- a/gemfiles/ruby_3.3_stripe_latest.gemfile.lock +++ b/gemfiles/ruby_3.3_stripe_latest.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.3_stripe_min.gemfile.lock b/gemfiles/ruby_3.3_stripe_min.gemfile.lock index 3ee13845839..5295c8474e3 100644 --- a/gemfiles/ruby_3.3_stripe_min.gemfile.lock +++ b/gemfiles/ruby_3.3_stripe_min.gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.4_activesupport.gemfile.lock b/gemfiles/ruby_3.4_activesupport.gemfile.lock index eaf93995778..c76d26fbfcc 100644 --- a/gemfiles/ruby_3.4_activesupport.gemfile.lock +++ b/gemfiles/ruby_3.4_activesupport.gemfile.lock @@ -18,7 +18,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.4_aws.gemfile.lock b/gemfiles/ruby_3.4_aws.gemfile.lock index dfa3d435a04..e6aeed42990 100644 --- a/gemfiles/ruby_3.4_aws.gemfile.lock +++ b/gemfiles/ruby_3.4_aws.gemfile.lock @@ -18,7 +18,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.4_contrib.gemfile.lock b/gemfiles/ruby_3.4_contrib.gemfile.lock index f2d69fe65f0..96268b00443 100644 --- a/gemfiles/ruby_3.4_contrib.gemfile.lock +++ b/gemfiles/ruby_3.4_contrib.gemfile.lock @@ -18,7 +18,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.4_contrib_old.gemfile.lock b/gemfiles/ruby_3.4_contrib_old.gemfile.lock index ef3fb92ce7e..0019d54cd85 100644 --- a/gemfiles/ruby_3.4_contrib_old.gemfile.lock +++ b/gemfiles/ruby_3.4_contrib_old.gemfile.lock @@ -18,7 +18,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.4_core_old.gemfile.lock b/gemfiles/ruby_3.4_core_old.gemfile.lock index 49d1e3060f9..28c47d52ba0 100644 --- a/gemfiles/ruby_3.4_core_old.gemfile.lock +++ b/gemfiles/ruby_3.4_core_old.gemfile.lock @@ -18,7 +18,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.4_elasticsearch_7.gemfile.lock b/gemfiles/ruby_3.4_elasticsearch_7.gemfile.lock index 84198415f1d..79dc87b6c0d 100644 --- a/gemfiles/ruby_3.4_elasticsearch_7.gemfile.lock +++ b/gemfiles/ruby_3.4_elasticsearch_7.gemfile.lock @@ -18,7 +18,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.4_elasticsearch_8.gemfile.lock b/gemfiles/ruby_3.4_elasticsearch_8.gemfile.lock index 01a7f992225..320d7b266a5 100644 --- a/gemfiles/ruby_3.4_elasticsearch_8.gemfile.lock +++ b/gemfiles/ruby_3.4_elasticsearch_8.gemfile.lock @@ -18,7 +18,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.4_elasticsearch_latest.gemfile.lock b/gemfiles/ruby_3.4_elasticsearch_latest.gemfile.lock index f1b00b32c2a..e1b9edfa730 100644 --- a/gemfiles/ruby_3.4_elasticsearch_latest.gemfile.lock +++ b/gemfiles/ruby_3.4_elasticsearch_latest.gemfile.lock @@ -18,7 +18,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.4_graphql_1.13.gemfile.lock b/gemfiles/ruby_3.4_graphql_1.13.gemfile.lock index c57611d5d6b..07e496a7e86 100644 --- a/gemfiles/ruby_3.4_graphql_1.13.gemfile.lock +++ b/gemfiles/ruby_3.4_graphql_1.13.gemfile.lock @@ -18,7 +18,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.4_graphql_2.0.gemfile.lock b/gemfiles/ruby_3.4_graphql_2.0.gemfile.lock index 5b310bad082..e310d378032 100644 --- a/gemfiles/ruby_3.4_graphql_2.0.gemfile.lock +++ b/gemfiles/ruby_3.4_graphql_2.0.gemfile.lock @@ -18,7 +18,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.4_graphql_2.1.gemfile.lock b/gemfiles/ruby_3.4_graphql_2.1.gemfile.lock index 773d4286e87..52211277567 100644 --- a/gemfiles/ruby_3.4_graphql_2.1.gemfile.lock +++ b/gemfiles/ruby_3.4_graphql_2.1.gemfile.lock @@ -18,7 +18,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.4_graphql_2.2.gemfile.lock b/gemfiles/ruby_3.4_graphql_2.2.gemfile.lock index bf8cf23d8e0..14ed264980e 100644 --- a/gemfiles/ruby_3.4_graphql_2.2.gemfile.lock +++ b/gemfiles/ruby_3.4_graphql_2.2.gemfile.lock @@ -18,7 +18,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.4_graphql_2.3.gemfile.lock b/gemfiles/ruby_3.4_graphql_2.3.gemfile.lock index c52bd8462ae..d13ab189fb0 100644 --- a/gemfiles/ruby_3.4_graphql_2.3.gemfile.lock +++ b/gemfiles/ruby_3.4_graphql_2.3.gemfile.lock @@ -18,7 +18,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.4_http.gemfile.lock b/gemfiles/ruby_3.4_http.gemfile.lock index 7b41637e931..ab3f34ae4c1 100644 --- a/gemfiles/ruby_3.4_http.gemfile.lock +++ b/gemfiles/ruby_3.4_http.gemfile.lock @@ -18,7 +18,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.4_opensearch_2.gemfile.lock b/gemfiles/ruby_3.4_opensearch_2.gemfile.lock index 39d0968b79f..d85eaef341c 100644 --- a/gemfiles/ruby_3.4_opensearch_2.gemfile.lock +++ b/gemfiles/ruby_3.4_opensearch_2.gemfile.lock @@ -18,7 +18,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.4_opensearch_3.gemfile.lock b/gemfiles/ruby_3.4_opensearch_3.gemfile.lock index aa952ea8300..8253833e8d1 100644 --- a/gemfiles/ruby_3.4_opensearch_3.gemfile.lock +++ b/gemfiles/ruby_3.4_opensearch_3.gemfile.lock @@ -18,7 +18,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.4_opensearch_latest.gemfile.lock b/gemfiles/ruby_3.4_opensearch_latest.gemfile.lock index 80b4df44734..edc200a4a98 100644 --- a/gemfiles/ruby_3.4_opensearch_latest.gemfile.lock +++ b/gemfiles/ruby_3.4_opensearch_latest.gemfile.lock @@ -18,7 +18,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.4_opentelemetry.gemfile.lock b/gemfiles/ruby_3.4_opentelemetry.gemfile.lock index 5ce4dbddca9..de77a4bf0d6 100644 --- a/gemfiles/ruby_3.4_opentelemetry.gemfile.lock +++ b/gemfiles/ruby_3.4_opentelemetry.gemfile.lock @@ -18,7 +18,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.4_opentelemetry_otlp.gemfile.lock b/gemfiles/ruby_3.4_opentelemetry_otlp.gemfile.lock index 43ef01517f6..83c45e87e99 100644 --- a/gemfiles/ruby_3.4_opentelemetry_otlp.gemfile.lock +++ b/gemfiles/ruby_3.4_opentelemetry_otlp.gemfile.lock @@ -18,7 +18,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.4_rack_2.gemfile.lock b/gemfiles/ruby_3.4_rack_2.gemfile.lock index 6b824fa23d7..65af4fe3106 100644 --- a/gemfiles/ruby_3.4_rack_2.gemfile.lock +++ b/gemfiles/ruby_3.4_rack_2.gemfile.lock @@ -18,7 +18,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.4_rack_3.gemfile.lock b/gemfiles/ruby_3.4_rack_3.gemfile.lock index ff5cc43a733..fb9aa79988a 100644 --- a/gemfiles/ruby_3.4_rack_3.gemfile.lock +++ b/gemfiles/ruby_3.4_rack_3.gemfile.lock @@ -18,7 +18,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.4_rack_latest.gemfile.lock b/gemfiles/ruby_3.4_rack_latest.gemfile.lock index 3a2bfdbe4da..d4cb684c5d4 100644 --- a/gemfiles/ruby_3.4_rack_latest.gemfile.lock +++ b/gemfiles/ruby_3.4_rack_latest.gemfile.lock @@ -18,7 +18,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.4_rails61_mysql2.gemfile.lock b/gemfiles/ruby_3.4_rails61_mysql2.gemfile.lock index bf975d1c66f..1102b7614d1 100644 --- a/gemfiles/ruby_3.4_rails61_mysql2.gemfile.lock +++ b/gemfiles/ruby_3.4_rails61_mysql2.gemfile.lock @@ -18,7 +18,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.4_rails61_postgres.gemfile.lock b/gemfiles/ruby_3.4_rails61_postgres.gemfile.lock index eb99c111099..6ad2cec4425 100644 --- a/gemfiles/ruby_3.4_rails61_postgres.gemfile.lock +++ b/gemfiles/ruby_3.4_rails61_postgres.gemfile.lock @@ -18,7 +18,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.4_rails61_postgres_redis.gemfile.lock b/gemfiles/ruby_3.4_rails61_postgres_redis.gemfile.lock index 042c558b535..98f35298a9b 100644 --- a/gemfiles/ruby_3.4_rails61_postgres_redis.gemfile.lock +++ b/gemfiles/ruby_3.4_rails61_postgres_redis.gemfile.lock @@ -18,7 +18,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.4_rails61_postgres_sidekiq.gemfile.lock b/gemfiles/ruby_3.4_rails61_postgres_sidekiq.gemfile.lock index 4476aa3772b..3f6ebd7e900 100644 --- a/gemfiles/ruby_3.4_rails61_postgres_sidekiq.gemfile.lock +++ b/gemfiles/ruby_3.4_rails61_postgres_sidekiq.gemfile.lock @@ -18,7 +18,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.4_rails61_semantic_logger.gemfile.lock b/gemfiles/ruby_3.4_rails61_semantic_logger.gemfile.lock index 17e60d48924..1656369aacf 100644 --- a/gemfiles/ruby_3.4_rails61_semantic_logger.gemfile.lock +++ b/gemfiles/ruby_3.4_rails61_semantic_logger.gemfile.lock @@ -18,7 +18,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.4_rails61_trilogy.gemfile.lock b/gemfiles/ruby_3.4_rails61_trilogy.gemfile.lock index dce0bf0500d..48858f87995 100644 --- a/gemfiles/ruby_3.4_rails61_trilogy.gemfile.lock +++ b/gemfiles/ruby_3.4_rails61_trilogy.gemfile.lock @@ -18,7 +18,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.4_rails7.gemfile.lock b/gemfiles/ruby_3.4_rails7.gemfile.lock index 3916c884402..2a8713e0b61 100644 --- a/gemfiles/ruby_3.4_rails7.gemfile.lock +++ b/gemfiles/ruby_3.4_rails7.gemfile.lock @@ -18,7 +18,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.4_rails71.gemfile.lock b/gemfiles/ruby_3.4_rails71.gemfile.lock index 721c73fab20..ab1a9b772c7 100644 --- a/gemfiles/ruby_3.4_rails71.gemfile.lock +++ b/gemfiles/ruby_3.4_rails71.gemfile.lock @@ -18,7 +18,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.4_redis_3.gemfile.lock b/gemfiles/ruby_3.4_redis_3.gemfile.lock index 07a2f20c116..30ae2cc31ee 100644 --- a/gemfiles/ruby_3.4_redis_3.gemfile.lock +++ b/gemfiles/ruby_3.4_redis_3.gemfile.lock @@ -18,7 +18,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.4_redis_4.gemfile.lock b/gemfiles/ruby_3.4_redis_4.gemfile.lock index abca73ed8c8..2e93d91b897 100644 --- a/gemfiles/ruby_3.4_redis_4.gemfile.lock +++ b/gemfiles/ruby_3.4_redis_4.gemfile.lock @@ -18,7 +18,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.4_redis_5.gemfile.lock b/gemfiles/ruby_3.4_redis_5.gemfile.lock index f203fa1f66d..b1b6fa6608f 100644 --- a/gemfiles/ruby_3.4_redis_5.gemfile.lock +++ b/gemfiles/ruby_3.4_redis_5.gemfile.lock @@ -18,7 +18,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.4_relational_db.gemfile.lock b/gemfiles/ruby_3.4_relational_db.gemfile.lock index 0088ac386cf..58a066380e2 100644 --- a/gemfiles/ruby_3.4_relational_db.gemfile.lock +++ b/gemfiles/ruby_3.4_relational_db.gemfile.lock @@ -18,7 +18,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.4_resque2_redis3.gemfile.lock b/gemfiles/ruby_3.4_resque2_redis3.gemfile.lock index 5e1f2864926..e0b9a15da75 100644 --- a/gemfiles/ruby_3.4_resque2_redis3.gemfile.lock +++ b/gemfiles/ruby_3.4_resque2_redis3.gemfile.lock @@ -18,7 +18,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.4_resque2_redis4.gemfile.lock b/gemfiles/ruby_3.4_resque2_redis4.gemfile.lock index b2ddc12fef9..e8e8ff3b9d4 100644 --- a/gemfiles/ruby_3.4_resque2_redis4.gemfile.lock +++ b/gemfiles/ruby_3.4_resque2_redis4.gemfile.lock @@ -18,7 +18,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.4_sinatra_2.gemfile.lock b/gemfiles/ruby_3.4_sinatra_2.gemfile.lock index 3af66f7c74b..285300f05aa 100644 --- a/gemfiles/ruby_3.4_sinatra_2.gemfile.lock +++ b/gemfiles/ruby_3.4_sinatra_2.gemfile.lock @@ -18,7 +18,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.4_sinatra_3.gemfile.lock b/gemfiles/ruby_3.4_sinatra_3.gemfile.lock index 4cd8b1efa70..289faf54852 100644 --- a/gemfiles/ruby_3.4_sinatra_3.gemfile.lock +++ b/gemfiles/ruby_3.4_sinatra_3.gemfile.lock @@ -18,7 +18,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.4_sinatra_4.gemfile.lock b/gemfiles/ruby_3.4_sinatra_4.gemfile.lock index 8823fbdb25a..b53d014ad00 100644 --- a/gemfiles/ruby_3.4_sinatra_4.gemfile.lock +++ b/gemfiles/ruby_3.4_sinatra_4.gemfile.lock @@ -18,7 +18,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.4_stripe_10.gemfile.lock b/gemfiles/ruby_3.4_stripe_10.gemfile.lock index ea844c8d81b..30b51bccb00 100644 --- a/gemfiles/ruby_3.4_stripe_10.gemfile.lock +++ b/gemfiles/ruby_3.4_stripe_10.gemfile.lock @@ -18,7 +18,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.4_stripe_11.gemfile.lock b/gemfiles/ruby_3.4_stripe_11.gemfile.lock index 773aa95657f..fb2fafa6b8e 100644 --- a/gemfiles/ruby_3.4_stripe_11.gemfile.lock +++ b/gemfiles/ruby_3.4_stripe_11.gemfile.lock @@ -18,7 +18,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.4_stripe_12.gemfile.lock b/gemfiles/ruby_3.4_stripe_12.gemfile.lock index eb39d31a140..2b3077b2221 100644 --- a/gemfiles/ruby_3.4_stripe_12.gemfile.lock +++ b/gemfiles/ruby_3.4_stripe_12.gemfile.lock @@ -18,7 +18,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.4_stripe_7.gemfile.lock b/gemfiles/ruby_3.4_stripe_7.gemfile.lock index 35c4a657f11..c9a57ef172b 100644 --- a/gemfiles/ruby_3.4_stripe_7.gemfile.lock +++ b/gemfiles/ruby_3.4_stripe_7.gemfile.lock @@ -18,7 +18,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.4_stripe_8.gemfile.lock b/gemfiles/ruby_3.4_stripe_8.gemfile.lock index 6164e9ccea0..a04543835b7 100644 --- a/gemfiles/ruby_3.4_stripe_8.gemfile.lock +++ b/gemfiles/ruby_3.4_stripe_8.gemfile.lock @@ -18,7 +18,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.4_stripe_9.gemfile.lock b/gemfiles/ruby_3.4_stripe_9.gemfile.lock index 70007c84b7c..d352e1d332b 100644 --- a/gemfiles/ruby_3.4_stripe_9.gemfile.lock +++ b/gemfiles/ruby_3.4_stripe_9.gemfile.lock @@ -18,7 +18,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.4_stripe_latest.gemfile.lock b/gemfiles/ruby_3.4_stripe_latest.gemfile.lock index 6fa8c2ce931..c335ded8dec 100644 --- a/gemfiles/ruby_3.4_stripe_latest.gemfile.lock +++ b/gemfiles/ruby_3.4_stripe_latest.gemfile.lock @@ -18,7 +18,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.4_stripe_min.gemfile.lock b/gemfiles/ruby_3.4_stripe_min.gemfile.lock index ffc729716a9..057b271b349 100644 --- a/gemfiles/ruby_3.4_stripe_min.gemfile.lock +++ b/gemfiles/ruby_3.4_stripe_min.gemfile.lock @@ -18,7 +18,7 @@ GIT PATH remote: .. specs: - datadog (2.7.1) + datadog (2.8.0) datadog-ruby_core_source (~> 3.3) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) From 51d61a384b2c5629fb36f245b22f0d338d04a4a0 Mon Sep 17 00:00:00 2001 From: Ivo Anjo Date: Tue, 10 Dec 2024 16:27:19 +0000 Subject: [PATCH 017/161] Minor: Tweak changelog to add DI to "Added" section and fix typo --- CHANGELOG.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 041527425ec..690ab1959b1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,7 @@ ### Added +* DI: Dynamic instrumentation is now available in Ruby as a Preview * AppSec: Add SQL injection detection for ActiveRecord for following adapters: `mysql2`, `postgresql`, and `sqlite3` ([#4167][]) * Telemetry: Add environment variable to disable logs ([#4153][]) * Integrations: Add configuration option `on_error` to Elasticsearch tracing ([#4066][]) @@ -14,7 +15,7 @@ * Upgrade libdatadog dependency to 14.3.1 ([#4196][]) * Profiling: Require Ruby 3.1+ for heap profiling ([#4178][]) -* Appsec: Update libddwaf to 1.18.0.0.0 ([#4164][]) +* AppSec: Update libddwaf to 1.18.0.0.0 ([#4164][]) * Single-step: Lower SSI GLIBC requirements down to 2.17 ([#4137][]) ### Fixed From 5922af1d6c7bf255b44b69c9039dd2a4ce4c2b0a Mon Sep 17 00:00:00 2001 From: Marco Costa Date: Tue, 10 Dec 2024 10:40:41 -0800 Subject: [PATCH 018/161] Doc:OpenTelemetry and JRuby 9.4 support doc --- docs/Compatibility.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/Compatibility.md b/docs/Compatibility.md index 0d9e9b32256..15058852c5b 100644 --- a/docs/Compatibility.md +++ b/docs/Compatibility.md @@ -22,7 +22,8 @@ The Ruby Datadog Trace library is open source. See the [dd-trace-rb][1] GitHub r | | | 2.1 | [EOL](#support-eol) | < 2.0.0 | | | | 2.0 | [EOL](#support-eol) | < 0.50.0 | | | | 1.9 | [EOL](#support-eol) | < 0.27.0 | -| JRuby | https://www.jruby.org | 9.3 | [latest](#support-latest) | Latest | +| JRuby | https://www.jruby.org | 9.4 | [latest](#support-latest) | Latest | +| | | 9.3 | [latest](#support-latest) | Latest | | | | 9.2.21.0+ | [latest](#support-latest) | Latest | ### Supported web servers @@ -37,6 +38,7 @@ The Ruby Datadog Trace library is open source. See the [dd-trace-rb][1] GitHub r | Type | Documentation | Version | Support type | Gem version support | |-------------|-------------------------------------------------|---------|---------------------|---------------------| +| OpenTelemetry | https://github.com/open-telemetry/opentelemetry-ruby | 1.9.0+ | >= 1.1.0 | | OpenTracing | https://github.com/opentracing/opentracing-ruby | 0.4.1+ | [EOL](#support-eol) | < 2.0.0 | ### Supported operating systems From b985e3236d163f8da3d7a4b6888755afdab4cbf5 Mon Sep 17 00:00:00 2001 From: "Alexander S." Date: Tue, 10 Dec 2024 22:37:44 +0200 Subject: [PATCH 019/161] [Debugger] Update debugger system tests scenarios (#4203) --- .github/workflows/system-tests.yml | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/.github/workflows/system-tests.yml b/.github/workflows/system-tests.yml index d8c8b03534d..f7818927b2a 100644 --- a/.github/workflows/system-tests.yml +++ b/.github/workflows/system-tests.yml @@ -272,13 +272,7 @@ jobs: scenario: DEBUGGER_PROBES_STATUS - library: ruby app: rails70 - scenario: DEBUGGER_METHOD_PROBES_SNAPSHOT - - library: ruby - app: rails70 - scenario: DEBUGGER_LINE_PROBES_SNAPSHOT - - library: ruby - app: rails70 - scenario: DEBUGGER_MIX_LOG_PROBE + scenario: DEBUGGER_PROBES_SNAPSHOT - library: ruby app: rails70 scenario: DEBUGGER_PII_REDACTION From f79fd6534b1c3e0de67bf6ee25a9a6c9aa62d167 Mon Sep 17 00:00:00 2001 From: Marco Costa Date: Tue, 10 Dec 2024 18:37:11 -0800 Subject: [PATCH 020/161] Internal:Add span events native serialization --- lib/datadog/tracing/span_event.rb | 118 +++++++++++++++++- lib/datadog/tracing/span_operation.rb | 2 + .../tracing/transport/serializable_trace.rb | 26 +++- sig/datadog/tracing/span_event.rbs | 50 +++++--- .../tracing/transport/serializable_trace.rbs | 13 +- spec/datadog/tracing/span_event_spec.rb | 86 +++++++++++-- .../transport/serializable_trace_spec.rb | 84 ++++++++++--- 7 files changed, 328 insertions(+), 51 deletions(-) diff --git a/lib/datadog/tracing/span_event.rb b/lib/datadog/tracing/span_event.rb index 79f2ff18783..1cfaa5fc317 100644 --- a/lib/datadog/tracing/span_event.rb +++ b/lib/datadog/tracing/span_event.rb @@ -19,23 +19,135 @@ class SpanEvent # @return [Integer] attr_reader :time_unix_nano + # TODO: Accept {Time} as the time_unix_nano parameter, possibly in addition to the current nano integer. def initialize( name, attributes: nil, time_unix_nano: nil ) @name = name - @attributes = attributes || {} + + @attributes = attributes.dup || {} + validate_attributes!(@attributes) + @attributes.transform_keys!(&:to_s) + # OpenTelemetry SDK stores span event timestamps in nanoseconds (not seconds). # We will do the same here to avoid unnecessary conversions and inconsistencies. @time_unix_nano = time_unix_nano || (Time.now.to_r * 1_000_000_000).to_i end def to_hash - h = { name: @name, time_unix_nano: @time_unix_nano } - h[:attributes] = attributes unless @attributes.empty? + h = { 'name' => @name, 'time_unix_nano' => @time_unix_nano } + h['attributes'] = @attributes unless @attributes.empty? + h + end + + def to_native_format + h = { 'name' => @name, 'time_unix_nano' => @time_unix_nano } + + attr = {} + @attributes.each do |key, value| + attr[key] = if value.is_a?(Array) + { type: ARRAY_TYPE, array_value: value.map { |v| serialize_native_attribute(v) } } + else + serialize_native_attribute(value) + end + end + + h['attributes'] = attr unless @attributes.empty? + h end + + private + + MIN_INT64_SIGNED = -2**63 + MAX_INT64_SIGNED = 2 << 63 - 1 + + # Checks the attributes hash to ensure it only contains serializable values. + # Invalid values are removed from the hash. + def validate_attributes!(attributes) + attributes.select! do |key, value| + case value + when Array + next true if value.empty? + + first = value.first + case first + when String, Integer, Float + first_type = first.class + if value.all? { |v| v.is_a?(first_type) } + value.all? { |v| validate_scalar_attribute!(key, v) } + else + Datadog.logger.warn("Attribute #{key} array must be homogenous: #{value}.") + false + end + when TrueClass, FalseClass + if value.all? { |v| v.is_a?(TrueClass) || v.is_a?(FalseClass) } + value.all? { |v| validate_scalar_attribute!(key, v) } + else + Datadog.logger.warn("Attribute #{key} array must be homogenous: #{value}.") + false + end + else + Datadog.logger.warn("Attribute #{key} must be a string, number, or boolean: #{value}.") + false + end + when String, Numeric, TrueClass, FalseClass + validate_scalar_attribute!(key, value) + else + Datadog.logger.warn("Attribute #{key} must be a string, number, boolean, or array: #{value}.") + false + end + end + end + + def validate_scalar_attribute!(key, value) + case value + when String, TrueClass, FalseClass + true + when Integer + # Cannot be larger than signed 64-bit integer + if value < MIN_INT64_SIGNED || value > MAX_INT64_SIGNED + Datadog.logger.warn("Attribute #{key} must be within the range of a signed 64-bit integer: #{value}.") + false + else + true + end + when Float + # Has to be finite + return true if value.finite? + + Datadog.logger.warn("Attribute #{key} must be a finite number: #{value}.") + false + else + Datadog.logger.warn("Attribute #{key} must be a string, number, or boolean: #{value}.") + false + end + end + + STRING_TYPE = 0 + BOOLEAN_TYPE = 1 + INTEGER_TYPE = 2 + DOUBLE_TYPE = 3 + ARRAY_TYPE = 4 + + # Serializes individual scalar attributes into the native format. + def serialize_native_attribute(value) + case value + when String + { type: STRING_TYPE, string_value: value } + when TrueClass, FalseClass + { type: BOOLEAN_TYPE, bool_value: value } + when Integer + { type: INTEGER_TYPE, int_value: value } + when Float + { type: DOUBLE_TYPE, double_value: value } + else + # This is technically unreachable due to the validation in #initialize. + raise ArgumentError, "Attribute must be a string, number, or boolean: #{value}." + end + end end end end diff --git a/lib/datadog/tracing/span_operation.rb b/lib/datadog/tracing/span_operation.rb index d6fbde553fc..52a8fc469af 100644 --- a/lib/datadog/tracing/span_operation.rb +++ b/lib/datadog/tracing/span_operation.rb @@ -11,6 +11,8 @@ require_relative 'metadata' require_relative 'metadata/ext' require_relative 'span' +require_relative 'span_event' +require_relative 'span_link' require_relative 'utils' module Datadog diff --git a/lib/datadog/tracing/transport/serializable_trace.rb b/lib/datadog/tracing/transport/serializable_trace.rb index 850e84f7707..371852ff84e 100644 --- a/lib/datadog/tracing/transport/serializable_trace.rb +++ b/lib/datadog/tracing/transport/serializable_trace.rb @@ -12,8 +12,9 @@ class SerializableTrace attr_reader \ :trace - def initialize(trace) + def initialize(trace, native_events_supported = false) @trace = trace + @native_events_supported = native_events_supported end # MessagePack serializer interface. Making this object @@ -26,13 +27,13 @@ def initialize(trace) # @param packer [MessagePack::Packer] serialization buffer, can be +nil+ with JRuby def to_msgpack(packer = nil) # As of 1.3.3, JRuby implementation doesn't pass an existing packer - trace.spans.map { |s| SerializableSpan.new(s) }.to_msgpack(packer) + trace.spans.map { |s| SerializableSpan.new(s, @native_events_supported) }.to_msgpack(packer) end # JSON serializer interface. # Used by older version of the transport. def to_json(*args) - trace.spans.map { |s| SerializableSpan.new(s).to_hash }.to_json(*args) + trace.spans.map { |s| SerializableSpan.new(s, @native_events_supported).to_hash }.to_json(*args) end end @@ -41,9 +42,10 @@ class SerializableSpan attr_reader \ :span - def initialize(span) + def initialize(span, native_events_supported) @span = span @trace_id = Tracing::Utils::TraceId.to_low_order(span.trace_id) + @native_events_supported = native_events_supported end # MessagePack serializer interface. Making this object @@ -55,11 +57,14 @@ def initialize(span) # # @param packer [MessagePack::Packer] serialization buffer, can be +nil+ with JRuby # rubocop:disable Metrics/AbcSize + # rubocop:disable Metrics/MethodLength def to_msgpack(packer = nil) packer ||= MessagePack::Packer.new number_of_elements_to_write = 11 + number_of_elements_to_write += 1 if span.events.any? && @native_events_supported + if span.stopped? packer.write_map_header(number_of_elements_to_write + 2) # Set header with how many elements in the map @@ -72,8 +77,16 @@ def to_msgpack(packer = nil) packer.write_map_header(number_of_elements_to_write) # Set header with how many elements in the map end - # serialize span events as meta tags - span.set_tag('events', span.events.map(&:to_hash).to_json) if span.events.any? + if span.events.any? + if @native_events_supported + # Use top-level field for native events + packer.write('span_events') + packer.write(span.events.map(&:to_native_format)) + else + # Serialize span events as meta tags + span.set_tag('events', span.events.map(&:to_hash).to_json) + end + end # DEV: We use strings as keys here, instead of symbols, as # DEV: MessagePack will ultimately convert them to strings. @@ -103,6 +116,7 @@ def to_msgpack(packer = nil) packer end # rubocop:enable Metrics/AbcSize + # rubocop:enable Metrics/MethodLength # JSON serializer interface. # Used by older version of the transport. diff --git a/sig/datadog/tracing/span_event.rbs b/sig/datadog/tracing/span_event.rbs index eff90ad371b..643c3062fc1 100644 --- a/sig/datadog/tracing/span_event.rbs +++ b/sig/datadog/tracing/span_event.rbs @@ -1,27 +1,47 @@ module Datadog module Tracing - # SpanEvent represents an annotation on a span. - # @public_api class SpanEvent - @name: untyped + type attributes = Hash[String,attributeValue] + type attributeValue = String | Integer | Float | bool | Array[String] | Array[Integer] | Array[Float] | Array[bool] - @attributes: untyped + MIN_INT64_SIGNED: Integer + MAX_INT64_SIGNED: Integer + STRING_TYPE: Integer + BOOLEAN_TYPE: Integer + INTEGER_TYPE: Integer + DOUBLE_TYPE: Integer + ARRAY_TYPE: Integer - @time_unix_nano: untyped + attr_reader name: untyped # TODO: Typing this makes to_hash internal typecheck fail + attr_reader attributes: attributes + attr_reader time_unix_nano: untyped # TODO: Typing this also makes to_hash internal typecheck fail - # @!attribute [r] name - # @return [String] - attr_reader name: untyped + def initialize: (String name, ?attributes: attributes, ?time_unix_nano: Integer) -> void - # @!attribute [r] attributes - # @return [Hash] - attr_reader attributes: untyped + def to_hash: -> Hash[String, untyped] + # TODO: Steep does not track Hash keys when they are added with `hash[:key] = val`. + # { + # name: String, + # time_unix_nano: Integer, + # ?attributes: attributes, + # } - # @!attribute [r] time_unix_nano - # @return [Integer] - attr_reader time_unix_nano: untyped + def to_native_format: -> Hash[String, untyped] + # TODO: Steep does not track Hash keys when they are added with `hash[:key] = val`. + # { + # name: String, + # time_unix_nano: Integer, + # ?attributes: Hash[String, nativeAttributeValue], + # } + # type nativeAttributeValue = { type: Integer, string_value: String } | { type: Integer, int_value: Integer } | { type: Integer, double_value: Float } | { type: Integer, bool_value: bool } | { type: Integer, string_array_value: Array[String] } | { type: Integer, int_array_value: Array[Integer] } | { type: Integer, double_array_value: Array[Float] } | { type: Integer, bool_array_value: Array[bool] } - def initialize: (untyped name, ?attributes: untyped?, ?time_unix_nano: untyped?) -> void + private + + def serialize_native_attribute: (attributeValue value)-> ({ type: Integer, string_value: String } | { type: Integer, int_value: Integer } | { type: Integer, double_value: Float } | { type: Integer, bool_value: bool }) + + def validate_attributes!: (attributes attributes)-> void + + def validate_scalar_attribute!: (String key, attributeValue value)-> bool end end end \ No newline at end of file diff --git a/sig/datadog/tracing/transport/serializable_trace.rbs b/sig/datadog/tracing/transport/serializable_trace.rbs index b318bed50f3..ab84fcfc23d 100644 --- a/sig/datadog/tracing/transport/serializable_trace.rbs +++ b/sig/datadog/tracing/transport/serializable_trace.rbs @@ -2,9 +2,11 @@ module Datadog module Tracing module Transport class SerializableTrace - attr_reader trace: untyped + @native_events_supported: bool - def initialize: (untyped trace) -> void + attr_reader trace: Span + + def initialize: (untyped trace, bool native_events_supported) -> void def to_msgpack: (?untyped? packer) -> untyped @@ -12,9 +14,12 @@ module Datadog end class SerializableSpan - attr_reader span: untyped + @native_events_supported: bool + @trace_id: Integer + + attr_reader span: Span - def initialize: (untyped span) -> void + def initialize: (untyped span, bool native_events_supported) -> void def to_msgpack: (?untyped? packer) -> untyped diff --git a/spec/datadog/tracing/span_event_spec.rb b/spec/datadog/tracing/span_event_spec.rb index 2d68d409379..0bd7ff9a63f 100644 --- a/spec/datadog/tracing/span_event_spec.rb +++ b/spec/datadog/tracing/span_event_spec.rb @@ -19,11 +19,40 @@ expect(span_event.attributes).to eq({}) expect(span_event.time_unix_nano / 1e9).to be_within(1).of(Time.now.to_f) end + + context 'with invalid attributes' do + let(:attributes) do + { + 'int' => 1, + 'invalid_arr1' => [1, 'a'], + 'invalid_arr2' => [[1]], + 'invalid_int1' => 2 << 65, + 'invalid_int2' => -2 << 65, + 'invalid_float1' => Float::NAN, + 'invalid_float2' => Float::INFINITY, + 'string' => 'bar', + } + end + + it 'skips invalid values' do + expect(Datadog.logger).to receive(:warn).with(/Attribute invalid_.*/).exactly(6).times + + expect(span_event.attributes).to eq('int' => 1, 'string' => 'bar',) + end + end + + context 'with attributes with non-string keys' do + let(:attributes) { { 1 => 'val1', sym: 'val2' } } + + it 'converts keys to strings' do + expect(span_event.attributes).to eq('1' => 'val1', 'sym' => 'val2') + end + end end context 'given' do context ':attributes' do - let(:attributes) { { tag: 'value' } } + let(:attributes) { { 'tag' => 'value' } } it { is_expected.to have_attributes(attributes: attributes) } end @@ -39,21 +68,62 @@ let(:name) { 'Another Event!' } context 'with required fields' do - it { is_expected.to eq({ name: name, time_unix_nano: span_event.time_unix_nano }) } + it { is_expected.to eq({ 'name' => name, 'time_unix_nano' => span_event.time_unix_nano }) } + end + + context 'with timestamp' do + let(:time_unix_nano) { 25 } + it { is_expected.to include('time_unix_nano' => 25) } + end + + context 'when attributes is set' do + let(:attributes) { { 'event.name' => 'test_event', 'event.id' => 1, 'nested' => [2, 3] } } + it { is_expected.to include('attributes' => attributes) } + end + end + + describe '#to_native_format' do + subject(:to_native_format) { span_event.to_native_format } + let(:name) { 'Another Event!' } + + context 'with required fields' do + it { is_expected.to eq({ 'name' => name, 'time_unix_nano' => span_event.time_unix_nano }) } end context 'with timestamp' do let(:time_unix_nano) { 25 } - it { is_expected.to include(time_unix_nano: 25) } + it { is_expected.to include('time_unix_nano' => 25) } end context 'when attributes is set' do - let(:attributes) { { 'event.name' => 'test_event', 'event.id' => 1, 'nested' => [true, [2, 3], 'val'] } } - it { - is_expected.to include( - attributes: attributes + let(:attributes) do + { + 'string' => 'value', + 'bool' => true, + 'int' => 1, + 'float' => 1.0, + 'string_arr' => %w[ab cd], + 'bool_arr' => [true, false], + 'int_arr' => [1, 2], + 'float_arr' => [1.0, 2.0] + } + end + + it do + expect(to_native_format['attributes']).to eq( + 'string' => { type: 0, string_value: 'value' }, + 'bool' => { type: 1, bool_value: true }, + 'int' => { type: 2, int_value: 1 }, + 'float' => { type: 3, double_value: 1.0 }, + 'string_arr' => { type: 4, + array_value: [{ type: 0, string_value: 'ab' }, { type: 0, string_value: 'cd' }] }, + 'bool_arr' => { type: 4, + array_value: [{ type: 1, bool_value: true }, { type: 1, bool_value: false }] }, + 'int_arr' => { type: 4, array_value: [{ type: 2, int_value: 1 }, { type: 2, int_value: 2 }] }, + 'float_arr' => { type: 4, + array_value: [{ type: 3, double_value: 1.0 }, { type: 3, double_value: 2.0 }] } ) - } + end end end end diff --git a/spec/datadog/tracing/transport/serializable_trace_spec.rb b/spec/datadog/tracing/transport/serializable_trace_spec.rb index c1e63ae9ac5..de88a519225 100644 --- a/spec/datadog/tracing/transport/serializable_trace_spec.rb +++ b/spec/datadog/tracing/transport/serializable_trace_spec.rb @@ -8,9 +8,10 @@ require 'datadog/tracing/transport/serializable_trace' RSpec.describe Datadog::Tracing::Transport::SerializableTrace do - subject(:serializable_trace) { described_class.new(trace) } + subject(:serializable_trace) { described_class.new(trace, native_events_supported) } let(:trace) { Datadog::Tracing::TraceSegment.new(spans) } + let(:native_events_supported) { false } let(:spans) do Array.new(3) do |i| span = Datadog::Tracing::Span.new( @@ -26,12 +27,38 @@ end end - describe '#to_msgpack' do - subject(:to_msgpack) { serializable_trace.to_msgpack } + shared_examples 'serialize all fields' do |include_duration: false, include_native_events: false| + it 'contains all fields' do + unpacked_trace.each do |span| + expected = [ + 'span_id', + 'parent_id', + 'trace_id', + 'name', + 'service', + 'resource', + 'type', + 'meta', + 'metrics', + 'span_links', + 'error', + ] + if include_duration + expected << 'start' + expected << 'duration' + end + expected << 'span_events' if include_native_events - context 'when packed then upacked' do - subject(:unpacked_trace) { MessagePack.unpack(to_msgpack) } + expect(span.keys).to match_array(expected) + end + end + end + describe '#to_msgpack' do + subject(:unpacked_trace) { MessagePack.unpack(to_msgpack) } + let(:to_msgpack) { serializable_trace.to_msgpack } + + context 'when packed then unpacked' do let(:original_spans) do spans.map do |span| Hash[span.to_hash.map { |k, v| [k.to_s, v] }] @@ -44,8 +71,6 @@ end context 'when given trace_id' do - subject(:unpacked_trace) { MessagePack.unpack(to_msgpack) } - let(:spans) do Array.new(3) do |_i| Datadog::Tracing::Span.new( @@ -73,8 +98,6 @@ end context 'when given span links' do - subject(:unpacked_trace) { MessagePack.unpack(to_msgpack) } - let(:spans) do Array.new(3) do |_i| Datadog::Tracing::Span.new( @@ -131,8 +154,6 @@ end context 'when given span events' do - subject(:unpacked_trace) { MessagePack.unpack(to_msgpack) } - let(:spans) do Array.new(2) do |i| Datadog::Tracing::Span.new( @@ -140,11 +161,11 @@ events: [ Datadog::Tracing::SpanEvent.new( 'First Event', - time_unix_nano: 1_000_000_000 + time_unix_nano: 123 ), Datadog::Tracing::SpanEvent.new( "Another Event #{i}!", - time_unix_nano: 2_000_000_000, + time_unix_nano: 456, attributes: { id: i, required: (i == 1) }, ), ], @@ -159,14 +180,47 @@ end ).to eq( [ - '[{"name":"First Event","time_unix_nano":1000000000},{"name":"Another Event 0!","time_unix_nano":2000000000,' \ + '[{"name":"First Event","time_unix_nano":123},{"name":"Another Event 0!","time_unix_nano":456,' \ '"attributes":{"id":0,"required":false}}]', - '[{"name":"First Event","time_unix_nano":1000000000},{"name":"Another Event 1!","time_unix_nano":2000000000,' \ + '[{"name":"First Event","time_unix_nano":123},{"name":"Another Event 1!","time_unix_nano":456,' \ '"attributes":{"id":1,"required":true}}]', ] ) end + + it_behaves_like 'serialize all fields' + + context 'when native events are supported' do + let(:native_events_supported) { true } + + it 'serializes span events as top-level field' do + expect( + unpacked_trace.map do |s| + s['span_events'] + end + ).to eq( + [ + [ + { 'name' => 'First Event', 'time_unix_nano' => 123 }, + { 'name' => 'Another Event 0!', 'time_unix_nano' => 456, 'attributes' => { + 'id' => { 'int_value' => 0, 'type' => 2 }, 'required' => { 'bool_value' => false, 'type' => 1 } + } } + ], + [ + { 'name' => 'First Event', 'time_unix_nano' => 123 }, + { 'name' => 'Another Event 1!', 'time_unix_nano' => 456, 'attributes' => { + 'id' => { 'int_value' => 1, 'type' => 2 }, 'required' => { 'bool_value' => true, 'type' => 1 } + } } + ], + ] + ) + end + + it_behaves_like 'serialize all fields', include_native_events: true + end end + + it_behaves_like 'serialize all fields' end describe '#to_json' do From d2d127e8ecc967399b677e45e3d3345535e3466b Mon Sep 17 00:00:00 2001 From: Sergey Fedorov Date: Thu, 5 Dec 2024 15:12:28 +0100 Subject: [PATCH 021/161] Adjust matcher for template change log section --- .github/workflows/ensure-changelog-entry.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ensure-changelog-entry.yml b/.github/workflows/ensure-changelog-entry.yml index 7bebe2913bd..cbbff628f51 100644 --- a/.github/workflows/ensure-changelog-entry.yml +++ b/.github/workflows/ensure-changelog-entry.yml @@ -57,7 +57,7 @@ jobs: with: github-token: ${{secrets.GITHUB_TOKEN}} script: | - const regex = /\*\*Change log entry\*\*\s+(?:(?yes|yep|yeah)(?:\.\s*(?[^\r\nno|nope|none)\.?)\s*/mi + const regex = /\*\*Change log entry\*\*\s+(?:\s*)?(?:(?yes|yep|yeah)(?:\s?[.,:-]\s?(?[^\r\nno|nope|none)\.?.*?)/ims const entry = context.payload.pull_request.body.match(regex) const isWriteComment = From 2b7399f1606bf48b6d6af5a05aa1cf44357cd9ee Mon Sep 17 00:00:00 2001 From: Yury Lebedev Date: Tue, 10 Dec 2024 20:41:56 +0100 Subject: [PATCH 022/161] Update appsec WAF rules to version 1.13.3 --- .../appsec/assets/waf_rules/recommended.json | 512 ++++++++++++------ .../appsec/assets/waf_rules/strict.json | 94 ++-- 2 files changed, 417 insertions(+), 189 deletions(-) diff --git a/lib/datadog/appsec/assets/waf_rules/recommended.json b/lib/datadog/appsec/assets/waf_rules/recommended.json index d05b1e629b2..2f53276c7e5 100644 --- a/lib/datadog/appsec/assets/waf_rules/recommended.json +++ b/lib/datadog/appsec/assets/waf_rules/recommended.json @@ -1,7 +1,7 @@ { "version": "2.2", "metadata": { - "rules_version": "1.13.1" + "rules_version": "1.13.3" }, "rules": [ { @@ -9,7 +9,8 @@ "name": "Block IP Addresses", "tags": { "type": "block_ip", - "category": "security_response" + "category": "security_response", + "module": "network-acl" }, "conditions": [ { @@ -34,7 +35,8 @@ "name": "Block User Addresses", "tags": { "type": "block_user", - "category": "security_response" + "category": "security_response", + "module": "authentication-acl" }, "conditions": [ { @@ -64,7 +66,8 @@ "tool_name": "Acunetix", "cwe": "200", "capec": "1000/118/169", - "confidence": "0" + "confidence": "0", + "module": "waf" }, "conditions": [ { @@ -98,7 +101,8 @@ "category": "attack_attempt", "cwe": "200", "capec": "1000/118/169", - "confidence": "1" + "confidence": "1", + "module": "waf" }, "conditions": [ { @@ -162,7 +166,8 @@ "category": "attack_attempt", "cwe": "176", "capec": "1000/255/153/267/71", - "confidence": "0" + "confidence": "0", + "module": "waf" }, "conditions": [ { @@ -191,7 +196,8 @@ "crs_id": "921110", "category": "attack_attempt", "cwe": "444", - "capec": "1000/210/272/220/33" + "capec": "1000/210/272/220/33", + "module": "waf" }, "conditions": [ { @@ -228,7 +234,8 @@ "crs_id": "921160", "category": "attack_attempt", "cwe": "113", - "capec": "1000/210/272/220/105" + "capec": "1000/210/272/220/105", + "module": "waf" }, "conditions": [ { @@ -263,7 +270,8 @@ "category": "attack_attempt", "cwe": "22", "capec": "1000/255/153/126", - "confidence": "1" + "confidence": "1", + "module": "waf" }, "conditions": [ { @@ -297,7 +305,8 @@ "category": "attack_attempt", "cwe": "22", "capec": "1000/255/153/126", - "confidence": "1" + "confidence": "1", + "module": "waf" }, "conditions": [ { @@ -1803,7 +1812,8 @@ "category": "attack_attempt", "cwe": "98", "capec": "1000/152/175/253/193", - "confidence": "1" + "confidence": "1", + "module": "waf" }, "conditions": [ { @@ -1831,7 +1841,8 @@ "crs_id": "931120", "category": "attack_attempt", "cwe": "98", - "capec": "1000/152/175/253/193" + "capec": "1000/152/175/253/193", + "module": "waf" }, "conditions": [ { @@ -1876,7 +1887,8 @@ "category": "attack_attempt", "cwe": "77", "capec": "1000/152/248/88", - "confidence": "1" + "confidence": "1", + "module": "waf" }, "conditions": [ { @@ -2388,7 +2400,8 @@ "category": "attack_attempt", "cwe": "77", "capec": "1000/152/248/88", - "confidence": "1" + "confidence": "1", + "module": "waf" }, "conditions": [ { @@ -2436,7 +2449,8 @@ "category": "attack_attempt", "cwe": "706", "capec": "1000/225/122/17/177", - "confidence": "1" + "confidence": "1", + "module": "waf" }, "conditions": [ { @@ -2500,7 +2514,8 @@ "category": "attack_attempt", "cwe": "434", "capec": "1000/225/122/17/650", - "confidence": "1" + "confidence": "1", + "module": "waf" }, "conditions": [ { @@ -2553,7 +2568,8 @@ "category": "attack_attempt", "cwe": "94", "capec": "1000/225/122/17/650", - "confidence": "1" + "confidence": "1", + "module": "waf" }, "conditions": [ { @@ -2620,7 +2636,8 @@ "crs_id": "933131", "category": "attack_attempt", "cwe": "94", - "capec": "1000/225/122/17/650" + "capec": "1000/225/122/17/650", + "module": "waf" }, "conditions": [ { @@ -2665,7 +2682,8 @@ "category": "attack_attempt", "cwe": "94", "capec": "1000/225/122/17/650", - "confidence": "1" + "confidence": "1", + "module": "waf" }, "conditions": [ { @@ -2709,7 +2727,8 @@ "category": "attack_attempt", "cwe": "94", "capec": "1000/225/122/17/650", - "confidence": "1" + "confidence": "1", + "module": "waf" }, "conditions": [ { @@ -2799,7 +2818,8 @@ "crs_id": "933160", "category": "attack_attempt", "cwe": "94", - "capec": "1000/225/122/17/650" + "capec": "1000/225/122/17/650", + "module": "waf" }, "conditions": [ { @@ -2824,7 +2844,7 @@ "address": "graphql.server.resolver" } ], - "regex": "\\b(?:s(?:e(?:t(?:_(?:e(?:xception|rror)_handler|magic_quotes_runtime|include_path)|defaultstub)|ssion_s(?:et_save_handler|tart))|qlite_(?:(?:(?:unbuffered|single|array)_)?query|create_(?:aggregate|function)|p?open|exec)|tr(?:eam_(?:context_create|socket_client)|ipc?slashes|rev)|implexml_load_(?:string|file)|ocket_c(?:onnect|reate)|h(?:ow_sourc|a1_fil)e|pl_autoload_register|ystem)|p(?:r(?:eg_(?:replace(?:_callback(?:_array)?)?|match(?:_all)?|split)|oc_(?:(?:terminat|clos|nic)e|get_status|open)|int_r)|o(?:six_(?:get(?:(?:e[gu]|g)id|login|pwnam)|mk(?:fifo|nod)|ttyname|kill)|pen)|hp(?:_(?:strip_whitespac|unam)e|version|info)|g_(?:(?:execut|prepar)e|connect|query)|a(?:rse_(?:ini_file|str)|ssthru)|utenv)|r(?:unkit_(?:function_(?:re(?:defin|nam)e|copy|add)|method_(?:re(?:defin|nam)e|copy|add)|constant_(?:redefine|add))|e(?:(?:gister_(?:shutdown|tick)|name)_function|ad(?:(?:gz)?file|_exif_data|dir))|awurl(?:de|en)code)|i(?:mage(?:createfrom(?:(?:jpe|pn)g|x[bp]m|wbmp|gif)|(?:jpe|pn)g|g(?:d2?|if)|2?wbmp|xbm)|s_(?:(?:(?:execut|write?|read)ab|fi)le|dir)|ni_(?:get(?:_all)?|set)|terator_apply|ptcembed)|g(?:et(?:_(?:c(?:urrent_use|fg_va)r|meta_tags)|my(?:[gpu]id|inode)|(?:lastmo|cw)d|imagesize|env)|z(?:(?:(?:defla|wri)t|encod|fil)e|compress|open|read)|lob)|a(?:rray_(?:u(?:intersect(?:_u?assoc)?|diff(?:_u?assoc)?)|intersect_u(?:assoc|key)|diff_u(?:assoc|key)|filter|reduce|map)|ssert(?:_options)?|tob)|h(?:tml(?:specialchars(?:_decode)?|_entity_decode|entities)|(?:ash(?:_(?:update|hmac))?|ighlight)_file|e(?:ader_register_callback|x2bin))|f(?:i(?:le(?:(?:[acm]tim|inod)e|(?:_exist|perm)s|group)?|nfo_open)|tp_(?:nb_(?:ge|pu)|connec|ge|pu)t|(?:unction_exis|pu)ts|write|open)|o(?:b_(?:get_(?:c(?:ontents|lean)|flush)|end_(?:clean|flush)|clean|flush|start)|dbc_(?:result(?:_all)?|exec(?:ute)?|connect)|pendir)|m(?:b_(?:ereg(?:_(?:replace(?:_callback)?|match)|i(?:_replace)?)?|parse_str)|(?:ove_uploaded|d5)_file|ethod_exists|ysql_query|kdir)|e(?:x(?:if_(?:t(?:humbnail|agname)|imagetype|read_data)|ec)|scapeshell(?:arg|cmd)|rror_reporting|val)|c(?:url_(?:file_create|exec|init)|onvert_uuencode|reate_function|hr)|u(?:n(?:serialize|pack)|rl(?:de|en)code|[ak]?sort)|b(?:(?:son_(?:de|en)|ase64_en)code|zopen|toa)|(?:json_(?:de|en)cod|debug_backtrac|tmpfil)e|var_dump)(?:\\s|/\\*.*\\*/|//.*|#.*|\\\"|')*\\((?:(?:\\s|/\\*.*\\*/|//.*|#.*)*(?:\\$\\w+|[A-Z\\d]\\w*|\\w+\\(.*\\)|\\\\?\"(?:[^\"]|\\\\\"|\"\"|\"\\+\")*\\\\?\"|\\\\?'(?:[^']|''|'\\+')*\\\\?')(?:\\s|/\\*.*\\*/|//.*|#.*)*(?:(?:::|\\.|->)(?:\\s|/\\*.*\\*/|//.*|#.*)*\\w+(?:\\(.*\\))?)?,)*(?:(?:\\s|/\\*.*\\*/|//.*|#.*)*(?:\\$\\w+|[A-Z\\d]\\w*|\\w+\\(.*\\)|\\\\?\"(?:[^\"]|\\\\\"|\"\"|\"\\+\")*\\\\?\"|\\\\?'(?:[^']|''|'\\+')*\\\\?')(?:\\s|/\\*.*\\*/|//.*|#.*)*(?:(?:::|\\.|->)(?:\\s|/\\*.*\\*/|//.*|#.*)*\\w+(?:\\(.*\\))?)?)?\\)", + "regex": "\\b(?:s(?:e(?:t(?:_(?:e(?:xception|rror)_handler|magic_quotes_runtime|include_path)|defaultstub)|ssion_s(?:et_save_handler|tart))|qlite_(?:(?:(?:unbuffered|single|array)_)?query|create_(?:aggregate|function)|p?open|exec)|tr(?:eam_(?:context_create|socket_client)|ipc?slashes|rev)|implexml_load_(?:string|file)|ocket_c(?:onnect|reate)|h(?:ow_sourc|a1_fil)e|pl_autoload_register|ystem)|p(?:r(?:eg_(?:replace(?:_callback(?:_array)?)?|match(?:_all)?|split)|oc_(?:(?:terminat|clos|nic)e|get_status|open)|int_r)|o(?:six_(?:get(?:(?:e[gu]|g)id|login|pwnam)|mk(?:fifo|nod)|ttyname|kill)|pen)|hp(?:_(?:strip_whitespac|unam)e|version|info)|g_(?:(?:execut|prepar)e|connect|query)|a(?:rse_(?:ini_file|str)|ssthru)|utenv)|r(?:unkit_(?:function_(?:re(?:defin|nam)e|copy|add)|method_(?:re(?:defin|nam)e|copy|add)|constant_(?:redefine|add))|e(?:(?:gister_(?:shutdown|tick)|name)_function|ad(?:(?:gz)?file|_exif_data|dir))|awurl(?:de|en)code)|i(?:mage(?:createfrom(?:(?:jpe|pn)g|x[bp]m|wbmp|gif)|(?:jpe|pn)g|g(?:d2?|if)|2?wbmp|xbm)|s_(?:(?:(?:execut|write?|read)ab|fi)le|dir)|ni_(?:get(?:_all)?|set)|terator_apply|ptcembed)|g(?:et(?:_(?:c(?:urrent_use|fg_va)r|meta_tags)|my(?:[gpu]id|inode)|(?:lastmo|cw)d|imagesize|env)|z(?:(?:(?:defla|wri)t|encod|fil)e|compress|open|read)|lob)|a(?:rray_(?:u(?:intersect(?:_u?assoc)?|diff(?:_u?assoc)?)|intersect_u(?:assoc|key)|diff_u(?:assoc|key)|filter|reduce|map)|ssert(?:_options)?|tob)|h(?:tml(?:specialchars(?:_decode)?|_entity_decode|entities)|(?:ash(?:_(?:update|hmac))?|ighlight)_file|e(?:ader_register_callback|x2bin))|f(?:i(?:le(?:(?:[acm]tim|inod)e|(?:_exist|perm)s|group)?|nfo_open)|tp_(?:nb_(?:ge|pu)|connec|ge|pu)t|(?:unction_exis|pu)ts|write|open)|o(?:b_(?:get_(?:c(?:ontents|lean)|flush)|end_(?:clean|flush)|clean|flush|start)|dbc_(?:result(?:_all)?|exec(?:ute)?|connect)|pendir)|m(?:b_(?:ereg(?:_(?:replace(?:_callback)?|match)|i(?:_replace)?)?|parse_str)|(?:ove_uploaded|d5)_file|ethod_exists|ysql_query|kdir)|e(?:x(?:if_(?:t(?:humbnail|agname)|imagetype|read_data)|ec)|scapeshell(?:arg|cmd)|rror_reporting|val)|c(?:url_(?:file_create|exec|init)|onvert_uuencode|reate_function|hr)|u(?:n(?:serialize|pack)|rl(?:de|en)code|[ak]?sort)|b(?:(?:son_(?:de|en)|ase64_en)code|zopen|toa)|(?:json_(?:de|en)cod|debug_backtrac|tmpfil)e|var_dump)(?:\\s|/\\*.*\\*/|//.*|#.*|\\\"|')*\\((?:(?:\\s|/\\*.*\\*/|//.*|#.*)*(?:\\$\\w+|[A-Z\\d]\\w*|\\w+\\(.*\\)|\\\\?\"(?:[^\"]|\\\\\"|\"\"|\"\\+\")*\\\\?\"|\\\\?'(?:[^']|''|'\\+')*\\\\?')(?:\\s|/\\*.*\\*/|//.*|#.*)*(?:(?:::|\\.|->)(?:\\s|/\\*.*\\*/|//.*|#.*)*\\w+(?:\\(.*\\))?)?,)*(?:(?:\\s|/\\*.*\\*/|//.*|#.*)*(?:\\$\\w+|[A-Z\\d]\\w*|\\w+\\(.*\\)|\\\\?\"(?:[^\"]|\\\\\"|\"\"|\"\\+\")*\\\\?\"|\\\\?'(?:[^']|''|'\\+')*\\\\?')(?:\\s|/\\*.*\\*/|//.*|#.*)*(?:(?:::|\\.|->)(?:\\s|/\\*.*\\*/|//.*|#.*)*\\w+(?:\\(.*\\))?)?)?\\)\\s*(?:[;\\.)}\\]|\\\\]|\\?>|%>|$)", "options": { "case_sensitive": true, "min_length": 5 @@ -2844,7 +2864,8 @@ "category": "attack_attempt", "cwe": "502", "capec": "1000/152/586", - "confidence": "1" + "confidence": "1", + "module": "waf" }, "conditions": [ { @@ -2891,7 +2912,8 @@ "crs_id": "933200", "category": "attack_attempt", "cwe": "502", - "capec": "1000/152/586" + "capec": "1000/152/586", + "module": "waf" }, "conditions": [ { @@ -2937,7 +2959,8 @@ "crs_id": "934100", "category": "attack_attempt", "cwe": "94", - "capec": "1000/152/242" + "capec": "1000/152/242", + "module": "waf" }, "conditions": [ { @@ -2982,7 +3005,8 @@ "category": "attack_attempt", "confidence": "1", "cwe": "94", - "capec": "1000/152/242" + "capec": "1000/152/242", + "module": "waf" }, "conditions": [ { @@ -3024,7 +3048,8 @@ "category": "attack_attempt", "cwe": "80", "capec": "1000/152/242/63/591", - "confidence": "1" + "confidence": "1", + "module": "waf" }, "conditions": [ { @@ -3081,7 +3106,8 @@ "category": "attack_attempt", "cwe": "83", "capec": "1000/152/242/63/591/243", - "confidence": "1" + "confidence": "1", + "module": "waf" }, "conditions": [ { @@ -3140,7 +3166,8 @@ "category": "attack_attempt", "cwe": "84", "capec": "1000/152/242/63/591/244", - "confidence": "1" + "confidence": "1", + "module": "waf" }, "conditions": [ { @@ -3199,7 +3226,8 @@ "category": "attack_attempt", "cwe": "83", "capec": "1000/152/242/63/591/243", - "confidence": "1" + "confidence": "1", + "module": "waf" }, "conditions": [ { @@ -3257,7 +3285,8 @@ "crs_id": "941180", "category": "attack_attempt", "cwe": "79", - "capec": "1000/152/242/63/591" + "capec": "1000/152/242/63/591", + "module": "waf" }, "conditions": [ { @@ -3311,7 +3340,8 @@ "category": "attack_attempt", "cwe": "80", "capec": "1000/152/242/63/591", - "confidence": "1" + "confidence": "1", + "module": "waf" }, "conditions": [ { @@ -3358,7 +3388,8 @@ "category": "attack_attempt", "cwe": "80", "capec": "1000/152/242/63/591", - "confidence": "1" + "confidence": "1", + "module": "waf" }, "conditions": [ { @@ -3405,7 +3436,8 @@ "category": "attack_attempt", "cwe": "80", "capec": "1000/152/242/63/591", - "confidence": "1" + "confidence": "1", + "module": "waf" }, "conditions": [ { @@ -3452,7 +3484,8 @@ "category": "attack_attempt", "cwe": "83", "capec": "1000/152/242/63/591/243", - "confidence": "1" + "confidence": "1", + "module": "waf" }, "conditions": [ { @@ -3498,7 +3531,8 @@ "category": "attack_attempt", "cwe": "83", "capec": "1000/152/242/63/591/243", - "confidence": "1" + "confidence": "1", + "module": "waf" }, "conditions": [ { @@ -3545,7 +3579,8 @@ "crs_id": "941270", "category": "attack_attempt", "cwe": "83", - "capec": "1000/152/242/63/591/243" + "capec": "1000/152/242/63/591/243", + "module": "waf" }, "conditions": [ { @@ -3588,7 +3623,8 @@ "category": "attack_attempt", "cwe": "83", "capec": "1000/152/242/63/591/243", - "confidence": "1" + "confidence": "1", + "module": "waf" }, "conditions": [ { @@ -3634,7 +3670,8 @@ "category": "attack_attempt", "cwe": "83", "capec": "1000/152/242/63/591/243", - "confidence": "1" + "confidence": "1", + "module": "waf" }, "conditions": [ { @@ -3680,7 +3717,8 @@ "category": "attack_attempt", "cwe": "83", "capec": "1000/152/242/63/591/243", - "confidence": "1" + "confidence": "1", + "module": "waf" }, "conditions": [ { @@ -3726,7 +3764,8 @@ "category": "attack_attempt", "cwe": "87", "capec": "1000/152/242/63/591/199", - "confidence": "1" + "confidence": "1", + "module": "waf" }, "conditions": [ { @@ -3770,7 +3809,8 @@ "crs_id": "941360", "category": "attack_attempt", "cwe": "87", - "capec": "1000/152/242/63/591/199" + "capec": "1000/152/242/63/591/199", + "module": "waf" }, "conditions": [ { @@ -3815,7 +3855,8 @@ "category": "attack_attempt", "confidence": "1", "cwe": "79", - "capec": "1000/152/242/63/591" + "capec": "1000/152/242/63/591", + "module": "waf" }, "conditions": [ { @@ -3859,7 +3900,8 @@ "crs_id": "942100", "category": "attack_attempt", "cwe": "89", - "capec": "1000/152/248/66" + "capec": "1000/152/248/66", + "module": "waf" }, "conditions": [ { @@ -3898,7 +3940,8 @@ "category": "attack_attempt", "cwe": "89", "capec": "1000/152/248/66/7", - "confidence": "1" + "confidence": "1", + "module": "waf" }, "conditions": [ { @@ -3943,7 +3986,8 @@ "category": "attack_attempt", "cwe": "89", "capec": "1000/152/248/66/7", - "confidence": "1" + "confidence": "1", + "module": "waf" }, "conditions": [ { @@ -3986,7 +4030,8 @@ "crs_id": "942250", "category": "attack_attempt", "cwe": "89", - "capec": "1000/152/248/66" + "capec": "1000/152/248/66", + "module": "waf" }, "conditions": [ { @@ -4030,7 +4075,8 @@ "crs_id": "942270", "category": "attack_attempt", "cwe": "89", - "capec": "1000/152/248/66" + "capec": "1000/152/248/66", + "module": "waf" }, "conditions": [ { @@ -4074,7 +4120,8 @@ "category": "attack_attempt", "cwe": "89", "capec": "1000/152/248/66/7", - "confidence": "1" + "confidence": "1", + "module": "waf" }, "conditions": [ { @@ -4117,7 +4164,8 @@ "crs_id": "942290", "category": "attack_attempt", "cwe": "943", - "capec": "1000/152/248/676" + "capec": "1000/152/248/676", + "module": "waf" }, "conditions": [ { @@ -4163,7 +4211,8 @@ "crs_id": "942360", "category": "attack_attempt", "cwe": "89", - "capec": "1000/152/248/66/470" + "capec": "1000/152/248/66/470", + "module": "waf" }, "conditions": [ { @@ -4206,7 +4255,8 @@ "crs_id": "942500", "category": "attack_attempt", "cwe": "89", - "capec": "1000/152/248/66" + "capec": "1000/152/248/66", + "module": "waf" }, "conditions": [ { @@ -4251,7 +4301,8 @@ "category": "attack_attempt", "cwe": "384", "capec": "1000/225/21/593/61", - "confidence": "1" + "confidence": "1", + "module": "waf" }, "conditions": [ { @@ -4296,7 +4347,8 @@ "category": "attack_attempt", "cwe": "94", "capec": "1000/152/242", - "confidence": "1" + "confidence": "1", + "module": "waf" }, "conditions": [ { @@ -4344,7 +4396,8 @@ "type": "java_code_injection", "category": "attack_attempt", "cwe": "94", - "capec": "1000/152/242" + "capec": "1000/152/242", + "module": "waf" }, "conditions": [ { @@ -4391,7 +4444,8 @@ "crs_id": "944130", "category": "attack_attempt", "cwe": "94", - "capec": "1000/152/242" + "capec": "1000/152/242", + "module": "waf" }, "conditions": [ { @@ -4529,7 +4583,8 @@ "type": "nosql_injection", "category": "attack_attempt", "cwe": "943", - "capec": "1000/152/248/676" + "capec": "1000/152/248/676", + "module": "waf" }, "conditions": [ { @@ -4573,7 +4628,8 @@ "type": "java_code_injection", "category": "attack_attempt", "cwe": "94", - "capec": "1000/152/242" + "capec": "1000/152/242", + "module": "waf" }, "conditions": [ { @@ -4619,7 +4675,8 @@ "category": "attack_attempt", "cwe": "94", "capec": "1000/152/242", - "confidence": "1" + "confidence": "1", + "module": "waf" }, "conditions": [ { @@ -4695,7 +4752,8 @@ "category": "attack_attempt", "cwe": "1321", "capec": "1000/152/242", - "confidence": "1" + "confidence": "1", + "module": "waf" }, "conditions": [ { @@ -4725,7 +4783,8 @@ "category": "attack_attempt", "cwe": "1321", "capec": "1000/152/242", - "confidence": "1" + "confidence": "1", + "module": "waf" }, "conditions": [ { @@ -4769,7 +4828,8 @@ "category": "attack_attempt", "cwe": "1336", "capec": "1000/152/242/19", - "confidence": "1" + "confidence": "1", + "module": "waf" }, "conditions": [ { @@ -4813,7 +4873,8 @@ "tool_name": "BurpCollaborator", "cwe": "200", "capec": "1000/118/169", - "confidence": "1" + "confidence": "1", + "module": "waf" }, "conditions": [ { @@ -4857,7 +4918,8 @@ "tool_name": "Qualys", "cwe": "200", "capec": "1000/118/169", - "confidence": "0" + "confidence": "0", + "module": "waf" }, "conditions": [ { @@ -4901,7 +4963,8 @@ "tool_name": "Probely", "cwe": "200", "capec": "1000/118/169", - "confidence": "0" + "confidence": "0", + "module": "waf" }, "conditions": [ { @@ -4944,7 +5007,8 @@ "category": "attack_attempt", "cwe": "200", "capec": "1000/118/169", - "confidence": "1" + "confidence": "1", + "module": "waf" }, "conditions": [ { @@ -4987,7 +5051,8 @@ "category": "attack_attempt", "cwe": "200", "capec": "1000/118/169", - "confidence": "0" + "confidence": "0", + "module": "waf" }, "conditions": [ { @@ -5031,7 +5096,8 @@ "tool_name": "Rapid7", "cwe": "200", "capec": "1000/118/169", - "confidence": "0" + "confidence": "0", + "module": "waf" }, "conditions": [ { @@ -5075,7 +5141,8 @@ "tool_name": "interact.sh", "cwe": "200", "capec": "1000/118/169", - "confidence": "1" + "confidence": "1", + "module": "waf" }, "conditions": [ { @@ -5119,7 +5186,8 @@ "tool_name": "Netsparker", "cwe": "200", "capec": "1000/118/169", - "confidence": "0" + "confidence": "0", + "module": "waf" }, "conditions": [ { @@ -5167,7 +5235,8 @@ "tool_name": "WhiteHatSecurity", "cwe": "200", "capec": "1000/118/169", - "confidence": "0" + "confidence": "0", + "module": "waf" }, "conditions": [ { @@ -5215,7 +5284,8 @@ "tool_name": "Nessus", "cwe": "200", "capec": "1000/118/169", - "confidence": "0" + "confidence": "0", + "module": "waf" }, "conditions": [ { @@ -5263,7 +5333,8 @@ "tool_name": "Watchtowr", "cwe": "200", "capec": "1000/118/169", - "confidence": "0" + "confidence": "0", + "module": "waf" }, "conditions": [ { @@ -5311,7 +5382,8 @@ "tool_name": "AppCheckNG", "cwe": "200", "capec": "1000/118/169", - "confidence": "0" + "confidence": "0", + "module": "waf" }, "conditions": [ { @@ -5358,7 +5430,8 @@ "category": "attack_attempt", "cwe": "287", "capec": "1000/225/115", - "confidence": "0" + "confidence": "0", + "module": "waf" }, "conditions": [ { @@ -5392,7 +5465,8 @@ "category": "attack_attempt", "cwe": "98", "capec": "1000/152/175/253/193", - "confidence": "1" + "confidence": "1", + "module": "waf" }, "conditions": [ { @@ -5436,7 +5510,8 @@ "category": "attack_attempt", "cwe": "77", "capec": "1000/152/248/88", - "confidence": "0" + "confidence": "0", + "module": "waf" }, "conditions": [ { @@ -5483,7 +5558,8 @@ "category": "attack_attempt", "cwe": "91", "capec": "1000/152/248/250", - "confidence": "1" + "confidence": "1", + "module": "waf" }, "conditions": [ { @@ -5521,7 +5597,8 @@ "category": "attack_attempt", "cwe": "83", "capec": "1000/152/242/63/591/243", - "confidence": "1" + "confidence": "1", + "module": "waf" }, "conditions": [ { @@ -5579,7 +5656,8 @@ "category": "attack_attempt", "cwe": "83", "capec": "1000/152/242/63/591/243", - "confidence": "1" + "confidence": "1", + "module": "waf" }, "conditions": [ { @@ -5866,7 +5944,8 @@ "category": "attack_attempt", "cwe": "200", "capec": "1000/118/169", - "confidence": "1" + "confidence": "1", + "module": "waf" }, "conditions": [ { @@ -5908,7 +5987,8 @@ "category": "attack_attempt", "cwe": "200", "capec": "1000/118/169", - "confidence": "1" + "confidence": "1", + "module": "waf" }, "conditions": [ { @@ -5950,7 +6030,8 @@ "category": "attack_attempt", "cwe": "200", "capec": "1000/118/169", - "confidence": "1" + "confidence": "1", + "module": "waf" }, "conditions": [ { @@ -5992,7 +6073,8 @@ "category": "attack_attempt", "cwe": "200", "capec": "1000/118/169", - "confidence": "1" + "confidence": "1", + "module": "waf" }, "conditions": [ { @@ -6034,7 +6116,8 @@ "category": "attack_attempt", "cwe": "200", "capec": "1000/118/169", - "confidence": "1" + "confidence": "1", + "module": "waf" }, "conditions": [ { @@ -6059,7 +6142,7 @@ "address": "server.request.uri.raw" } ], - "regex": "\\.(cgi|bat|dll|exe|key|cert|crt|pem|der|pkcs|pkcs|pkcs[0-9]*|nsf|jsa|war|java|class|vb|vba|so|git|svn|hg|cvs)([^a-zA-Z0-9_]|$)", + "regex": "\\.(cgi|bat|dll|exe|key|cert|crt|pem|der|pkcs|pkcs|pkcs[0-9]*|nsf|jsa|war|java|class|vb|vba|so|git|svn|hg|cvs)([?#&/]|$)", "options": { "case_sensitive": false } @@ -6076,7 +6159,8 @@ "category": "attack_attempt", "cwe": "200", "capec": "1000/118/169", - "confidence": "1" + "confidence": "1", + "module": "waf" }, "conditions": [ { @@ -6118,7 +6202,8 @@ "category": "attack_attempt", "cwe": "200", "capec": "1000/118/169", - "confidence": "1" + "confidence": "1", + "module": "waf" }, "conditions": [ { @@ -6160,7 +6245,8 @@ "category": "attack_attempt", "cwe": "200", "capec": "1000/118/169", - "confidence": "1" + "confidence": "1", + "module": "waf" }, "conditions": [ { @@ -6202,7 +6288,8 @@ "category": "attack_attempt", "cwe": "200", "capec": "1000/118/169", - "confidence": "0" + "confidence": "0", + "module": "waf" }, "conditions": [ { @@ -6276,7 +6363,7 @@ } ] }, - "operator": "lfi_detector" + "operator": "lfi_detector@v2" } ], "transformers": [], @@ -6286,7 +6373,7 @@ }, { "id": "rasp-932-100", - "name": "Shell injection exploit", + "name": "Shell command injection exploit", "tags": { "type": "command_injection", "category": "vulnerability_trigger", @@ -6332,6 +6419,54 @@ "stack_trace" ] }, + { + "id": "rasp-932-110", + "name": "OS command injection exploit", + "tags": { + "type": "command_injection", + "category": "vulnerability_trigger", + "cwe": "77", + "capec": "1000/152/248/88", + "confidence": "0", + "module": "rasp" + }, + "conditions": [ + { + "parameters": { + "resource": [ + { + "address": "server.sys.exec.cmd" + } + ], + "params": [ + { + "address": "server.request.query" + }, + { + "address": "server.request.body" + }, + { + "address": "server.request.path_params" + }, + { + "address": "grpc.server.request.message" + }, + { + "address": "graphql.server.all_resolvers" + }, + { + "address": "graphql.server.resolver" + } + ] + }, + "operator": "cmdi_detector" + } + ], + "transformers": [], + "on_match": [ + "stack_trace" + ] + }, { "id": "rasp-934-100", "name": "Server-side request forgery exploit", @@ -6422,7 +6557,7 @@ } ] }, - "operator": "sqli_detector" + "operator": "sqli_detector@v2" } ], "transformers": [], @@ -6438,7 +6573,8 @@ "category": "attack_attempt", "cwe": "918", "capec": "1000/225/115/664", - "confidence": "1" + "confidence": "1", + "module": "waf" }, "conditions": [ { @@ -6482,7 +6618,8 @@ "type": "js_code_injection", "category": "attack_attempt", "cwe": "94", - "capec": "1000/152/242" + "capec": "1000/152/242", + "module": "waf" }, "conditions": [ { @@ -6527,7 +6664,8 @@ "category": "attack_attempt", "cwe": "78", "capec": "1000/152/248/88", - "confidence": "1" + "confidence": "1", + "module": "waf" }, "conditions": [ { @@ -6570,7 +6708,8 @@ "category": "attack_attempt", "cwe": "78", "capec": "1000/152/248/88", - "confidence": "1" + "confidence": "1", + "module": "waf" }, "conditions": [ { @@ -6615,7 +6754,8 @@ "category": "attack_attempt", "cwe": "78", "capec": "1000/152/248/88", - "confidence": "1" + "confidence": "1", + "module": "waf" }, "conditions": [ { @@ -6658,7 +6798,8 @@ "category": "attack_attempt", "cwe": "918", "capec": "1000/225/115/664", - "confidence": "1" + "confidence": "1", + "module": "waf" }, "conditions": [ { @@ -6701,7 +6842,8 @@ "category": "attack_attempt", "cwe": "918", "capec": "1000/225/115/664", - "confidence": "0" + "confidence": "0", + "module": "waf" }, "conditions": [ { @@ -6743,7 +6885,8 @@ "category": "attack_attempt", "cwe": "918", "capec": "1000/225/115/664", - "confidence": "0" + "confidence": "0", + "module": "waf" }, "conditions": [ { @@ -6785,7 +6928,8 @@ "category": "attack_attempt", "cwe": "918", "capec": "1000/225/115/664", - "confidence": "1" + "confidence": "1", + "module": "waf" }, "conditions": [ { @@ -6828,7 +6972,8 @@ "category": "attack_attempt", "cwe": "918", "capec": "1000/225/115/664", - "confidence": "0" + "confidence": "0", + "module": "waf" }, "conditions": [ { @@ -6870,7 +7015,8 @@ "category": "attack_attempt", "cwe": "94", "capec": "1000/152/242", - "confidence": "1" + "confidence": "1", + "module": "waf" }, "conditions": [ { @@ -6916,7 +7062,8 @@ "cwe": "200", "capec": "1000/118/169", "tool_name": "Joomla exploitation tool", - "confidence": "1" + "confidence": "1", + "module": "waf" }, "conditions": [ { @@ -6945,7 +7092,8 @@ "cwe": "200", "capec": "1000/118/169", "tool_name": "Nessus", - "confidence": "1" + "confidence": "1", + "module": "waf" }, "conditions": [ { @@ -6974,7 +7122,8 @@ "cwe": "200", "capec": "1000/118/169", "tool_name": "Arachni", - "confidence": "1" + "confidence": "1", + "module": "waf" }, "conditions": [ { @@ -7003,7 +7152,8 @@ "cwe": "200", "capec": "1000/118/169", "tool_name": "Jorgee", - "confidence": "1" + "confidence": "1", + "module": "waf" }, "conditions": [ { @@ -7032,7 +7182,8 @@ "cwe": "200", "capec": "1000/118/169", "tool_name": "Probely", - "confidence": "0" + "confidence": "0", + "module": "waf" }, "conditions": [ { @@ -7061,7 +7212,8 @@ "cwe": "200", "capec": "1000/118/169", "tool_name": "Metis", - "confidence": "1" + "confidence": "1", + "module": "waf" }, "conditions": [ { @@ -7090,7 +7242,8 @@ "cwe": "200", "capec": "1000/118/169", "tool_name": "SQLPowerInjector", - "confidence": "1" + "confidence": "1", + "module": "waf" }, "conditions": [ { @@ -7119,7 +7272,8 @@ "cwe": "200", "capec": "1000/118/169", "tool_name": "N-Stealth", - "confidence": "1" + "confidence": "1", + "module": "waf" }, "conditions": [ { @@ -7148,7 +7302,8 @@ "cwe": "200", "capec": "1000/118/169", "tool_name": "Brutus", - "confidence": "1" + "confidence": "1", + "module": "waf" }, "conditions": [ { @@ -7176,7 +7331,8 @@ "category": "attack_attempt", "cwe": "200", "capec": "1000/118/169", - "confidence": "1" + "confidence": "1", + "module": "waf" }, "conditions": [ { @@ -7205,7 +7361,8 @@ "cwe": "200", "capec": "1000/118/169", "tool_name": "Netsparker", - "confidence": "0" + "confidence": "0", + "module": "waf" }, "conditions": [ { @@ -7234,7 +7391,8 @@ "cwe": "200", "capec": "1000/118/169", "tool_name": "JAASCois", - "confidence": "1" + "confidence": "1", + "module": "waf" }, "conditions": [ { @@ -7263,7 +7421,8 @@ "cwe": "200", "capec": "1000/118/169", "tool_name": "Nsauditor", - "confidence": "1" + "confidence": "1", + "module": "waf" }, "conditions": [ { @@ -7292,7 +7451,8 @@ "cwe": "200", "capec": "1000/118/169", "tool_name": "Paros", - "confidence": "1" + "confidence": "1", + "module": "waf" }, "conditions": [ { @@ -7321,7 +7481,8 @@ "cwe": "200", "capec": "1000/118/169", "tool_name": "DirBuster", - "confidence": "1" + "confidence": "1", + "module": "waf" }, "conditions": [ { @@ -7350,7 +7511,8 @@ "cwe": "200", "capec": "1000/118/169", "tool_name": "Pangolin", - "confidence": "1" + "confidence": "1", + "module": "waf" }, "conditions": [ { @@ -7379,7 +7541,8 @@ "cwe": "200", "capec": "1000/118/169", "tool_name": "Qualys", - "confidence": "0" + "confidence": "0", + "module": "waf" }, "conditions": [ { @@ -7408,7 +7571,8 @@ "cwe": "200", "capec": "1000/118/169", "tool_name": "SQLNinja", - "confidence": "1" + "confidence": "1", + "module": "waf" }, "conditions": [ { @@ -7437,7 +7601,8 @@ "cwe": "200", "capec": "1000/118/169", "tool_name": "Nikto", - "confidence": "1" + "confidence": "1", + "module": "waf" }, "conditions": [ { @@ -7466,7 +7631,8 @@ "cwe": "200", "capec": "1000/118/169", "tool_name": "BlackWidow", - "confidence": "1" + "confidence": "1", + "module": "waf" }, "conditions": [ { @@ -7495,7 +7661,8 @@ "cwe": "200", "capec": "1000/118/169", "tool_name": "Grendel-Scan", - "confidence": "1" + "confidence": "1", + "module": "waf" }, "conditions": [ { @@ -7524,7 +7691,8 @@ "cwe": "200", "capec": "1000/118/169", "tool_name": "Havij", - "confidence": "1" + "confidence": "1", + "module": "waf" }, "conditions": [ { @@ -7553,7 +7721,8 @@ "cwe": "200", "capec": "1000/118/169", "tool_name": "w3af", - "confidence": "1" + "confidence": "1", + "module": "waf" }, "conditions": [ { @@ -7582,7 +7751,8 @@ "cwe": "200", "capec": "1000/118/169", "tool_name": "Nmap", - "confidence": "1" + "confidence": "1", + "module": "waf" }, "conditions": [ { @@ -7611,7 +7781,8 @@ "cwe": "200", "capec": "1000/118/169", "tool_name": "Nessus", - "confidence": "1" + "confidence": "1", + "module": "waf" }, "conditions": [ { @@ -7640,7 +7811,8 @@ "cwe": "200", "capec": "1000/118/169", "tool_name": "EvilScanner", - "confidence": "1" + "confidence": "1", + "module": "waf" }, "conditions": [ { @@ -7669,7 +7841,8 @@ "cwe": "200", "capec": "1000/118/169", "tool_name": "WebFuck", - "confidence": "1" + "confidence": "1", + "module": "waf" }, "conditions": [ { @@ -7698,7 +7871,8 @@ "cwe": "200", "capec": "1000/118/169", "tool_name": "OpenVAS", - "confidence": "1" + "confidence": "1", + "module": "waf" }, "conditions": [ { @@ -7727,7 +7901,8 @@ "cwe": "200", "capec": "1000/118/169", "tool_name": "Spider-Pig", - "confidence": "1" + "confidence": "1", + "module": "waf" }, "conditions": [ { @@ -7756,7 +7931,8 @@ "cwe": "200", "capec": "1000/118/169", "tool_name": "Zgrab", - "confidence": "1" + "confidence": "1", + "module": "waf" }, "conditions": [ { @@ -7785,7 +7961,8 @@ "cwe": "200", "capec": "1000/118/169", "tool_name": "Zmeu", - "confidence": "1" + "confidence": "1", + "module": "waf" }, "conditions": [ { @@ -7814,7 +7991,8 @@ "cwe": "200", "capec": "1000/118/169", "tool_name": "GoogleSecurityScanner", - "confidence": "0" + "confidence": "0", + "module": "waf" }, "conditions": [ { @@ -7843,7 +8021,8 @@ "cwe": "200", "capec": "1000/118/169", "tool_name": "Commix", - "confidence": "1" + "confidence": "1", + "module": "waf" }, "conditions": [ { @@ -7872,7 +8051,8 @@ "cwe": "200", "capec": "1000/118/169", "tool_name": "Gobuster", - "confidence": "1" + "confidence": "1", + "module": "waf" }, "conditions": [ { @@ -7901,7 +8081,8 @@ "cwe": "200", "capec": "1000/118/169", "tool_name": "CGIchk", - "confidence": "1" + "confidence": "1", + "module": "waf" }, "conditions": [ { @@ -7930,7 +8111,8 @@ "cwe": "200", "capec": "1000/118/169", "tool_name": "FFUF", - "confidence": "1" + "confidence": "1", + "module": "waf" }, "conditions": [ { @@ -7959,7 +8141,8 @@ "cwe": "200", "capec": "1000/118/169", "tool_name": "Nuclei", - "confidence": "1" + "confidence": "1", + "module": "waf" }, "conditions": [ { @@ -7988,7 +8171,8 @@ "cwe": "200", "capec": "1000/118/169", "tool_name": "Tsunami", - "confidence": "1" + "confidence": "1", + "module": "waf" }, "conditions": [ { @@ -8017,7 +8201,8 @@ "cwe": "200", "capec": "1000/118/169", "tool_name": "Nimbostratus", - "confidence": "1" + "confidence": "1", + "module": "waf" }, "conditions": [ { @@ -8046,7 +8231,8 @@ "cwe": "200", "capec": "1000/118/169", "tool_name": "Datadog Canary Test", - "confidence": "1" + "confidence": "1", + "module": "waf" }, "conditions": [ { @@ -8081,7 +8267,8 @@ "cwe": "200", "capec": "1000/118/169", "tool_name": "Datadog Canary Test", - "confidence": "1" + "confidence": "1", + "module": "waf" }, "conditions": [ { @@ -8119,7 +8306,8 @@ "cwe": "200", "capec": "1000/118/169", "tool_name": "AlertLogic", - "confidence": "0" + "confidence": "0", + "module": "waf" }, "conditions": [ { @@ -8148,7 +8336,8 @@ "cwe": "200", "capec": "1000/118/169", "tool_name": "wfuzz", - "confidence": "1" + "confidence": "1", + "module": "waf" }, "conditions": [ { @@ -8177,7 +8366,8 @@ "cwe": "200", "capec": "1000/118/169", "tool_name": "Detectify", - "confidence": "0" + "confidence": "0", + "module": "waf" }, "conditions": [ { @@ -8206,7 +8396,8 @@ "cwe": "200", "capec": "1000/118/169", "tool_name": "BSQLBF", - "confidence": "1" + "confidence": "1", + "module": "waf" }, "conditions": [ { @@ -8235,7 +8426,8 @@ "cwe": "200", "capec": "1000/118/169", "tool_name": "masscan", - "confidence": "1" + "confidence": "1", + "module": "waf" }, "conditions": [ { @@ -8264,7 +8456,8 @@ "cwe": "200", "capec": "1000/118/169", "tool_name": "WPScan", - "confidence": "1" + "confidence": "1", + "module": "waf" }, "conditions": [ { @@ -8293,7 +8486,8 @@ "cwe": "200", "capec": "1000/118/169", "tool_name": "Aon", - "confidence": "0" + "confidence": "0", + "module": "waf" }, "conditions": [ { @@ -8322,7 +8516,8 @@ "cwe": "200", "capec": "1000/118/169", "tool_name": "feroxbuster", - "confidence": "1" + "confidence": "1", + "module": "waf" }, "conditions": [ { @@ -8350,7 +8545,8 @@ "category": "attack_attempt", "cwe": "200", "capec": "1000/118/169", - "confidence": "1" + "confidence": "1", + "module": "waf" }, "conditions": [ { @@ -8382,7 +8578,8 @@ "cwe": "200", "capec": "1000/118/169", "tool_name": "SQLmap", - "confidence": "1" + "confidence": "1", + "module": "waf" }, "conditions": [ { @@ -8411,7 +8608,8 @@ "cwe": "200", "capec": "1000/118/169", "tool_name": "Skipfish", - "confidence": "1" + "confidence": "1", + "module": "waf" }, "conditions": [ { @@ -9776,4 +9974,4 @@ } } ] -} +} \ No newline at end of file diff --git a/lib/datadog/appsec/assets/waf_rules/strict.json b/lib/datadog/appsec/assets/waf_rules/strict.json index 91b99a81902..0ddfb781e9e 100644 --- a/lib/datadog/appsec/assets/waf_rules/strict.json +++ b/lib/datadog/appsec/assets/waf_rules/strict.json @@ -1,7 +1,7 @@ { "version": "2.2", "metadata": { - "rules_version": "1.13.1" + "rules_version": "1.13.3" }, "rules": [ { @@ -10,7 +10,8 @@ "tags": { "type": "security_scanner", "crs_id": "913100", - "category": "attack_attempt" + "category": "attack_attempt", + "module": "waf" }, "conditions": [ { @@ -84,7 +85,8 @@ "tags": { "type": "http_protocol_violation", "crs_id": "921120", - "category": "attack_attempt" + "category": "attack_attempt", + "module": "waf" }, "conditions": [ { @@ -127,7 +129,8 @@ "crs_id": "921140", "category": "attack_attempt", "capec": "1000/210/272/220/273", - "cwe": "113" + "cwe": "113", + "module": "waf" }, "conditions": [ { @@ -154,7 +157,8 @@ "tags": { "type": "command_injection", "crs_id": "932100", - "category": "attack_attempt" + "category": "attack_attempt", + "module": "waf" }, "conditions": [ { @@ -193,7 +197,8 @@ "tags": { "type": "command_injection", "crs_id": "932115", - "category": "attack_attempt" + "category": "attack_attempt", + "module": "waf" }, "conditions": [ { @@ -690,7 +695,8 @@ "tags": { "type": "command_injection", "crs_id": "932130", - "category": "attack_attempt" + "category": "attack_attempt", + "module": "waf" }, "conditions": [ { @@ -729,7 +735,8 @@ "tags": { "type": "command_injection", "crs_id": "932150", - "category": "attack_attempt" + "category": "attack_attempt", + "module": "waf" }, "conditions": [ { @@ -768,7 +775,8 @@ "tags": { "type": "php_code_injection", "crs_id": "933110", - "category": "attack_attempt" + "category": "attack_attempt", + "module": "waf" }, "conditions": [ { @@ -818,7 +826,8 @@ "tags": { "type": "php_code_injection", "crs_id": "933180", - "category": "attack_attempt" + "category": "attack_attempt", + "module": "waf" }, "conditions": [ { @@ -857,7 +866,8 @@ "tags": { "type": "php_code_injection", "crs_id": "933210", - "category": "attack_attempt" + "category": "attack_attempt", + "module": "waf" }, "conditions": [ { @@ -897,7 +907,8 @@ "type": "xss", "crs_id": "941100", "category": "attack_attempt", - "cwe": "79" + "cwe": "79", + "module": "waf" }, "conditions": [ { @@ -948,7 +959,8 @@ "tags": { "type": "xss", "crs_id": "941130", - "category": "attack_attempt" + "category": "attack_attempt", + "module": "waf" }, "conditions": [ { @@ -994,7 +1006,8 @@ "tags": { "type": "xss", "crs_id": "941150", - "category": "attack_attempt" + "category": "attack_attempt", + "module": "waf" }, "conditions": [ { @@ -1041,7 +1054,8 @@ "tags": { "type": "xss", "crs_id": "941160", - "category": "attack_attempt" + "category": "attack_attempt", + "module": "waf" }, "conditions": [ { @@ -1093,7 +1107,8 @@ "tags": { "type": "xss", "crs_id": "941190", - "category": "attack_attempt" + "category": "attack_attempt", + "module": "waf" }, "conditions": [ { @@ -1134,7 +1149,8 @@ "tags": { "type": "xss", "crs_id": "941250", - "category": "attack_attempt" + "category": "attack_attempt", + "module": "waf" }, "conditions": [ { @@ -1175,7 +1191,8 @@ "tags": { "type": "xss", "crs_id": "941260", - "category": "attack_attempt" + "category": "attack_attempt", + "module": "waf" }, "conditions": [ { @@ -1216,7 +1233,8 @@ "tags": { "type": "xss", "crs_id": "941370", - "category": "attack_attempt" + "category": "attack_attempt", + "module": "waf" }, "conditions": [ { @@ -1255,7 +1273,8 @@ "tags": { "type": "js_code_injection", "crs_id": "941380", - "category": "attack_attempt" + "category": "attack_attempt", + "module": "waf" }, "conditions": [ { @@ -1294,7 +1313,8 @@ "tags": { "type": "sql_injection", "crs_id": "942151", - "category": "attack_attempt" + "category": "attack_attempt", + "module": "waf" }, "conditions": [ { @@ -1333,7 +1353,8 @@ "tags": { "type": "sql_injection", "crs_id": "942170", - "category": "attack_attempt" + "category": "attack_attempt", + "module": "waf" }, "conditions": [ { @@ -1372,7 +1393,8 @@ "type": "sql_injection", "crs_id": "942190", "category": "attack_attempt", - "cwe": "89" + "cwe": "89", + "module": "waf" }, "conditions": [ { @@ -1413,7 +1435,8 @@ "tags": { "type": "sql_injection", "crs_id": "942230", - "category": "attack_attempt" + "category": "attack_attempt", + "module": "waf" }, "conditions": [ { @@ -1452,7 +1475,8 @@ "tags": { "type": "sql_injection", "crs_id": "942320", - "category": "attack_attempt" + "category": "attack_attempt", + "module": "waf" }, "conditions": [ { @@ -1490,7 +1514,8 @@ "tags": { "type": "sql_injection", "crs_id": "942350", - "category": "attack_attempt" + "category": "attack_attempt", + "module": "waf" }, "conditions": [ { @@ -1528,7 +1553,8 @@ "tags": { "type": "java_code_injection", "crs_id": "944240", - "category": "attack_attempt" + "category": "attack_attempt", + "module": "waf" }, "conditions": [ { @@ -1573,7 +1599,8 @@ "type": "lfi", "category": "attack_attempt", "cwe": "22", - "capec": "1000/255/153/126" + "capec": "1000/255/153/126", + "module": "waf" }, "conditions": [ { @@ -1612,7 +1639,8 @@ "type": "lfi", "category": "attack_attempt", "cwe": "22", - "capec": "1000/255/153/126" + "capec": "1000/255/153/126", + "module": "waf" }, "conditions": [ { @@ -1653,7 +1681,8 @@ "tags": { "type": "nosql_injection", "category": "attack_attempt", - "cwe": "943" + "cwe": "943", + "module": "waf" }, "conditions": [ { @@ -1689,7 +1718,8 @@ "name": "Node.js: Prototype pollution", "tags": { "type": "js_code_injection", - "category": "attack_attempt" + "category": "attack_attempt", + "module": "waf" }, "conditions": [ { @@ -3060,4 +3090,4 @@ } } ] -} +} \ No newline at end of file From 66aec5febd27a8c659d7c1037e84199ae4cdb123 Mon Sep 17 00:00:00 2001 From: Sergey Fedorov Date: Wed, 11 Dec 2024 15:57:00 +0100 Subject: [PATCH 023/161] Fix Core::Telemetry stacktrace and error logging --- lib/datadog/core/telemetry/logging.rb | 4 ++-- spec/datadog/core/telemetry/logging_spec.rb | 10 +++++----- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/lib/datadog/core/telemetry/logging.rb b/lib/datadog/core/telemetry/logging.rb index 7f94439fe56..0bd889bf87b 100644 --- a/lib/datadog/core/telemetry/logging.rb +++ b/lib/datadog/core/telemetry/logging.rb @@ -41,7 +41,7 @@ def self.from(exception) else 'REDACTED' end - end.join(',') + end.join("\n") end end @@ -49,7 +49,7 @@ def report(exception, level: :error, description: nil) # Annoymous exceptions to be logged as message = +'' message << (exception.class.name || exception.class.inspect) - message << ':' << description if description + message << ': ' << description if description event = Event::Log.new( message: message, diff --git a/spec/datadog/core/telemetry/logging_spec.rb b/spec/datadog/core/telemetry/logging_spec.rb index 01fdcc89b3a..35613de6638 100644 --- a/spec/datadog/core/telemetry/logging_spec.rb +++ b/spec/datadog/core/telemetry/logging_spec.rb @@ -24,7 +24,7 @@ def log!(_event) ) expect(event.payload).to include( logs: [{ message: 'RuntimeError', level: 'ERROR', - stack_trace: a_string_including(',/spec/') }] + stack_trace: a_string_including("\n/spec/") }] ) end @@ -39,12 +39,12 @@ def log!(_event) it 'sends a log event to via telemetry' do expect(component).to receive(:log!).with(instance_of(Datadog::Core::Telemetry::Event::Log)) do |event| expect(event.payload).to include( - logs: [{ message: 'RuntimeError:Must not contain PII', level: 'ERROR', + logs: [{ message: 'RuntimeError: Must not contain PII', level: 'ERROR', stack_trace: a_string_including('REDACTED') }] ) expect(event.payload).to include( - logs: [{ message: 'RuntimeError:Must not contain PII', level: 'ERROR', - stack_trace: a_string_including(',/spec/') }] + logs: [{ message: 'RuntimeError: Must not contain PII', level: 'ERROR', + stack_trace: a_string_including("\n/spec/") }] ) end @@ -66,7 +66,7 @@ def log!(_event) ) expect(event.payload).to include( logs: [{ message: /# Date: Mon, 9 Dec 2024 13:13:42 -0500 Subject: [PATCH 024/161] Remove if statements --- ruby-3.4.gemfile | 48 +++++++++++++++--------------------------------- 1 file changed, 15 insertions(+), 33 deletions(-) diff --git a/ruby-3.4.gemfile b/ruby-3.4.gemfile index 7c98db33eca..10563ad479f 100644 --- a/ruby-3.4.gemfile +++ b/ruby-3.4.gemfile @@ -8,22 +8,14 @@ gem 'benchmark-memory', '< 0.2' # V0.2 only works with 2.5+ gem 'climate_control', '~> 0.2.0' gem 'concurrent-ruby' -gem 'extlz4', '~> 0.3', '>= 0.3.3' if RUBY_PLATFORM != 'java' # Used to test lz4 compression done by libdatadog +gem 'extlz4', '~> 0.3', '>= 0.3.3' gem 'json-schema', '< 3' # V3 only works with 2.5+ gem 'memory_profiler', '~> 0.9' gem 'os', '~> 1.1' gem 'pimpmychangelog', '>= 0.1.2' gem 'pry' -if RUBY_PLATFORM != 'java' - # There's a few incompatibilities between pry/pry-byebug on older Rubies - # There's also a few temproary incompatibilities with newer rubies - gem 'pry-byebug' if RUBY_VERSION >= '2.6.0' && RUBY_ENGINE != 'truffleruby' && RUBY_VERSION < '3.2.0' - gem 'pry-nav' if RUBY_VERSION < '2.6.0' - gem 'pry-stack_explorer' -else - gem 'pry-debugger-jruby' -end +gem 'pry-stack_explorer' gem 'rake', '>= 10.5' gem 'rake-compiler', '~> 1.1', '>= 1.1.1' # To compile native extensions gem 'rspec', '~> 3.13' @@ -42,16 +34,14 @@ gem 'warning', '~> 1' # NOTE: Used in spec_helper.rb gem 'webmock', '>= 3.10.0' # No longer bundled by default since Ruby 3.0 -gem 'webrick', '>= 1.8.2' if RUBY_VERSION >= '3.0.0' - -if RUBY_VERSION >= '2.6.0' - # 1.50 is the last version to support Ruby 2.6 - gem 'rubocop', '~> 1.50.0', require: false - gem 'rubocop-packaging', '~> 0.5.2', require: false - gem 'rubocop-performance', '~> 1.9', require: false - # 2.20 is the last version to support Ruby 2.6 - gem 'rubocop-rspec', ['~> 2.20', '< 2.21'], require: false -end +gem 'webrick', '>= 1.8.2' + +# 1.50 is the last version to support Ruby 2.6 +gem 'rubocop', '~> 1.50.0', require: false +gem 'rubocop-packaging', '~> 0.5.2', require: false +gem 'rubocop-performance', '~> 1.9', require: false +# 2.20 is the last version to support Ruby 2.6 +gem 'rubocop-rspec', ['~> 2.20', '< 2.21'], require: false # Optional extensions # TODO: Move this to Appraisals? @@ -63,25 +53,17 @@ gem 'dogstatsd-ruby', '>= 3.3.0', '!= 5.0.0', '!= 5.0.1', '!= 5.1.0' # NOTE: We're excluding versions 3.7.0 and 3.7.1 for the reasons documented in #1424. # Since most of our customers won't have BUNDLE_FORCE_RUBY_PLATFORM=true, it's not something we want to add # to our CI, so we just shortcut and exclude specific versions that were affecting our CI. -if RUBY_PLATFORM != 'java' - if RUBY_VERSION >= '2.7.0' # Bundler 1.x fails to find that versions >= 3.8.0 are not compatible because of binary gems - gem 'google-protobuf', ['~> 3.0', '!= 3.7.0', '!= 3.7.1'] - else - gem 'google-protobuf', ['~> 3.0', '!= 3.7.0', '!= 3.7.1', '< 3.19.2'] - end -end +gem 'google-protobuf', ['~> 3.0', '!= 3.7.0', '!= 3.7.1'] group :check do - if RUBY_VERSION >= '3.0.0' && RUBY_PLATFORM != 'java' - gem 'rbs', '~> 3.6', require: false - gem 'steep', '~> 1.7.0', require: false - end - gem 'ruby_memcheck', '>= 3' if RUBY_VERSION >= '3.4.0' && RUBY_PLATFORM != 'java' + gem 'rbs', '~> 3.6', require: false + gem 'steep', '~> 1.7.0', require: false + gem 'ruby_memcheck', '>= 3' gem 'standard', require: false end group :dev do - gem 'ruby-lsp', require: false if RUBY_VERSION >= '3.0.0' && RUBY_PLATFORM != 'java' + gem 'ruby-lsp', require: false gem 'appraisal', '~> 2.4.0', require: false end From 2bed1f1d152431e78e86047607134be5ae9c597f Mon Sep 17 00:00:00 2001 From: Sarah Chen Date: Mon, 9 Dec 2024 13:16:31 -0500 Subject: [PATCH 025/161] alphabetize --- ruby-3.4.gemfile | 70 ++++++++++++++++++++++-------------------------- 1 file changed, 32 insertions(+), 38 deletions(-) diff --git a/ruby-3.4.gemfile b/ruby-3.4.gemfile index 10563ad479f..31078cc443c 100644 --- a/ruby-3.4.gemfile +++ b/ruby-3.4.gemfile @@ -2,16 +2,30 @@ source 'https://rubygems.org' gemspec +gem 'base64' gem 'benchmark-ips', '~> 2.8' gem 'benchmark-memory', '< 0.2' # V0.2 only works with 2.5+ - +gem 'bigdecimal' gem 'climate_control', '~> 0.2.0' - gem 'concurrent-ruby' + +# Optional extensions +# TODO: Move this to Appraisals? +# dogstatsd v5, but lower than 5.2, has possible memory leak with datadog. +# @see https://github.com/DataDog/dogstatsd-ruby/issues/182 +gem 'dogstatsd-ruby', '>= 3.3.0', '!= 5.0.0', '!= 5.0.1', '!= 5.1.0' + gem 'extlz4', '~> 0.3', '>= 0.3.3' + +# Profiler testing dependencies +# NOTE: We're excluding versions 3.7.0 and 3.7.1 for the reasons documented in #1424. +# Since most of our customers won't have BUNDLE_FORCE_RUBY_PLATFORM=true, it's not something we want to add +# to our CI, so we just shortcut and exclude specific versions that were affecting our CI. +gem 'google-protobuf', ['~> 3.0', '!= 3.7.0', '!= 3.7.1'] + gem 'json-schema', '< 3' # V3 only works with 2.5+ gem 'memory_profiler', '~> 0.9' - +gem 'mutex_m' gem 'os', '~> 1.1' gem 'pimpmychangelog', '>= 0.1.2' gem 'pry' @@ -21,40 +35,33 @@ gem 'rake-compiler', '~> 1.1', '>= 1.1.1' # To compile native extensions gem 'rspec', '~> 3.13' gem 'rspec-collection_matchers', '~> 1.1' gem 'rspec-wait', '~> 0' - gem 'rspec_junit_formatter', '>= 0.5.1' +# 1.50 is the last version to support Ruby 2.6 +gem 'rubocop', '~> 1.50.0', require: false +gem 'rubocop-packaging', '~> 0.5.2', require: false +gem 'rubocop-performance', '~> 1.9', require: false +# 2.20 is the last version to support Ruby 2.6 +gem 'rubocop-rspec', ['~> 2.20', '< 2.21'], require: false + # Merging branch coverage results does not work for old, unsupported rubies and JRuby # We have a fix up for review, https://github.com/simplecov-ruby/simplecov/pull/972, # but given it only affects unsupported version of Ruby, it might not get merged. gem 'simplecov', git: 'https://github.com/DataDog/simplecov', ref: '3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db' gem 'simplecov-cobertura', '~> 2.1.0' # Used by codecov +# Ruby 3.4 should be supported by strscan v3.1.1. However, the latest release of strscan is v3.1.0. +# Pin strscan to the latest commit sha. +# +# TODO: Remove once v3.1.1 is released. +gem 'strscan', + git: 'https://github.com/ruby/strscan', + ref: '041b15df4ccc067deabd85fd489b2c15961d0e2f' + gem 'warning', '~> 1' # NOTE: Used in spec_helper.rb gem 'webmock', '>= 3.10.0' - -# No longer bundled by default since Ruby 3.0 gem 'webrick', '>= 1.8.2' -# 1.50 is the last version to support Ruby 2.6 -gem 'rubocop', '~> 1.50.0', require: false -gem 'rubocop-packaging', '~> 0.5.2', require: false -gem 'rubocop-performance', '~> 1.9', require: false -# 2.20 is the last version to support Ruby 2.6 -gem 'rubocop-rspec', ['~> 2.20', '< 2.21'], require: false - -# Optional extensions -# TODO: Move this to Appraisals? -# dogstatsd v5, but lower than 5.2, has possible memory leak with datadog. -# @see https://github.com/DataDog/dogstatsd-ruby/issues/182 -gem 'dogstatsd-ruby', '>= 3.3.0', '!= 5.0.0', '!= 5.0.1', '!= 5.1.0' - -# Profiler testing dependencies -# NOTE: We're excluding versions 3.7.0 and 3.7.1 for the reasons documented in #1424. -# Since most of our customers won't have BUNDLE_FORCE_RUBY_PLATFORM=true, it's not something we want to add -# to our CI, so we just shortcut and exclude specific versions that were affecting our CI. -gem 'google-protobuf', ['~> 3.0', '!= 3.7.0', '!= 3.7.1'] - group :check do gem 'rbs', '~> 3.6', require: false gem 'steep', '~> 1.7.0', require: false @@ -66,16 +73,3 @@ group :dev do gem 'ruby-lsp', require: false gem 'appraisal', '~> 2.4.0', require: false end - -# Ruby 3.4 should be supported by strscan v3.1.1. However, the latest release of strscan is v3.1.0. -# Pin strscan to the latest commit sha. -# -# TODO: Remove once v3.1.1 is released. -gem 'strscan', - git: 'https://github.com/ruby/strscan', - ref: '041b15df4ccc067deabd85fd489b2c15961d0e2f' - -# No longer bundled by default since Ruby 3.4 -gem 'base64' -gem 'bigdecimal' -gem 'mutex_m' From 4d8719a8381042f3e73a42c49a3b98855fa86860 Mon Sep 17 00:00:00 2001 From: Sarah Chen Date: Mon, 9 Dec 2024 14:41:13 -0500 Subject: [PATCH 026/161] Remove 3.0 if statements --- ruby-3.0.gemfile | 51 +++++++++++++----------------------------------- 1 file changed, 14 insertions(+), 37 deletions(-) diff --git a/ruby-3.0.gemfile b/ruby-3.0.gemfile index 3c35c9d4b50..afea0f53c9c 100644 --- a/ruby-3.0.gemfile +++ b/ruby-3.0.gemfile @@ -8,22 +8,15 @@ gem 'benchmark-memory', '< 0.2' # V0.2 only works with 2.5+ gem 'climate_control', '~> 0.2.0' gem 'concurrent-ruby' -gem 'extlz4', '~> 0.3', '>= 0.3.3' if RUBY_PLATFORM != 'java' # Used to test lz4 compression done by libdatadog +gem 'extlz4', '~> 0.3', '>= 0.3.3' gem 'json-schema', '< 3' # V3 only works with 2.5+ gem 'memory_profiler', '~> 0.9' gem 'os', '~> 1.1' gem 'pimpmychangelog', '>= 0.1.2' gem 'pry' -if RUBY_PLATFORM != 'java' - # There's a few incompatibilities between pry/pry-byebug on older Rubies - # There's also a few temproary incompatibilities with newer rubies - gem 'pry-byebug' if RUBY_VERSION >= '2.6.0' && RUBY_ENGINE != 'truffleruby' && RUBY_VERSION < '3.2.0' - gem 'pry-nav' if RUBY_VERSION < '2.6.0' - gem 'pry-stack_explorer' -else - gem 'pry-debugger-jruby' -end +gem 'pry-byebug' +gem 'pry-stack_explorer' gem 'rake', '>= 10.5' gem 'rake-compiler', '~> 1.1', '>= 1.1.1' # To compile native extensions gem 'rspec', '~> 3.13' @@ -41,21 +34,14 @@ gem 'simplecov-cobertura', '~> 2.1.0' # Used by codecov gem 'warning', '~> 1' # NOTE: Used in spec_helper.rb gem 'webmock', '>= 3.10.0' -if RUBY_VERSION.start_with?('3.4.') - # ruby 3.4 breaks stable webrick; we need this fix until a version later than 1.8.1 comes out - gem 'webrick', git: 'https://github.com/ruby/webrick.git', ref: '0c600e169bd4ae267cb5eeb6197277c848323bbe' -elsif RUBY_VERSION >= '3.0.0' # No longer bundled by default since Ruby 3.0 - gem 'webrick', '>= 1.7.0' -end +gem 'webrick', '>= 1.7.0' -if RUBY_VERSION >= '2.6.0' - # 1.50 is the last version to support Ruby 2.6 - gem 'rubocop', '~> 1.50.0', require: false - gem 'rubocop-packaging', '~> 0.5.2', require: false - gem 'rubocop-performance', '~> 1.9', require: false - # 2.20 is the last version to support Ruby 2.6 - gem 'rubocop-rspec', ['~> 2.20', '< 2.21'], require: false -end +# 1.50 is the last version to support Ruby 2.6 +gem 'rubocop', '~> 1.50.0', require: false +gem 'rubocop-packaging', '~> 0.5.2', require: false +gem 'rubocop-performance', '~> 1.9', require: false +# 2.20 is the last version to support Ruby 2.6 +gem 'rubocop-rspec', ['~> 2.20', '< 2.21'], require: false # Optional extensions # TODO: Move this to Appraisals? @@ -67,24 +53,15 @@ gem 'dogstatsd-ruby', '>= 3.3.0', '!= 5.0.0', '!= 5.0.1', '!= 5.1.0' # NOTE: We're excluding versions 3.7.0 and 3.7.1 for the reasons documented in #1424. # Since most of our customers won't have BUNDLE_FORCE_RUBY_PLATFORM=true, it's not something we want to add # to our CI, so we just shortcut and exclude specific versions that were affecting our CI. -if RUBY_PLATFORM != 'java' - if RUBY_VERSION >= '2.7.0' # Bundler 1.x fails to find that versions >= 3.8.0 are not compatible because of binary gems - gem 'google-protobuf', ['~> 3.0', '!= 3.7.0', '!= 3.7.1'] - else - gem 'google-protobuf', ['~> 3.0', '!= 3.7.0', '!= 3.7.1', '< 3.19.2'] - end -end +gem 'google-protobuf', ['~> 3.0', '!= 3.7.0', '!= 3.7.1'] group :check do - if RUBY_VERSION >= '3.0.0' && RUBY_PLATFORM != 'java' - gem 'rbs', '~> 3.6', require: false - gem 'steep', '~> 1.7.0', require: false - end - gem 'ruby_memcheck', '>= 3' if RUBY_VERSION >= '3.4.0' && RUBY_PLATFORM != 'java' + gem 'rbs', '~> 3.6', require: false + gem 'steep', '~> 1.7.0', require: false gem 'standard', require: false end group :dev do - gem 'ruby-lsp', require: false if RUBY_VERSION >= '3.0.0' && RUBY_PLATFORM != 'java' + gem 'ruby-lsp', require: false gem 'appraisal', '~> 2.4.0', require: false end From 9f6b915c6bfbbebd31fe242873b96437b9e2ef70 Mon Sep 17 00:00:00 2001 From: Sarah Chen Date: Mon, 9 Dec 2024 14:42:35 -0500 Subject: [PATCH 027/161] Alphabetize 3.0 --- ruby-3.0.gemfile | 45 +++++++++++++++++++++------------------------ 1 file changed, 21 insertions(+), 24 deletions(-) diff --git a/ruby-3.0.gemfile b/ruby-3.0.gemfile index afea0f53c9c..d5e3269cbe3 100644 --- a/ruby-3.0.gemfile +++ b/ruby-3.0.gemfile @@ -4,14 +4,25 @@ gemspec gem 'benchmark-ips', '~> 2.8' gem 'benchmark-memory', '< 0.2' # V0.2 only works with 2.5+ - gem 'climate_control', '~> 0.2.0' - gem 'concurrent-ruby' + +# Optional extensions +# TODO: Move this to Appraisals? +# dogstatsd v5, but lower than 5.2, has possible memory leak with datadog. +# @see https://github.com/DataDog/dogstatsd-ruby/issues/182 +gem 'dogstatsd-ruby', '>= 3.3.0', '!= 5.0.0', '!= 5.0.1', '!= 5.1.0' + gem 'extlz4', '~> 0.3', '>= 0.3.3' + +# Profiler testing dependencies +# NOTE: We're excluding versions 3.7.0 and 3.7.1 for the reasons documented in #1424. +# Since most of our customers won't have BUNDLE_FORCE_RUBY_PLATFORM=true, it's not something we want to add +# to our CI, so we just shortcut and exclude specific versions that were affecting our CI. +gem 'google-protobuf', ['~> 3.0', '!= 3.7.0', '!= 3.7.1'] + gem 'json-schema', '< 3' # V3 only works with 2.5+ gem 'memory_profiler', '~> 0.9' - gem 'os', '~> 1.1' gem 'pimpmychangelog', '>= 0.1.2' gem 'pry' @@ -22,9 +33,15 @@ gem 'rake-compiler', '~> 1.1', '>= 1.1.1' # To compile native extensions gem 'rspec', '~> 3.13' gem 'rspec-collection_matchers', '~> 1.1' gem 'rspec-wait', '~> 0' - gem 'rspec_junit_formatter', '>= 0.5.1' +# 1.50 is the last version to support Ruby 2.6 +gem 'rubocop', '~> 1.50.0', require: false +gem 'rubocop-packaging', '~> 0.5.2', require: false +gem 'rubocop-performance', '~> 1.9', require: false +# 2.20 is the last version to support Ruby 2.6 +gem 'rubocop-rspec', ['~> 2.20', '< 2.21'], require: false + # Merging branch coverage results does not work for old, unsupported rubies and JRuby # We have a fix up for review, https://github.com/simplecov-ruby/simplecov/pull/972, # but given it only affects unsupported version of Ruby, it might not get merged. @@ -33,28 +50,8 @@ gem 'simplecov-cobertura', '~> 2.1.0' # Used by codecov gem 'warning', '~> 1' # NOTE: Used in spec_helper.rb gem 'webmock', '>= 3.10.0' - gem 'webrick', '>= 1.7.0' -# 1.50 is the last version to support Ruby 2.6 -gem 'rubocop', '~> 1.50.0', require: false -gem 'rubocop-packaging', '~> 0.5.2', require: false -gem 'rubocop-performance', '~> 1.9', require: false -# 2.20 is the last version to support Ruby 2.6 -gem 'rubocop-rspec', ['~> 2.20', '< 2.21'], require: false - -# Optional extensions -# TODO: Move this to Appraisals? -# dogstatsd v5, but lower than 5.2, has possible memory leak with datadog. -# @see https://github.com/DataDog/dogstatsd-ruby/issues/182 -gem 'dogstatsd-ruby', '>= 3.3.0', '!= 5.0.0', '!= 5.0.1', '!= 5.1.0' - -# Profiler testing dependencies -# NOTE: We're excluding versions 3.7.0 and 3.7.1 for the reasons documented in #1424. -# Since most of our customers won't have BUNDLE_FORCE_RUBY_PLATFORM=true, it's not something we want to add -# to our CI, so we just shortcut and exclude specific versions that were affecting our CI. -gem 'google-protobuf', ['~> 3.0', '!= 3.7.0', '!= 3.7.1'] - group :check do gem 'rbs', '~> 3.6', require: false gem 'steep', '~> 1.7.0', require: false From 5b4fea99bd7c9fa47f29c3405e5fc0796cdeebe1 Mon Sep 17 00:00:00 2001 From: Sarah Chen Date: Mon, 9 Dec 2024 14:46:31 -0500 Subject: [PATCH 028/161] Remove 3.1 if statements --- ruby-3.1.gemfile | 51 +++++++++++++----------------------------------- 1 file changed, 14 insertions(+), 37 deletions(-) diff --git a/ruby-3.1.gemfile b/ruby-3.1.gemfile index 3c35c9d4b50..afea0f53c9c 100644 --- a/ruby-3.1.gemfile +++ b/ruby-3.1.gemfile @@ -8,22 +8,15 @@ gem 'benchmark-memory', '< 0.2' # V0.2 only works with 2.5+ gem 'climate_control', '~> 0.2.0' gem 'concurrent-ruby' -gem 'extlz4', '~> 0.3', '>= 0.3.3' if RUBY_PLATFORM != 'java' # Used to test lz4 compression done by libdatadog +gem 'extlz4', '~> 0.3', '>= 0.3.3' gem 'json-schema', '< 3' # V3 only works with 2.5+ gem 'memory_profiler', '~> 0.9' gem 'os', '~> 1.1' gem 'pimpmychangelog', '>= 0.1.2' gem 'pry' -if RUBY_PLATFORM != 'java' - # There's a few incompatibilities between pry/pry-byebug on older Rubies - # There's also a few temproary incompatibilities with newer rubies - gem 'pry-byebug' if RUBY_VERSION >= '2.6.0' && RUBY_ENGINE != 'truffleruby' && RUBY_VERSION < '3.2.0' - gem 'pry-nav' if RUBY_VERSION < '2.6.0' - gem 'pry-stack_explorer' -else - gem 'pry-debugger-jruby' -end +gem 'pry-byebug' +gem 'pry-stack_explorer' gem 'rake', '>= 10.5' gem 'rake-compiler', '~> 1.1', '>= 1.1.1' # To compile native extensions gem 'rspec', '~> 3.13' @@ -41,21 +34,14 @@ gem 'simplecov-cobertura', '~> 2.1.0' # Used by codecov gem 'warning', '~> 1' # NOTE: Used in spec_helper.rb gem 'webmock', '>= 3.10.0' -if RUBY_VERSION.start_with?('3.4.') - # ruby 3.4 breaks stable webrick; we need this fix until a version later than 1.8.1 comes out - gem 'webrick', git: 'https://github.com/ruby/webrick.git', ref: '0c600e169bd4ae267cb5eeb6197277c848323bbe' -elsif RUBY_VERSION >= '3.0.0' # No longer bundled by default since Ruby 3.0 - gem 'webrick', '>= 1.7.0' -end +gem 'webrick', '>= 1.7.0' -if RUBY_VERSION >= '2.6.0' - # 1.50 is the last version to support Ruby 2.6 - gem 'rubocop', '~> 1.50.0', require: false - gem 'rubocop-packaging', '~> 0.5.2', require: false - gem 'rubocop-performance', '~> 1.9', require: false - # 2.20 is the last version to support Ruby 2.6 - gem 'rubocop-rspec', ['~> 2.20', '< 2.21'], require: false -end +# 1.50 is the last version to support Ruby 2.6 +gem 'rubocop', '~> 1.50.0', require: false +gem 'rubocop-packaging', '~> 0.5.2', require: false +gem 'rubocop-performance', '~> 1.9', require: false +# 2.20 is the last version to support Ruby 2.6 +gem 'rubocop-rspec', ['~> 2.20', '< 2.21'], require: false # Optional extensions # TODO: Move this to Appraisals? @@ -67,24 +53,15 @@ gem 'dogstatsd-ruby', '>= 3.3.0', '!= 5.0.0', '!= 5.0.1', '!= 5.1.0' # NOTE: We're excluding versions 3.7.0 and 3.7.1 for the reasons documented in #1424. # Since most of our customers won't have BUNDLE_FORCE_RUBY_PLATFORM=true, it's not something we want to add # to our CI, so we just shortcut and exclude specific versions that were affecting our CI. -if RUBY_PLATFORM != 'java' - if RUBY_VERSION >= '2.7.0' # Bundler 1.x fails to find that versions >= 3.8.0 are not compatible because of binary gems - gem 'google-protobuf', ['~> 3.0', '!= 3.7.0', '!= 3.7.1'] - else - gem 'google-protobuf', ['~> 3.0', '!= 3.7.0', '!= 3.7.1', '< 3.19.2'] - end -end +gem 'google-protobuf', ['~> 3.0', '!= 3.7.0', '!= 3.7.1'] group :check do - if RUBY_VERSION >= '3.0.0' && RUBY_PLATFORM != 'java' - gem 'rbs', '~> 3.6', require: false - gem 'steep', '~> 1.7.0', require: false - end - gem 'ruby_memcheck', '>= 3' if RUBY_VERSION >= '3.4.0' && RUBY_PLATFORM != 'java' + gem 'rbs', '~> 3.6', require: false + gem 'steep', '~> 1.7.0', require: false gem 'standard', require: false end group :dev do - gem 'ruby-lsp', require: false if RUBY_VERSION >= '3.0.0' && RUBY_PLATFORM != 'java' + gem 'ruby-lsp', require: false gem 'appraisal', '~> 2.4.0', require: false end From febda99fbd8a5580fba24c22e72a844bda466e61 Mon Sep 17 00:00:00 2001 From: Sarah Chen Date: Mon, 9 Dec 2024 14:48:38 -0500 Subject: [PATCH 029/161] Alphabetize 3.1 --- ruby-3.1.gemfile | 45 +++++++++++++++++++++------------------------ 1 file changed, 21 insertions(+), 24 deletions(-) diff --git a/ruby-3.1.gemfile b/ruby-3.1.gemfile index afea0f53c9c..d5e3269cbe3 100644 --- a/ruby-3.1.gemfile +++ b/ruby-3.1.gemfile @@ -4,14 +4,25 @@ gemspec gem 'benchmark-ips', '~> 2.8' gem 'benchmark-memory', '< 0.2' # V0.2 only works with 2.5+ - gem 'climate_control', '~> 0.2.0' - gem 'concurrent-ruby' + +# Optional extensions +# TODO: Move this to Appraisals? +# dogstatsd v5, but lower than 5.2, has possible memory leak with datadog. +# @see https://github.com/DataDog/dogstatsd-ruby/issues/182 +gem 'dogstatsd-ruby', '>= 3.3.0', '!= 5.0.0', '!= 5.0.1', '!= 5.1.0' + gem 'extlz4', '~> 0.3', '>= 0.3.3' + +# Profiler testing dependencies +# NOTE: We're excluding versions 3.7.0 and 3.7.1 for the reasons documented in #1424. +# Since most of our customers won't have BUNDLE_FORCE_RUBY_PLATFORM=true, it's not something we want to add +# to our CI, so we just shortcut and exclude specific versions that were affecting our CI. +gem 'google-protobuf', ['~> 3.0', '!= 3.7.0', '!= 3.7.1'] + gem 'json-schema', '< 3' # V3 only works with 2.5+ gem 'memory_profiler', '~> 0.9' - gem 'os', '~> 1.1' gem 'pimpmychangelog', '>= 0.1.2' gem 'pry' @@ -22,9 +33,15 @@ gem 'rake-compiler', '~> 1.1', '>= 1.1.1' # To compile native extensions gem 'rspec', '~> 3.13' gem 'rspec-collection_matchers', '~> 1.1' gem 'rspec-wait', '~> 0' - gem 'rspec_junit_formatter', '>= 0.5.1' +# 1.50 is the last version to support Ruby 2.6 +gem 'rubocop', '~> 1.50.0', require: false +gem 'rubocop-packaging', '~> 0.5.2', require: false +gem 'rubocop-performance', '~> 1.9', require: false +# 2.20 is the last version to support Ruby 2.6 +gem 'rubocop-rspec', ['~> 2.20', '< 2.21'], require: false + # Merging branch coverage results does not work for old, unsupported rubies and JRuby # We have a fix up for review, https://github.com/simplecov-ruby/simplecov/pull/972, # but given it only affects unsupported version of Ruby, it might not get merged. @@ -33,28 +50,8 @@ gem 'simplecov-cobertura', '~> 2.1.0' # Used by codecov gem 'warning', '~> 1' # NOTE: Used in spec_helper.rb gem 'webmock', '>= 3.10.0' - gem 'webrick', '>= 1.7.0' -# 1.50 is the last version to support Ruby 2.6 -gem 'rubocop', '~> 1.50.0', require: false -gem 'rubocop-packaging', '~> 0.5.2', require: false -gem 'rubocop-performance', '~> 1.9', require: false -# 2.20 is the last version to support Ruby 2.6 -gem 'rubocop-rspec', ['~> 2.20', '< 2.21'], require: false - -# Optional extensions -# TODO: Move this to Appraisals? -# dogstatsd v5, but lower than 5.2, has possible memory leak with datadog. -# @see https://github.com/DataDog/dogstatsd-ruby/issues/182 -gem 'dogstatsd-ruby', '>= 3.3.0', '!= 5.0.0', '!= 5.0.1', '!= 5.1.0' - -# Profiler testing dependencies -# NOTE: We're excluding versions 3.7.0 and 3.7.1 for the reasons documented in #1424. -# Since most of our customers won't have BUNDLE_FORCE_RUBY_PLATFORM=true, it's not something we want to add -# to our CI, so we just shortcut and exclude specific versions that were affecting our CI. -gem 'google-protobuf', ['~> 3.0', '!= 3.7.0', '!= 3.7.1'] - group :check do gem 'rbs', '~> 3.6', require: false gem 'steep', '~> 1.7.0', require: false From 7b919d7396c0c5eb481aa9934b8e063ccc26d0d3 Mon Sep 17 00:00:00 2001 From: Sarah Chen Date: Mon, 9 Dec 2024 14:51:13 -0500 Subject: [PATCH 030/161] Remove 3.2 if statements --- ruby-3.2.gemfile | 50 +++++++++++++----------------------------------- 1 file changed, 13 insertions(+), 37 deletions(-) diff --git a/ruby-3.2.gemfile b/ruby-3.2.gemfile index 3c35c9d4b50..14b3a3bb252 100644 --- a/ruby-3.2.gemfile +++ b/ruby-3.2.gemfile @@ -8,22 +8,14 @@ gem 'benchmark-memory', '< 0.2' # V0.2 only works with 2.5+ gem 'climate_control', '~> 0.2.0' gem 'concurrent-ruby' -gem 'extlz4', '~> 0.3', '>= 0.3.3' if RUBY_PLATFORM != 'java' # Used to test lz4 compression done by libdatadog +gem 'extlz4', '~> 0.3', '>= 0.3.3' gem 'json-schema', '< 3' # V3 only works with 2.5+ gem 'memory_profiler', '~> 0.9' gem 'os', '~> 1.1' gem 'pimpmychangelog', '>= 0.1.2' gem 'pry' -if RUBY_PLATFORM != 'java' - # There's a few incompatibilities between pry/pry-byebug on older Rubies - # There's also a few temproary incompatibilities with newer rubies - gem 'pry-byebug' if RUBY_VERSION >= '2.6.0' && RUBY_ENGINE != 'truffleruby' && RUBY_VERSION < '3.2.0' - gem 'pry-nav' if RUBY_VERSION < '2.6.0' - gem 'pry-stack_explorer' -else - gem 'pry-debugger-jruby' -end +gem 'pry-stack_explorer' gem 'rake', '>= 10.5' gem 'rake-compiler', '~> 1.1', '>= 1.1.1' # To compile native extensions gem 'rspec', '~> 3.13' @@ -41,21 +33,14 @@ gem 'simplecov-cobertura', '~> 2.1.0' # Used by codecov gem 'warning', '~> 1' # NOTE: Used in spec_helper.rb gem 'webmock', '>= 3.10.0' -if RUBY_VERSION.start_with?('3.4.') - # ruby 3.4 breaks stable webrick; we need this fix until a version later than 1.8.1 comes out - gem 'webrick', git: 'https://github.com/ruby/webrick.git', ref: '0c600e169bd4ae267cb5eeb6197277c848323bbe' -elsif RUBY_VERSION >= '3.0.0' # No longer bundled by default since Ruby 3.0 - gem 'webrick', '>= 1.7.0' -end +gem 'webrick', '>= 1.7.0' -if RUBY_VERSION >= '2.6.0' - # 1.50 is the last version to support Ruby 2.6 - gem 'rubocop', '~> 1.50.0', require: false - gem 'rubocop-packaging', '~> 0.5.2', require: false - gem 'rubocop-performance', '~> 1.9', require: false - # 2.20 is the last version to support Ruby 2.6 - gem 'rubocop-rspec', ['~> 2.20', '< 2.21'], require: false -end +# 1.50 is the last version to support Ruby 2.6 +gem 'rubocop', '~> 1.50.0', require: false +gem 'rubocop-packaging', '~> 0.5.2', require: false +gem 'rubocop-performance', '~> 1.9', require: false +# 2.20 is the last version to support Ruby 2.6 +gem 'rubocop-rspec', ['~> 2.20', '< 2.21'], require: false # Optional extensions # TODO: Move this to Appraisals? @@ -67,24 +52,15 @@ gem 'dogstatsd-ruby', '>= 3.3.0', '!= 5.0.0', '!= 5.0.1', '!= 5.1.0' # NOTE: We're excluding versions 3.7.0 and 3.7.1 for the reasons documented in #1424. # Since most of our customers won't have BUNDLE_FORCE_RUBY_PLATFORM=true, it's not something we want to add # to our CI, so we just shortcut and exclude specific versions that were affecting our CI. -if RUBY_PLATFORM != 'java' - if RUBY_VERSION >= '2.7.0' # Bundler 1.x fails to find that versions >= 3.8.0 are not compatible because of binary gems - gem 'google-protobuf', ['~> 3.0', '!= 3.7.0', '!= 3.7.1'] - else - gem 'google-protobuf', ['~> 3.0', '!= 3.7.0', '!= 3.7.1', '< 3.19.2'] - end -end +gem 'google-protobuf', ['~> 3.0', '!= 3.7.0', '!= 3.7.1'] group :check do - if RUBY_VERSION >= '3.0.0' && RUBY_PLATFORM != 'java' - gem 'rbs', '~> 3.6', require: false - gem 'steep', '~> 1.7.0', require: false - end - gem 'ruby_memcheck', '>= 3' if RUBY_VERSION >= '3.4.0' && RUBY_PLATFORM != 'java' + gem 'rbs', '~> 3.6', require: false + gem 'steep', '~> 1.7.0', require: false gem 'standard', require: false end group :dev do - gem 'ruby-lsp', require: false if RUBY_VERSION >= '3.0.0' && RUBY_PLATFORM != 'java' + gem 'ruby-lsp', require: false gem 'appraisal', '~> 2.4.0', require: false end From 1b75ea94ca8587ce6c8c0c395ec584006d039934 Mon Sep 17 00:00:00 2001 From: Sarah Chen Date: Mon, 9 Dec 2024 14:52:31 -0500 Subject: [PATCH 031/161] Alphabetize 3.2 --- ruby-3.2.gemfile | 45 +++++++++++++++++++++------------------------ 1 file changed, 21 insertions(+), 24 deletions(-) diff --git a/ruby-3.2.gemfile b/ruby-3.2.gemfile index 14b3a3bb252..21787978220 100644 --- a/ruby-3.2.gemfile +++ b/ruby-3.2.gemfile @@ -4,14 +4,25 @@ gemspec gem 'benchmark-ips', '~> 2.8' gem 'benchmark-memory', '< 0.2' # V0.2 only works with 2.5+ - gem 'climate_control', '~> 0.2.0' - gem 'concurrent-ruby' + +# Optional extensions +# TODO: Move this to Appraisals? +# dogstatsd v5, but lower than 5.2, has possible memory leak with datadog. +# @see https://github.com/DataDog/dogstatsd-ruby/issues/182 +gem 'dogstatsd-ruby', '>= 3.3.0', '!= 5.0.0', '!= 5.0.1', '!= 5.1.0' + gem 'extlz4', '~> 0.3', '>= 0.3.3' + +# Profiler testing dependencies +# NOTE: We're excluding versions 3.7.0 and 3.7.1 for the reasons documented in #1424. +# Since most of our customers won't have BUNDLE_FORCE_RUBY_PLATFORM=true, it's not something we want to add +# to our CI, so we just shortcut and exclude specific versions that were affecting our CI. +gem 'google-protobuf', ['~> 3.0', '!= 3.7.0', '!= 3.7.1'] + gem 'json-schema', '< 3' # V3 only works with 2.5+ gem 'memory_profiler', '~> 0.9' - gem 'os', '~> 1.1' gem 'pimpmychangelog', '>= 0.1.2' gem 'pry' @@ -21,9 +32,15 @@ gem 'rake-compiler', '~> 1.1', '>= 1.1.1' # To compile native extensions gem 'rspec', '~> 3.13' gem 'rspec-collection_matchers', '~> 1.1' gem 'rspec-wait', '~> 0' - gem 'rspec_junit_formatter', '>= 0.5.1' +# 1.50 is the last version to support Ruby 2.6 +gem 'rubocop', '~> 1.50.0', require: false +gem 'rubocop-packaging', '~> 0.5.2', require: false +gem 'rubocop-performance', '~> 1.9', require: false +# 2.20 is the last version to support Ruby 2.6 +gem 'rubocop-rspec', ['~> 2.20', '< 2.21'], require: false + # Merging branch coverage results does not work for old, unsupported rubies and JRuby # We have a fix up for review, https://github.com/simplecov-ruby/simplecov/pull/972, # but given it only affects unsupported version of Ruby, it might not get merged. @@ -32,28 +49,8 @@ gem 'simplecov-cobertura', '~> 2.1.0' # Used by codecov gem 'warning', '~> 1' # NOTE: Used in spec_helper.rb gem 'webmock', '>= 3.10.0' - gem 'webrick', '>= 1.7.0' -# 1.50 is the last version to support Ruby 2.6 -gem 'rubocop', '~> 1.50.0', require: false -gem 'rubocop-packaging', '~> 0.5.2', require: false -gem 'rubocop-performance', '~> 1.9', require: false -# 2.20 is the last version to support Ruby 2.6 -gem 'rubocop-rspec', ['~> 2.20', '< 2.21'], require: false - -# Optional extensions -# TODO: Move this to Appraisals? -# dogstatsd v5, but lower than 5.2, has possible memory leak with datadog. -# @see https://github.com/DataDog/dogstatsd-ruby/issues/182 -gem 'dogstatsd-ruby', '>= 3.3.0', '!= 5.0.0', '!= 5.0.1', '!= 5.1.0' - -# Profiler testing dependencies -# NOTE: We're excluding versions 3.7.0 and 3.7.1 for the reasons documented in #1424. -# Since most of our customers won't have BUNDLE_FORCE_RUBY_PLATFORM=true, it's not something we want to add -# to our CI, so we just shortcut and exclude specific versions that were affecting our CI. -gem 'google-protobuf', ['~> 3.0', '!= 3.7.0', '!= 3.7.1'] - group :check do gem 'rbs', '~> 3.6', require: false gem 'steep', '~> 1.7.0', require: false From dafb428cc95649ab1640d2efbe2e4c6517f435d6 Mon Sep 17 00:00:00 2001 From: Sarah Chen Date: Mon, 9 Dec 2024 14:54:24 -0500 Subject: [PATCH 032/161] Remove 3.3 if statements --- ruby-3.3.gemfile | 50 +++++++++++++----------------------------------- 1 file changed, 13 insertions(+), 37 deletions(-) diff --git a/ruby-3.3.gemfile b/ruby-3.3.gemfile index 3c35c9d4b50..14b3a3bb252 100644 --- a/ruby-3.3.gemfile +++ b/ruby-3.3.gemfile @@ -8,22 +8,14 @@ gem 'benchmark-memory', '< 0.2' # V0.2 only works with 2.5+ gem 'climate_control', '~> 0.2.0' gem 'concurrent-ruby' -gem 'extlz4', '~> 0.3', '>= 0.3.3' if RUBY_PLATFORM != 'java' # Used to test lz4 compression done by libdatadog +gem 'extlz4', '~> 0.3', '>= 0.3.3' gem 'json-schema', '< 3' # V3 only works with 2.5+ gem 'memory_profiler', '~> 0.9' gem 'os', '~> 1.1' gem 'pimpmychangelog', '>= 0.1.2' gem 'pry' -if RUBY_PLATFORM != 'java' - # There's a few incompatibilities between pry/pry-byebug on older Rubies - # There's also a few temproary incompatibilities with newer rubies - gem 'pry-byebug' if RUBY_VERSION >= '2.6.0' && RUBY_ENGINE != 'truffleruby' && RUBY_VERSION < '3.2.0' - gem 'pry-nav' if RUBY_VERSION < '2.6.0' - gem 'pry-stack_explorer' -else - gem 'pry-debugger-jruby' -end +gem 'pry-stack_explorer' gem 'rake', '>= 10.5' gem 'rake-compiler', '~> 1.1', '>= 1.1.1' # To compile native extensions gem 'rspec', '~> 3.13' @@ -41,21 +33,14 @@ gem 'simplecov-cobertura', '~> 2.1.0' # Used by codecov gem 'warning', '~> 1' # NOTE: Used in spec_helper.rb gem 'webmock', '>= 3.10.0' -if RUBY_VERSION.start_with?('3.4.') - # ruby 3.4 breaks stable webrick; we need this fix until a version later than 1.8.1 comes out - gem 'webrick', git: 'https://github.com/ruby/webrick.git', ref: '0c600e169bd4ae267cb5eeb6197277c848323bbe' -elsif RUBY_VERSION >= '3.0.0' # No longer bundled by default since Ruby 3.0 - gem 'webrick', '>= 1.7.0' -end +gem 'webrick', '>= 1.7.0' -if RUBY_VERSION >= '2.6.0' - # 1.50 is the last version to support Ruby 2.6 - gem 'rubocop', '~> 1.50.0', require: false - gem 'rubocop-packaging', '~> 0.5.2', require: false - gem 'rubocop-performance', '~> 1.9', require: false - # 2.20 is the last version to support Ruby 2.6 - gem 'rubocop-rspec', ['~> 2.20', '< 2.21'], require: false -end +# 1.50 is the last version to support Ruby 2.6 +gem 'rubocop', '~> 1.50.0', require: false +gem 'rubocop-packaging', '~> 0.5.2', require: false +gem 'rubocop-performance', '~> 1.9', require: false +# 2.20 is the last version to support Ruby 2.6 +gem 'rubocop-rspec', ['~> 2.20', '< 2.21'], require: false # Optional extensions # TODO: Move this to Appraisals? @@ -67,24 +52,15 @@ gem 'dogstatsd-ruby', '>= 3.3.0', '!= 5.0.0', '!= 5.0.1', '!= 5.1.0' # NOTE: We're excluding versions 3.7.0 and 3.7.1 for the reasons documented in #1424. # Since most of our customers won't have BUNDLE_FORCE_RUBY_PLATFORM=true, it's not something we want to add # to our CI, so we just shortcut and exclude specific versions that were affecting our CI. -if RUBY_PLATFORM != 'java' - if RUBY_VERSION >= '2.7.0' # Bundler 1.x fails to find that versions >= 3.8.0 are not compatible because of binary gems - gem 'google-protobuf', ['~> 3.0', '!= 3.7.0', '!= 3.7.1'] - else - gem 'google-protobuf', ['~> 3.0', '!= 3.7.0', '!= 3.7.1', '< 3.19.2'] - end -end +gem 'google-protobuf', ['~> 3.0', '!= 3.7.0', '!= 3.7.1'] group :check do - if RUBY_VERSION >= '3.0.0' && RUBY_PLATFORM != 'java' - gem 'rbs', '~> 3.6', require: false - gem 'steep', '~> 1.7.0', require: false - end - gem 'ruby_memcheck', '>= 3' if RUBY_VERSION >= '3.4.0' && RUBY_PLATFORM != 'java' + gem 'rbs', '~> 3.6', require: false + gem 'steep', '~> 1.7.0', require: false gem 'standard', require: false end group :dev do - gem 'ruby-lsp', require: false if RUBY_VERSION >= '3.0.0' && RUBY_PLATFORM != 'java' + gem 'ruby-lsp', require: false gem 'appraisal', '~> 2.4.0', require: false end From 481f2708e204f69deaa14df4d2dfcc2a4e3d5378 Mon Sep 17 00:00:00 2001 From: Sarah Chen Date: Mon, 9 Dec 2024 14:55:44 -0500 Subject: [PATCH 033/161] Alphabetize 3.3 --- ruby-3.3.gemfile | 45 +++++++++++++++++++++------------------------ 1 file changed, 21 insertions(+), 24 deletions(-) diff --git a/ruby-3.3.gemfile b/ruby-3.3.gemfile index 14b3a3bb252..21787978220 100644 --- a/ruby-3.3.gemfile +++ b/ruby-3.3.gemfile @@ -4,14 +4,25 @@ gemspec gem 'benchmark-ips', '~> 2.8' gem 'benchmark-memory', '< 0.2' # V0.2 only works with 2.5+ - gem 'climate_control', '~> 0.2.0' - gem 'concurrent-ruby' + +# Optional extensions +# TODO: Move this to Appraisals? +# dogstatsd v5, but lower than 5.2, has possible memory leak with datadog. +# @see https://github.com/DataDog/dogstatsd-ruby/issues/182 +gem 'dogstatsd-ruby', '>= 3.3.0', '!= 5.0.0', '!= 5.0.1', '!= 5.1.0' + gem 'extlz4', '~> 0.3', '>= 0.3.3' + +# Profiler testing dependencies +# NOTE: We're excluding versions 3.7.0 and 3.7.1 for the reasons documented in #1424. +# Since most of our customers won't have BUNDLE_FORCE_RUBY_PLATFORM=true, it's not something we want to add +# to our CI, so we just shortcut and exclude specific versions that were affecting our CI. +gem 'google-protobuf', ['~> 3.0', '!= 3.7.0', '!= 3.7.1'] + gem 'json-schema', '< 3' # V3 only works with 2.5+ gem 'memory_profiler', '~> 0.9' - gem 'os', '~> 1.1' gem 'pimpmychangelog', '>= 0.1.2' gem 'pry' @@ -21,9 +32,15 @@ gem 'rake-compiler', '~> 1.1', '>= 1.1.1' # To compile native extensions gem 'rspec', '~> 3.13' gem 'rspec-collection_matchers', '~> 1.1' gem 'rspec-wait', '~> 0' - gem 'rspec_junit_formatter', '>= 0.5.1' +# 1.50 is the last version to support Ruby 2.6 +gem 'rubocop', '~> 1.50.0', require: false +gem 'rubocop-packaging', '~> 0.5.2', require: false +gem 'rubocop-performance', '~> 1.9', require: false +# 2.20 is the last version to support Ruby 2.6 +gem 'rubocop-rspec', ['~> 2.20', '< 2.21'], require: false + # Merging branch coverage results does not work for old, unsupported rubies and JRuby # We have a fix up for review, https://github.com/simplecov-ruby/simplecov/pull/972, # but given it only affects unsupported version of Ruby, it might not get merged. @@ -32,28 +49,8 @@ gem 'simplecov-cobertura', '~> 2.1.0' # Used by codecov gem 'warning', '~> 1' # NOTE: Used in spec_helper.rb gem 'webmock', '>= 3.10.0' - gem 'webrick', '>= 1.7.0' -# 1.50 is the last version to support Ruby 2.6 -gem 'rubocop', '~> 1.50.0', require: false -gem 'rubocop-packaging', '~> 0.5.2', require: false -gem 'rubocop-performance', '~> 1.9', require: false -# 2.20 is the last version to support Ruby 2.6 -gem 'rubocop-rspec', ['~> 2.20', '< 2.21'], require: false - -# Optional extensions -# TODO: Move this to Appraisals? -# dogstatsd v5, but lower than 5.2, has possible memory leak with datadog. -# @see https://github.com/DataDog/dogstatsd-ruby/issues/182 -gem 'dogstatsd-ruby', '>= 3.3.0', '!= 5.0.0', '!= 5.0.1', '!= 5.1.0' - -# Profiler testing dependencies -# NOTE: We're excluding versions 3.7.0 and 3.7.1 for the reasons documented in #1424. -# Since most of our customers won't have BUNDLE_FORCE_RUBY_PLATFORM=true, it's not something we want to add -# to our CI, so we just shortcut and exclude specific versions that were affecting our CI. -gem 'google-protobuf', ['~> 3.0', '!= 3.7.0', '!= 3.7.1'] - group :check do gem 'rbs', '~> 3.6', require: false gem 'steep', '~> 1.7.0', require: false From b5cd35395085163ab96a845c19d49bf664fa0b1d Mon Sep 17 00:00:00 2001 From: Sarah Chen Date: Mon, 9 Dec 2024 15:00:32 -0500 Subject: [PATCH 034/161] Remove 2.7 if statements --- ruby-2.7.gemfile | 47 ++++++++++------------------------------------- 1 file changed, 10 insertions(+), 37 deletions(-) diff --git a/ruby-2.7.gemfile b/ruby-2.7.gemfile index 3c35c9d4b50..5e316756d9e 100644 --- a/ruby-2.7.gemfile +++ b/ruby-2.7.gemfile @@ -8,22 +8,15 @@ gem 'benchmark-memory', '< 0.2' # V0.2 only works with 2.5+ gem 'climate_control', '~> 0.2.0' gem 'concurrent-ruby' -gem 'extlz4', '~> 0.3', '>= 0.3.3' if RUBY_PLATFORM != 'java' # Used to test lz4 compression done by libdatadog +gem 'extlz4', '~> 0.3', '>= 0.3.3' gem 'json-schema', '< 3' # V3 only works with 2.5+ gem 'memory_profiler', '~> 0.9' gem 'os', '~> 1.1' gem 'pimpmychangelog', '>= 0.1.2' gem 'pry' -if RUBY_PLATFORM != 'java' - # There's a few incompatibilities between pry/pry-byebug on older Rubies - # There's also a few temproary incompatibilities with newer rubies - gem 'pry-byebug' if RUBY_VERSION >= '2.6.0' && RUBY_ENGINE != 'truffleruby' && RUBY_VERSION < '3.2.0' - gem 'pry-nav' if RUBY_VERSION < '2.6.0' - gem 'pry-stack_explorer' -else - gem 'pry-debugger-jruby' -end +gem 'pry-byebug' +gem 'pry-stack_explorer' gem 'rake', '>= 10.5' gem 'rake-compiler', '~> 1.1', '>= 1.1.1' # To compile native extensions gem 'rspec', '~> 3.13' @@ -41,21 +34,12 @@ gem 'simplecov-cobertura', '~> 2.1.0' # Used by codecov gem 'warning', '~> 1' # NOTE: Used in spec_helper.rb gem 'webmock', '>= 3.10.0' -if RUBY_VERSION.start_with?('3.4.') - # ruby 3.4 breaks stable webrick; we need this fix until a version later than 1.8.1 comes out - gem 'webrick', git: 'https://github.com/ruby/webrick.git', ref: '0c600e169bd4ae267cb5eeb6197277c848323bbe' -elsif RUBY_VERSION >= '3.0.0' # No longer bundled by default since Ruby 3.0 - gem 'webrick', '>= 1.7.0' -end - -if RUBY_VERSION >= '2.6.0' - # 1.50 is the last version to support Ruby 2.6 - gem 'rubocop', '~> 1.50.0', require: false - gem 'rubocop-packaging', '~> 0.5.2', require: false - gem 'rubocop-performance', '~> 1.9', require: false - # 2.20 is the last version to support Ruby 2.6 - gem 'rubocop-rspec', ['~> 2.20', '< 2.21'], require: false -end +# 1.50 is the last version to support Ruby 2.6 +gem 'rubocop', '~> 1.50.0', require: false +gem 'rubocop-packaging', '~> 0.5.2', require: false +gem 'rubocop-performance', '~> 1.9', require: false +# 2.20 is the last version to support Ruby 2.6 +gem 'rubocop-rspec', ['~> 2.20', '< 2.21'], require: false # Optional extensions # TODO: Move this to Appraisals? @@ -67,24 +51,13 @@ gem 'dogstatsd-ruby', '>= 3.3.0', '!= 5.0.0', '!= 5.0.1', '!= 5.1.0' # NOTE: We're excluding versions 3.7.0 and 3.7.1 for the reasons documented in #1424. # Since most of our customers won't have BUNDLE_FORCE_RUBY_PLATFORM=true, it's not something we want to add # to our CI, so we just shortcut and exclude specific versions that were affecting our CI. -if RUBY_PLATFORM != 'java' - if RUBY_VERSION >= '2.7.0' # Bundler 1.x fails to find that versions >= 3.8.0 are not compatible because of binary gems - gem 'google-protobuf', ['~> 3.0', '!= 3.7.0', '!= 3.7.1'] - else - gem 'google-protobuf', ['~> 3.0', '!= 3.7.0', '!= 3.7.1', '< 3.19.2'] - end -end +gem 'google-protobuf', ['~> 3.0', '!= 3.7.0', '!= 3.7.1'] group :check do - if RUBY_VERSION >= '3.0.0' && RUBY_PLATFORM != 'java' - gem 'rbs', '~> 3.6', require: false - gem 'steep', '~> 1.7.0', require: false - end gem 'ruby_memcheck', '>= 3' if RUBY_VERSION >= '3.4.0' && RUBY_PLATFORM != 'java' gem 'standard', require: false end group :dev do - gem 'ruby-lsp', require: false if RUBY_VERSION >= '3.0.0' && RUBY_PLATFORM != 'java' gem 'appraisal', '~> 2.4.0', require: false end From bc9802f69faf8f02b74e4811d1d3f6641b522264 Mon Sep 17 00:00:00 2001 From: Sarah Chen Date: Mon, 9 Dec 2024 15:03:30 -0500 Subject: [PATCH 035/161] Alphabetize 2.7 --- ruby-2.7.gemfile | 44 +++++++++++++++++++++----------------------- 1 file changed, 21 insertions(+), 23 deletions(-) diff --git a/ruby-2.7.gemfile b/ruby-2.7.gemfile index 5e316756d9e..e6394bcb3a0 100644 --- a/ruby-2.7.gemfile +++ b/ruby-2.7.gemfile @@ -4,14 +4,25 @@ gemspec gem 'benchmark-ips', '~> 2.8' gem 'benchmark-memory', '< 0.2' # V0.2 only works with 2.5+ - gem 'climate_control', '~> 0.2.0' - gem 'concurrent-ruby' + +# Optional extensions +# TODO: Move this to Appraisals? +# dogstatsd v5, but lower than 5.2, has possible memory leak with datadog. +# @see https://github.com/DataDog/dogstatsd-ruby/issues/182 +gem 'dogstatsd-ruby', '>= 3.3.0', '!= 5.0.0', '!= 5.0.1', '!= 5.1.0' + gem 'extlz4', '~> 0.3', '>= 0.3.3' + +# Profiler testing dependencies +# NOTE: We're excluding versions 3.7.0 and 3.7.1 for the reasons documented in #1424. +# Since most of our customers won't have BUNDLE_FORCE_RUBY_PLATFORM=true, it's not something we want to add +# to our CI, so we just shortcut and exclude specific versions that were affecting our CI. +gem 'google-protobuf', ['~> 3.0', '!= 3.7.0', '!= 3.7.1'] + gem 'json-schema', '< 3' # V3 only works with 2.5+ gem 'memory_profiler', '~> 0.9' - gem 'os', '~> 1.1' gem 'pimpmychangelog', '>= 0.1.2' gem 'pry' @@ -22,18 +33,8 @@ gem 'rake-compiler', '~> 1.1', '>= 1.1.1' # To compile native extensions gem 'rspec', '~> 3.13' gem 'rspec-collection_matchers', '~> 1.1' gem 'rspec-wait', '~> 0' - gem 'rspec_junit_formatter', '>= 0.5.1' -# Merging branch coverage results does not work for old, unsupported rubies and JRuby -# We have a fix up for review, https://github.com/simplecov-ruby/simplecov/pull/972, -# but given it only affects unsupported version of Ruby, it might not get merged. -gem 'simplecov', git: 'https://github.com/DataDog/simplecov', ref: '3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db' -gem 'simplecov-cobertura', '~> 2.1.0' # Used by codecov - -gem 'warning', '~> 1' # NOTE: Used in spec_helper.rb -gem 'webmock', '>= 3.10.0' - # 1.50 is the last version to support Ruby 2.6 gem 'rubocop', '~> 1.50.0', require: false gem 'rubocop-packaging', '~> 0.5.2', require: false @@ -41,17 +42,14 @@ gem 'rubocop-performance', '~> 1.9', require: false # 2.20 is the last version to support Ruby 2.6 gem 'rubocop-rspec', ['~> 2.20', '< 2.21'], require: false -# Optional extensions -# TODO: Move this to Appraisals? -# dogstatsd v5, but lower than 5.2, has possible memory leak with datadog. -# @see https://github.com/DataDog/dogstatsd-ruby/issues/182 -gem 'dogstatsd-ruby', '>= 3.3.0', '!= 5.0.0', '!= 5.0.1', '!= 5.1.0' +# Merging branch coverage results does not work for old, unsupported rubies and JRuby +# We have a fix up for review, https://github.com/simplecov-ruby/simplecov/pull/972, +# but given it only affects unsupported version of Ruby, it might not get merged. +gem 'simplecov', git: 'https://github.com/DataDog/simplecov', ref: '3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db' +gem 'simplecov-cobertura', '~> 2.1.0' # Used by codecov -# Profiler testing dependencies -# NOTE: We're excluding versions 3.7.0 and 3.7.1 for the reasons documented in #1424. -# Since most of our customers won't have BUNDLE_FORCE_RUBY_PLATFORM=true, it's not something we want to add -# to our CI, so we just shortcut and exclude specific versions that were affecting our CI. -gem 'google-protobuf', ['~> 3.0', '!= 3.7.0', '!= 3.7.1'] +gem 'warning', '~> 1' # NOTE: Used in spec_helper.rb +gem 'webmock', '>= 3.10.0' group :check do gem 'ruby_memcheck', '>= 3' if RUBY_VERSION >= '3.4.0' && RUBY_PLATFORM != 'java' From 3bc26e5fea37c5625f9a8232b18ae149cb19d97d Mon Sep 17 00:00:00 2001 From: Sarah Chen Date: Mon, 9 Dec 2024 15:13:23 -0500 Subject: [PATCH 036/161] Remove 2.6 if statements --- ruby-2.6.gemfile | 48 ++++++++++-------------------------------------- 1 file changed, 10 insertions(+), 38 deletions(-) diff --git a/ruby-2.6.gemfile b/ruby-2.6.gemfile index 3c35c9d4b50..70895652c5c 100644 --- a/ruby-2.6.gemfile +++ b/ruby-2.6.gemfile @@ -8,22 +8,15 @@ gem 'benchmark-memory', '< 0.2' # V0.2 only works with 2.5+ gem 'climate_control', '~> 0.2.0' gem 'concurrent-ruby' -gem 'extlz4', '~> 0.3', '>= 0.3.3' if RUBY_PLATFORM != 'java' # Used to test lz4 compression done by libdatadog +gem 'extlz4', '~> 0.3', '>= 0.3.3' gem 'json-schema', '< 3' # V3 only works with 2.5+ gem 'memory_profiler', '~> 0.9' gem 'os', '~> 1.1' gem 'pimpmychangelog', '>= 0.1.2' gem 'pry' -if RUBY_PLATFORM != 'java' - # There's a few incompatibilities between pry/pry-byebug on older Rubies - # There's also a few temproary incompatibilities with newer rubies - gem 'pry-byebug' if RUBY_VERSION >= '2.6.0' && RUBY_ENGINE != 'truffleruby' && RUBY_VERSION < '3.2.0' - gem 'pry-nav' if RUBY_VERSION < '2.6.0' - gem 'pry-stack_explorer' -else - gem 'pry-debugger-jruby' -end +gem 'pry-byebug' +gem 'pry-stack_explorer' gem 'rake', '>= 10.5' gem 'rake-compiler', '~> 1.1', '>= 1.1.1' # To compile native extensions gem 'rspec', '~> 3.13' @@ -41,21 +34,12 @@ gem 'simplecov-cobertura', '~> 2.1.0' # Used by codecov gem 'warning', '~> 1' # NOTE: Used in spec_helper.rb gem 'webmock', '>= 3.10.0' -if RUBY_VERSION.start_with?('3.4.') - # ruby 3.4 breaks stable webrick; we need this fix until a version later than 1.8.1 comes out - gem 'webrick', git: 'https://github.com/ruby/webrick.git', ref: '0c600e169bd4ae267cb5eeb6197277c848323bbe' -elsif RUBY_VERSION >= '3.0.0' # No longer bundled by default since Ruby 3.0 - gem 'webrick', '>= 1.7.0' -end - -if RUBY_VERSION >= '2.6.0' - # 1.50 is the last version to support Ruby 2.6 - gem 'rubocop', '~> 1.50.0', require: false - gem 'rubocop-packaging', '~> 0.5.2', require: false - gem 'rubocop-performance', '~> 1.9', require: false - # 2.20 is the last version to support Ruby 2.6 - gem 'rubocop-rspec', ['~> 2.20', '< 2.21'], require: false -end +# 1.50 is the last version to support Ruby 2.6 +gem 'rubocop', '~> 1.50.0', require: false +gem 'rubocop-packaging', '~> 0.5.2', require: false +gem 'rubocop-performance', '~> 1.9', require: false +# 2.20 is the last version to support Ruby 2.6 +gem 'rubocop-rspec', ['~> 2.20', '< 2.21'], require: false # Optional extensions # TODO: Move this to Appraisals? @@ -67,24 +51,12 @@ gem 'dogstatsd-ruby', '>= 3.3.0', '!= 5.0.0', '!= 5.0.1', '!= 5.1.0' # NOTE: We're excluding versions 3.7.0 and 3.7.1 for the reasons documented in #1424. # Since most of our customers won't have BUNDLE_FORCE_RUBY_PLATFORM=true, it's not something we want to add # to our CI, so we just shortcut and exclude specific versions that were affecting our CI. -if RUBY_PLATFORM != 'java' - if RUBY_VERSION >= '2.7.0' # Bundler 1.x fails to find that versions >= 3.8.0 are not compatible because of binary gems - gem 'google-protobuf', ['~> 3.0', '!= 3.7.0', '!= 3.7.1'] - else - gem 'google-protobuf', ['~> 3.0', '!= 3.7.0', '!= 3.7.1', '< 3.19.2'] - end -end +gem 'google-protobuf', ['~> 3.0', '!= 3.7.0', '!= 3.7.1', '< 3.19.2'] group :check do - if RUBY_VERSION >= '3.0.0' && RUBY_PLATFORM != 'java' - gem 'rbs', '~> 3.6', require: false - gem 'steep', '~> 1.7.0', require: false - end - gem 'ruby_memcheck', '>= 3' if RUBY_VERSION >= '3.4.0' && RUBY_PLATFORM != 'java' gem 'standard', require: false end group :dev do - gem 'ruby-lsp', require: false if RUBY_VERSION >= '3.0.0' && RUBY_PLATFORM != 'java' gem 'appraisal', '~> 2.4.0', require: false end From 821b4c3e031ac7eb4b3ed8ebac2f1769d9e88d0a Mon Sep 17 00:00:00 2001 From: Sarah Chen Date: Mon, 9 Dec 2024 15:14:51 -0500 Subject: [PATCH 037/161] Alphabetize 2.6 --- ruby-2.6.gemfile | 44 +++++++++++++++++++++----------------------- 1 file changed, 21 insertions(+), 23 deletions(-) diff --git a/ruby-2.6.gemfile b/ruby-2.6.gemfile index 70895652c5c..da3223ae78e 100644 --- a/ruby-2.6.gemfile +++ b/ruby-2.6.gemfile @@ -4,14 +4,25 @@ gemspec gem 'benchmark-ips', '~> 2.8' gem 'benchmark-memory', '< 0.2' # V0.2 only works with 2.5+ - gem 'climate_control', '~> 0.2.0' - gem 'concurrent-ruby' + +# Optional extensions +# TODO: Move this to Appraisals? +# dogstatsd v5, but lower than 5.2, has possible memory leak with datadog. +# @see https://github.com/DataDog/dogstatsd-ruby/issues/182 +gem 'dogstatsd-ruby', '>= 3.3.0', '!= 5.0.0', '!= 5.0.1', '!= 5.1.0' + gem 'extlz4', '~> 0.3', '>= 0.3.3' + +# Profiler testing dependencies +# NOTE: We're excluding versions 3.7.0 and 3.7.1 for the reasons documented in #1424. +# Since most of our customers won't have BUNDLE_FORCE_RUBY_PLATFORM=true, it's not something we want to add +# to our CI, so we just shortcut and exclude specific versions that were affecting our CI. +gem 'google-protobuf', ['~> 3.0', '!= 3.7.0', '!= 3.7.1', '< 3.19.2'] + gem 'json-schema', '< 3' # V3 only works with 2.5+ gem 'memory_profiler', '~> 0.9' - gem 'os', '~> 1.1' gem 'pimpmychangelog', '>= 0.1.2' gem 'pry' @@ -22,18 +33,8 @@ gem 'rake-compiler', '~> 1.1', '>= 1.1.1' # To compile native extensions gem 'rspec', '~> 3.13' gem 'rspec-collection_matchers', '~> 1.1' gem 'rspec-wait', '~> 0' - gem 'rspec_junit_formatter', '>= 0.5.1' -# Merging branch coverage results does not work for old, unsupported rubies and JRuby -# We have a fix up for review, https://github.com/simplecov-ruby/simplecov/pull/972, -# but given it only affects unsupported version of Ruby, it might not get merged. -gem 'simplecov', git: 'https://github.com/DataDog/simplecov', ref: '3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db' -gem 'simplecov-cobertura', '~> 2.1.0' # Used by codecov - -gem 'warning', '~> 1' # NOTE: Used in spec_helper.rb -gem 'webmock', '>= 3.10.0' - # 1.50 is the last version to support Ruby 2.6 gem 'rubocop', '~> 1.50.0', require: false gem 'rubocop-packaging', '~> 0.5.2', require: false @@ -41,17 +42,14 @@ gem 'rubocop-performance', '~> 1.9', require: false # 2.20 is the last version to support Ruby 2.6 gem 'rubocop-rspec', ['~> 2.20', '< 2.21'], require: false -# Optional extensions -# TODO: Move this to Appraisals? -# dogstatsd v5, but lower than 5.2, has possible memory leak with datadog. -# @see https://github.com/DataDog/dogstatsd-ruby/issues/182 -gem 'dogstatsd-ruby', '>= 3.3.0', '!= 5.0.0', '!= 5.0.1', '!= 5.1.0' +# Merging branch coverage results does not work for old, unsupported rubies and JRuby +# We have a fix up for review, https://github.com/simplecov-ruby/simplecov/pull/972, +# but given it only affects unsupported version of Ruby, it might not get merged. +gem 'simplecov', git: 'https://github.com/DataDog/simplecov', ref: '3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db' +gem 'simplecov-cobertura', '~> 2.1.0' # Used by codecov -# Profiler testing dependencies -# NOTE: We're excluding versions 3.7.0 and 3.7.1 for the reasons documented in #1424. -# Since most of our customers won't have BUNDLE_FORCE_RUBY_PLATFORM=true, it's not something we want to add -# to our CI, so we just shortcut and exclude specific versions that were affecting our CI. -gem 'google-protobuf', ['~> 3.0', '!= 3.7.0', '!= 3.7.1', '< 3.19.2'] +gem 'warning', '~> 1' # NOTE: Used in spec_helper.rb +gem 'webmock', '>= 3.10.0' group :check do gem 'standard', require: false From 00f03dfc7b009f6a828ca22d4e33db5559a82867 Mon Sep 17 00:00:00 2001 From: Sarah Chen Date: Mon, 9 Dec 2024 15:18:37 -0500 Subject: [PATCH 038/161] Remove 2.5 if statements --- ruby-2.5.gemfile | 43 ++++--------------------------------------- 1 file changed, 4 insertions(+), 39 deletions(-) diff --git a/ruby-2.5.gemfile b/ruby-2.5.gemfile index 3c35c9d4b50..ad2f98eb79c 100644 --- a/ruby-2.5.gemfile +++ b/ruby-2.5.gemfile @@ -8,22 +8,15 @@ gem 'benchmark-memory', '< 0.2' # V0.2 only works with 2.5+ gem 'climate_control', '~> 0.2.0' gem 'concurrent-ruby' -gem 'extlz4', '~> 0.3', '>= 0.3.3' if RUBY_PLATFORM != 'java' # Used to test lz4 compression done by libdatadog +gem 'extlz4', '~> 0.3', '>= 0.3.3' gem 'json-schema', '< 3' # V3 only works with 2.5+ gem 'memory_profiler', '~> 0.9' gem 'os', '~> 1.1' gem 'pimpmychangelog', '>= 0.1.2' gem 'pry' -if RUBY_PLATFORM != 'java' - # There's a few incompatibilities between pry/pry-byebug on older Rubies - # There's also a few temproary incompatibilities with newer rubies - gem 'pry-byebug' if RUBY_VERSION >= '2.6.0' && RUBY_ENGINE != 'truffleruby' && RUBY_VERSION < '3.2.0' - gem 'pry-nav' if RUBY_VERSION < '2.6.0' - gem 'pry-stack_explorer' -else - gem 'pry-debugger-jruby' -end +gem 'pry-nav' +gem 'pry-stack_explorer' gem 'rake', '>= 10.5' gem 'rake-compiler', '~> 1.1', '>= 1.1.1' # To compile native extensions gem 'rspec', '~> 3.13' @@ -41,22 +34,6 @@ gem 'simplecov-cobertura', '~> 2.1.0' # Used by codecov gem 'warning', '~> 1' # NOTE: Used in spec_helper.rb gem 'webmock', '>= 3.10.0' -if RUBY_VERSION.start_with?('3.4.') - # ruby 3.4 breaks stable webrick; we need this fix until a version later than 1.8.1 comes out - gem 'webrick', git: 'https://github.com/ruby/webrick.git', ref: '0c600e169bd4ae267cb5eeb6197277c848323bbe' -elsif RUBY_VERSION >= '3.0.0' # No longer bundled by default since Ruby 3.0 - gem 'webrick', '>= 1.7.0' -end - -if RUBY_VERSION >= '2.6.0' - # 1.50 is the last version to support Ruby 2.6 - gem 'rubocop', '~> 1.50.0', require: false - gem 'rubocop-packaging', '~> 0.5.2', require: false - gem 'rubocop-performance', '~> 1.9', require: false - # 2.20 is the last version to support Ruby 2.6 - gem 'rubocop-rspec', ['~> 2.20', '< 2.21'], require: false -end - # Optional extensions # TODO: Move this to Appraisals? # dogstatsd v5, but lower than 5.2, has possible memory leak with datadog. @@ -67,24 +44,12 @@ gem 'dogstatsd-ruby', '>= 3.3.0', '!= 5.0.0', '!= 5.0.1', '!= 5.1.0' # NOTE: We're excluding versions 3.7.0 and 3.7.1 for the reasons documented in #1424. # Since most of our customers won't have BUNDLE_FORCE_RUBY_PLATFORM=true, it's not something we want to add # to our CI, so we just shortcut and exclude specific versions that were affecting our CI. -if RUBY_PLATFORM != 'java' - if RUBY_VERSION >= '2.7.0' # Bundler 1.x fails to find that versions >= 3.8.0 are not compatible because of binary gems - gem 'google-protobuf', ['~> 3.0', '!= 3.7.0', '!= 3.7.1'] - else - gem 'google-protobuf', ['~> 3.0', '!= 3.7.0', '!= 3.7.1', '< 3.19.2'] - end -end +gem 'google-protobuf', ['~> 3.0', '!= 3.7.0', '!= 3.7.1', '< 3.19.2'] group :check do - if RUBY_VERSION >= '3.0.0' && RUBY_PLATFORM != 'java' - gem 'rbs', '~> 3.6', require: false - gem 'steep', '~> 1.7.0', require: false - end - gem 'ruby_memcheck', '>= 3' if RUBY_VERSION >= '3.4.0' && RUBY_PLATFORM != 'java' gem 'standard', require: false end group :dev do - gem 'ruby-lsp', require: false if RUBY_VERSION >= '3.0.0' && RUBY_PLATFORM != 'java' gem 'appraisal', '~> 2.4.0', require: false end From a8619ca5630f97cf3952e494687736698d0b85db Mon Sep 17 00:00:00 2001 From: Sarah Chen Date: Mon, 9 Dec 2024 15:19:20 -0500 Subject: [PATCH 039/161] Alphabetize 2.5 --- ruby-2.5.gemfile | 30 ++++++++++++++---------------- 1 file changed, 14 insertions(+), 16 deletions(-) diff --git a/ruby-2.5.gemfile b/ruby-2.5.gemfile index ad2f98eb79c..e17f2ef0274 100644 --- a/ruby-2.5.gemfile +++ b/ruby-2.5.gemfile @@ -4,14 +4,25 @@ gemspec gem 'benchmark-ips', '~> 2.8' gem 'benchmark-memory', '< 0.2' # V0.2 only works with 2.5+ - gem 'climate_control', '~> 0.2.0' - gem 'concurrent-ruby' + +# Optional extensions +# TODO: Move this to Appraisals? +# dogstatsd v5, but lower than 5.2, has possible memory leak with datadog. +# @see https://github.com/DataDog/dogstatsd-ruby/issues/182 +gem 'dogstatsd-ruby', '>= 3.3.0', '!= 5.0.0', '!= 5.0.1', '!= 5.1.0' + gem 'extlz4', '~> 0.3', '>= 0.3.3' + +# Profiler testing dependencies +# NOTE: We're excluding versions 3.7.0 and 3.7.1 for the reasons documented in #1424. +# Since most of our customers won't have BUNDLE_FORCE_RUBY_PLATFORM=true, it's not something we want to add +# to our CI, so we just shortcut and exclude specific versions that were affecting our CI. +gem 'google-protobuf', ['~> 3.0', '!= 3.7.0', '!= 3.7.1', '< 3.19.2'] + gem 'json-schema', '< 3' # V3 only works with 2.5+ gem 'memory_profiler', '~> 0.9' - gem 'os', '~> 1.1' gem 'pimpmychangelog', '>= 0.1.2' gem 'pry' @@ -22,7 +33,6 @@ gem 'rake-compiler', '~> 1.1', '>= 1.1.1' # To compile native extensions gem 'rspec', '~> 3.13' gem 'rspec-collection_matchers', '~> 1.1' gem 'rspec-wait', '~> 0' - gem 'rspec_junit_formatter', '>= 0.5.1' # Merging branch coverage results does not work for old, unsupported rubies and JRuby @@ -34,18 +44,6 @@ gem 'simplecov-cobertura', '~> 2.1.0' # Used by codecov gem 'warning', '~> 1' # NOTE: Used in spec_helper.rb gem 'webmock', '>= 3.10.0' -# Optional extensions -# TODO: Move this to Appraisals? -# dogstatsd v5, but lower than 5.2, has possible memory leak with datadog. -# @see https://github.com/DataDog/dogstatsd-ruby/issues/182 -gem 'dogstatsd-ruby', '>= 3.3.0', '!= 5.0.0', '!= 5.0.1', '!= 5.1.0' - -# Profiler testing dependencies -# NOTE: We're excluding versions 3.7.0 and 3.7.1 for the reasons documented in #1424. -# Since most of our customers won't have BUNDLE_FORCE_RUBY_PLATFORM=true, it's not something we want to add -# to our CI, so we just shortcut and exclude specific versions that were affecting our CI. -gem 'google-protobuf', ['~> 3.0', '!= 3.7.0', '!= 3.7.1', '< 3.19.2'] - group :check do gem 'standard', require: false end From 64684b1deb8cf21f6e6a5a73147cb55e2f9d612d Mon Sep 17 00:00:00 2001 From: Sarah Chen Date: Mon, 9 Dec 2024 15:26:37 -0500 Subject: [PATCH 040/161] Remove 9.2 if statements --- jruby-9.2.gemfile | 45 +-------------------------------------------- 1 file changed, 1 insertion(+), 44 deletions(-) diff --git a/jruby-9.2.gemfile b/jruby-9.2.gemfile index 3c35c9d4b50..78d9ae14e98 100644 --- a/jruby-9.2.gemfile +++ b/jruby-9.2.gemfile @@ -8,22 +8,13 @@ gem 'benchmark-memory', '< 0.2' # V0.2 only works with 2.5+ gem 'climate_control', '~> 0.2.0' gem 'concurrent-ruby' -gem 'extlz4', '~> 0.3', '>= 0.3.3' if RUBY_PLATFORM != 'java' # Used to test lz4 compression done by libdatadog gem 'json-schema', '< 3' # V3 only works with 2.5+ gem 'memory_profiler', '~> 0.9' gem 'os', '~> 1.1' gem 'pimpmychangelog', '>= 0.1.2' gem 'pry' -if RUBY_PLATFORM != 'java' - # There's a few incompatibilities between pry/pry-byebug on older Rubies - # There's also a few temproary incompatibilities with newer rubies - gem 'pry-byebug' if RUBY_VERSION >= '2.6.0' && RUBY_ENGINE != 'truffleruby' && RUBY_VERSION < '3.2.0' - gem 'pry-nav' if RUBY_VERSION < '2.6.0' - gem 'pry-stack_explorer' -else - gem 'pry-debugger-jruby' -end +gem 'pry-debugger-jruby' gem 'rake', '>= 10.5' gem 'rake-compiler', '~> 1.1', '>= 1.1.1' # To compile native extensions gem 'rspec', '~> 3.13' @@ -41,50 +32,16 @@ gem 'simplecov-cobertura', '~> 2.1.0' # Used by codecov gem 'warning', '~> 1' # NOTE: Used in spec_helper.rb gem 'webmock', '>= 3.10.0' -if RUBY_VERSION.start_with?('3.4.') - # ruby 3.4 breaks stable webrick; we need this fix until a version later than 1.8.1 comes out - gem 'webrick', git: 'https://github.com/ruby/webrick.git', ref: '0c600e169bd4ae267cb5eeb6197277c848323bbe' -elsif RUBY_VERSION >= '3.0.0' # No longer bundled by default since Ruby 3.0 - gem 'webrick', '>= 1.7.0' -end - -if RUBY_VERSION >= '2.6.0' - # 1.50 is the last version to support Ruby 2.6 - gem 'rubocop', '~> 1.50.0', require: false - gem 'rubocop-packaging', '~> 0.5.2', require: false - gem 'rubocop-performance', '~> 1.9', require: false - # 2.20 is the last version to support Ruby 2.6 - gem 'rubocop-rspec', ['~> 2.20', '< 2.21'], require: false -end - # Optional extensions # TODO: Move this to Appraisals? # dogstatsd v5, but lower than 5.2, has possible memory leak with datadog. # @see https://github.com/DataDog/dogstatsd-ruby/issues/182 gem 'dogstatsd-ruby', '>= 3.3.0', '!= 5.0.0', '!= 5.0.1', '!= 5.1.0' -# Profiler testing dependencies -# NOTE: We're excluding versions 3.7.0 and 3.7.1 for the reasons documented in #1424. -# Since most of our customers won't have BUNDLE_FORCE_RUBY_PLATFORM=true, it's not something we want to add -# to our CI, so we just shortcut and exclude specific versions that were affecting our CI. -if RUBY_PLATFORM != 'java' - if RUBY_VERSION >= '2.7.0' # Bundler 1.x fails to find that versions >= 3.8.0 are not compatible because of binary gems - gem 'google-protobuf', ['~> 3.0', '!= 3.7.0', '!= 3.7.1'] - else - gem 'google-protobuf', ['~> 3.0', '!= 3.7.0', '!= 3.7.1', '< 3.19.2'] - end -end - group :check do - if RUBY_VERSION >= '3.0.0' && RUBY_PLATFORM != 'java' - gem 'rbs', '~> 3.6', require: false - gem 'steep', '~> 1.7.0', require: false - end - gem 'ruby_memcheck', '>= 3' if RUBY_VERSION >= '3.4.0' && RUBY_PLATFORM != 'java' gem 'standard', require: false end group :dev do - gem 'ruby-lsp', require: false if RUBY_VERSION >= '3.0.0' && RUBY_PLATFORM != 'java' gem 'appraisal', '~> 2.4.0', require: false end From 17534d9691db366c638cfa6cf5e10aa639ad4e96 Mon Sep 17 00:00:00 2001 From: Sarah Chen Date: Mon, 9 Dec 2024 15:29:15 -0500 Subject: [PATCH 041/161] Alphabetize 9.2 --- jruby-9.2.gemfile | 17 +++++++---------- 1 file changed, 7 insertions(+), 10 deletions(-) diff --git a/jruby-9.2.gemfile b/jruby-9.2.gemfile index 78d9ae14e98..982dea76b77 100644 --- a/jruby-9.2.gemfile +++ b/jruby-9.2.gemfile @@ -4,13 +4,17 @@ gemspec gem 'benchmark-ips', '~> 2.8' gem 'benchmark-memory', '< 0.2' # V0.2 only works with 2.5+ - gem 'climate_control', '~> 0.2.0' - gem 'concurrent-ruby' + +# Optional extensions +# TODO: Move this to Appraisals? +# dogstatsd v5, but lower than 5.2, has possible memory leak with datadog. +# @see https://github.com/DataDog/dogstatsd-ruby/issues/182 +gem 'dogstatsd-ruby', '>= 3.3.0', '!= 5.0.0', '!= 5.0.1', '!= 5.1.0' + gem 'json-schema', '< 3' # V3 only works with 2.5+ gem 'memory_profiler', '~> 0.9' - gem 'os', '~> 1.1' gem 'pimpmychangelog', '>= 0.1.2' gem 'pry' @@ -20,7 +24,6 @@ gem 'rake-compiler', '~> 1.1', '>= 1.1.1' # To compile native extensions gem 'rspec', '~> 3.13' gem 'rspec-collection_matchers', '~> 1.1' gem 'rspec-wait', '~> 0' - gem 'rspec_junit_formatter', '>= 0.5.1' # Merging branch coverage results does not work for old, unsupported rubies and JRuby @@ -32,12 +35,6 @@ gem 'simplecov-cobertura', '~> 2.1.0' # Used by codecov gem 'warning', '~> 1' # NOTE: Used in spec_helper.rb gem 'webmock', '>= 3.10.0' -# Optional extensions -# TODO: Move this to Appraisals? -# dogstatsd v5, but lower than 5.2, has possible memory leak with datadog. -# @see https://github.com/DataDog/dogstatsd-ruby/issues/182 -gem 'dogstatsd-ruby', '>= 3.3.0', '!= 5.0.0', '!= 5.0.1', '!= 5.1.0' - group :check do gem 'standard', require: false end From 2be45e928ab9f9dc8e06486bed1e0905c60f136f Mon Sep 17 00:00:00 2001 From: Sarah Chen Date: Mon, 9 Dec 2024 15:34:10 -0500 Subject: [PATCH 042/161] Remove 9.3 if statements --- jruby-9.3.gemfile | 50 +++++++---------------------------------------- 1 file changed, 7 insertions(+), 43 deletions(-) diff --git a/jruby-9.3.gemfile b/jruby-9.3.gemfile index 3c35c9d4b50..4bd01c484d0 100644 --- a/jruby-9.3.gemfile +++ b/jruby-9.3.gemfile @@ -8,22 +8,13 @@ gem 'benchmark-memory', '< 0.2' # V0.2 only works with 2.5+ gem 'climate_control', '~> 0.2.0' gem 'concurrent-ruby' -gem 'extlz4', '~> 0.3', '>= 0.3.3' if RUBY_PLATFORM != 'java' # Used to test lz4 compression done by libdatadog gem 'json-schema', '< 3' # V3 only works with 2.5+ gem 'memory_profiler', '~> 0.9' gem 'os', '~> 1.1' gem 'pimpmychangelog', '>= 0.1.2' gem 'pry' -if RUBY_PLATFORM != 'java' - # There's a few incompatibilities between pry/pry-byebug on older Rubies - # There's also a few temproary incompatibilities with newer rubies - gem 'pry-byebug' if RUBY_VERSION >= '2.6.0' && RUBY_ENGINE != 'truffleruby' && RUBY_VERSION < '3.2.0' - gem 'pry-nav' if RUBY_VERSION < '2.6.0' - gem 'pry-stack_explorer' -else - gem 'pry-debugger-jruby' -end +gem 'pry-debugger-jruby' gem 'rake', '>= 10.5' gem 'rake-compiler', '~> 1.1', '>= 1.1.1' # To compile native extensions gem 'rspec', '~> 3.13' @@ -41,21 +32,12 @@ gem 'simplecov-cobertura', '~> 2.1.0' # Used by codecov gem 'warning', '~> 1' # NOTE: Used in spec_helper.rb gem 'webmock', '>= 3.10.0' -if RUBY_VERSION.start_with?('3.4.') - # ruby 3.4 breaks stable webrick; we need this fix until a version later than 1.8.1 comes out - gem 'webrick', git: 'https://github.com/ruby/webrick.git', ref: '0c600e169bd4ae267cb5eeb6197277c848323bbe' -elsif RUBY_VERSION >= '3.0.0' # No longer bundled by default since Ruby 3.0 - gem 'webrick', '>= 1.7.0' -end - -if RUBY_VERSION >= '2.6.0' - # 1.50 is the last version to support Ruby 2.6 - gem 'rubocop', '~> 1.50.0', require: false - gem 'rubocop-packaging', '~> 0.5.2', require: false - gem 'rubocop-performance', '~> 1.9', require: false - # 2.20 is the last version to support Ruby 2.6 - gem 'rubocop-rspec', ['~> 2.20', '< 2.21'], require: false -end +# 1.50 is the last version to support Ruby 2.6 +gem 'rubocop', '~> 1.50.0', require: false +gem 'rubocop-packaging', '~> 0.5.2', require: false +gem 'rubocop-performance', '~> 1.9', require: false +# 2.20 is the last version to support Ruby 2.6 +gem 'rubocop-rspec', ['~> 2.20', '< 2.21'], require: false # Optional extensions # TODO: Move this to Appraisals? @@ -63,28 +45,10 @@ end # @see https://github.com/DataDog/dogstatsd-ruby/issues/182 gem 'dogstatsd-ruby', '>= 3.3.0', '!= 5.0.0', '!= 5.0.1', '!= 5.1.0' -# Profiler testing dependencies -# NOTE: We're excluding versions 3.7.0 and 3.7.1 for the reasons documented in #1424. -# Since most of our customers won't have BUNDLE_FORCE_RUBY_PLATFORM=true, it's not something we want to add -# to our CI, so we just shortcut and exclude specific versions that were affecting our CI. -if RUBY_PLATFORM != 'java' - if RUBY_VERSION >= '2.7.0' # Bundler 1.x fails to find that versions >= 3.8.0 are not compatible because of binary gems - gem 'google-protobuf', ['~> 3.0', '!= 3.7.0', '!= 3.7.1'] - else - gem 'google-protobuf', ['~> 3.0', '!= 3.7.0', '!= 3.7.1', '< 3.19.2'] - end -end - group :check do - if RUBY_VERSION >= '3.0.0' && RUBY_PLATFORM != 'java' - gem 'rbs', '~> 3.6', require: false - gem 'steep', '~> 1.7.0', require: false - end - gem 'ruby_memcheck', '>= 3' if RUBY_VERSION >= '3.4.0' && RUBY_PLATFORM != 'java' gem 'standard', require: false end group :dev do - gem 'ruby-lsp', require: false if RUBY_VERSION >= '3.0.0' && RUBY_PLATFORM != 'java' gem 'appraisal', '~> 2.4.0', require: false end From b40e4a5875414a1a8b3e939598fbc27bc3fd0545 Mon Sep 17 00:00:00 2001 From: Sarah Chen Date: Mon, 9 Dec 2024 15:35:12 -0500 Subject: [PATCH 043/161] Alphabetize 9.3 --- jruby-9.3.gemfile | 31 ++++++++++++++----------------- 1 file changed, 14 insertions(+), 17 deletions(-) diff --git a/jruby-9.3.gemfile b/jruby-9.3.gemfile index 4bd01c484d0..1272f681fa8 100644 --- a/jruby-9.3.gemfile +++ b/jruby-9.3.gemfile @@ -4,13 +4,17 @@ gemspec gem 'benchmark-ips', '~> 2.8' gem 'benchmark-memory', '< 0.2' # V0.2 only works with 2.5+ - gem 'climate_control', '~> 0.2.0' - gem 'concurrent-ruby' + +# Optional extensions +# TODO: Move this to Appraisals? +# dogstatsd v5, but lower than 5.2, has possible memory leak with datadog. +# @see https://github.com/DataDog/dogstatsd-ruby/issues/182 +gem 'dogstatsd-ruby', '>= 3.3.0', '!= 5.0.0', '!= 5.0.1', '!= 5.1.0' + gem 'json-schema', '< 3' # V3 only works with 2.5+ gem 'memory_profiler', '~> 0.9' - gem 'os', '~> 1.1' gem 'pimpmychangelog', '>= 0.1.2' gem 'pry' @@ -20,9 +24,15 @@ gem 'rake-compiler', '~> 1.1', '>= 1.1.1' # To compile native extensions gem 'rspec', '~> 3.13' gem 'rspec-collection_matchers', '~> 1.1' gem 'rspec-wait', '~> 0' - gem 'rspec_junit_formatter', '>= 0.5.1' +# 1.50 is the last version to support Ruby 2.6 +gem 'rubocop', '~> 1.50.0', require: false +gem 'rubocop-packaging', '~> 0.5.2', require: false +gem 'rubocop-performance', '~> 1.9', require: false +# 2.20 is the last version to support Ruby 2.6 +gem 'rubocop-rspec', ['~> 2.20', '< 2.21'], require: false + # Merging branch coverage results does not work for old, unsupported rubies and JRuby # We have a fix up for review, https://github.com/simplecov-ruby/simplecov/pull/972, # but given it only affects unsupported version of Ruby, it might not get merged. @@ -32,19 +42,6 @@ gem 'simplecov-cobertura', '~> 2.1.0' # Used by codecov gem 'warning', '~> 1' # NOTE: Used in spec_helper.rb gem 'webmock', '>= 3.10.0' -# 1.50 is the last version to support Ruby 2.6 -gem 'rubocop', '~> 1.50.0', require: false -gem 'rubocop-packaging', '~> 0.5.2', require: false -gem 'rubocop-performance', '~> 1.9', require: false -# 2.20 is the last version to support Ruby 2.6 -gem 'rubocop-rspec', ['~> 2.20', '< 2.21'], require: false - -# Optional extensions -# TODO: Move this to Appraisals? -# dogstatsd v5, but lower than 5.2, has possible memory leak with datadog. -# @see https://github.com/DataDog/dogstatsd-ruby/issues/182 -gem 'dogstatsd-ruby', '>= 3.3.0', '!= 5.0.0', '!= 5.0.1', '!= 5.1.0' - group :check do gem 'standard', require: false end From be6a10bf350a2190eb91e0f576a85c0bf35cd935 Mon Sep 17 00:00:00 2001 From: Sarah Chen Date: Mon, 9 Dec 2024 15:36:59 -0500 Subject: [PATCH 044/161] Remove 9.4 if statements --- jruby-9.4.gemfile | 49 ++++++++--------------------------------------- 1 file changed, 8 insertions(+), 41 deletions(-) diff --git a/jruby-9.4.gemfile b/jruby-9.4.gemfile index 3c35c9d4b50..9b7c7185bed 100644 --- a/jruby-9.4.gemfile +++ b/jruby-9.4.gemfile @@ -15,15 +15,7 @@ gem 'memory_profiler', '~> 0.9' gem 'os', '~> 1.1' gem 'pimpmychangelog', '>= 0.1.2' gem 'pry' -if RUBY_PLATFORM != 'java' - # There's a few incompatibilities between pry/pry-byebug on older Rubies - # There's also a few temproary incompatibilities with newer rubies - gem 'pry-byebug' if RUBY_VERSION >= '2.6.0' && RUBY_ENGINE != 'truffleruby' && RUBY_VERSION < '3.2.0' - gem 'pry-nav' if RUBY_VERSION < '2.6.0' - gem 'pry-stack_explorer' -else - gem 'pry-debugger-jruby' -end +gem 'pry-debugger-jruby' gem 'rake', '>= 10.5' gem 'rake-compiler', '~> 1.1', '>= 1.1.1' # To compile native extensions gem 'rspec', '~> 3.13' @@ -41,21 +33,14 @@ gem 'simplecov-cobertura', '~> 2.1.0' # Used by codecov gem 'warning', '~> 1' # NOTE: Used in spec_helper.rb gem 'webmock', '>= 3.10.0' -if RUBY_VERSION.start_with?('3.4.') - # ruby 3.4 breaks stable webrick; we need this fix until a version later than 1.8.1 comes out - gem 'webrick', git: 'https://github.com/ruby/webrick.git', ref: '0c600e169bd4ae267cb5eeb6197277c848323bbe' -elsif RUBY_VERSION >= '3.0.0' # No longer bundled by default since Ruby 3.0 - gem 'webrick', '>= 1.7.0' -end +gem 'webrick', '>= 1.7.0' -if RUBY_VERSION >= '2.6.0' - # 1.50 is the last version to support Ruby 2.6 - gem 'rubocop', '~> 1.50.0', require: false - gem 'rubocop-packaging', '~> 0.5.2', require: false - gem 'rubocop-performance', '~> 1.9', require: false - # 2.20 is the last version to support Ruby 2.6 - gem 'rubocop-rspec', ['~> 2.20', '< 2.21'], require: false -end +# 1.50 is the last version to support Ruby 2.6 +gem 'rubocop', '~> 1.50.0', require: false +gem 'rubocop-packaging', '~> 0.5.2', require: false +gem 'rubocop-performance', '~> 1.9', require: false +# 2.20 is the last version to support Ruby 2.6 +gem 'rubocop-rspec', ['~> 2.20', '< 2.21'], require: false # Optional extensions # TODO: Move this to Appraisals? @@ -63,28 +48,10 @@ end # @see https://github.com/DataDog/dogstatsd-ruby/issues/182 gem 'dogstatsd-ruby', '>= 3.3.0', '!= 5.0.0', '!= 5.0.1', '!= 5.1.0' -# Profiler testing dependencies -# NOTE: We're excluding versions 3.7.0 and 3.7.1 for the reasons documented in #1424. -# Since most of our customers won't have BUNDLE_FORCE_RUBY_PLATFORM=true, it's not something we want to add -# to our CI, so we just shortcut and exclude specific versions that were affecting our CI. -if RUBY_PLATFORM != 'java' - if RUBY_VERSION >= '2.7.0' # Bundler 1.x fails to find that versions >= 3.8.0 are not compatible because of binary gems - gem 'google-protobuf', ['~> 3.0', '!= 3.7.0', '!= 3.7.1'] - else - gem 'google-protobuf', ['~> 3.0', '!= 3.7.0', '!= 3.7.1', '< 3.19.2'] - end -end - group :check do - if RUBY_VERSION >= '3.0.0' && RUBY_PLATFORM != 'java' - gem 'rbs', '~> 3.6', require: false - gem 'steep', '~> 1.7.0', require: false - end - gem 'ruby_memcheck', '>= 3' if RUBY_VERSION >= '3.4.0' && RUBY_PLATFORM != 'java' gem 'standard', require: false end group :dev do - gem 'ruby-lsp', require: false if RUBY_VERSION >= '3.0.0' && RUBY_PLATFORM != 'java' gem 'appraisal', '~> 2.4.0', require: false end From 99e7a90c2d5cb304efa520146993f8afba6722af Mon Sep 17 00:00:00 2001 From: Sarah Chen Date: Mon, 9 Dec 2024 15:37:44 -0500 Subject: [PATCH 045/161] Alphabetize 9.4 --- jruby-9.4.gemfile | 32 ++++++++++++++------------------ 1 file changed, 14 insertions(+), 18 deletions(-) diff --git a/jruby-9.4.gemfile b/jruby-9.4.gemfile index 9b7c7185bed..1359f0e133e 100644 --- a/jruby-9.4.gemfile +++ b/jruby-9.4.gemfile @@ -4,14 +4,18 @@ gemspec gem 'benchmark-ips', '~> 2.8' gem 'benchmark-memory', '< 0.2' # V0.2 only works with 2.5+ - gem 'climate_control', '~> 0.2.0' - gem 'concurrent-ruby' + +# Optional extensions +# TODO: Move this to Appraisals? +# dogstatsd v5, but lower than 5.2, has possible memory leak with datadog. +# @see https://github.com/DataDog/dogstatsd-ruby/issues/182 +gem 'dogstatsd-ruby', '>= 3.3.0', '!= 5.0.0', '!= 5.0.1', '!= 5.1.0' + gem 'extlz4', '~> 0.3', '>= 0.3.3' if RUBY_PLATFORM != 'java' # Used to test lz4 compression done by libdatadog gem 'json-schema', '< 3' # V3 only works with 2.5+ gem 'memory_profiler', '~> 0.9' - gem 'os', '~> 1.1' gem 'pimpmychangelog', '>= 0.1.2' gem 'pry' @@ -21,9 +25,15 @@ gem 'rake-compiler', '~> 1.1', '>= 1.1.1' # To compile native extensions gem 'rspec', '~> 3.13' gem 'rspec-collection_matchers', '~> 1.1' gem 'rspec-wait', '~> 0' - gem 'rspec_junit_formatter', '>= 0.5.1' +# 1.50 is the last version to support Ruby 2.6 +gem 'rubocop', '~> 1.50.0', require: false +gem 'rubocop-packaging', '~> 0.5.2', require: false +gem 'rubocop-performance', '~> 1.9', require: false +# 2.20 is the last version to support Ruby 2.6 +gem 'rubocop-rspec', ['~> 2.20', '< 2.21'], require: false + # Merging branch coverage results does not work for old, unsupported rubies and JRuby # We have a fix up for review, https://github.com/simplecov-ruby/simplecov/pull/972, # but given it only affects unsupported version of Ruby, it might not get merged. @@ -32,22 +42,8 @@ gem 'simplecov-cobertura', '~> 2.1.0' # Used by codecov gem 'warning', '~> 1' # NOTE: Used in spec_helper.rb gem 'webmock', '>= 3.10.0' - gem 'webrick', '>= 1.7.0' -# 1.50 is the last version to support Ruby 2.6 -gem 'rubocop', '~> 1.50.0', require: false -gem 'rubocop-packaging', '~> 0.5.2', require: false -gem 'rubocop-performance', '~> 1.9', require: false -# 2.20 is the last version to support Ruby 2.6 -gem 'rubocop-rspec', ['~> 2.20', '< 2.21'], require: false - -# Optional extensions -# TODO: Move this to Appraisals? -# dogstatsd v5, but lower than 5.2, has possible memory leak with datadog. -# @see https://github.com/DataDog/dogstatsd-ruby/issues/182 -gem 'dogstatsd-ruby', '>= 3.3.0', '!= 5.0.0', '!= 5.0.1', '!= 5.1.0' - group :check do gem 'standard', require: false end From 22b1bff5018f2841e5c21f6946891c525aaeba62 Mon Sep 17 00:00:00 2001 From: sarahchen6 Date: Wed, 11 Dec 2024 15:39:45 +0000 Subject: [PATCH 046/161] =?UTF-8?q?[=F0=9F=A4=96]=20Lock=20Dependency:=20h?= =?UTF-8?q?ttps://github.com/DataDog/dd-trace-rb/actions/runs/12279649617?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- gemfiles/jruby_9.2_activesupport.gemfile | 2 +- gemfiles/jruby_9.2_aws.gemfile | 2 +- gemfiles/jruby_9.2_contrib.gemfile | 2 +- gemfiles/jruby_9.2_contrib_old.gemfile | 2 +- gemfiles/jruby_9.2_core_old.gemfile | 2 +- gemfiles/jruby_9.2_elasticsearch_7.gemfile | 2 +- gemfiles/jruby_9.2_elasticsearch_8.gemfile | 2 +- gemfiles/jruby_9.2_elasticsearch_latest.gemfile | 2 +- gemfiles/jruby_9.2_graphql_2.0.gemfile | 2 +- gemfiles/jruby_9.2_http.gemfile | 2 +- gemfiles/jruby_9.2_opensearch_2.gemfile | 2 +- gemfiles/jruby_9.2_opensearch_3.gemfile | 2 +- gemfiles/jruby_9.2_opensearch_latest.gemfile | 2 +- gemfiles/jruby_9.2_rack_1.gemfile | 2 +- gemfiles/jruby_9.2_rack_2.gemfile | 2 +- gemfiles/jruby_9.2_rack_3.gemfile | 2 +- gemfiles/jruby_9.2_rack_latest.gemfile | 2 +- gemfiles/jruby_9.2_rails5_mysql2.gemfile | 2 +- gemfiles/jruby_9.2_rails5_postgres.gemfile | 2 +- gemfiles/jruby_9.2_rails5_postgres_redis.gemfile | 2 +- ...uby_9.2_rails5_postgres_redis_activesupport.gemfile | 2 +- gemfiles/jruby_9.2_rails5_postgres_sidekiq.gemfile | 2 +- gemfiles/jruby_9.2_rails5_semantic_logger.gemfile | 2 +- gemfiles/jruby_9.2_rails61_mysql2.gemfile | 2 +- gemfiles/jruby_9.2_rails61_postgres.gemfile | 2 +- gemfiles/jruby_9.2_rails61_postgres_redis.gemfile | 2 +- gemfiles/jruby_9.2_rails61_postgres_sidekiq.gemfile | 2 +- gemfiles/jruby_9.2_rails61_semantic_logger.gemfile | 2 +- gemfiles/jruby_9.2_rails6_mysql2.gemfile | 2 +- gemfiles/jruby_9.2_rails6_postgres.gemfile | 2 +- gemfiles/jruby_9.2_rails6_postgres_redis.gemfile | 2 +- ...uby_9.2_rails6_postgres_redis_activesupport.gemfile | 2 +- gemfiles/jruby_9.2_rails6_postgres_sidekiq.gemfile | 2 +- gemfiles/jruby_9.2_rails6_semantic_logger.gemfile | 2 +- gemfiles/jruby_9.2_rails_old_redis.gemfile | 2 +- gemfiles/jruby_9.2_redis_3.gemfile | 2 +- gemfiles/jruby_9.2_redis_4.gemfile | 2 +- gemfiles/jruby_9.2_redis_5.gemfile | 2 +- gemfiles/jruby_9.2_relational_db.gemfile | 2 +- gemfiles/jruby_9.2_resque2_redis3.gemfile | 2 +- gemfiles/jruby_9.2_resque2_redis4.gemfile | 2 +- gemfiles/jruby_9.2_sinatra_2.gemfile | 2 +- gemfiles/jruby_9.2_stripe_10.gemfile | 2 +- gemfiles/jruby_9.2_stripe_11.gemfile | 2 +- gemfiles/jruby_9.2_stripe_12.gemfile | 2 +- gemfiles/jruby_9.2_stripe_7.gemfile | 2 +- gemfiles/jruby_9.2_stripe_8.gemfile | 2 +- gemfiles/jruby_9.2_stripe_9.gemfile | 2 +- gemfiles/jruby_9.2_stripe_latest.gemfile | 2 +- gemfiles/jruby_9.2_stripe_min.gemfile | 2 +- gemfiles/jruby_9.3_activesupport.gemfile | 10 +++++----- gemfiles/jruby_9.3_aws.gemfile | 10 +++++----- gemfiles/jruby_9.3_contrib.gemfile | 10 +++++----- gemfiles/jruby_9.3_contrib_old.gemfile | 10 +++++----- gemfiles/jruby_9.3_core_old.gemfile | 10 +++++----- gemfiles/jruby_9.3_elasticsearch_7.gemfile | 10 +++++----- gemfiles/jruby_9.3_elasticsearch_8.gemfile | 10 +++++----- gemfiles/jruby_9.3_elasticsearch_latest.gemfile | 10 +++++----- gemfiles/jruby_9.3_graphql_1.13.gemfile | 10 +++++----- gemfiles/jruby_9.3_graphql_2.0.gemfile | 10 +++++----- gemfiles/jruby_9.3_http.gemfile | 10 +++++----- gemfiles/jruby_9.3_opensearch_2.gemfile | 10 +++++----- gemfiles/jruby_9.3_opensearch_3.gemfile | 10 +++++----- gemfiles/jruby_9.3_opensearch_latest.gemfile | 10 +++++----- gemfiles/jruby_9.3_rack_1.gemfile | 10 +++++----- gemfiles/jruby_9.3_rack_2.gemfile | 10 +++++----- gemfiles/jruby_9.3_rack_3.gemfile | 10 +++++----- gemfiles/jruby_9.3_rack_latest.gemfile | 10 +++++----- gemfiles/jruby_9.3_rails5_mysql2.gemfile | 10 +++++----- gemfiles/jruby_9.3_rails5_postgres.gemfile | 10 +++++----- gemfiles/jruby_9.3_rails5_postgres_redis.gemfile | 10 +++++----- ...uby_9.3_rails5_postgres_redis_activesupport.gemfile | 10 +++++----- gemfiles/jruby_9.3_rails5_postgres_sidekiq.gemfile | 10 +++++----- gemfiles/jruby_9.3_rails5_semantic_logger.gemfile | 10 +++++----- gemfiles/jruby_9.3_rails61_mysql2.gemfile | 10 +++++----- gemfiles/jruby_9.3_rails61_postgres.gemfile | 10 +++++----- gemfiles/jruby_9.3_rails61_postgres_redis.gemfile | 10 +++++----- gemfiles/jruby_9.3_rails61_postgres_sidekiq.gemfile | 10 +++++----- gemfiles/jruby_9.3_rails61_semantic_logger.gemfile | 10 +++++----- gemfiles/jruby_9.3_rails6_mysql2.gemfile | 10 +++++----- gemfiles/jruby_9.3_rails6_postgres.gemfile | 10 +++++----- gemfiles/jruby_9.3_rails6_postgres_redis.gemfile | 10 +++++----- ...uby_9.3_rails6_postgres_redis_activesupport.gemfile | 10 +++++----- gemfiles/jruby_9.3_rails6_postgres_sidekiq.gemfile | 10 +++++----- gemfiles/jruby_9.3_rails6_semantic_logger.gemfile | 10 +++++----- gemfiles/jruby_9.3_rails_old_redis.gemfile | 10 +++++----- gemfiles/jruby_9.3_redis_3.gemfile | 10 +++++----- gemfiles/jruby_9.3_redis_4.gemfile | 10 +++++----- gemfiles/jruby_9.3_redis_5.gemfile | 10 +++++----- gemfiles/jruby_9.3_relational_db.gemfile | 10 +++++----- gemfiles/jruby_9.3_resque2_redis3.gemfile | 10 +++++----- gemfiles/jruby_9.3_resque2_redis4.gemfile | 10 +++++----- gemfiles/jruby_9.3_sinatra_2.gemfile | 10 +++++----- gemfiles/jruby_9.3_sinatra_3.gemfile | 10 +++++----- gemfiles/jruby_9.3_stripe_10.gemfile | 10 +++++----- gemfiles/jruby_9.3_stripe_11.gemfile | 10 +++++----- gemfiles/jruby_9.3_stripe_12.gemfile | 10 +++++----- gemfiles/jruby_9.3_stripe_7.gemfile | 10 +++++----- gemfiles/jruby_9.3_stripe_8.gemfile | 10 +++++----- gemfiles/jruby_9.3_stripe_9.gemfile | 10 +++++----- gemfiles/jruby_9.3_stripe_latest.gemfile | 10 +++++----- gemfiles/jruby_9.3_stripe_min.gemfile | 10 +++++----- gemfiles/jruby_9.4_activesupport.gemfile | 10 +++++----- gemfiles/jruby_9.4_aws.gemfile | 10 +++++----- gemfiles/jruby_9.4_contrib.gemfile | 10 +++++----- gemfiles/jruby_9.4_contrib_old.gemfile | 10 +++++----- gemfiles/jruby_9.4_core_old.gemfile | 10 +++++----- gemfiles/jruby_9.4_elasticsearch_7.gemfile | 10 +++++----- gemfiles/jruby_9.4_elasticsearch_8.gemfile | 10 +++++----- gemfiles/jruby_9.4_elasticsearch_latest.gemfile | 10 +++++----- gemfiles/jruby_9.4_graphql_1.13.gemfile | 10 +++++----- gemfiles/jruby_9.4_graphql_2.0.gemfile | 10 +++++----- gemfiles/jruby_9.4_graphql_2.1.gemfile | 10 +++++----- gemfiles/jruby_9.4_graphql_2.2.gemfile | 10 +++++----- gemfiles/jruby_9.4_graphql_2.3.gemfile | 10 +++++----- gemfiles/jruby_9.4_http.gemfile | 10 +++++----- gemfiles/jruby_9.4_opensearch_2.gemfile | 10 +++++----- gemfiles/jruby_9.4_opensearch_3.gemfile | 10 +++++----- gemfiles/jruby_9.4_opensearch_latest.gemfile | 10 +++++----- gemfiles/jruby_9.4_rack_1.gemfile | 10 +++++----- gemfiles/jruby_9.4_rack_2.gemfile | 10 +++++----- gemfiles/jruby_9.4_rack_3.gemfile | 10 +++++----- gemfiles/jruby_9.4_rack_latest.gemfile | 10 +++++----- gemfiles/jruby_9.4_rails61_mysql2.gemfile | 10 +++++----- gemfiles/jruby_9.4_rails61_postgres.gemfile | 10 +++++----- gemfiles/jruby_9.4_rails61_postgres_redis.gemfile | 10 +++++----- gemfiles/jruby_9.4_rails61_postgres_sidekiq.gemfile | 10 +++++----- gemfiles/jruby_9.4_rails61_semantic_logger.gemfile | 10 +++++----- gemfiles/jruby_9.4_rails_old_redis.gemfile | 10 +++++----- gemfiles/jruby_9.4_redis_3.gemfile | 10 +++++----- gemfiles/jruby_9.4_redis_4.gemfile | 10 +++++----- gemfiles/jruby_9.4_redis_5.gemfile | 10 +++++----- gemfiles/jruby_9.4_relational_db.gemfile | 10 +++++----- gemfiles/jruby_9.4_resque2_redis3.gemfile | 10 +++++----- gemfiles/jruby_9.4_resque2_redis4.gemfile | 10 +++++----- gemfiles/jruby_9.4_sinatra_2.gemfile | 10 +++++----- gemfiles/jruby_9.4_sinatra_3.gemfile | 10 +++++----- gemfiles/jruby_9.4_sinatra_4.gemfile | 10 +++++----- gemfiles/jruby_9.4_stripe_10.gemfile | 10 +++++----- gemfiles/jruby_9.4_stripe_11.gemfile | 10 +++++----- gemfiles/jruby_9.4_stripe_12.gemfile | 10 +++++----- gemfiles/jruby_9.4_stripe_7.gemfile | 10 +++++----- gemfiles/jruby_9.4_stripe_8.gemfile | 10 +++++----- gemfiles/jruby_9.4_stripe_9.gemfile | 10 +++++----- gemfiles/jruby_9.4_stripe_latest.gemfile | 10 +++++----- gemfiles/jruby_9.4_stripe_min.gemfile | 10 +++++----- 146 files changed, 530 insertions(+), 530 deletions(-) diff --git a/gemfiles/jruby_9.2_activesupport.gemfile b/gemfiles/jruby_9.2_activesupport.gemfile index c4eb78cf074..7b447a4efd1 100644 --- a/gemfiles/jruby_9.2_activesupport.gemfile +++ b/gemfiles/jruby_9.2_activesupport.gemfile @@ -6,6 +6,7 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -22,7 +23,6 @@ gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "activesupport", "~> 5" gem "actionpack" gem "actionview" diff --git a/gemfiles/jruby_9.2_aws.gemfile b/gemfiles/jruby_9.2_aws.gemfile index 576b56cd2db..97ff0705f53 100644 --- a/gemfiles/jruby_9.2_aws.gemfile +++ b/gemfiles/jruby_9.2_aws.gemfile @@ -6,6 +6,7 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -22,7 +23,6 @@ gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "aws-sdk" gem "shoryuken" gem "rexml", "= 3.2.6" diff --git a/gemfiles/jruby_9.2_contrib.gemfile b/gemfiles/jruby_9.2_contrib.gemfile index 1d5da89038a..c793f3ca92b 100644 --- a/gemfiles/jruby_9.2_contrib.gemfile +++ b/gemfiles/jruby_9.2_contrib.gemfile @@ -6,6 +6,7 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -22,7 +23,6 @@ gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "dalli", ">= 3.0.0" gem "i18n", "1.8.7", platform: :jruby gem "mongo", ">= 2.8.0", "< 2.15.0" diff --git a/gemfiles/jruby_9.2_contrib_old.gemfile b/gemfiles/jruby_9.2_contrib_old.gemfile index 28a6ead5fa4..76e4d705f1b 100644 --- a/gemfiles/jruby_9.2_contrib_old.gemfile +++ b/gemfiles/jruby_9.2_contrib_old.gemfile @@ -6,6 +6,7 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -22,7 +23,6 @@ gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "dalli", "< 3.0.0" gem "faraday", "0.17" gem "presto-client", ">= 0.5.14" diff --git a/gemfiles/jruby_9.2_core_old.gemfile b/gemfiles/jruby_9.2_core_old.gemfile index 5426ee8a721..0595213ef19 100644 --- a/gemfiles/jruby_9.2_core_old.gemfile +++ b/gemfiles/jruby_9.2_core_old.gemfile @@ -6,6 +6,7 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", "~> 4" gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -22,7 +23,6 @@ gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" -gem "dogstatsd-ruby", "~> 4" group :check do diff --git a/gemfiles/jruby_9.2_elasticsearch_7.gemfile b/gemfiles/jruby_9.2_elasticsearch_7.gemfile index 65cd97b8398..e3768872b23 100644 --- a/gemfiles/jruby_9.2_elasticsearch_7.gemfile +++ b/gemfiles/jruby_9.2_elasticsearch_7.gemfile @@ -6,6 +6,7 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -22,7 +23,6 @@ gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "elasticsearch", "~> 7" group :check do diff --git a/gemfiles/jruby_9.2_elasticsearch_8.gemfile b/gemfiles/jruby_9.2_elasticsearch_8.gemfile index 8bbd9f66a18..fb67f4b15e4 100644 --- a/gemfiles/jruby_9.2_elasticsearch_8.gemfile +++ b/gemfiles/jruby_9.2_elasticsearch_8.gemfile @@ -6,6 +6,7 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -22,7 +23,6 @@ gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "elasticsearch", "~> 8" group :check do diff --git a/gemfiles/jruby_9.2_elasticsearch_latest.gemfile b/gemfiles/jruby_9.2_elasticsearch_latest.gemfile index 6d3ae0f2c9d..da808845b0c 100644 --- a/gemfiles/jruby_9.2_elasticsearch_latest.gemfile +++ b/gemfiles/jruby_9.2_elasticsearch_latest.gemfile @@ -6,6 +6,7 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -22,7 +23,6 @@ gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "elasticsearch" group :check do diff --git a/gemfiles/jruby_9.2_graphql_2.0.gemfile b/gemfiles/jruby_9.2_graphql_2.0.gemfile index 79b7fb6116a..c5b7a946300 100644 --- a/gemfiles/jruby_9.2_graphql_2.0.gemfile +++ b/gemfiles/jruby_9.2_graphql_2.0.gemfile @@ -6,6 +6,7 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -22,7 +23,6 @@ gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "rails", "~> 6.1.0" gem "graphql", "~> 2.0.0" gem "sprockets", "< 4" diff --git a/gemfiles/jruby_9.2_http.gemfile b/gemfiles/jruby_9.2_http.gemfile index 77e7ef182c0..d948a2fcf4a 100644 --- a/gemfiles/jruby_9.2_http.gemfile +++ b/gemfiles/jruby_9.2_http.gemfile @@ -6,6 +6,7 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -22,7 +23,6 @@ gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "ethon", "< 0.15.0" gem "excon" gem "faraday" diff --git a/gemfiles/jruby_9.2_opensearch_2.gemfile b/gemfiles/jruby_9.2_opensearch_2.gemfile index 9ef25106780..7c407bf4f2b 100644 --- a/gemfiles/jruby_9.2_opensearch_2.gemfile +++ b/gemfiles/jruby_9.2_opensearch_2.gemfile @@ -6,6 +6,7 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -22,7 +23,6 @@ gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "opensearch-ruby", "~> 2" group :check do diff --git a/gemfiles/jruby_9.2_opensearch_3.gemfile b/gemfiles/jruby_9.2_opensearch_3.gemfile index 3533157dd97..a5f61ca152e 100644 --- a/gemfiles/jruby_9.2_opensearch_3.gemfile +++ b/gemfiles/jruby_9.2_opensearch_3.gemfile @@ -6,6 +6,7 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -22,7 +23,6 @@ gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "opensearch-ruby", "~> 3" group :check do diff --git a/gemfiles/jruby_9.2_opensearch_latest.gemfile b/gemfiles/jruby_9.2_opensearch_latest.gemfile index 218ef78f5f3..5b51dbad2d0 100644 --- a/gemfiles/jruby_9.2_opensearch_latest.gemfile +++ b/gemfiles/jruby_9.2_opensearch_latest.gemfile @@ -6,6 +6,7 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -22,7 +23,6 @@ gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "opensearch-ruby" group :check do diff --git a/gemfiles/jruby_9.2_rack_1.gemfile b/gemfiles/jruby_9.2_rack_1.gemfile index 5478c1eac96..c6208f3ecca 100644 --- a/gemfiles/jruby_9.2_rack_1.gemfile +++ b/gemfiles/jruby_9.2_rack_1.gemfile @@ -6,6 +6,7 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -22,7 +23,6 @@ gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "rack", "~> 1" gem "rack-contrib" gem "rack-test" diff --git a/gemfiles/jruby_9.2_rack_2.gemfile b/gemfiles/jruby_9.2_rack_2.gemfile index b7b1f0c4de2..b0484c283f7 100644 --- a/gemfiles/jruby_9.2_rack_2.gemfile +++ b/gemfiles/jruby_9.2_rack_2.gemfile @@ -6,6 +6,7 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -22,7 +23,6 @@ gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "rack", "~> 2" gem "rack-contrib" gem "rack-test" diff --git a/gemfiles/jruby_9.2_rack_3.gemfile b/gemfiles/jruby_9.2_rack_3.gemfile index 701ac279d00..e0856fea341 100644 --- a/gemfiles/jruby_9.2_rack_3.gemfile +++ b/gemfiles/jruby_9.2_rack_3.gemfile @@ -6,6 +6,7 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -22,7 +23,6 @@ gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "rack", "~> 3" gem "rack-contrib" gem "rack-test" diff --git a/gemfiles/jruby_9.2_rack_latest.gemfile b/gemfiles/jruby_9.2_rack_latest.gemfile index b1bb19b9b82..ae147026f3f 100644 --- a/gemfiles/jruby_9.2_rack_latest.gemfile +++ b/gemfiles/jruby_9.2_rack_latest.gemfile @@ -6,6 +6,7 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -22,7 +23,6 @@ gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "rack" gem "rack-contrib" gem "rack-test" diff --git a/gemfiles/jruby_9.2_rails5_mysql2.gemfile b/gemfiles/jruby_9.2_rails5_mysql2.gemfile index 1297dd39cf3..18ba737405b 100644 --- a/gemfiles/jruby_9.2_rails5_mysql2.gemfile +++ b/gemfiles/jruby_9.2_rails5_mysql2.gemfile @@ -6,6 +6,7 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -22,7 +23,6 @@ gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "rails", "~> 5.2.1" gem "activerecord-jdbcmysql-adapter", platform: :jruby gem "sprockets", "< 4" diff --git a/gemfiles/jruby_9.2_rails5_postgres.gemfile b/gemfiles/jruby_9.2_rails5_postgres.gemfile index f066bffd4c2..f1822d68983 100644 --- a/gemfiles/jruby_9.2_rails5_postgres.gemfile +++ b/gemfiles/jruby_9.2_rails5_postgres.gemfile @@ -6,6 +6,7 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -22,7 +23,6 @@ gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "rails", "~> 5.2.1" gem "activerecord-jdbcpostgresql-adapter", platform: :jruby gem "sprockets", "< 4" diff --git a/gemfiles/jruby_9.2_rails5_postgres_redis.gemfile b/gemfiles/jruby_9.2_rails5_postgres_redis.gemfile index 61359f3680c..0edbfc0ed57 100644 --- a/gemfiles/jruby_9.2_rails5_postgres_redis.gemfile +++ b/gemfiles/jruby_9.2_rails5_postgres_redis.gemfile @@ -6,6 +6,7 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -22,7 +23,6 @@ gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "rails", "~> 5.2.1" gem "activerecord-jdbcpostgresql-adapter", platform: :jruby gem "redis", ">= 4.0.1" diff --git a/gemfiles/jruby_9.2_rails5_postgres_redis_activesupport.gemfile b/gemfiles/jruby_9.2_rails5_postgres_redis_activesupport.gemfile index 8737ea42630..ba4c81c38c7 100644 --- a/gemfiles/jruby_9.2_rails5_postgres_redis_activesupport.gemfile +++ b/gemfiles/jruby_9.2_rails5_postgres_redis_activesupport.gemfile @@ -6,6 +6,7 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -22,7 +23,6 @@ gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "rails", "~> 5.2.1" gem "activerecord-jdbcpostgresql-adapter", platform: :jruby gem "redis", "~> 4" diff --git a/gemfiles/jruby_9.2_rails5_postgres_sidekiq.gemfile b/gemfiles/jruby_9.2_rails5_postgres_sidekiq.gemfile index 6f34bd8e25c..f0f0edbe8dd 100644 --- a/gemfiles/jruby_9.2_rails5_postgres_sidekiq.gemfile +++ b/gemfiles/jruby_9.2_rails5_postgres_sidekiq.gemfile @@ -6,6 +6,7 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -22,7 +23,6 @@ gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "rails", "~> 5.2.1" gem "activerecord-jdbcpostgresql-adapter", platform: :jruby gem "sidekiq" diff --git a/gemfiles/jruby_9.2_rails5_semantic_logger.gemfile b/gemfiles/jruby_9.2_rails5_semantic_logger.gemfile index 1ca3c2a0cf2..5ad53630d63 100644 --- a/gemfiles/jruby_9.2_rails5_semantic_logger.gemfile +++ b/gemfiles/jruby_9.2_rails5_semantic_logger.gemfile @@ -6,6 +6,7 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -22,7 +23,6 @@ gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "rails", "~> 5.2.1" gem "activerecord-jdbcpostgresql-adapter", platform: :jruby gem "sprockets", "< 4" diff --git a/gemfiles/jruby_9.2_rails61_mysql2.gemfile b/gemfiles/jruby_9.2_rails61_mysql2.gemfile index a5d3ac5714a..e77d6619319 100644 --- a/gemfiles/jruby_9.2_rails61_mysql2.gemfile +++ b/gemfiles/jruby_9.2_rails61_mysql2.gemfile @@ -6,6 +6,7 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -22,7 +23,6 @@ gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "rails", "~> 6.1.0" gem "activerecord-jdbcmysql-adapter", ">= 61", platform: :jruby gem "sprockets", "< 4" diff --git a/gemfiles/jruby_9.2_rails61_postgres.gemfile b/gemfiles/jruby_9.2_rails61_postgres.gemfile index 0511ef59a07..b88355777d9 100644 --- a/gemfiles/jruby_9.2_rails61_postgres.gemfile +++ b/gemfiles/jruby_9.2_rails61_postgres.gemfile @@ -6,6 +6,7 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -22,7 +23,6 @@ gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "rails", "~> 6.1.0" gem "activerecord-jdbcpostgresql-adapter", ">= 61", platform: :jruby gem "sprockets", "< 4" diff --git a/gemfiles/jruby_9.2_rails61_postgres_redis.gemfile b/gemfiles/jruby_9.2_rails61_postgres_redis.gemfile index b7366fd06cf..bbea97f0eff 100644 --- a/gemfiles/jruby_9.2_rails61_postgres_redis.gemfile +++ b/gemfiles/jruby_9.2_rails61_postgres_redis.gemfile @@ -6,6 +6,7 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -22,7 +23,6 @@ gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "rails", "~> 6.1.0" gem "activerecord-jdbcpostgresql-adapter", ">= 61", platform: :jruby gem "redis", ">= 4.2.5" diff --git a/gemfiles/jruby_9.2_rails61_postgres_sidekiq.gemfile b/gemfiles/jruby_9.2_rails61_postgres_sidekiq.gemfile index ef2749e0aac..9325a3abf47 100644 --- a/gemfiles/jruby_9.2_rails61_postgres_sidekiq.gemfile +++ b/gemfiles/jruby_9.2_rails61_postgres_sidekiq.gemfile @@ -6,6 +6,7 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -22,7 +23,6 @@ gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "rails", "~> 6.1.0" gem "activerecord-jdbcpostgresql-adapter", ">= 61", platform: :jruby gem "sidekiq", ">= 6.1.2" diff --git a/gemfiles/jruby_9.2_rails61_semantic_logger.gemfile b/gemfiles/jruby_9.2_rails61_semantic_logger.gemfile index 28e23127b3f..d1ebd6c2f09 100644 --- a/gemfiles/jruby_9.2_rails61_semantic_logger.gemfile +++ b/gemfiles/jruby_9.2_rails61_semantic_logger.gemfile @@ -6,6 +6,7 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -22,7 +23,6 @@ gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "rails", "~> 6.1.0" gem "activerecord-jdbcpostgresql-adapter", ">= 61", platform: :jruby gem "sprockets", "< 4" diff --git a/gemfiles/jruby_9.2_rails6_mysql2.gemfile b/gemfiles/jruby_9.2_rails6_mysql2.gemfile index 07c3677f154..f0cb6535efd 100644 --- a/gemfiles/jruby_9.2_rails6_mysql2.gemfile +++ b/gemfiles/jruby_9.2_rails6_mysql2.gemfile @@ -6,6 +6,7 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -22,7 +23,6 @@ gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "rails", "~> 6.0.0" gem "activerecord-jdbcmysql-adapter", ">= 60", platform: :jruby gem "sprockets", "< 4" diff --git a/gemfiles/jruby_9.2_rails6_postgres.gemfile b/gemfiles/jruby_9.2_rails6_postgres.gemfile index 0d2fd3b0281..50e45944e82 100644 --- a/gemfiles/jruby_9.2_rails6_postgres.gemfile +++ b/gemfiles/jruby_9.2_rails6_postgres.gemfile @@ -6,6 +6,7 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -22,7 +23,6 @@ gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "rails", "~> 6.0.0" gem "activerecord-jdbcpostgresql-adapter", ">= 60", platform: :jruby gem "sprockets", "< 4" diff --git a/gemfiles/jruby_9.2_rails6_postgres_redis.gemfile b/gemfiles/jruby_9.2_rails6_postgres_redis.gemfile index e75e2f13b50..5be05e91831 100644 --- a/gemfiles/jruby_9.2_rails6_postgres_redis.gemfile +++ b/gemfiles/jruby_9.2_rails6_postgres_redis.gemfile @@ -6,6 +6,7 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -22,7 +23,6 @@ gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "rails", "~> 6.0.0" gem "activerecord-jdbcpostgresql-adapter", ">= 60", platform: :jruby gem "redis", ">= 4.0.1" diff --git a/gemfiles/jruby_9.2_rails6_postgres_redis_activesupport.gemfile b/gemfiles/jruby_9.2_rails6_postgres_redis_activesupport.gemfile index ce77d48e6dd..69ba5bfbf88 100644 --- a/gemfiles/jruby_9.2_rails6_postgres_redis_activesupport.gemfile +++ b/gemfiles/jruby_9.2_rails6_postgres_redis_activesupport.gemfile @@ -6,6 +6,7 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -22,7 +23,6 @@ gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "rails", "~> 6.0.0" gem "activerecord-jdbcpostgresql-adapter", ">= 60", platform: :jruby gem "redis", "~> 4" diff --git a/gemfiles/jruby_9.2_rails6_postgres_sidekiq.gemfile b/gemfiles/jruby_9.2_rails6_postgres_sidekiq.gemfile index e24e4106a2b..d3896e386f8 100644 --- a/gemfiles/jruby_9.2_rails6_postgres_sidekiq.gemfile +++ b/gemfiles/jruby_9.2_rails6_postgres_sidekiq.gemfile @@ -6,6 +6,7 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -22,7 +23,6 @@ gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "rails", "~> 6.0.0" gem "activerecord-jdbcpostgresql-adapter", ">= 60", platform: :jruby gem "sidekiq" diff --git a/gemfiles/jruby_9.2_rails6_semantic_logger.gemfile b/gemfiles/jruby_9.2_rails6_semantic_logger.gemfile index bb237e06d81..30148b041db 100644 --- a/gemfiles/jruby_9.2_rails6_semantic_logger.gemfile +++ b/gemfiles/jruby_9.2_rails6_semantic_logger.gemfile @@ -6,6 +6,7 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -22,7 +23,6 @@ gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "rails", "~> 6.0.0" gem "activerecord-jdbcpostgresql-adapter", ">= 60", platform: :jruby gem "sprockets", "< 4" diff --git a/gemfiles/jruby_9.2_rails_old_redis.gemfile b/gemfiles/jruby_9.2_rails_old_redis.gemfile index 7b73020384b..6657e68abe1 100644 --- a/gemfiles/jruby_9.2_rails_old_redis.gemfile +++ b/gemfiles/jruby_9.2_rails_old_redis.gemfile @@ -6,6 +6,7 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -22,7 +23,6 @@ gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "redis", "< 4" gem "rails", "~> 6.1.0" gem "activerecord-jdbcpostgresql-adapter", platform: :jruby diff --git a/gemfiles/jruby_9.2_redis_3.gemfile b/gemfiles/jruby_9.2_redis_3.gemfile index 241a07a6914..f1bb5253623 100644 --- a/gemfiles/jruby_9.2_redis_3.gemfile +++ b/gemfiles/jruby_9.2_redis_3.gemfile @@ -6,6 +6,7 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -22,7 +23,6 @@ gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "redis", "~> 3" group :check do diff --git a/gemfiles/jruby_9.2_redis_4.gemfile b/gemfiles/jruby_9.2_redis_4.gemfile index 11849b48a45..aed46fc586c 100644 --- a/gemfiles/jruby_9.2_redis_4.gemfile +++ b/gemfiles/jruby_9.2_redis_4.gemfile @@ -6,6 +6,7 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -22,7 +23,6 @@ gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "redis", "~> 4" group :check do diff --git a/gemfiles/jruby_9.2_redis_5.gemfile b/gemfiles/jruby_9.2_redis_5.gemfile index aa410b27264..40db1b0d85b 100644 --- a/gemfiles/jruby_9.2_redis_5.gemfile +++ b/gemfiles/jruby_9.2_redis_5.gemfile @@ -6,6 +6,7 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -22,7 +23,6 @@ gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "redis", "~> 5" group :check do diff --git a/gemfiles/jruby_9.2_relational_db.gemfile b/gemfiles/jruby_9.2_relational_db.gemfile index e1def19d1a1..587964f7e09 100644 --- a/gemfiles/jruby_9.2_relational_db.gemfile +++ b/gemfiles/jruby_9.2_relational_db.gemfile @@ -6,6 +6,7 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -22,7 +23,6 @@ gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "activerecord", "~> 5" gem "delayed_job" gem "delayed_job_active_record" diff --git a/gemfiles/jruby_9.2_resque2_redis3.gemfile b/gemfiles/jruby_9.2_resque2_redis3.gemfile index b2204c0f5cf..33ffad2594f 100644 --- a/gemfiles/jruby_9.2_resque2_redis3.gemfile +++ b/gemfiles/jruby_9.2_resque2_redis3.gemfile @@ -6,6 +6,7 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -22,7 +23,6 @@ gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "redis", "< 4.0" gem "resque", ">= 2.0" diff --git a/gemfiles/jruby_9.2_resque2_redis4.gemfile b/gemfiles/jruby_9.2_resque2_redis4.gemfile index 0fb2284c3b1..93ab0c3d986 100644 --- a/gemfiles/jruby_9.2_resque2_redis4.gemfile +++ b/gemfiles/jruby_9.2_resque2_redis4.gemfile @@ -6,6 +6,7 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -22,7 +23,6 @@ gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "redis", ">= 4.0" gem "resque", ">= 2.0" diff --git a/gemfiles/jruby_9.2_sinatra_2.gemfile b/gemfiles/jruby_9.2_sinatra_2.gemfile index 528a272bbd8..9eb256527b0 100644 --- a/gemfiles/jruby_9.2_sinatra_2.gemfile +++ b/gemfiles/jruby_9.2_sinatra_2.gemfile @@ -6,6 +6,7 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -22,7 +23,6 @@ gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "sinatra", "~> 2" gem "rack-contrib" gem "rack-test" diff --git a/gemfiles/jruby_9.2_stripe_10.gemfile b/gemfiles/jruby_9.2_stripe_10.gemfile index 077baa72afe..e4d4add446b 100644 --- a/gemfiles/jruby_9.2_stripe_10.gemfile +++ b/gemfiles/jruby_9.2_stripe_10.gemfile @@ -6,6 +6,7 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -22,7 +23,6 @@ gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "stripe", "~> 10" group :check do diff --git a/gemfiles/jruby_9.2_stripe_11.gemfile b/gemfiles/jruby_9.2_stripe_11.gemfile index 747a444c48e..de452e3c290 100644 --- a/gemfiles/jruby_9.2_stripe_11.gemfile +++ b/gemfiles/jruby_9.2_stripe_11.gemfile @@ -6,6 +6,7 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -22,7 +23,6 @@ gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "stripe", "~> 11" group :check do diff --git a/gemfiles/jruby_9.2_stripe_12.gemfile b/gemfiles/jruby_9.2_stripe_12.gemfile index f24f9ca40ad..db37ea5e032 100644 --- a/gemfiles/jruby_9.2_stripe_12.gemfile +++ b/gemfiles/jruby_9.2_stripe_12.gemfile @@ -6,6 +6,7 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -22,7 +23,6 @@ gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "stripe", "~> 12" group :check do diff --git a/gemfiles/jruby_9.2_stripe_7.gemfile b/gemfiles/jruby_9.2_stripe_7.gemfile index 62030a9ed5a..495a5906290 100644 --- a/gemfiles/jruby_9.2_stripe_7.gemfile +++ b/gemfiles/jruby_9.2_stripe_7.gemfile @@ -6,6 +6,7 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -22,7 +23,6 @@ gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "stripe", "~> 7" group :check do diff --git a/gemfiles/jruby_9.2_stripe_8.gemfile b/gemfiles/jruby_9.2_stripe_8.gemfile index 71f795af842..2e8104b8447 100644 --- a/gemfiles/jruby_9.2_stripe_8.gemfile +++ b/gemfiles/jruby_9.2_stripe_8.gemfile @@ -6,6 +6,7 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -22,7 +23,6 @@ gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "stripe", "~> 8" group :check do diff --git a/gemfiles/jruby_9.2_stripe_9.gemfile b/gemfiles/jruby_9.2_stripe_9.gemfile index 8f54348a6f3..661a40e7b5e 100644 --- a/gemfiles/jruby_9.2_stripe_9.gemfile +++ b/gemfiles/jruby_9.2_stripe_9.gemfile @@ -6,6 +6,7 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -22,7 +23,6 @@ gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "stripe", "~> 9" group :check do diff --git a/gemfiles/jruby_9.2_stripe_latest.gemfile b/gemfiles/jruby_9.2_stripe_latest.gemfile index 41cf75f283f..41e075cf84c 100644 --- a/gemfiles/jruby_9.2_stripe_latest.gemfile +++ b/gemfiles/jruby_9.2_stripe_latest.gemfile @@ -6,6 +6,7 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -22,7 +23,6 @@ gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "stripe" group :check do diff --git a/gemfiles/jruby_9.2_stripe_min.gemfile b/gemfiles/jruby_9.2_stripe_min.gemfile index 8f7de9d2039..7d2f60f29fa 100644 --- a/gemfiles/jruby_9.2_stripe_min.gemfile +++ b/gemfiles/jruby_9.2_stripe_min.gemfile @@ -6,6 +6,7 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -22,7 +23,6 @@ gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "stripe", "= 5.15.0" group :check do diff --git a/gemfiles/jruby_9.3_activesupport.gemfile b/gemfiles/jruby_9.3_activesupport.gemfile index 04e245cd34a..10d911a5d83 100644 --- a/gemfiles/jruby_9.3_activesupport.gemfile +++ b/gemfiles/jruby_9.3_activesupport.gemfile @@ -6,6 +6,7 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -18,15 +19,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "activesupport", "~> 6.0.0" gem "actionpack" gem "actionview" diff --git a/gemfiles/jruby_9.3_aws.gemfile b/gemfiles/jruby_9.3_aws.gemfile index 469da5b277e..bb04a8f3b4b 100644 --- a/gemfiles/jruby_9.3_aws.gemfile +++ b/gemfiles/jruby_9.3_aws.gemfile @@ -6,6 +6,7 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -18,15 +19,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "aws-sdk" gem "shoryuken" gem "rexml", "= 3.2.6" diff --git a/gemfiles/jruby_9.3_contrib.gemfile b/gemfiles/jruby_9.3_contrib.gemfile index 2b8b49e355e..ade3ca433cd 100644 --- a/gemfiles/jruby_9.3_contrib.gemfile +++ b/gemfiles/jruby_9.3_contrib.gemfile @@ -6,6 +6,7 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -18,15 +19,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "dalli", ">= 3.0.0" gem "mongo", ">= 2.8.0", "< 2.15.0" gem "rack-test" diff --git a/gemfiles/jruby_9.3_contrib_old.gemfile b/gemfiles/jruby_9.3_contrib_old.gemfile index 41710e4870b..5a313944a56 100644 --- a/gemfiles/jruby_9.3_contrib_old.gemfile +++ b/gemfiles/jruby_9.3_contrib_old.gemfile @@ -6,6 +6,7 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -18,15 +19,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "dalli", "< 3.0.0" gem "faraday", "0.17" gem "presto-client", ">= 0.5.14" diff --git a/gemfiles/jruby_9.3_core_old.gemfile b/gemfiles/jruby_9.3_core_old.gemfile index cf3c0f9c619..a116d183148 100644 --- a/gemfiles/jruby_9.3_core_old.gemfile +++ b/gemfiles/jruby_9.3_core_old.gemfile @@ -6,6 +6,7 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", "~> 4" gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -18,15 +19,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", "~> 4" +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" group :check do diff --git a/gemfiles/jruby_9.3_elasticsearch_7.gemfile b/gemfiles/jruby_9.3_elasticsearch_7.gemfile index e72e17fe73e..e69d78c73ec 100644 --- a/gemfiles/jruby_9.3_elasticsearch_7.gemfile +++ b/gemfiles/jruby_9.3_elasticsearch_7.gemfile @@ -6,6 +6,7 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -18,15 +19,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "elasticsearch", "~> 7" group :check do diff --git a/gemfiles/jruby_9.3_elasticsearch_8.gemfile b/gemfiles/jruby_9.3_elasticsearch_8.gemfile index 83023d9c8ee..37118042f12 100644 --- a/gemfiles/jruby_9.3_elasticsearch_8.gemfile +++ b/gemfiles/jruby_9.3_elasticsearch_8.gemfile @@ -6,6 +6,7 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -18,15 +19,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "elasticsearch", "~> 8" group :check do diff --git a/gemfiles/jruby_9.3_elasticsearch_latest.gemfile b/gemfiles/jruby_9.3_elasticsearch_latest.gemfile index ed82425b3d4..929f301154f 100644 --- a/gemfiles/jruby_9.3_elasticsearch_latest.gemfile +++ b/gemfiles/jruby_9.3_elasticsearch_latest.gemfile @@ -6,6 +6,7 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -18,15 +19,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "elasticsearch" group :check do diff --git a/gemfiles/jruby_9.3_graphql_1.13.gemfile b/gemfiles/jruby_9.3_graphql_1.13.gemfile index e6778ceba7d..32bf07d4cd8 100644 --- a/gemfiles/jruby_9.3_graphql_1.13.gemfile +++ b/gemfiles/jruby_9.3_graphql_1.13.gemfile @@ -6,6 +6,7 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -18,15 +19,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "rails", "~> 6.1.0" gem "graphql", "~> 1.13.0" gem "sprockets", "< 4" diff --git a/gemfiles/jruby_9.3_graphql_2.0.gemfile b/gemfiles/jruby_9.3_graphql_2.0.gemfile index dd427151208..c3aafc61ea7 100644 --- a/gemfiles/jruby_9.3_graphql_2.0.gemfile +++ b/gemfiles/jruby_9.3_graphql_2.0.gemfile @@ -6,6 +6,7 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -18,15 +19,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "rails", "~> 6.1.0" gem "graphql", "~> 2.0.0" gem "sprockets", "< 4" diff --git a/gemfiles/jruby_9.3_http.gemfile b/gemfiles/jruby_9.3_http.gemfile index 1c06aa97b41..751661b4ab5 100644 --- a/gemfiles/jruby_9.3_http.gemfile +++ b/gemfiles/jruby_9.3_http.gemfile @@ -6,6 +6,7 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -18,15 +19,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "ethon" gem "excon" gem "faraday" diff --git a/gemfiles/jruby_9.3_opensearch_2.gemfile b/gemfiles/jruby_9.3_opensearch_2.gemfile index 1394441d1cc..29056de75c2 100644 --- a/gemfiles/jruby_9.3_opensearch_2.gemfile +++ b/gemfiles/jruby_9.3_opensearch_2.gemfile @@ -6,6 +6,7 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -18,15 +19,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "opensearch-ruby", "~> 2" group :check do diff --git a/gemfiles/jruby_9.3_opensearch_3.gemfile b/gemfiles/jruby_9.3_opensearch_3.gemfile index bf5f08d7e9a..b7dcbe0a2fb 100644 --- a/gemfiles/jruby_9.3_opensearch_3.gemfile +++ b/gemfiles/jruby_9.3_opensearch_3.gemfile @@ -6,6 +6,7 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -18,15 +19,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "opensearch-ruby", "~> 3" group :check do diff --git a/gemfiles/jruby_9.3_opensearch_latest.gemfile b/gemfiles/jruby_9.3_opensearch_latest.gemfile index c122a8070cb..ea58aa2ec66 100644 --- a/gemfiles/jruby_9.3_opensearch_latest.gemfile +++ b/gemfiles/jruby_9.3_opensearch_latest.gemfile @@ -6,6 +6,7 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -18,15 +19,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "opensearch-ruby" group :check do diff --git a/gemfiles/jruby_9.3_rack_1.gemfile b/gemfiles/jruby_9.3_rack_1.gemfile index cd0fda0a905..de385195ba9 100644 --- a/gemfiles/jruby_9.3_rack_1.gemfile +++ b/gemfiles/jruby_9.3_rack_1.gemfile @@ -6,6 +6,7 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -18,15 +19,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "rack", "~> 1" gem "rack-contrib" gem "rack-test" diff --git a/gemfiles/jruby_9.3_rack_2.gemfile b/gemfiles/jruby_9.3_rack_2.gemfile index 1b6677f1394..5917a831182 100644 --- a/gemfiles/jruby_9.3_rack_2.gemfile +++ b/gemfiles/jruby_9.3_rack_2.gemfile @@ -6,6 +6,7 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -18,15 +19,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "rack", "~> 2" gem "rack-contrib" gem "rack-test" diff --git a/gemfiles/jruby_9.3_rack_3.gemfile b/gemfiles/jruby_9.3_rack_3.gemfile index 276b1c8e967..78e146ec851 100644 --- a/gemfiles/jruby_9.3_rack_3.gemfile +++ b/gemfiles/jruby_9.3_rack_3.gemfile @@ -6,6 +6,7 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -18,15 +19,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "rack", "~> 3" gem "rack-contrib" gem "rack-test" diff --git a/gemfiles/jruby_9.3_rack_latest.gemfile b/gemfiles/jruby_9.3_rack_latest.gemfile index 6fa21f5ec39..05ec792dce6 100644 --- a/gemfiles/jruby_9.3_rack_latest.gemfile +++ b/gemfiles/jruby_9.3_rack_latest.gemfile @@ -6,6 +6,7 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -18,15 +19,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "rack" gem "rack-contrib" gem "rack-test" diff --git a/gemfiles/jruby_9.3_rails5_mysql2.gemfile b/gemfiles/jruby_9.3_rails5_mysql2.gemfile index ddb3b4b3111..a57371a2a45 100644 --- a/gemfiles/jruby_9.3_rails5_mysql2.gemfile +++ b/gemfiles/jruby_9.3_rails5_mysql2.gemfile @@ -6,6 +6,7 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -18,15 +19,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "rails", "~> 5.2.1" gem "activerecord-jdbcmysql-adapter", platform: :jruby gem "sprockets", "< 4" diff --git a/gemfiles/jruby_9.3_rails5_postgres.gemfile b/gemfiles/jruby_9.3_rails5_postgres.gemfile index cbf3a3e1946..6872c25c4e5 100644 --- a/gemfiles/jruby_9.3_rails5_postgres.gemfile +++ b/gemfiles/jruby_9.3_rails5_postgres.gemfile @@ -6,6 +6,7 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -18,15 +19,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "rails", "~> 5.2.1" gem "activerecord-jdbcpostgresql-adapter", platform: :jruby gem "sprockets", "< 4" diff --git a/gemfiles/jruby_9.3_rails5_postgres_redis.gemfile b/gemfiles/jruby_9.3_rails5_postgres_redis.gemfile index a24dbc2b7dc..1772a7a9abe 100644 --- a/gemfiles/jruby_9.3_rails5_postgres_redis.gemfile +++ b/gemfiles/jruby_9.3_rails5_postgres_redis.gemfile @@ -6,6 +6,7 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -18,15 +19,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "rails", "~> 5.2.1" gem "activerecord-jdbcpostgresql-adapter", platform: :jruby gem "redis", "~> 4" diff --git a/gemfiles/jruby_9.3_rails5_postgres_redis_activesupport.gemfile b/gemfiles/jruby_9.3_rails5_postgres_redis_activesupport.gemfile index c71fdaac335..47a620a5382 100644 --- a/gemfiles/jruby_9.3_rails5_postgres_redis_activesupport.gemfile +++ b/gemfiles/jruby_9.3_rails5_postgres_redis_activesupport.gemfile @@ -6,6 +6,7 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -18,15 +19,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "rails", "~> 5.2.1" gem "activerecord-jdbcpostgresql-adapter", platform: :jruby gem "redis", "~> 4" diff --git a/gemfiles/jruby_9.3_rails5_postgres_sidekiq.gemfile b/gemfiles/jruby_9.3_rails5_postgres_sidekiq.gemfile index 03fb7cdd9b7..d4450059c12 100644 --- a/gemfiles/jruby_9.3_rails5_postgres_sidekiq.gemfile +++ b/gemfiles/jruby_9.3_rails5_postgres_sidekiq.gemfile @@ -6,6 +6,7 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -18,15 +19,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "rails", "~> 5.2.1" gem "activerecord-jdbcpostgresql-adapter", platform: :jruby gem "sidekiq" diff --git a/gemfiles/jruby_9.3_rails5_semantic_logger.gemfile b/gemfiles/jruby_9.3_rails5_semantic_logger.gemfile index 9923c728800..51ebc29e042 100644 --- a/gemfiles/jruby_9.3_rails5_semantic_logger.gemfile +++ b/gemfiles/jruby_9.3_rails5_semantic_logger.gemfile @@ -6,6 +6,7 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -18,15 +19,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "rails", "~> 5.2.1" gem "activerecord-jdbcpostgresql-adapter", platform: :jruby gem "sprockets", "< 4" diff --git a/gemfiles/jruby_9.3_rails61_mysql2.gemfile b/gemfiles/jruby_9.3_rails61_mysql2.gemfile index ef75dc24ee6..5ea6a86d62c 100644 --- a/gemfiles/jruby_9.3_rails61_mysql2.gemfile +++ b/gemfiles/jruby_9.3_rails61_mysql2.gemfile @@ -6,6 +6,7 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -18,15 +19,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "rails", "~> 6.1.0" gem "activerecord-jdbcmysql-adapter", platform: :jruby gem "sprockets", "< 4" diff --git a/gemfiles/jruby_9.3_rails61_postgres.gemfile b/gemfiles/jruby_9.3_rails61_postgres.gemfile index 37dfd1c1ff9..535b6d47d3a 100644 --- a/gemfiles/jruby_9.3_rails61_postgres.gemfile +++ b/gemfiles/jruby_9.3_rails61_postgres.gemfile @@ -6,6 +6,7 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -18,15 +19,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "rails", "~> 6.1.0" gem "activerecord-jdbcpostgresql-adapter", platform: :jruby gem "sprockets", "< 4" diff --git a/gemfiles/jruby_9.3_rails61_postgres_redis.gemfile b/gemfiles/jruby_9.3_rails61_postgres_redis.gemfile index 1ac344f7882..09c2f7d68e1 100644 --- a/gemfiles/jruby_9.3_rails61_postgres_redis.gemfile +++ b/gemfiles/jruby_9.3_rails61_postgres_redis.gemfile @@ -6,6 +6,7 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -18,15 +19,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "rails", "~> 6.1.0" gem "activerecord-jdbcpostgresql-adapter", platform: :jruby gem "redis", "~> 4" diff --git a/gemfiles/jruby_9.3_rails61_postgres_sidekiq.gemfile b/gemfiles/jruby_9.3_rails61_postgres_sidekiq.gemfile index 6ad552447fe..870b795c7f4 100644 --- a/gemfiles/jruby_9.3_rails61_postgres_sidekiq.gemfile +++ b/gemfiles/jruby_9.3_rails61_postgres_sidekiq.gemfile @@ -6,6 +6,7 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -18,15 +19,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "rails", "~> 6.1.0" gem "activerecord-jdbcpostgresql-adapter", platform: :jruby gem "sidekiq", ">= 6.1.2" diff --git a/gemfiles/jruby_9.3_rails61_semantic_logger.gemfile b/gemfiles/jruby_9.3_rails61_semantic_logger.gemfile index d45e7964a43..625c72ca19e 100644 --- a/gemfiles/jruby_9.3_rails61_semantic_logger.gemfile +++ b/gemfiles/jruby_9.3_rails61_semantic_logger.gemfile @@ -6,6 +6,7 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -18,15 +19,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "rails", "~> 6.1.0" gem "activerecord-jdbcpostgresql-adapter", platform: :jruby gem "sprockets", "< 4" diff --git a/gemfiles/jruby_9.3_rails6_mysql2.gemfile b/gemfiles/jruby_9.3_rails6_mysql2.gemfile index 949f73bd2f7..af40cac7099 100644 --- a/gemfiles/jruby_9.3_rails6_mysql2.gemfile +++ b/gemfiles/jruby_9.3_rails6_mysql2.gemfile @@ -6,6 +6,7 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -18,15 +19,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "rails", "~> 6.0.0" gem "activerecord-jdbcmysql-adapter", platform: :jruby gem "sprockets", "< 4" diff --git a/gemfiles/jruby_9.3_rails6_postgres.gemfile b/gemfiles/jruby_9.3_rails6_postgres.gemfile index ba5dc2ecdc4..106bc5d1e20 100644 --- a/gemfiles/jruby_9.3_rails6_postgres.gemfile +++ b/gemfiles/jruby_9.3_rails6_postgres.gemfile @@ -6,6 +6,7 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -18,15 +19,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "rails", "~> 6.0.0" gem "activerecord-jdbcpostgresql-adapter", platform: :jruby gem "sprockets", "< 4" diff --git a/gemfiles/jruby_9.3_rails6_postgres_redis.gemfile b/gemfiles/jruby_9.3_rails6_postgres_redis.gemfile index 9ab2ab3eb74..6b6bbeda4f7 100644 --- a/gemfiles/jruby_9.3_rails6_postgres_redis.gemfile +++ b/gemfiles/jruby_9.3_rails6_postgres_redis.gemfile @@ -6,6 +6,7 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -18,15 +19,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "rails", "~> 6.0.0" gem "activerecord-jdbcpostgresql-adapter", platform: :jruby gem "redis", "~> 4" diff --git a/gemfiles/jruby_9.3_rails6_postgres_redis_activesupport.gemfile b/gemfiles/jruby_9.3_rails6_postgres_redis_activesupport.gemfile index f588932c857..e5c4669d413 100644 --- a/gemfiles/jruby_9.3_rails6_postgres_redis_activesupport.gemfile +++ b/gemfiles/jruby_9.3_rails6_postgres_redis_activesupport.gemfile @@ -6,6 +6,7 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -18,15 +19,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "rails", "~> 6.0.0" gem "activerecord-jdbcpostgresql-adapter", platform: :jruby gem "redis", "~> 4" diff --git a/gemfiles/jruby_9.3_rails6_postgres_sidekiq.gemfile b/gemfiles/jruby_9.3_rails6_postgres_sidekiq.gemfile index 075d0e277f0..19c0912631a 100644 --- a/gemfiles/jruby_9.3_rails6_postgres_sidekiq.gemfile +++ b/gemfiles/jruby_9.3_rails6_postgres_sidekiq.gemfile @@ -6,6 +6,7 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -18,15 +19,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "rails", "~> 6.0.0" gem "activerecord-jdbcpostgresql-adapter", platform: :jruby gem "sidekiq" diff --git a/gemfiles/jruby_9.3_rails6_semantic_logger.gemfile b/gemfiles/jruby_9.3_rails6_semantic_logger.gemfile index b6c5224d939..670e252bde8 100644 --- a/gemfiles/jruby_9.3_rails6_semantic_logger.gemfile +++ b/gemfiles/jruby_9.3_rails6_semantic_logger.gemfile @@ -6,6 +6,7 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -18,15 +19,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "rails", "~> 6.0.0" gem "activerecord-jdbcpostgresql-adapter", platform: :jruby gem "sprockets", "< 4" diff --git a/gemfiles/jruby_9.3_rails_old_redis.gemfile b/gemfiles/jruby_9.3_rails_old_redis.gemfile index 2529ebfb26e..6bd798b0f8a 100644 --- a/gemfiles/jruby_9.3_rails_old_redis.gemfile +++ b/gemfiles/jruby_9.3_rails_old_redis.gemfile @@ -6,6 +6,7 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -18,15 +19,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "redis", "< 4" gem "rails", "~> 6.1.0" gem "activerecord-jdbcpostgresql-adapter", platform: :jruby diff --git a/gemfiles/jruby_9.3_redis_3.gemfile b/gemfiles/jruby_9.3_redis_3.gemfile index 75a650c1442..a89f890d4ab 100644 --- a/gemfiles/jruby_9.3_redis_3.gemfile +++ b/gemfiles/jruby_9.3_redis_3.gemfile @@ -6,6 +6,7 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -18,15 +19,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "redis", "~> 3" group :check do diff --git a/gemfiles/jruby_9.3_redis_4.gemfile b/gemfiles/jruby_9.3_redis_4.gemfile index 2c222e2feed..d3c28df0864 100644 --- a/gemfiles/jruby_9.3_redis_4.gemfile +++ b/gemfiles/jruby_9.3_redis_4.gemfile @@ -6,6 +6,7 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -18,15 +19,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "redis", "~> 4" group :check do diff --git a/gemfiles/jruby_9.3_redis_5.gemfile b/gemfiles/jruby_9.3_redis_5.gemfile index 0985f3aeee2..3b861870955 100644 --- a/gemfiles/jruby_9.3_redis_5.gemfile +++ b/gemfiles/jruby_9.3_redis_5.gemfile @@ -6,6 +6,7 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -18,15 +19,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "redis", "~> 5" group :check do diff --git a/gemfiles/jruby_9.3_relational_db.gemfile b/gemfiles/jruby_9.3_relational_db.gemfile index 77ad1cf8d20..8b2065dbb51 100644 --- a/gemfiles/jruby_9.3_relational_db.gemfile +++ b/gemfiles/jruby_9.3_relational_db.gemfile @@ -6,6 +6,7 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -18,15 +19,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "activerecord", "~> 6.0.0" gem "delayed_job" gem "delayed_job_active_record" diff --git a/gemfiles/jruby_9.3_resque2_redis3.gemfile b/gemfiles/jruby_9.3_resque2_redis3.gemfile index a519e6cb6e2..2dba40e9115 100644 --- a/gemfiles/jruby_9.3_resque2_redis3.gemfile +++ b/gemfiles/jruby_9.3_resque2_redis3.gemfile @@ -6,6 +6,7 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -18,15 +19,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "redis", "~> 3.0" gem "resque", ">= 2.0" diff --git a/gemfiles/jruby_9.3_resque2_redis4.gemfile b/gemfiles/jruby_9.3_resque2_redis4.gemfile index af30566034b..4e3669bd21a 100644 --- a/gemfiles/jruby_9.3_resque2_redis4.gemfile +++ b/gemfiles/jruby_9.3_resque2_redis4.gemfile @@ -6,6 +6,7 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -18,15 +19,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "redis", "~> 4.0" gem "resque", ">= 2.0" diff --git a/gemfiles/jruby_9.3_sinatra_2.gemfile b/gemfiles/jruby_9.3_sinatra_2.gemfile index 27c41121c8a..d46110554ea 100644 --- a/gemfiles/jruby_9.3_sinatra_2.gemfile +++ b/gemfiles/jruby_9.3_sinatra_2.gemfile @@ -6,6 +6,7 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -18,15 +19,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "sinatra", "~> 2" gem "rack-contrib" gem "rack-test" diff --git a/gemfiles/jruby_9.3_sinatra_3.gemfile b/gemfiles/jruby_9.3_sinatra_3.gemfile index d62c562b07b..3de93537195 100644 --- a/gemfiles/jruby_9.3_sinatra_3.gemfile +++ b/gemfiles/jruby_9.3_sinatra_3.gemfile @@ -6,6 +6,7 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -18,15 +19,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "sinatra", "~> 3" gem "rack-contrib" gem "rack-test" diff --git a/gemfiles/jruby_9.3_stripe_10.gemfile b/gemfiles/jruby_9.3_stripe_10.gemfile index 11be7a37d4e..34bd25bcd78 100644 --- a/gemfiles/jruby_9.3_stripe_10.gemfile +++ b/gemfiles/jruby_9.3_stripe_10.gemfile @@ -6,6 +6,7 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -18,15 +19,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "stripe", "~> 10" group :check do diff --git a/gemfiles/jruby_9.3_stripe_11.gemfile b/gemfiles/jruby_9.3_stripe_11.gemfile index 7049911491a..a783da086b7 100644 --- a/gemfiles/jruby_9.3_stripe_11.gemfile +++ b/gemfiles/jruby_9.3_stripe_11.gemfile @@ -6,6 +6,7 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -18,15 +19,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "stripe", "~> 11" group :check do diff --git a/gemfiles/jruby_9.3_stripe_12.gemfile b/gemfiles/jruby_9.3_stripe_12.gemfile index 67626bd493f..e9a84ee5f8c 100644 --- a/gemfiles/jruby_9.3_stripe_12.gemfile +++ b/gemfiles/jruby_9.3_stripe_12.gemfile @@ -6,6 +6,7 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -18,15 +19,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "stripe", "~> 12" group :check do diff --git a/gemfiles/jruby_9.3_stripe_7.gemfile b/gemfiles/jruby_9.3_stripe_7.gemfile index 9825bd7bf00..0868c4e3fff 100644 --- a/gemfiles/jruby_9.3_stripe_7.gemfile +++ b/gemfiles/jruby_9.3_stripe_7.gemfile @@ -6,6 +6,7 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -18,15 +19,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "stripe", "~> 7" group :check do diff --git a/gemfiles/jruby_9.3_stripe_8.gemfile b/gemfiles/jruby_9.3_stripe_8.gemfile index e1ac1898551..b7fcdaffc2c 100644 --- a/gemfiles/jruby_9.3_stripe_8.gemfile +++ b/gemfiles/jruby_9.3_stripe_8.gemfile @@ -6,6 +6,7 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -18,15 +19,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "stripe", "~> 8" group :check do diff --git a/gemfiles/jruby_9.3_stripe_9.gemfile b/gemfiles/jruby_9.3_stripe_9.gemfile index 2a64e8f9dfe..28e9f6ebc6c 100644 --- a/gemfiles/jruby_9.3_stripe_9.gemfile +++ b/gemfiles/jruby_9.3_stripe_9.gemfile @@ -6,6 +6,7 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -18,15 +19,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "stripe", "~> 9" group :check do diff --git a/gemfiles/jruby_9.3_stripe_latest.gemfile b/gemfiles/jruby_9.3_stripe_latest.gemfile index 9bb8c22cd14..708669b5674 100644 --- a/gemfiles/jruby_9.3_stripe_latest.gemfile +++ b/gemfiles/jruby_9.3_stripe_latest.gemfile @@ -6,6 +6,7 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -18,15 +19,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "stripe" group :check do diff --git a/gemfiles/jruby_9.3_stripe_min.gemfile b/gemfiles/jruby_9.3_stripe_min.gemfile index ea7f0058f81..d949f8a4594 100644 --- a/gemfiles/jruby_9.3_stripe_min.gemfile +++ b/gemfiles/jruby_9.3_stripe_min.gemfile @@ -6,6 +6,7 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -18,15 +19,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "stripe", "= 5.15.0" group :check do diff --git a/gemfiles/jruby_9.4_activesupport.gemfile b/gemfiles/jruby_9.4_activesupport.gemfile index 17bc67a774d..f166292bd21 100644 --- a/gemfiles/jruby_9.4_activesupport.gemfile +++ b/gemfiles/jruby_9.4_activesupport.gemfile @@ -6,6 +6,7 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -18,16 +19,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "activesupport", "~> 7" gem "actionpack" gem "actionview" diff --git a/gemfiles/jruby_9.4_aws.gemfile b/gemfiles/jruby_9.4_aws.gemfile index 07e052cadf3..fdecb96e6db 100644 --- a/gemfiles/jruby_9.4_aws.gemfile +++ b/gemfiles/jruby_9.4_aws.gemfile @@ -6,6 +6,7 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -18,16 +19,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "aws-sdk" gem "shoryuken" diff --git a/gemfiles/jruby_9.4_contrib.gemfile b/gemfiles/jruby_9.4_contrib.gemfile index 57e0fee920e..f4426db9aac 100644 --- a/gemfiles/jruby_9.4_contrib.gemfile +++ b/gemfiles/jruby_9.4_contrib.gemfile @@ -6,6 +6,7 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -18,16 +19,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "dalli", ">= 3.0.0" gem "mongo", ">= 2.8.0", "< 2.15.0" gem "rack-test" diff --git a/gemfiles/jruby_9.4_contrib_old.gemfile b/gemfiles/jruby_9.4_contrib_old.gemfile index fb57582d825..ecf863268e9 100644 --- a/gemfiles/jruby_9.4_contrib_old.gemfile +++ b/gemfiles/jruby_9.4_contrib_old.gemfile @@ -6,6 +6,7 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -18,16 +19,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "dalli", "< 3.0.0" gem "presto-client", ">= 0.5.14" gem "qless", "0.10.0" diff --git a/gemfiles/jruby_9.4_core_old.gemfile b/gemfiles/jruby_9.4_core_old.gemfile index 10865922359..28f6254095c 100644 --- a/gemfiles/jruby_9.4_core_old.gemfile +++ b/gemfiles/jruby_9.4_core_old.gemfile @@ -6,6 +6,7 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", "~> 4" gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -18,16 +19,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", "~> 4" group :check do diff --git a/gemfiles/jruby_9.4_elasticsearch_7.gemfile b/gemfiles/jruby_9.4_elasticsearch_7.gemfile index 05d01791595..e1651a1b8db 100644 --- a/gemfiles/jruby_9.4_elasticsearch_7.gemfile +++ b/gemfiles/jruby_9.4_elasticsearch_7.gemfile @@ -6,6 +6,7 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -18,16 +19,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "elasticsearch", "~> 7" group :check do diff --git a/gemfiles/jruby_9.4_elasticsearch_8.gemfile b/gemfiles/jruby_9.4_elasticsearch_8.gemfile index b791706e8bb..c145d6cf987 100644 --- a/gemfiles/jruby_9.4_elasticsearch_8.gemfile +++ b/gemfiles/jruby_9.4_elasticsearch_8.gemfile @@ -6,6 +6,7 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -18,16 +19,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "elasticsearch", "~> 8" group :check do diff --git a/gemfiles/jruby_9.4_elasticsearch_latest.gemfile b/gemfiles/jruby_9.4_elasticsearch_latest.gemfile index 8921f5fd201..a5d452480ad 100644 --- a/gemfiles/jruby_9.4_elasticsearch_latest.gemfile +++ b/gemfiles/jruby_9.4_elasticsearch_latest.gemfile @@ -6,6 +6,7 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -18,16 +19,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "elasticsearch" group :check do diff --git a/gemfiles/jruby_9.4_graphql_1.13.gemfile b/gemfiles/jruby_9.4_graphql_1.13.gemfile index 773a2dead57..1f6c820f226 100644 --- a/gemfiles/jruby_9.4_graphql_1.13.gemfile +++ b/gemfiles/jruby_9.4_graphql_1.13.gemfile @@ -6,6 +6,7 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -18,16 +19,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "rails", "~> 6.1.0" gem "graphql", "~> 1.13.0" gem "sprockets", "< 4" diff --git a/gemfiles/jruby_9.4_graphql_2.0.gemfile b/gemfiles/jruby_9.4_graphql_2.0.gemfile index 6183b4fb45f..7393613bb9e 100644 --- a/gemfiles/jruby_9.4_graphql_2.0.gemfile +++ b/gemfiles/jruby_9.4_graphql_2.0.gemfile @@ -6,6 +6,7 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -18,16 +19,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "rails", "~> 6.1.0" gem "graphql", "~> 2.0.0" gem "sprockets", "< 4" diff --git a/gemfiles/jruby_9.4_graphql_2.1.gemfile b/gemfiles/jruby_9.4_graphql_2.1.gemfile index 7a1c21a6952..843163dd655 100644 --- a/gemfiles/jruby_9.4_graphql_2.1.gemfile +++ b/gemfiles/jruby_9.4_graphql_2.1.gemfile @@ -6,6 +6,7 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -18,16 +19,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "rails", "~> 6.1.0" gem "graphql", "~> 2.1.0" gem "sprockets", "< 4" diff --git a/gemfiles/jruby_9.4_graphql_2.2.gemfile b/gemfiles/jruby_9.4_graphql_2.2.gemfile index f4310c259b2..929a1dd95cb 100644 --- a/gemfiles/jruby_9.4_graphql_2.2.gemfile +++ b/gemfiles/jruby_9.4_graphql_2.2.gemfile @@ -6,6 +6,7 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -18,16 +19,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "rails", "~> 6.1.0" gem "graphql", "~> 2.2.0" gem "sprockets", "< 4" diff --git a/gemfiles/jruby_9.4_graphql_2.3.gemfile b/gemfiles/jruby_9.4_graphql_2.3.gemfile index 280c3347143..965a62d1152 100644 --- a/gemfiles/jruby_9.4_graphql_2.3.gemfile +++ b/gemfiles/jruby_9.4_graphql_2.3.gemfile @@ -6,6 +6,7 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -18,16 +19,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "rails", "~> 6.1.0" gem "graphql", "~> 2.3.0" gem "sprockets", "< 4" diff --git a/gemfiles/jruby_9.4_http.gemfile b/gemfiles/jruby_9.4_http.gemfile index c38a738d4ff..62343839449 100644 --- a/gemfiles/jruby_9.4_http.gemfile +++ b/gemfiles/jruby_9.4_http.gemfile @@ -6,6 +6,7 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -18,16 +19,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "ethon" gem "excon" gem "faraday" diff --git a/gemfiles/jruby_9.4_opensearch_2.gemfile b/gemfiles/jruby_9.4_opensearch_2.gemfile index 4ddb81f627d..a4f9f7d6b1a 100644 --- a/gemfiles/jruby_9.4_opensearch_2.gemfile +++ b/gemfiles/jruby_9.4_opensearch_2.gemfile @@ -6,6 +6,7 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -18,16 +19,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "opensearch-ruby", "~> 2" group :check do diff --git a/gemfiles/jruby_9.4_opensearch_3.gemfile b/gemfiles/jruby_9.4_opensearch_3.gemfile index 0c9407375b9..b10644cb295 100644 --- a/gemfiles/jruby_9.4_opensearch_3.gemfile +++ b/gemfiles/jruby_9.4_opensearch_3.gemfile @@ -6,6 +6,7 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -18,16 +19,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "opensearch-ruby", "~> 3" group :check do diff --git a/gemfiles/jruby_9.4_opensearch_latest.gemfile b/gemfiles/jruby_9.4_opensearch_latest.gemfile index 8c62c366306..a3b637b9fed 100644 --- a/gemfiles/jruby_9.4_opensearch_latest.gemfile +++ b/gemfiles/jruby_9.4_opensearch_latest.gemfile @@ -6,6 +6,7 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -18,16 +19,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "opensearch-ruby" group :check do diff --git a/gemfiles/jruby_9.4_rack_1.gemfile b/gemfiles/jruby_9.4_rack_1.gemfile index 30cf83dec7a..122d61d9f80 100644 --- a/gemfiles/jruby_9.4_rack_1.gemfile +++ b/gemfiles/jruby_9.4_rack_1.gemfile @@ -6,6 +6,7 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -18,16 +19,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "rack", "~> 1" gem "rack-contrib" gem "rack-test" diff --git a/gemfiles/jruby_9.4_rack_2.gemfile b/gemfiles/jruby_9.4_rack_2.gemfile index 13dc70e332e..c2674e6899b 100644 --- a/gemfiles/jruby_9.4_rack_2.gemfile +++ b/gemfiles/jruby_9.4_rack_2.gemfile @@ -6,6 +6,7 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -18,16 +19,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "rack", "~> 2" gem "rack-contrib" gem "rack-test" diff --git a/gemfiles/jruby_9.4_rack_3.gemfile b/gemfiles/jruby_9.4_rack_3.gemfile index 6739c43a021..bdc19358d10 100644 --- a/gemfiles/jruby_9.4_rack_3.gemfile +++ b/gemfiles/jruby_9.4_rack_3.gemfile @@ -6,6 +6,7 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -18,16 +19,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "rack", "~> 3" gem "rack-contrib" gem "rack-test" diff --git a/gemfiles/jruby_9.4_rack_latest.gemfile b/gemfiles/jruby_9.4_rack_latest.gemfile index c3c449a5c2c..ee3a1a61a93 100644 --- a/gemfiles/jruby_9.4_rack_latest.gemfile +++ b/gemfiles/jruby_9.4_rack_latest.gemfile @@ -6,6 +6,7 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -18,16 +19,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "rack" gem "rack-contrib" gem "rack-test" diff --git a/gemfiles/jruby_9.4_rails61_mysql2.gemfile b/gemfiles/jruby_9.4_rails61_mysql2.gemfile index 548ad52672d..21c36d053d5 100644 --- a/gemfiles/jruby_9.4_rails61_mysql2.gemfile +++ b/gemfiles/jruby_9.4_rails61_mysql2.gemfile @@ -6,6 +6,7 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -18,16 +19,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "rails", "~> 6.1.0" gem "activerecord-jdbcmysql-adapter", "~> 61.0", platform: :jruby gem "sprockets", "< 4" diff --git a/gemfiles/jruby_9.4_rails61_postgres.gemfile b/gemfiles/jruby_9.4_rails61_postgres.gemfile index 5369d933e84..1c31bd3b232 100644 --- a/gemfiles/jruby_9.4_rails61_postgres.gemfile +++ b/gemfiles/jruby_9.4_rails61_postgres.gemfile @@ -6,6 +6,7 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -18,16 +19,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "rails", "~> 6.1.0" gem "activerecord-jdbcpostgresql-adapter", platform: :jruby gem "sprockets", "< 4" diff --git a/gemfiles/jruby_9.4_rails61_postgres_redis.gemfile b/gemfiles/jruby_9.4_rails61_postgres_redis.gemfile index 9a4b6cbc15d..8ce41d1186f 100644 --- a/gemfiles/jruby_9.4_rails61_postgres_redis.gemfile +++ b/gemfiles/jruby_9.4_rails61_postgres_redis.gemfile @@ -6,6 +6,7 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -18,16 +19,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "rails", "~> 6.1.0" gem "activerecord-jdbcpostgresql-adapter", platform: :jruby gem "redis", "~> 4" diff --git a/gemfiles/jruby_9.4_rails61_postgres_sidekiq.gemfile b/gemfiles/jruby_9.4_rails61_postgres_sidekiq.gemfile index 0ba8d52df5c..f8d56da384f 100644 --- a/gemfiles/jruby_9.4_rails61_postgres_sidekiq.gemfile +++ b/gemfiles/jruby_9.4_rails61_postgres_sidekiq.gemfile @@ -6,6 +6,7 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -18,16 +19,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "rails", "~> 6.1.0" gem "activerecord-jdbcpostgresql-adapter", platform: :jruby gem "sidekiq", ">= 6.1.2" diff --git a/gemfiles/jruby_9.4_rails61_semantic_logger.gemfile b/gemfiles/jruby_9.4_rails61_semantic_logger.gemfile index 68c15816708..4842d67c23b 100644 --- a/gemfiles/jruby_9.4_rails61_semantic_logger.gemfile +++ b/gemfiles/jruby_9.4_rails61_semantic_logger.gemfile @@ -6,6 +6,7 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -18,16 +19,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "rails", "~> 6.1.0" gem "activerecord-jdbcpostgresql-adapter", platform: :jruby gem "sprockets", "< 4" diff --git a/gemfiles/jruby_9.4_rails_old_redis.gemfile b/gemfiles/jruby_9.4_rails_old_redis.gemfile index 643f9bbd829..8f017abb4aa 100644 --- a/gemfiles/jruby_9.4_rails_old_redis.gemfile +++ b/gemfiles/jruby_9.4_rails_old_redis.gemfile @@ -6,6 +6,7 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -18,16 +19,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "redis", "< 4" gem "rails", "~> 6.1.0" gem "activerecord-jdbcpostgresql-adapter", platform: :jruby diff --git a/gemfiles/jruby_9.4_redis_3.gemfile b/gemfiles/jruby_9.4_redis_3.gemfile index 1b4d944a89f..f1ee75ee4a9 100644 --- a/gemfiles/jruby_9.4_redis_3.gemfile +++ b/gemfiles/jruby_9.4_redis_3.gemfile @@ -6,6 +6,7 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -18,16 +19,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "redis", "~> 3" group :check do diff --git a/gemfiles/jruby_9.4_redis_4.gemfile b/gemfiles/jruby_9.4_redis_4.gemfile index 4687f41cc50..7cc92ce4438 100644 --- a/gemfiles/jruby_9.4_redis_4.gemfile +++ b/gemfiles/jruby_9.4_redis_4.gemfile @@ -6,6 +6,7 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -18,16 +19,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "redis", "~> 4" group :check do diff --git a/gemfiles/jruby_9.4_redis_5.gemfile b/gemfiles/jruby_9.4_redis_5.gemfile index 5eba14abfbb..dd218aae9c1 100644 --- a/gemfiles/jruby_9.4_redis_5.gemfile +++ b/gemfiles/jruby_9.4_redis_5.gemfile @@ -6,6 +6,7 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -18,16 +19,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "redis", "~> 5" group :check do diff --git a/gemfiles/jruby_9.4_relational_db.gemfile b/gemfiles/jruby_9.4_relational_db.gemfile index 273bd7a73dc..0c7e5595130 100644 --- a/gemfiles/jruby_9.4_relational_db.gemfile +++ b/gemfiles/jruby_9.4_relational_db.gemfile @@ -6,6 +6,7 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -18,16 +19,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "activerecord", "~> 6.1.0" gem "delayed_job" gem "delayed_job_active_record" diff --git a/gemfiles/jruby_9.4_resque2_redis3.gemfile b/gemfiles/jruby_9.4_resque2_redis3.gemfile index cbfa06de2b6..d21fc9a015f 100644 --- a/gemfiles/jruby_9.4_resque2_redis3.gemfile +++ b/gemfiles/jruby_9.4_resque2_redis3.gemfile @@ -6,6 +6,7 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -18,16 +19,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "redis", "< 4.0" gem "resque", ">= 2.0" diff --git a/gemfiles/jruby_9.4_resque2_redis4.gemfile b/gemfiles/jruby_9.4_resque2_redis4.gemfile index 3254dd94176..274de899131 100644 --- a/gemfiles/jruby_9.4_resque2_redis4.gemfile +++ b/gemfiles/jruby_9.4_resque2_redis4.gemfile @@ -6,6 +6,7 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -18,16 +19,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "redis", ">= 4.0" gem "resque", ">= 2.0" diff --git a/gemfiles/jruby_9.4_sinatra_2.gemfile b/gemfiles/jruby_9.4_sinatra_2.gemfile index 7ca044f0a87..7d51f4d8d46 100644 --- a/gemfiles/jruby_9.4_sinatra_2.gemfile +++ b/gemfiles/jruby_9.4_sinatra_2.gemfile @@ -6,6 +6,7 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -18,16 +19,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "sinatra", "~> 2" gem "rack-contrib" gem "rack-test" diff --git a/gemfiles/jruby_9.4_sinatra_3.gemfile b/gemfiles/jruby_9.4_sinatra_3.gemfile index 41f37cec70c..00e36fb44f7 100644 --- a/gemfiles/jruby_9.4_sinatra_3.gemfile +++ b/gemfiles/jruby_9.4_sinatra_3.gemfile @@ -6,6 +6,7 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -18,16 +19,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "sinatra", "~> 3" gem "rack-contrib" gem "rack-test" diff --git a/gemfiles/jruby_9.4_sinatra_4.gemfile b/gemfiles/jruby_9.4_sinatra_4.gemfile index b06750a1298..d74cd50101a 100644 --- a/gemfiles/jruby_9.4_sinatra_4.gemfile +++ b/gemfiles/jruby_9.4_sinatra_4.gemfile @@ -6,6 +6,7 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -18,16 +19,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "sinatra", "~> 4" gem "rack-contrib" gem "rack-test" diff --git a/gemfiles/jruby_9.4_stripe_10.gemfile b/gemfiles/jruby_9.4_stripe_10.gemfile index 05f5c05b0f0..8c5cf88169f 100644 --- a/gemfiles/jruby_9.4_stripe_10.gemfile +++ b/gemfiles/jruby_9.4_stripe_10.gemfile @@ -6,6 +6,7 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -18,16 +19,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "stripe", "~> 10" group :check do diff --git a/gemfiles/jruby_9.4_stripe_11.gemfile b/gemfiles/jruby_9.4_stripe_11.gemfile index f95eb2f5170..7e8cbf69b5e 100644 --- a/gemfiles/jruby_9.4_stripe_11.gemfile +++ b/gemfiles/jruby_9.4_stripe_11.gemfile @@ -6,6 +6,7 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -18,16 +19,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "stripe", "~> 11" group :check do diff --git a/gemfiles/jruby_9.4_stripe_12.gemfile b/gemfiles/jruby_9.4_stripe_12.gemfile index 3c2fb65e6a7..d890287bd7b 100644 --- a/gemfiles/jruby_9.4_stripe_12.gemfile +++ b/gemfiles/jruby_9.4_stripe_12.gemfile @@ -6,6 +6,7 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -18,16 +19,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "stripe", "~> 12" group :check do diff --git a/gemfiles/jruby_9.4_stripe_7.gemfile b/gemfiles/jruby_9.4_stripe_7.gemfile index 7fe7431025e..f8230c46ef9 100644 --- a/gemfiles/jruby_9.4_stripe_7.gemfile +++ b/gemfiles/jruby_9.4_stripe_7.gemfile @@ -6,6 +6,7 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -18,16 +19,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "stripe", "~> 7" group :check do diff --git a/gemfiles/jruby_9.4_stripe_8.gemfile b/gemfiles/jruby_9.4_stripe_8.gemfile index f1d19484fd3..320cc22e658 100644 --- a/gemfiles/jruby_9.4_stripe_8.gemfile +++ b/gemfiles/jruby_9.4_stripe_8.gemfile @@ -6,6 +6,7 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -18,16 +19,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "stripe", "~> 8" group :check do diff --git a/gemfiles/jruby_9.4_stripe_9.gemfile b/gemfiles/jruby_9.4_stripe_9.gemfile index 2a859a78df9..9924be0d0d2 100644 --- a/gemfiles/jruby_9.4_stripe_9.gemfile +++ b/gemfiles/jruby_9.4_stripe_9.gemfile @@ -6,6 +6,7 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -18,16 +19,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "stripe", "~> 9" group :check do diff --git a/gemfiles/jruby_9.4_stripe_latest.gemfile b/gemfiles/jruby_9.4_stripe_latest.gemfile index 3eaf4c37260..53b1daf2008 100644 --- a/gemfiles/jruby_9.4_stripe_latest.gemfile +++ b/gemfiles/jruby_9.4_stripe_latest.gemfile @@ -6,6 +6,7 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -18,16 +19,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "stripe" group :check do diff --git a/gemfiles/jruby_9.4_stripe_min.gemfile b/gemfiles/jruby_9.4_stripe_min.gemfile index ec3bfb870b7..70afe705378 100644 --- a/gemfiles/jruby_9.4_stripe_min.gemfile +++ b/gemfiles/jruby_9.4_stripe_min.gemfile @@ -6,6 +6,7 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -18,16 +19,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "stripe", "= 5.15.0" group :check do From 57c4e2c76569b3dc543ffdb15514e966a1bb9090 Mon Sep 17 00:00:00 2001 From: sarahchen6 Date: Wed, 11 Dec 2024 15:40:26 +0000 Subject: [PATCH 047/161] =?UTF-8?q?[=F0=9F=A4=96]=20Lock=20Dependency:=20h?= =?UTF-8?q?ttps://github.com/DataDog/dd-trace-rb/actions/runs/12279652045?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- gemfiles/ruby_2.5_activesupport.gemfile | 4 ++-- gemfiles/ruby_2.5_aws.gemfile | 4 ++-- gemfiles/ruby_2.5_contrib.gemfile | 4 ++-- gemfiles/ruby_2.5_contrib_old.gemfile | 4 ++-- gemfiles/ruby_2.5_core_old.gemfile | 4 ++-- gemfiles/ruby_2.5_elasticsearch_7.gemfile | 4 ++-- gemfiles/ruby_2.5_elasticsearch_8.gemfile | 4 ++-- gemfiles/ruby_2.5_elasticsearch_latest.gemfile | 4 ++-- gemfiles/ruby_2.5_graphql_2.0.gemfile | 4 ++-- gemfiles/ruby_2.5_hanami_1.gemfile | 4 ++-- gemfiles/ruby_2.5_http.gemfile | 4 ++-- gemfiles/ruby_2.5_opensearch_2.gemfile | 4 ++-- gemfiles/ruby_2.5_opensearch_3.gemfile | 4 ++-- gemfiles/ruby_2.5_opensearch_latest.gemfile | 4 ++-- gemfiles/ruby_2.5_rack_1.gemfile | 4 ++-- gemfiles/ruby_2.5_rack_2.gemfile | 4 ++-- gemfiles/ruby_2.5_rack_3.gemfile | 4 ++-- gemfiles/ruby_2.5_rack_latest.gemfile | 4 ++-- gemfiles/ruby_2.5_rails4_mysql2.gemfile | 4 ++-- gemfiles/ruby_2.5_rails4_postgres.gemfile | 4 ++-- gemfiles/ruby_2.5_rails4_postgres_redis.gemfile | 4 ++-- gemfiles/ruby_2.5_rails4_postgres_sidekiq.gemfile | 4 ++-- gemfiles/ruby_2.5_rails4_semantic_logger.gemfile | 4 ++-- gemfiles/ruby_2.5_rails5_mysql2.gemfile | 4 ++-- gemfiles/ruby_2.5_rails5_postgres.gemfile | 4 ++-- gemfiles/ruby_2.5_rails5_postgres_redis.gemfile | 4 ++-- ...y_2.5_rails5_postgres_redis_activesupport.gemfile | 4 ++-- gemfiles/ruby_2.5_rails5_postgres_sidekiq.gemfile | 4 ++-- gemfiles/ruby_2.5_rails5_semantic_logger.gemfile | 4 ++-- gemfiles/ruby_2.5_rails61_mysql2.gemfile | 4 ++-- gemfiles/ruby_2.5_rails61_postgres.gemfile | 4 ++-- gemfiles/ruby_2.5_rails61_postgres_redis.gemfile | 4 ++-- gemfiles/ruby_2.5_rails61_postgres_sidekiq.gemfile | 4 ++-- gemfiles/ruby_2.5_rails61_semantic_logger.gemfile | 4 ++-- gemfiles/ruby_2.5_rails6_mysql2.gemfile | 4 ++-- gemfiles/ruby_2.5_rails6_postgres.gemfile | 4 ++-- gemfiles/ruby_2.5_rails6_postgres_redis.gemfile | 4 ++-- ...y_2.5_rails6_postgres_redis_activesupport.gemfile | 4 ++-- gemfiles/ruby_2.5_rails6_postgres_sidekiq.gemfile | 4 ++-- gemfiles/ruby_2.5_rails6_semantic_logger.gemfile | 4 ++-- gemfiles/ruby_2.5_rails_old_redis.gemfile | 4 ++-- gemfiles/ruby_2.5_redis_3.gemfile | 4 ++-- gemfiles/ruby_2.5_redis_4.gemfile | 4 ++-- gemfiles/ruby_2.5_redis_5.gemfile | 4 ++-- gemfiles/ruby_2.5_relational_db.gemfile | 4 ++-- gemfiles/ruby_2.5_resque2_redis3.gemfile | 4 ++-- gemfiles/ruby_2.5_resque2_redis4.gemfile | 4 ++-- gemfiles/ruby_2.5_sinatra_2.gemfile | 4 ++-- gemfiles/ruby_2.5_stripe_10.gemfile | 4 ++-- gemfiles/ruby_2.5_stripe_11.gemfile | 4 ++-- gemfiles/ruby_2.5_stripe_12.gemfile | 4 ++-- gemfiles/ruby_2.5_stripe_7.gemfile | 4 ++-- gemfiles/ruby_2.5_stripe_8.gemfile | 4 ++-- gemfiles/ruby_2.5_stripe_9.gemfile | 4 ++-- gemfiles/ruby_2.5_stripe_latest.gemfile | 4 ++-- gemfiles/ruby_2.5_stripe_min.gemfile | 4 ++-- gemfiles/ruby_2.6_activesupport.gemfile | 12 ++++++------ gemfiles/ruby_2.6_aws.gemfile | 12 ++++++------ gemfiles/ruby_2.6_contrib.gemfile | 12 ++++++------ gemfiles/ruby_2.6_contrib_old.gemfile | 12 ++++++------ gemfiles/ruby_2.6_core_old.gemfile | 12 ++++++------ gemfiles/ruby_2.6_elasticsearch_7.gemfile | 12 ++++++------ gemfiles/ruby_2.6_elasticsearch_8.gemfile | 12 ++++++------ gemfiles/ruby_2.6_elasticsearch_latest.gemfile | 12 ++++++------ gemfiles/ruby_2.6_graphql_1.13.gemfile | 12 ++++++------ gemfiles/ruby_2.6_graphql_2.0.gemfile | 12 ++++++------ gemfiles/ruby_2.6_hanami_1.gemfile | 12 ++++++------ gemfiles/ruby_2.6_http.gemfile | 12 ++++++------ gemfiles/ruby_2.6_opensearch_2.gemfile | 12 ++++++------ gemfiles/ruby_2.6_opensearch_3.gemfile | 12 ++++++------ gemfiles/ruby_2.6_opensearch_latest.gemfile | 12 ++++++------ gemfiles/ruby_2.6_opentelemetry.gemfile | 12 ++++++------ gemfiles/ruby_2.6_opentelemetry_otlp.gemfile | 12 ++++++------ gemfiles/ruby_2.6_rack_1.gemfile | 12 ++++++------ gemfiles/ruby_2.6_rack_2.gemfile | 12 ++++++------ gemfiles/ruby_2.6_rack_3.gemfile | 12 ++++++------ gemfiles/ruby_2.6_rack_latest.gemfile | 12 ++++++------ gemfiles/ruby_2.6_rails5_mysql2.gemfile | 12 ++++++------ gemfiles/ruby_2.6_rails5_postgres.gemfile | 12 ++++++------ gemfiles/ruby_2.6_rails5_postgres_redis.gemfile | 12 ++++++------ ...y_2.6_rails5_postgres_redis_activesupport.gemfile | 12 ++++++------ gemfiles/ruby_2.6_rails5_postgres_sidekiq.gemfile | 12 ++++++------ gemfiles/ruby_2.6_rails5_semantic_logger.gemfile | 12 ++++++------ gemfiles/ruby_2.6_rails61_mysql2.gemfile | 12 ++++++------ gemfiles/ruby_2.6_rails61_postgres.gemfile | 12 ++++++------ gemfiles/ruby_2.6_rails61_postgres_redis.gemfile | 12 ++++++------ gemfiles/ruby_2.6_rails61_postgres_sidekiq.gemfile | 12 ++++++------ gemfiles/ruby_2.6_rails61_semantic_logger.gemfile | 12 ++++++------ gemfiles/ruby_2.6_rails6_mysql2.gemfile | 12 ++++++------ gemfiles/ruby_2.6_rails6_postgres.gemfile | 12 ++++++------ gemfiles/ruby_2.6_rails6_postgres_redis.gemfile | 12 ++++++------ ...y_2.6_rails6_postgres_redis_activesupport.gemfile | 12 ++++++------ gemfiles/ruby_2.6_rails6_postgres_sidekiq.gemfile | 12 ++++++------ gemfiles/ruby_2.6_rails6_semantic_logger.gemfile | 12 ++++++------ gemfiles/ruby_2.6_rails_old_redis.gemfile | 12 ++++++------ gemfiles/ruby_2.6_redis_3.gemfile | 12 ++++++------ gemfiles/ruby_2.6_redis_4.gemfile | 12 ++++++------ gemfiles/ruby_2.6_redis_5.gemfile | 12 ++++++------ gemfiles/ruby_2.6_relational_db.gemfile | 12 ++++++------ gemfiles/ruby_2.6_resque2_redis3.gemfile | 12 ++++++------ gemfiles/ruby_2.6_resque2_redis4.gemfile | 12 ++++++------ gemfiles/ruby_2.6_sinatra_2.gemfile | 12 ++++++------ gemfiles/ruby_2.6_sinatra_3.gemfile | 12 ++++++------ gemfiles/ruby_2.6_stripe_10.gemfile | 12 ++++++------ gemfiles/ruby_2.6_stripe_11.gemfile | 12 ++++++------ gemfiles/ruby_2.6_stripe_12.gemfile | 12 ++++++------ gemfiles/ruby_2.6_stripe_7.gemfile | 12 ++++++------ gemfiles/ruby_2.6_stripe_8.gemfile | 12 ++++++------ gemfiles/ruby_2.6_stripe_9.gemfile | 12 ++++++------ gemfiles/ruby_2.6_stripe_latest.gemfile | 12 ++++++------ gemfiles/ruby_2.6_stripe_min.gemfile | 12 ++++++------ gemfiles/ruby_2.7_activesupport.gemfile | 12 ++++++------ gemfiles/ruby_2.7_aws.gemfile | 12 ++++++------ gemfiles/ruby_2.7_contrib.gemfile | 12 ++++++------ gemfiles/ruby_2.7_contrib_old.gemfile | 12 ++++++------ gemfiles/ruby_2.7_core_old.gemfile | 12 ++++++------ gemfiles/ruby_2.7_elasticsearch_7.gemfile | 12 ++++++------ gemfiles/ruby_2.7_elasticsearch_8.gemfile | 12 ++++++------ gemfiles/ruby_2.7_elasticsearch_latest.gemfile | 12 ++++++------ gemfiles/ruby_2.7_graphql_1.13.gemfile | 12 ++++++------ gemfiles/ruby_2.7_graphql_2.0.gemfile | 12 ++++++------ gemfiles/ruby_2.7_graphql_2.1.gemfile | 12 ++++++------ gemfiles/ruby_2.7_graphql_2.2.gemfile | 12 ++++++------ gemfiles/ruby_2.7_graphql_2.3.gemfile | 12 ++++++------ gemfiles/ruby_2.7_hanami_1.gemfile | 12 ++++++------ gemfiles/ruby_2.7_http.gemfile | 12 ++++++------ gemfiles/ruby_2.7_opensearch_2.gemfile | 12 ++++++------ gemfiles/ruby_2.7_opensearch_3.gemfile | 12 ++++++------ gemfiles/ruby_2.7_opensearch_latest.gemfile | 12 ++++++------ gemfiles/ruby_2.7_opentelemetry.gemfile | 12 ++++++------ gemfiles/ruby_2.7_opentelemetry_otlp.gemfile | 12 ++++++------ gemfiles/ruby_2.7_rack_1.gemfile | 12 ++++++------ gemfiles/ruby_2.7_rack_2.gemfile | 12 ++++++------ gemfiles/ruby_2.7_rack_3.gemfile | 12 ++++++------ gemfiles/ruby_2.7_rack_latest.gemfile | 12 ++++++------ gemfiles/ruby_2.7_rails5_mysql2.gemfile | 12 ++++++------ gemfiles/ruby_2.7_rails5_postgres.gemfile | 12 ++++++------ gemfiles/ruby_2.7_rails5_postgres_redis.gemfile | 12 ++++++------ ...y_2.7_rails5_postgres_redis_activesupport.gemfile | 12 ++++++------ gemfiles/ruby_2.7_rails5_postgres_sidekiq.gemfile | 12 ++++++------ gemfiles/ruby_2.7_rails5_semantic_logger.gemfile | 12 ++++++------ gemfiles/ruby_2.7_rails61_mysql2.gemfile | 12 ++++++------ gemfiles/ruby_2.7_rails61_postgres.gemfile | 12 ++++++------ gemfiles/ruby_2.7_rails61_postgres_redis.gemfile | 12 ++++++------ gemfiles/ruby_2.7_rails61_postgres_sidekiq.gemfile | 12 ++++++------ gemfiles/ruby_2.7_rails61_semantic_logger.gemfile | 12 ++++++------ gemfiles/ruby_2.7_rails6_mysql2.gemfile | 12 ++++++------ gemfiles/ruby_2.7_rails6_postgres.gemfile | 12 ++++++------ gemfiles/ruby_2.7_rails6_postgres_redis.gemfile | 12 ++++++------ ...y_2.7_rails6_postgres_redis_activesupport.gemfile | 12 ++++++------ gemfiles/ruby_2.7_rails6_postgres_sidekiq.gemfile | 12 ++++++------ gemfiles/ruby_2.7_rails6_semantic_logger.gemfile | 12 ++++++------ gemfiles/ruby_2.7_rails_old_redis.gemfile | 12 ++++++------ gemfiles/ruby_2.7_redis_3.gemfile | 12 ++++++------ gemfiles/ruby_2.7_redis_4.gemfile | 12 ++++++------ gemfiles/ruby_2.7_redis_5.gemfile | 12 ++++++------ gemfiles/ruby_2.7_relational_db.gemfile | 12 ++++++------ gemfiles/ruby_2.7_resque2_redis3.gemfile | 12 ++++++------ gemfiles/ruby_2.7_resque2_redis4.gemfile | 12 ++++++------ gemfiles/ruby_2.7_sinatra_2.gemfile | 12 ++++++------ gemfiles/ruby_2.7_sinatra_3.gemfile | 12 ++++++------ gemfiles/ruby_2.7_stripe_10.gemfile | 12 ++++++------ gemfiles/ruby_2.7_stripe_11.gemfile | 12 ++++++------ gemfiles/ruby_2.7_stripe_12.gemfile | 12 ++++++------ gemfiles/ruby_2.7_stripe_7.gemfile | 12 ++++++------ gemfiles/ruby_2.7_stripe_8.gemfile | 12 ++++++------ gemfiles/ruby_2.7_stripe_9.gemfile | 12 ++++++------ gemfiles/ruby_2.7_stripe_latest.gemfile | 12 ++++++------ gemfiles/ruby_2.7_stripe_min.gemfile | 12 ++++++------ 169 files changed, 790 insertions(+), 790 deletions(-) diff --git a/gemfiles/ruby_2.5_activesupport.gemfile b/gemfiles/ruby_2.5_activesupport.gemfile index a1e5cfb8cd1..1e8ac33d286 100644 --- a/gemfiles/ruby_2.5_activesupport.gemfile +++ b/gemfiles/ruby_2.5_activesupport.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -24,8 +26,6 @@ gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "activesupport", "~> 5" gem "actionpack" gem "actionview" diff --git a/gemfiles/ruby_2.5_aws.gemfile b/gemfiles/ruby_2.5_aws.gemfile index 9fbf9c12164..52dc5a5885f 100644 --- a/gemfiles/ruby_2.5_aws.gemfile +++ b/gemfiles/ruby_2.5_aws.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -24,8 +26,6 @@ gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "aws-sdk" gem "shoryuken" diff --git a/gemfiles/ruby_2.5_contrib.gemfile b/gemfiles/ruby_2.5_contrib.gemfile index a5fdba30905..f258c75eed4 100644 --- a/gemfiles/ruby_2.5_contrib.gemfile +++ b/gemfiles/ruby_2.5_contrib.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -24,8 +26,6 @@ gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "dalli", ">= 3.0.0" gem "grpc", platform: :ruby gem "mongo", ">= 2.8.0", "< 2.15.0" diff --git a/gemfiles/ruby_2.5_contrib_old.gemfile b/gemfiles/ruby_2.5_contrib_old.gemfile index 9105c5c196b..1cc1169184a 100644 --- a/gemfiles/ruby_2.5_contrib_old.gemfile +++ b/gemfiles/ruby_2.5_contrib_old.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -24,8 +26,6 @@ gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "dalli", "< 3.0.0" gem "faraday", "0.17" gem "presto-client", ">= 0.5.14" diff --git a/gemfiles/ruby_2.5_core_old.gemfile b/gemfiles/ruby_2.5_core_old.gemfile index ddade5bcebb..213dcac5145 100644 --- a/gemfiles/ruby_2.5_core_old.gemfile +++ b/gemfiles/ruby_2.5_core_old.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", "~> 4" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -24,8 +26,6 @@ gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" -gem "dogstatsd-ruby", "~> 4" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] group :check do diff --git a/gemfiles/ruby_2.5_elasticsearch_7.gemfile b/gemfiles/ruby_2.5_elasticsearch_7.gemfile index 818c64d6c70..3d530af4682 100644 --- a/gemfiles/ruby_2.5_elasticsearch_7.gemfile +++ b/gemfiles/ruby_2.5_elasticsearch_7.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -24,8 +26,6 @@ gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "elasticsearch", "~> 7" group :check do diff --git a/gemfiles/ruby_2.5_elasticsearch_8.gemfile b/gemfiles/ruby_2.5_elasticsearch_8.gemfile index 75ccf3781cf..df5a2ddeed2 100644 --- a/gemfiles/ruby_2.5_elasticsearch_8.gemfile +++ b/gemfiles/ruby_2.5_elasticsearch_8.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -24,8 +26,6 @@ gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "elasticsearch", "~> 8" group :check do diff --git a/gemfiles/ruby_2.5_elasticsearch_latest.gemfile b/gemfiles/ruby_2.5_elasticsearch_latest.gemfile index bf55937985f..76606fcdafc 100644 --- a/gemfiles/ruby_2.5_elasticsearch_latest.gemfile +++ b/gemfiles/ruby_2.5_elasticsearch_latest.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -24,8 +26,6 @@ gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "elasticsearch" group :check do diff --git a/gemfiles/ruby_2.5_graphql_2.0.gemfile b/gemfiles/ruby_2.5_graphql_2.0.gemfile index a971938ea13..d05e973d562 100644 --- a/gemfiles/ruby_2.5_graphql_2.0.gemfile +++ b/gemfiles/ruby_2.5_graphql_2.0.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -24,8 +26,6 @@ gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "rails", "~> 6.1.0" gem "graphql", "~> 2.0.0" gem "sprockets", "< 4" diff --git a/gemfiles/ruby_2.5_hanami_1.gemfile b/gemfiles/ruby_2.5_hanami_1.gemfile index bee92ed95d5..afafc70bbf6 100644 --- a/gemfiles/ruby_2.5_hanami_1.gemfile +++ b/gemfiles/ruby_2.5_hanami_1.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -24,8 +26,6 @@ gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "rack" gem "rack-test" gem "hanami", "~> 1" diff --git a/gemfiles/ruby_2.5_http.gemfile b/gemfiles/ruby_2.5_http.gemfile index 1f482cf7fd2..d814586626a 100644 --- a/gemfiles/ruby_2.5_http.gemfile +++ b/gemfiles/ruby_2.5_http.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -24,8 +26,6 @@ gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "ethon" gem "excon" gem "faraday" diff --git a/gemfiles/ruby_2.5_opensearch_2.gemfile b/gemfiles/ruby_2.5_opensearch_2.gemfile index 2f5254b1d79..408907d1602 100644 --- a/gemfiles/ruby_2.5_opensearch_2.gemfile +++ b/gemfiles/ruby_2.5_opensearch_2.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -24,8 +26,6 @@ gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "opensearch-ruby", "~> 2" group :check do diff --git a/gemfiles/ruby_2.5_opensearch_3.gemfile b/gemfiles/ruby_2.5_opensearch_3.gemfile index fe1d920ac76..c99ceb8f6b0 100644 --- a/gemfiles/ruby_2.5_opensearch_3.gemfile +++ b/gemfiles/ruby_2.5_opensearch_3.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -24,8 +26,6 @@ gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "opensearch-ruby", "~> 3" group :check do diff --git a/gemfiles/ruby_2.5_opensearch_latest.gemfile b/gemfiles/ruby_2.5_opensearch_latest.gemfile index 88e97bc7f70..1b6b732cad0 100644 --- a/gemfiles/ruby_2.5_opensearch_latest.gemfile +++ b/gemfiles/ruby_2.5_opensearch_latest.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -24,8 +26,6 @@ gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "opensearch-ruby" group :check do diff --git a/gemfiles/ruby_2.5_rack_1.gemfile b/gemfiles/ruby_2.5_rack_1.gemfile index 3ebbe46a8d7..bbcd0b2fa87 100644 --- a/gemfiles/ruby_2.5_rack_1.gemfile +++ b/gemfiles/ruby_2.5_rack_1.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -24,8 +26,6 @@ gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "rack", "~> 1" gem "rack-contrib" gem "rack-test" diff --git a/gemfiles/ruby_2.5_rack_2.gemfile b/gemfiles/ruby_2.5_rack_2.gemfile index 51fdb0eeea3..039a866b0be 100644 --- a/gemfiles/ruby_2.5_rack_2.gemfile +++ b/gemfiles/ruby_2.5_rack_2.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -24,8 +26,6 @@ gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "rack", "~> 2" gem "rack-contrib" gem "rack-test" diff --git a/gemfiles/ruby_2.5_rack_3.gemfile b/gemfiles/ruby_2.5_rack_3.gemfile index a1d4174a563..0d74d695b82 100644 --- a/gemfiles/ruby_2.5_rack_3.gemfile +++ b/gemfiles/ruby_2.5_rack_3.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -24,8 +26,6 @@ gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "rack", "~> 3" gem "rack-contrib" gem "rack-test" diff --git a/gemfiles/ruby_2.5_rack_latest.gemfile b/gemfiles/ruby_2.5_rack_latest.gemfile index 4b87d4dec87..0165644932d 100644 --- a/gemfiles/ruby_2.5_rack_latest.gemfile +++ b/gemfiles/ruby_2.5_rack_latest.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -24,8 +26,6 @@ gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "rack" gem "rack-contrib" gem "rack-test" diff --git a/gemfiles/ruby_2.5_rails4_mysql2.gemfile b/gemfiles/ruby_2.5_rails4_mysql2.gemfile index ecf1210df19..a3ecf74d758 100644 --- a/gemfiles/ruby_2.5_rails4_mysql2.gemfile +++ b/gemfiles/ruby_2.5_rails4_mysql2.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -24,8 +26,6 @@ gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "rails", git: "https://github.com/DataDog/rails", ref: "592dfae8747db3bb28c3292a9730817f0fa76885" gem "mysql2", "< 1" gem "sprockets", "< 4" diff --git a/gemfiles/ruby_2.5_rails4_postgres.gemfile b/gemfiles/ruby_2.5_rails4_postgres.gemfile index 9cf2c22b63b..1973f9c7b94 100644 --- a/gemfiles/ruby_2.5_rails4_postgres.gemfile +++ b/gemfiles/ruby_2.5_rails4_postgres.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -24,8 +26,6 @@ gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "rails", git: "https://github.com/DataDog/rails", ref: "592dfae8747db3bb28c3292a9730817f0fa76885" gem "pg", "< 1.0" gem "sprockets", "< 4" diff --git a/gemfiles/ruby_2.5_rails4_postgres_redis.gemfile b/gemfiles/ruby_2.5_rails4_postgres_redis.gemfile index f8fe99bb503..0243d634c4d 100644 --- a/gemfiles/ruby_2.5_rails4_postgres_redis.gemfile +++ b/gemfiles/ruby_2.5_rails4_postgres_redis.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -24,8 +26,6 @@ gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "rails", git: "https://github.com/DataDog/rails", ref: "592dfae8747db3bb28c3292a9730817f0fa76885" gem "pg", "< 1.0" gem "redis-rails" diff --git a/gemfiles/ruby_2.5_rails4_postgres_sidekiq.gemfile b/gemfiles/ruby_2.5_rails4_postgres_sidekiq.gemfile index 8610029eeab..fd777daa147 100644 --- a/gemfiles/ruby_2.5_rails4_postgres_sidekiq.gemfile +++ b/gemfiles/ruby_2.5_rails4_postgres_sidekiq.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -24,8 +26,6 @@ gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "rails", git: "https://github.com/DataDog/rails", ref: "592dfae8747db3bb28c3292a9730817f0fa76885" gem "pg", "< 1.0" gem "sidekiq" diff --git a/gemfiles/ruby_2.5_rails4_semantic_logger.gemfile b/gemfiles/ruby_2.5_rails4_semantic_logger.gemfile index c24759096be..342ccae0881 100644 --- a/gemfiles/ruby_2.5_rails4_semantic_logger.gemfile +++ b/gemfiles/ruby_2.5_rails4_semantic_logger.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -24,8 +26,6 @@ gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "rails", git: "https://github.com/DataDog/rails", ref: "592dfae8747db3bb28c3292a9730817f0fa76885" gem "pg", "< 1.0" gem "sprockets", "< 4" diff --git a/gemfiles/ruby_2.5_rails5_mysql2.gemfile b/gemfiles/ruby_2.5_rails5_mysql2.gemfile index 88f7d3476fd..66e9d4943fb 100644 --- a/gemfiles/ruby_2.5_rails5_mysql2.gemfile +++ b/gemfiles/ruby_2.5_rails5_mysql2.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -24,8 +26,6 @@ gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "rails", "~> 5.2.1" gem "mysql2", "< 1", platform: :ruby gem "sprockets", "< 4" diff --git a/gemfiles/ruby_2.5_rails5_postgres.gemfile b/gemfiles/ruby_2.5_rails5_postgres.gemfile index 9cc5a0e4720..b9ef8f3253c 100644 --- a/gemfiles/ruby_2.5_rails5_postgres.gemfile +++ b/gemfiles/ruby_2.5_rails5_postgres.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -24,8 +26,6 @@ gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "rails", "~> 5.2.1" gem "pg", "< 1.0", platform: :ruby gem "sprockets", "< 4" diff --git a/gemfiles/ruby_2.5_rails5_postgres_redis.gemfile b/gemfiles/ruby_2.5_rails5_postgres_redis.gemfile index 806c12b4b90..13382573bb2 100644 --- a/gemfiles/ruby_2.5_rails5_postgres_redis.gemfile +++ b/gemfiles/ruby_2.5_rails5_postgres_redis.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -24,8 +26,6 @@ gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "rails", "~> 5.2.1" gem "pg", "< 1.0", platform: :ruby gem "redis", ">= 4.0.1" diff --git a/gemfiles/ruby_2.5_rails5_postgres_redis_activesupport.gemfile b/gemfiles/ruby_2.5_rails5_postgres_redis_activesupport.gemfile index 3677f4543dd..29b954cacaa 100644 --- a/gemfiles/ruby_2.5_rails5_postgres_redis_activesupport.gemfile +++ b/gemfiles/ruby_2.5_rails5_postgres_redis_activesupport.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -24,8 +26,6 @@ gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "rails", "~> 5.2.1" gem "pg", "< 1.0", platform: :ruby gem "redis", "~> 4" diff --git a/gemfiles/ruby_2.5_rails5_postgres_sidekiq.gemfile b/gemfiles/ruby_2.5_rails5_postgres_sidekiq.gemfile index 1a2a1fb50ac..7fdeaaa0770 100644 --- a/gemfiles/ruby_2.5_rails5_postgres_sidekiq.gemfile +++ b/gemfiles/ruby_2.5_rails5_postgres_sidekiq.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -24,8 +26,6 @@ gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "rails", "~> 5.2.1" gem "pg", "< 1.0", platform: :ruby gem "sidekiq" diff --git a/gemfiles/ruby_2.5_rails5_semantic_logger.gemfile b/gemfiles/ruby_2.5_rails5_semantic_logger.gemfile index 7736dfb69e2..55b0e436e7e 100644 --- a/gemfiles/ruby_2.5_rails5_semantic_logger.gemfile +++ b/gemfiles/ruby_2.5_rails5_semantic_logger.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -24,8 +26,6 @@ gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "rails", "~> 5.2.1" gem "pg", "< 1.0", platform: :ruby gem "sprockets", "< 4" diff --git a/gemfiles/ruby_2.5_rails61_mysql2.gemfile b/gemfiles/ruby_2.5_rails61_mysql2.gemfile index 9472a945ed4..fde871885f1 100644 --- a/gemfiles/ruby_2.5_rails61_mysql2.gemfile +++ b/gemfiles/ruby_2.5_rails61_mysql2.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -24,8 +26,6 @@ gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "rails", "~> 6.1.0" gem "mysql2", "~> 0.5", platform: :ruby gem "sprockets", "< 4" diff --git a/gemfiles/ruby_2.5_rails61_postgres.gemfile b/gemfiles/ruby_2.5_rails61_postgres.gemfile index f5c1d40533c..dc19a3d027f 100644 --- a/gemfiles/ruby_2.5_rails61_postgres.gemfile +++ b/gemfiles/ruby_2.5_rails61_postgres.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -24,8 +26,6 @@ gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "rails", "~> 6.1.0" gem "pg", ">= 1.1", platform: :ruby gem "sprockets", "< 4" diff --git a/gemfiles/ruby_2.5_rails61_postgres_redis.gemfile b/gemfiles/ruby_2.5_rails61_postgres_redis.gemfile index f742286c012..f65ceea8ae3 100644 --- a/gemfiles/ruby_2.5_rails61_postgres_redis.gemfile +++ b/gemfiles/ruby_2.5_rails61_postgres_redis.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -24,8 +26,6 @@ gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "rails", "~> 6.1.0" gem "pg", ">= 1.1", platform: :ruby gem "redis", ">= 4.2.5" diff --git a/gemfiles/ruby_2.5_rails61_postgres_sidekiq.gemfile b/gemfiles/ruby_2.5_rails61_postgres_sidekiq.gemfile index 2374c0fe9c9..dab4854a51e 100644 --- a/gemfiles/ruby_2.5_rails61_postgres_sidekiq.gemfile +++ b/gemfiles/ruby_2.5_rails61_postgres_sidekiq.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -24,8 +26,6 @@ gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "rails", "~> 6.1.0" gem "pg", ">= 1.1", platform: :ruby gem "sidekiq", ">= 6.1.2" diff --git a/gemfiles/ruby_2.5_rails61_semantic_logger.gemfile b/gemfiles/ruby_2.5_rails61_semantic_logger.gemfile index d00130a49ed..fc8169abd2c 100644 --- a/gemfiles/ruby_2.5_rails61_semantic_logger.gemfile +++ b/gemfiles/ruby_2.5_rails61_semantic_logger.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -24,8 +26,6 @@ gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "rails", "~> 6.1.0" gem "pg", ">= 1.1", platform: :ruby gem "sprockets", "< 4" diff --git a/gemfiles/ruby_2.5_rails6_mysql2.gemfile b/gemfiles/ruby_2.5_rails6_mysql2.gemfile index 73b7a83cdf5..b754bb44b74 100644 --- a/gemfiles/ruby_2.5_rails6_mysql2.gemfile +++ b/gemfiles/ruby_2.5_rails6_mysql2.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -24,8 +26,6 @@ gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "rails", "~> 6.0.0" gem "mysql2", "< 1", platform: :ruby gem "sprockets", "< 4" diff --git a/gemfiles/ruby_2.5_rails6_postgres.gemfile b/gemfiles/ruby_2.5_rails6_postgres.gemfile index 4f0651ac722..0f0c43b0a5d 100644 --- a/gemfiles/ruby_2.5_rails6_postgres.gemfile +++ b/gemfiles/ruby_2.5_rails6_postgres.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -24,8 +26,6 @@ gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "rails", "~> 6.0.0" gem "pg", "< 1.0", platform: :ruby gem "sprockets", "< 4" diff --git a/gemfiles/ruby_2.5_rails6_postgres_redis.gemfile b/gemfiles/ruby_2.5_rails6_postgres_redis.gemfile index 54b34b74b16..4135f8bf0af 100644 --- a/gemfiles/ruby_2.5_rails6_postgres_redis.gemfile +++ b/gemfiles/ruby_2.5_rails6_postgres_redis.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -24,8 +26,6 @@ gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "rails", "~> 6.0.0" gem "pg", "< 1.0", platform: :ruby gem "redis", ">= 4.0.1" diff --git a/gemfiles/ruby_2.5_rails6_postgres_redis_activesupport.gemfile b/gemfiles/ruby_2.5_rails6_postgres_redis_activesupport.gemfile index 5fa99a95e56..32cdb1ca168 100644 --- a/gemfiles/ruby_2.5_rails6_postgres_redis_activesupport.gemfile +++ b/gemfiles/ruby_2.5_rails6_postgres_redis_activesupport.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -24,8 +26,6 @@ gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "rails", "~> 6.0.0" gem "pg", "< 1.0", platform: :ruby gem "redis", "~> 4" diff --git a/gemfiles/ruby_2.5_rails6_postgres_sidekiq.gemfile b/gemfiles/ruby_2.5_rails6_postgres_sidekiq.gemfile index 28cb702b96c..febcf73740b 100644 --- a/gemfiles/ruby_2.5_rails6_postgres_sidekiq.gemfile +++ b/gemfiles/ruby_2.5_rails6_postgres_sidekiq.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -24,8 +26,6 @@ gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "rails", "~> 6.0.0" gem "pg", "< 1.0", platform: :ruby gem "sidekiq" diff --git a/gemfiles/ruby_2.5_rails6_semantic_logger.gemfile b/gemfiles/ruby_2.5_rails6_semantic_logger.gemfile index 5dbcae64248..f6f28c9eeac 100644 --- a/gemfiles/ruby_2.5_rails6_semantic_logger.gemfile +++ b/gemfiles/ruby_2.5_rails6_semantic_logger.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -24,8 +26,6 @@ gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "rails", "~> 6.0.0" gem "pg", "< 1.0", platform: :ruby gem "sprockets", "< 4" diff --git a/gemfiles/ruby_2.5_rails_old_redis.gemfile b/gemfiles/ruby_2.5_rails_old_redis.gemfile index f6a144fa6f9..d2e76a8fba0 100644 --- a/gemfiles/ruby_2.5_rails_old_redis.gemfile +++ b/gemfiles/ruby_2.5_rails_old_redis.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -24,8 +26,6 @@ gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "redis", "< 4" gem "rails", "~> 6.1.0" gem "pg", ">= 1.1", platform: :ruby diff --git a/gemfiles/ruby_2.5_redis_3.gemfile b/gemfiles/ruby_2.5_redis_3.gemfile index 7f02dec0877..f490491bdf9 100644 --- a/gemfiles/ruby_2.5_redis_3.gemfile +++ b/gemfiles/ruby_2.5_redis_3.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -24,8 +26,6 @@ gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "redis", "~> 3" group :check do diff --git a/gemfiles/ruby_2.5_redis_4.gemfile b/gemfiles/ruby_2.5_redis_4.gemfile index ebf0281da9f..2b7e0423307 100644 --- a/gemfiles/ruby_2.5_redis_4.gemfile +++ b/gemfiles/ruby_2.5_redis_4.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -24,8 +26,6 @@ gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "redis", "~> 4" group :check do diff --git a/gemfiles/ruby_2.5_redis_5.gemfile b/gemfiles/ruby_2.5_redis_5.gemfile index 152c18248c7..178602b15be 100644 --- a/gemfiles/ruby_2.5_redis_5.gemfile +++ b/gemfiles/ruby_2.5_redis_5.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -24,8 +26,6 @@ gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "redis", "~> 5" group :check do diff --git a/gemfiles/ruby_2.5_relational_db.gemfile b/gemfiles/ruby_2.5_relational_db.gemfile index 2b18ca2ad1e..327f1c9546e 100644 --- a/gemfiles/ruby_2.5_relational_db.gemfile +++ b/gemfiles/ruby_2.5_relational_db.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -24,8 +26,6 @@ gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "activerecord", "~> 5" gem "delayed_job" gem "delayed_job_active_record" diff --git a/gemfiles/ruby_2.5_resque2_redis3.gemfile b/gemfiles/ruby_2.5_resque2_redis3.gemfile index 6bde2503149..3a806751698 100644 --- a/gemfiles/ruby_2.5_resque2_redis3.gemfile +++ b/gemfiles/ruby_2.5_resque2_redis3.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -24,8 +26,6 @@ gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "redis", "< 4.0" gem "resque", ">= 2.0" diff --git a/gemfiles/ruby_2.5_resque2_redis4.gemfile b/gemfiles/ruby_2.5_resque2_redis4.gemfile index 2829c002d37..e6628a6c6fc 100644 --- a/gemfiles/ruby_2.5_resque2_redis4.gemfile +++ b/gemfiles/ruby_2.5_resque2_redis4.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -24,8 +26,6 @@ gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "redis", ">= 4.0" gem "resque", ">= 2.0" diff --git a/gemfiles/ruby_2.5_sinatra_2.gemfile b/gemfiles/ruby_2.5_sinatra_2.gemfile index 4e679bfdd57..9d275510750 100644 --- a/gemfiles/ruby_2.5_sinatra_2.gemfile +++ b/gemfiles/ruby_2.5_sinatra_2.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -24,8 +26,6 @@ gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "sinatra", "~> 2" gem "rack-contrib" gem "rack-test" diff --git a/gemfiles/ruby_2.5_stripe_10.gemfile b/gemfiles/ruby_2.5_stripe_10.gemfile index beabcf47e4b..25c4375e490 100644 --- a/gemfiles/ruby_2.5_stripe_10.gemfile +++ b/gemfiles/ruby_2.5_stripe_10.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -24,8 +26,6 @@ gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "stripe", "~> 10" group :check do diff --git a/gemfiles/ruby_2.5_stripe_11.gemfile b/gemfiles/ruby_2.5_stripe_11.gemfile index cb8e8b0d179..dded38b5802 100644 --- a/gemfiles/ruby_2.5_stripe_11.gemfile +++ b/gemfiles/ruby_2.5_stripe_11.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -24,8 +26,6 @@ gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "stripe", "~> 11" group :check do diff --git a/gemfiles/ruby_2.5_stripe_12.gemfile b/gemfiles/ruby_2.5_stripe_12.gemfile index e999dc54b6c..0572b1e6eb1 100644 --- a/gemfiles/ruby_2.5_stripe_12.gemfile +++ b/gemfiles/ruby_2.5_stripe_12.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -24,8 +26,6 @@ gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "stripe", "~> 12" group :check do diff --git a/gemfiles/ruby_2.5_stripe_7.gemfile b/gemfiles/ruby_2.5_stripe_7.gemfile index 5acd056d30e..5a3fa1e241c 100644 --- a/gemfiles/ruby_2.5_stripe_7.gemfile +++ b/gemfiles/ruby_2.5_stripe_7.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -24,8 +26,6 @@ gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "stripe", "~> 7" group :check do diff --git a/gemfiles/ruby_2.5_stripe_8.gemfile b/gemfiles/ruby_2.5_stripe_8.gemfile index 4ddfbfb5cbe..b409510dc13 100644 --- a/gemfiles/ruby_2.5_stripe_8.gemfile +++ b/gemfiles/ruby_2.5_stripe_8.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -24,8 +26,6 @@ gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "stripe", "~> 8" group :check do diff --git a/gemfiles/ruby_2.5_stripe_9.gemfile b/gemfiles/ruby_2.5_stripe_9.gemfile index 0398b82222b..ca224503071 100644 --- a/gemfiles/ruby_2.5_stripe_9.gemfile +++ b/gemfiles/ruby_2.5_stripe_9.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -24,8 +26,6 @@ gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "stripe", "~> 9" group :check do diff --git a/gemfiles/ruby_2.5_stripe_latest.gemfile b/gemfiles/ruby_2.5_stripe_latest.gemfile index ee5cae325c4..362b1fc9ca6 100644 --- a/gemfiles/ruby_2.5_stripe_latest.gemfile +++ b/gemfiles/ruby_2.5_stripe_latest.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -24,8 +26,6 @@ gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "stripe" group :check do diff --git a/gemfiles/ruby_2.5_stripe_min.gemfile b/gemfiles/ruby_2.5_stripe_min.gemfile index b02b2a0fb2b..68427c9b543 100644 --- a/gemfiles/ruby_2.5_stripe_min.gemfile +++ b/gemfiles/ruby_2.5_stripe_min.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -24,8 +26,6 @@ gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "stripe", "= 5.15.0" group :check do diff --git a/gemfiles/ruby_2.6_activesupport.gemfile b/gemfiles/ruby_2.6_activesupport.gemfile index 28bb361b782..48b6d7b153c 100644 --- a/gemfiles/ruby_2.6_activesupport.gemfile +++ b/gemfiles/ruby_2.6_activesupport.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "activesupport", "~> 6.0.0" gem "actionpack" gem "actionview" diff --git a/gemfiles/ruby_2.6_aws.gemfile b/gemfiles/ruby_2.6_aws.gemfile index 03689cf9a21..1dc352e3dac 100644 --- a/gemfiles/ruby_2.6_aws.gemfile +++ b/gemfiles/ruby_2.6_aws.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "aws-sdk" gem "shoryuken" diff --git a/gemfiles/ruby_2.6_contrib.gemfile b/gemfiles/ruby_2.6_contrib.gemfile index 6aaeaa7b891..9270cf44dde 100644 --- a/gemfiles/ruby_2.6_contrib.gemfile +++ b/gemfiles/ruby_2.6_contrib.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "dalli", ">= 3.0.0" gem "grpc", platform: :ruby gem "mongo", ">= 2.8.0", "< 2.15.0" diff --git a/gemfiles/ruby_2.6_contrib_old.gemfile b/gemfiles/ruby_2.6_contrib_old.gemfile index a93a1e9014a..d5ba6888425 100644 --- a/gemfiles/ruby_2.6_contrib_old.gemfile +++ b/gemfiles/ruby_2.6_contrib_old.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "dalli", "< 3.0.0" gem "faraday", "0.17" gem "presto-client", ">= 0.5.14" diff --git a/gemfiles/ruby_2.6_core_old.gemfile b/gemfiles/ruby_2.6_core_old.gemfile index f5dbe9498c5..51127e7018b 100644 --- a/gemfiles/ruby_2.6_core_old.gemfile +++ b/gemfiles/ruby_2.6_core_old.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", "~> 4" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", "~> 4" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" group :check do diff --git a/gemfiles/ruby_2.6_elasticsearch_7.gemfile b/gemfiles/ruby_2.6_elasticsearch_7.gemfile index f33e0938265..18646538d77 100644 --- a/gemfiles/ruby_2.6_elasticsearch_7.gemfile +++ b/gemfiles/ruby_2.6_elasticsearch_7.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "elasticsearch", "~> 7" group :check do diff --git a/gemfiles/ruby_2.6_elasticsearch_8.gemfile b/gemfiles/ruby_2.6_elasticsearch_8.gemfile index 8ae83a9979e..990efceb5a4 100644 --- a/gemfiles/ruby_2.6_elasticsearch_8.gemfile +++ b/gemfiles/ruby_2.6_elasticsearch_8.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "elasticsearch", "~> 8" group :check do diff --git a/gemfiles/ruby_2.6_elasticsearch_latest.gemfile b/gemfiles/ruby_2.6_elasticsearch_latest.gemfile index dcb38081abb..5c792ff8b08 100644 --- a/gemfiles/ruby_2.6_elasticsearch_latest.gemfile +++ b/gemfiles/ruby_2.6_elasticsearch_latest.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "elasticsearch" group :check do diff --git a/gemfiles/ruby_2.6_graphql_1.13.gemfile b/gemfiles/ruby_2.6_graphql_1.13.gemfile index ffe59921cb1..73aa71c8048 100644 --- a/gemfiles/ruby_2.6_graphql_1.13.gemfile +++ b/gemfiles/ruby_2.6_graphql_1.13.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "rails", "~> 6.1.0" gem "graphql", "~> 1.13.0" gem "sprockets", "< 4" diff --git a/gemfiles/ruby_2.6_graphql_2.0.gemfile b/gemfiles/ruby_2.6_graphql_2.0.gemfile index af1641e3b01..330a837ae6e 100644 --- a/gemfiles/ruby_2.6_graphql_2.0.gemfile +++ b/gemfiles/ruby_2.6_graphql_2.0.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "rails", "~> 6.1.0" gem "graphql", "~> 2.0.0" gem "sprockets", "< 4" diff --git a/gemfiles/ruby_2.6_hanami_1.gemfile b/gemfiles/ruby_2.6_hanami_1.gemfile index 17ad6a47c40..d029867dc55 100644 --- a/gemfiles/ruby_2.6_hanami_1.gemfile +++ b/gemfiles/ruby_2.6_hanami_1.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "rack" gem "rack-test" gem "hanami", "~> 1" diff --git a/gemfiles/ruby_2.6_http.gemfile b/gemfiles/ruby_2.6_http.gemfile index df697dc8751..0cdb6a2a2b3 100644 --- a/gemfiles/ruby_2.6_http.gemfile +++ b/gemfiles/ruby_2.6_http.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "ethon" gem "excon" gem "faraday" diff --git a/gemfiles/ruby_2.6_opensearch_2.gemfile b/gemfiles/ruby_2.6_opensearch_2.gemfile index 04240c6293a..0e429b92efc 100644 --- a/gemfiles/ruby_2.6_opensearch_2.gemfile +++ b/gemfiles/ruby_2.6_opensearch_2.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "opensearch-ruby", "~> 2" group :check do diff --git a/gemfiles/ruby_2.6_opensearch_3.gemfile b/gemfiles/ruby_2.6_opensearch_3.gemfile index a0a8b3d1e78..f4109662b70 100644 --- a/gemfiles/ruby_2.6_opensearch_3.gemfile +++ b/gemfiles/ruby_2.6_opensearch_3.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "opensearch-ruby", "~> 3" group :check do diff --git a/gemfiles/ruby_2.6_opensearch_latest.gemfile b/gemfiles/ruby_2.6_opensearch_latest.gemfile index 5132d347eb2..4dc27d82408 100644 --- a/gemfiles/ruby_2.6_opensearch_latest.gemfile +++ b/gemfiles/ruby_2.6_opensearch_latest.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "opensearch-ruby" group :check do diff --git a/gemfiles/ruby_2.6_opentelemetry.gemfile b/gemfiles/ruby_2.6_opentelemetry.gemfile index 7f786771513..999ad79638f 100644 --- a/gemfiles/ruby_2.6_opentelemetry.gemfile +++ b/gemfiles/ruby_2.6_opentelemetry.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "opentelemetry-sdk", "~> 1.1" group :check do diff --git a/gemfiles/ruby_2.6_opentelemetry_otlp.gemfile b/gemfiles/ruby_2.6_opentelemetry_otlp.gemfile index 6c11269fb60..15637f77946 100644 --- a/gemfiles/ruby_2.6_opentelemetry_otlp.gemfile +++ b/gemfiles/ruby_2.6_opentelemetry_otlp.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "opentelemetry-sdk", "~> 1.1" gem "opentelemetry-exporter-otlp" diff --git a/gemfiles/ruby_2.6_rack_1.gemfile b/gemfiles/ruby_2.6_rack_1.gemfile index 5a5ab8f2293..f53cbc15399 100644 --- a/gemfiles/ruby_2.6_rack_1.gemfile +++ b/gemfiles/ruby_2.6_rack_1.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "rack", "~> 1" gem "rack-contrib" gem "rack-test" diff --git a/gemfiles/ruby_2.6_rack_2.gemfile b/gemfiles/ruby_2.6_rack_2.gemfile index 689bb6003af..04c86fcfeba 100644 --- a/gemfiles/ruby_2.6_rack_2.gemfile +++ b/gemfiles/ruby_2.6_rack_2.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "rack", "~> 2" gem "rack-contrib" gem "rack-test" diff --git a/gemfiles/ruby_2.6_rack_3.gemfile b/gemfiles/ruby_2.6_rack_3.gemfile index 2087df0e3d9..42db737efc0 100644 --- a/gemfiles/ruby_2.6_rack_3.gemfile +++ b/gemfiles/ruby_2.6_rack_3.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "rack", "~> 3" gem "rack-contrib" gem "rack-test" diff --git a/gemfiles/ruby_2.6_rack_latest.gemfile b/gemfiles/ruby_2.6_rack_latest.gemfile index 91f3108cfaf..b69f9ce1178 100644 --- a/gemfiles/ruby_2.6_rack_latest.gemfile +++ b/gemfiles/ruby_2.6_rack_latest.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "rack" gem "rack-contrib" gem "rack-test" diff --git a/gemfiles/ruby_2.6_rails5_mysql2.gemfile b/gemfiles/ruby_2.6_rails5_mysql2.gemfile index 3a30309b023..718ff6aa1b3 100644 --- a/gemfiles/ruby_2.6_rails5_mysql2.gemfile +++ b/gemfiles/ruby_2.6_rails5_mysql2.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "rails", "~> 5.2.1" gem "mysql2", "< 1", platform: :ruby gem "sprockets", "< 4" diff --git a/gemfiles/ruby_2.6_rails5_postgres.gemfile b/gemfiles/ruby_2.6_rails5_postgres.gemfile index 0ff18eac9b2..6f2fef4a19d 100644 --- a/gemfiles/ruby_2.6_rails5_postgres.gemfile +++ b/gemfiles/ruby_2.6_rails5_postgres.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "rails", "~> 5.2.1" gem "pg", "< 1.0", platform: :ruby gem "sprockets", "< 4" diff --git a/gemfiles/ruby_2.6_rails5_postgres_redis.gemfile b/gemfiles/ruby_2.6_rails5_postgres_redis.gemfile index 00528cf07df..84a9b4fa68a 100644 --- a/gemfiles/ruby_2.6_rails5_postgres_redis.gemfile +++ b/gemfiles/ruby_2.6_rails5_postgres_redis.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "rails", "~> 5.2.1" gem "pg", "< 1.0", platform: :ruby gem "redis", "~> 4" diff --git a/gemfiles/ruby_2.6_rails5_postgres_redis_activesupport.gemfile b/gemfiles/ruby_2.6_rails5_postgres_redis_activesupport.gemfile index 3b69185e5ba..e8c003504f3 100644 --- a/gemfiles/ruby_2.6_rails5_postgres_redis_activesupport.gemfile +++ b/gemfiles/ruby_2.6_rails5_postgres_redis_activesupport.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "rails", "~> 5.2.1" gem "pg", "< 1.0", platform: :ruby gem "redis", "~> 4" diff --git a/gemfiles/ruby_2.6_rails5_postgres_sidekiq.gemfile b/gemfiles/ruby_2.6_rails5_postgres_sidekiq.gemfile index 608b27b452b..c846ea91ad8 100644 --- a/gemfiles/ruby_2.6_rails5_postgres_sidekiq.gemfile +++ b/gemfiles/ruby_2.6_rails5_postgres_sidekiq.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "rails", "~> 5.2.1" gem "pg", "< 1.0", platform: :ruby gem "sidekiq" diff --git a/gemfiles/ruby_2.6_rails5_semantic_logger.gemfile b/gemfiles/ruby_2.6_rails5_semantic_logger.gemfile index 30109914aa5..2c16f6b5516 100644 --- a/gemfiles/ruby_2.6_rails5_semantic_logger.gemfile +++ b/gemfiles/ruby_2.6_rails5_semantic_logger.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "rails", "~> 5.2.1" gem "pg", "< 1.0", platform: :ruby gem "sprockets", "< 4" diff --git a/gemfiles/ruby_2.6_rails61_mysql2.gemfile b/gemfiles/ruby_2.6_rails61_mysql2.gemfile index 25e18a639db..f15d59ebd2f 100644 --- a/gemfiles/ruby_2.6_rails61_mysql2.gemfile +++ b/gemfiles/ruby_2.6_rails61_mysql2.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "rails", "~> 6.1.0" gem "mysql2", "~> 0.5", platform: :ruby gem "sprockets", "< 4" diff --git a/gemfiles/ruby_2.6_rails61_postgres.gemfile b/gemfiles/ruby_2.6_rails61_postgres.gemfile index 21d653954ea..be11227e256 100644 --- a/gemfiles/ruby_2.6_rails61_postgres.gemfile +++ b/gemfiles/ruby_2.6_rails61_postgres.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "rails", "~> 6.1.0" gem "pg", ">= 1.1", platform: :ruby gem "sprockets", "< 4" diff --git a/gemfiles/ruby_2.6_rails61_postgres_redis.gemfile b/gemfiles/ruby_2.6_rails61_postgres_redis.gemfile index 1bda171ed10..a0b5b9776cf 100644 --- a/gemfiles/ruby_2.6_rails61_postgres_redis.gemfile +++ b/gemfiles/ruby_2.6_rails61_postgres_redis.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "rails", "~> 6.1.0" gem "pg", ">= 1.1", platform: :ruby gem "redis", "~> 4" diff --git a/gemfiles/ruby_2.6_rails61_postgres_sidekiq.gemfile b/gemfiles/ruby_2.6_rails61_postgres_sidekiq.gemfile index 974b74cd631..eddc5b208c6 100644 --- a/gemfiles/ruby_2.6_rails61_postgres_sidekiq.gemfile +++ b/gemfiles/ruby_2.6_rails61_postgres_sidekiq.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "rails", "~> 6.1.0" gem "pg", ">= 1.1", platform: :ruby gem "sidekiq", ">= 6.1.2" diff --git a/gemfiles/ruby_2.6_rails61_semantic_logger.gemfile b/gemfiles/ruby_2.6_rails61_semantic_logger.gemfile index d066a1bb005..621a3dd2096 100644 --- a/gemfiles/ruby_2.6_rails61_semantic_logger.gemfile +++ b/gemfiles/ruby_2.6_rails61_semantic_logger.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "rails", "~> 6.1.0" gem "pg", ">= 1.1", platform: :ruby gem "sprockets", "< 4" diff --git a/gemfiles/ruby_2.6_rails6_mysql2.gemfile b/gemfiles/ruby_2.6_rails6_mysql2.gemfile index a68a3a5f4b3..46311935799 100644 --- a/gemfiles/ruby_2.6_rails6_mysql2.gemfile +++ b/gemfiles/ruby_2.6_rails6_mysql2.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "rails", "~> 6.0.0" gem "mysql2", "< 1", platform: :ruby gem "sprockets", "< 4" diff --git a/gemfiles/ruby_2.6_rails6_postgres.gemfile b/gemfiles/ruby_2.6_rails6_postgres.gemfile index 9d28578860d..71719beee89 100644 --- a/gemfiles/ruby_2.6_rails6_postgres.gemfile +++ b/gemfiles/ruby_2.6_rails6_postgres.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "rails", "~> 6.0.0" gem "pg", "< 1.0", platform: :ruby gem "sprockets", "< 4" diff --git a/gemfiles/ruby_2.6_rails6_postgres_redis.gemfile b/gemfiles/ruby_2.6_rails6_postgres_redis.gemfile index e14dc379943..dbb566efa99 100644 --- a/gemfiles/ruby_2.6_rails6_postgres_redis.gemfile +++ b/gemfiles/ruby_2.6_rails6_postgres_redis.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "rails", "~> 6.0.0" gem "pg", "< 1.0", platform: :ruby gem "redis", "~> 4" diff --git a/gemfiles/ruby_2.6_rails6_postgres_redis_activesupport.gemfile b/gemfiles/ruby_2.6_rails6_postgres_redis_activesupport.gemfile index 6d8c549ce09..f51aa07fe47 100644 --- a/gemfiles/ruby_2.6_rails6_postgres_redis_activesupport.gemfile +++ b/gemfiles/ruby_2.6_rails6_postgres_redis_activesupport.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "rails", "~> 6.0.0" gem "pg", "< 1.0", platform: :ruby gem "redis", "~> 4" diff --git a/gemfiles/ruby_2.6_rails6_postgres_sidekiq.gemfile b/gemfiles/ruby_2.6_rails6_postgres_sidekiq.gemfile index 69533982e5c..f1b6c471dc4 100644 --- a/gemfiles/ruby_2.6_rails6_postgres_sidekiq.gemfile +++ b/gemfiles/ruby_2.6_rails6_postgres_sidekiq.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "rails", "~> 6.0.0" gem "pg", "< 1.0", platform: :ruby gem "sidekiq" diff --git a/gemfiles/ruby_2.6_rails6_semantic_logger.gemfile b/gemfiles/ruby_2.6_rails6_semantic_logger.gemfile index 630b3610c8f..37ee449cfcb 100644 --- a/gemfiles/ruby_2.6_rails6_semantic_logger.gemfile +++ b/gemfiles/ruby_2.6_rails6_semantic_logger.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "rails", "~> 6.0.0" gem "pg", "< 1.0", platform: :ruby gem "sprockets", "< 4" diff --git a/gemfiles/ruby_2.6_rails_old_redis.gemfile b/gemfiles/ruby_2.6_rails_old_redis.gemfile index 672ac8d0500..cff6cbc61ca 100644 --- a/gemfiles/ruby_2.6_rails_old_redis.gemfile +++ b/gemfiles/ruby_2.6_rails_old_redis.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "redis", "< 4" gem "rails", "~> 6.1.0" gem "pg", ">= 1.1", platform: :ruby diff --git a/gemfiles/ruby_2.6_redis_3.gemfile b/gemfiles/ruby_2.6_redis_3.gemfile index e0f84bd3655..6133bafdb91 100644 --- a/gemfiles/ruby_2.6_redis_3.gemfile +++ b/gemfiles/ruby_2.6_redis_3.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "redis", "~> 3" group :check do diff --git a/gemfiles/ruby_2.6_redis_4.gemfile b/gemfiles/ruby_2.6_redis_4.gemfile index 6122cf2580d..edd7dea78ff 100644 --- a/gemfiles/ruby_2.6_redis_4.gemfile +++ b/gemfiles/ruby_2.6_redis_4.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "redis", "~> 4" group :check do diff --git a/gemfiles/ruby_2.6_redis_5.gemfile b/gemfiles/ruby_2.6_redis_5.gemfile index 574f002512a..7266e900cd9 100644 --- a/gemfiles/ruby_2.6_redis_5.gemfile +++ b/gemfiles/ruby_2.6_redis_5.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "redis", "~> 5" group :check do diff --git a/gemfiles/ruby_2.6_relational_db.gemfile b/gemfiles/ruby_2.6_relational_db.gemfile index 16d88f90e0a..d65892b0142 100644 --- a/gemfiles/ruby_2.6_relational_db.gemfile +++ b/gemfiles/ruby_2.6_relational_db.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "activerecord", "~> 6.0.0" gem "delayed_job" gem "delayed_job_active_record" diff --git a/gemfiles/ruby_2.6_resque2_redis3.gemfile b/gemfiles/ruby_2.6_resque2_redis3.gemfile index cf1b19830d6..d54ecb2060a 100644 --- a/gemfiles/ruby_2.6_resque2_redis3.gemfile +++ b/gemfiles/ruby_2.6_resque2_redis3.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "redis", "~> 3.0" gem "resque", ">= 2.0" diff --git a/gemfiles/ruby_2.6_resque2_redis4.gemfile b/gemfiles/ruby_2.6_resque2_redis4.gemfile index ff7f7ef06dd..3ff80d5435b 100644 --- a/gemfiles/ruby_2.6_resque2_redis4.gemfile +++ b/gemfiles/ruby_2.6_resque2_redis4.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "redis", "~> 4.0" gem "resque", ">= 2.0" diff --git a/gemfiles/ruby_2.6_sinatra_2.gemfile b/gemfiles/ruby_2.6_sinatra_2.gemfile index bcc2a53a499..f8785d68344 100644 --- a/gemfiles/ruby_2.6_sinatra_2.gemfile +++ b/gemfiles/ruby_2.6_sinatra_2.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "sinatra", "~> 2" gem "rack-contrib" gem "rack-test" diff --git a/gemfiles/ruby_2.6_sinatra_3.gemfile b/gemfiles/ruby_2.6_sinatra_3.gemfile index beff674d7fe..6cbb9b70751 100644 --- a/gemfiles/ruby_2.6_sinatra_3.gemfile +++ b/gemfiles/ruby_2.6_sinatra_3.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "sinatra", "~> 3" gem "rack-contrib" gem "rack-test" diff --git a/gemfiles/ruby_2.6_stripe_10.gemfile b/gemfiles/ruby_2.6_stripe_10.gemfile index ac3513676d9..bcec6cca1e4 100644 --- a/gemfiles/ruby_2.6_stripe_10.gemfile +++ b/gemfiles/ruby_2.6_stripe_10.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "stripe", "~> 10" group :check do diff --git a/gemfiles/ruby_2.6_stripe_11.gemfile b/gemfiles/ruby_2.6_stripe_11.gemfile index 001015afc3a..c1dbc7c6fdd 100644 --- a/gemfiles/ruby_2.6_stripe_11.gemfile +++ b/gemfiles/ruby_2.6_stripe_11.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "stripe", "~> 11" group :check do diff --git a/gemfiles/ruby_2.6_stripe_12.gemfile b/gemfiles/ruby_2.6_stripe_12.gemfile index 02dfc58a579..d55950bb7b6 100644 --- a/gemfiles/ruby_2.6_stripe_12.gemfile +++ b/gemfiles/ruby_2.6_stripe_12.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "stripe", "~> 12" group :check do diff --git a/gemfiles/ruby_2.6_stripe_7.gemfile b/gemfiles/ruby_2.6_stripe_7.gemfile index d6fbcfbdddf..f5b747d0068 100644 --- a/gemfiles/ruby_2.6_stripe_7.gemfile +++ b/gemfiles/ruby_2.6_stripe_7.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "stripe", "~> 7" group :check do diff --git a/gemfiles/ruby_2.6_stripe_8.gemfile b/gemfiles/ruby_2.6_stripe_8.gemfile index b1fe193422f..7a0910e3e2b 100644 --- a/gemfiles/ruby_2.6_stripe_8.gemfile +++ b/gemfiles/ruby_2.6_stripe_8.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "stripe", "~> 8" group :check do diff --git a/gemfiles/ruby_2.6_stripe_9.gemfile b/gemfiles/ruby_2.6_stripe_9.gemfile index f15f3357612..d9a019cf826 100644 --- a/gemfiles/ruby_2.6_stripe_9.gemfile +++ b/gemfiles/ruby_2.6_stripe_9.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "stripe", "~> 9" group :check do diff --git a/gemfiles/ruby_2.6_stripe_latest.gemfile b/gemfiles/ruby_2.6_stripe_latest.gemfile index fa74e22aaf7..72303e50de1 100644 --- a/gemfiles/ruby_2.6_stripe_latest.gemfile +++ b/gemfiles/ruby_2.6_stripe_latest.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "stripe" group :check do diff --git a/gemfiles/ruby_2.6_stripe_min.gemfile b/gemfiles/ruby_2.6_stripe_min.gemfile index d6e043133ec..ae393f168a1 100644 --- a/gemfiles/ruby_2.6_stripe_min.gemfile +++ b/gemfiles/ruby_2.6_stripe_min.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1", "< 3.19.2"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "stripe", "= 5.15.0" group :check do diff --git a/gemfiles/ruby_2.7_activesupport.gemfile b/gemfiles/ruby_2.7_activesupport.gemfile index 2e54aba10b5..6871d4e0092 100644 --- a/gemfiles/ruby_2.7_activesupport.gemfile +++ b/gemfiles/ruby_2.7_activesupport.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "activesupport", "~> 6.1.0" gem "actionpack" gem "actionview" diff --git a/gemfiles/ruby_2.7_aws.gemfile b/gemfiles/ruby_2.7_aws.gemfile index d80ef181ebc..cf90613f51f 100644 --- a/gemfiles/ruby_2.7_aws.gemfile +++ b/gemfiles/ruby_2.7_aws.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "aws-sdk" gem "shoryuken" diff --git a/gemfiles/ruby_2.7_contrib.gemfile b/gemfiles/ruby_2.7_contrib.gemfile index 55fb24671c1..717e758af49 100644 --- a/gemfiles/ruby_2.7_contrib.gemfile +++ b/gemfiles/ruby_2.7_contrib.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "dalli", ">= 3.0.0" gem "grpc" gem "mongo", ">= 2.8.0", "< 2.15.0" diff --git a/gemfiles/ruby_2.7_contrib_old.gemfile b/gemfiles/ruby_2.7_contrib_old.gemfile index 8ed1d3f7e45..302a3302341 100644 --- a/gemfiles/ruby_2.7_contrib_old.gemfile +++ b/gemfiles/ruby_2.7_contrib_old.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "dalli", "< 3.0.0" gem "faraday", "0.17" gem "presto-client", ">= 0.5.14" diff --git a/gemfiles/ruby_2.7_core_old.gemfile b/gemfiles/ruby_2.7_core_old.gemfile index 22b1f804d7d..76671c02ad2 100644 --- a/gemfiles/ruby_2.7_core_old.gemfile +++ b/gemfiles/ruby_2.7_core_old.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", "~> 4" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", "~> 4" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" group :check do diff --git a/gemfiles/ruby_2.7_elasticsearch_7.gemfile b/gemfiles/ruby_2.7_elasticsearch_7.gemfile index 831b1e68d49..485c12a2039 100644 --- a/gemfiles/ruby_2.7_elasticsearch_7.gemfile +++ b/gemfiles/ruby_2.7_elasticsearch_7.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "elasticsearch", "~> 7" group :check do diff --git a/gemfiles/ruby_2.7_elasticsearch_8.gemfile b/gemfiles/ruby_2.7_elasticsearch_8.gemfile index 851e3d04fc6..0ede1697126 100644 --- a/gemfiles/ruby_2.7_elasticsearch_8.gemfile +++ b/gemfiles/ruby_2.7_elasticsearch_8.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "elasticsearch", "~> 8" group :check do diff --git a/gemfiles/ruby_2.7_elasticsearch_latest.gemfile b/gemfiles/ruby_2.7_elasticsearch_latest.gemfile index aae99848851..cc4b764b89a 100644 --- a/gemfiles/ruby_2.7_elasticsearch_latest.gemfile +++ b/gemfiles/ruby_2.7_elasticsearch_latest.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "elasticsearch" group :check do diff --git a/gemfiles/ruby_2.7_graphql_1.13.gemfile b/gemfiles/ruby_2.7_graphql_1.13.gemfile index 6ca4425a920..05e12d8c62d 100644 --- a/gemfiles/ruby_2.7_graphql_1.13.gemfile +++ b/gemfiles/ruby_2.7_graphql_1.13.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "rails", "~> 6.1.0" gem "graphql", "~> 1.13.0" gem "sprockets", "< 4" diff --git a/gemfiles/ruby_2.7_graphql_2.0.gemfile b/gemfiles/ruby_2.7_graphql_2.0.gemfile index a29391cff5c..e859e5d99de 100644 --- a/gemfiles/ruby_2.7_graphql_2.0.gemfile +++ b/gemfiles/ruby_2.7_graphql_2.0.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "rails", "~> 6.1.0" gem "graphql", "~> 2.0.0" gem "sprockets", "< 4" diff --git a/gemfiles/ruby_2.7_graphql_2.1.gemfile b/gemfiles/ruby_2.7_graphql_2.1.gemfile index 7d828a77aff..292786791ab 100644 --- a/gemfiles/ruby_2.7_graphql_2.1.gemfile +++ b/gemfiles/ruby_2.7_graphql_2.1.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "rails", "~> 6.1.0" gem "graphql", "~> 2.1.0" gem "sprockets", "< 4" diff --git a/gemfiles/ruby_2.7_graphql_2.2.gemfile b/gemfiles/ruby_2.7_graphql_2.2.gemfile index 355de6c16ac..bd41ba58337 100644 --- a/gemfiles/ruby_2.7_graphql_2.2.gemfile +++ b/gemfiles/ruby_2.7_graphql_2.2.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "rails", "~> 6.1.0" gem "graphql", "~> 2.2.0" gem "sprockets", "< 4" diff --git a/gemfiles/ruby_2.7_graphql_2.3.gemfile b/gemfiles/ruby_2.7_graphql_2.3.gemfile index c0f89d95721..25fb5f44b8c 100644 --- a/gemfiles/ruby_2.7_graphql_2.3.gemfile +++ b/gemfiles/ruby_2.7_graphql_2.3.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "rails", "~> 6.1.0" gem "graphql", "~> 2.3.0" gem "sprockets", "< 4" diff --git a/gemfiles/ruby_2.7_hanami_1.gemfile b/gemfiles/ruby_2.7_hanami_1.gemfile index 8cd1628f5c4..9d5637de34a 100644 --- a/gemfiles/ruby_2.7_hanami_1.gemfile +++ b/gemfiles/ruby_2.7_hanami_1.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "rack" gem "rack-test" gem "hanami", "~> 1" diff --git a/gemfiles/ruby_2.7_http.gemfile b/gemfiles/ruby_2.7_http.gemfile index 6322ab13e59..45a7b298a59 100644 --- a/gemfiles/ruby_2.7_http.gemfile +++ b/gemfiles/ruby_2.7_http.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "ethon" gem "excon" gem "faraday" diff --git a/gemfiles/ruby_2.7_opensearch_2.gemfile b/gemfiles/ruby_2.7_opensearch_2.gemfile index 6ba2ed4a710..44946e07ab7 100644 --- a/gemfiles/ruby_2.7_opensearch_2.gemfile +++ b/gemfiles/ruby_2.7_opensearch_2.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "opensearch-ruby", "~> 2" group :check do diff --git a/gemfiles/ruby_2.7_opensearch_3.gemfile b/gemfiles/ruby_2.7_opensearch_3.gemfile index a66d1f21e9e..10c94c71a3a 100644 --- a/gemfiles/ruby_2.7_opensearch_3.gemfile +++ b/gemfiles/ruby_2.7_opensearch_3.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "opensearch-ruby", "~> 3" group :check do diff --git a/gemfiles/ruby_2.7_opensearch_latest.gemfile b/gemfiles/ruby_2.7_opensearch_latest.gemfile index a62051b83ad..d3fbdaaa0bc 100644 --- a/gemfiles/ruby_2.7_opensearch_latest.gemfile +++ b/gemfiles/ruby_2.7_opensearch_latest.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "opensearch-ruby" group :check do diff --git a/gemfiles/ruby_2.7_opentelemetry.gemfile b/gemfiles/ruby_2.7_opentelemetry.gemfile index caff1af8363..cf9b5de846c 100644 --- a/gemfiles/ruby_2.7_opentelemetry.gemfile +++ b/gemfiles/ruby_2.7_opentelemetry.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "opentelemetry-sdk", "~> 1.1" group :check do diff --git a/gemfiles/ruby_2.7_opentelemetry_otlp.gemfile b/gemfiles/ruby_2.7_opentelemetry_otlp.gemfile index 69616513e27..a27c9d85964 100644 --- a/gemfiles/ruby_2.7_opentelemetry_otlp.gemfile +++ b/gemfiles/ruby_2.7_opentelemetry_otlp.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "opentelemetry-sdk", "~> 1.1" gem "opentelemetry-exporter-otlp" diff --git a/gemfiles/ruby_2.7_rack_1.gemfile b/gemfiles/ruby_2.7_rack_1.gemfile index f3b8fd42f00..a2d690122ee 100644 --- a/gemfiles/ruby_2.7_rack_1.gemfile +++ b/gemfiles/ruby_2.7_rack_1.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "rack", "~> 1" gem "rack-contrib" gem "rack-test" diff --git a/gemfiles/ruby_2.7_rack_2.gemfile b/gemfiles/ruby_2.7_rack_2.gemfile index 25edee51990..2d041aaed0b 100644 --- a/gemfiles/ruby_2.7_rack_2.gemfile +++ b/gemfiles/ruby_2.7_rack_2.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "rack", "~> 2" gem "rack-contrib" gem "rack-test" diff --git a/gemfiles/ruby_2.7_rack_3.gemfile b/gemfiles/ruby_2.7_rack_3.gemfile index 3ac629174b7..abf80bf906a 100644 --- a/gemfiles/ruby_2.7_rack_3.gemfile +++ b/gemfiles/ruby_2.7_rack_3.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "rack", "~> 3" gem "rack-contrib" gem "rack-test" diff --git a/gemfiles/ruby_2.7_rack_latest.gemfile b/gemfiles/ruby_2.7_rack_latest.gemfile index 1bc2c967ee3..dcbd3f63f03 100644 --- a/gemfiles/ruby_2.7_rack_latest.gemfile +++ b/gemfiles/ruby_2.7_rack_latest.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "rack" gem "rack-contrib" gem "rack-test" diff --git a/gemfiles/ruby_2.7_rails5_mysql2.gemfile b/gemfiles/ruby_2.7_rails5_mysql2.gemfile index 87cefb2b101..4770fc30307 100644 --- a/gemfiles/ruby_2.7_rails5_mysql2.gemfile +++ b/gemfiles/ruby_2.7_rails5_mysql2.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "rails", "~> 5.2.1" gem "mysql2", "< 1", platform: :ruby gem "sprockets", "< 4" diff --git a/gemfiles/ruby_2.7_rails5_postgres.gemfile b/gemfiles/ruby_2.7_rails5_postgres.gemfile index 1c1b2d0bf2c..280bc9ef508 100644 --- a/gemfiles/ruby_2.7_rails5_postgres.gemfile +++ b/gemfiles/ruby_2.7_rails5_postgres.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "rails", "~> 5.2.1" gem "pg", "< 1.0", platform: :ruby gem "sprockets", "< 4" diff --git a/gemfiles/ruby_2.7_rails5_postgres_redis.gemfile b/gemfiles/ruby_2.7_rails5_postgres_redis.gemfile index 2f5b30201d6..eb210a177e9 100644 --- a/gemfiles/ruby_2.7_rails5_postgres_redis.gemfile +++ b/gemfiles/ruby_2.7_rails5_postgres_redis.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "rails", "~> 5.2.1" gem "pg", "< 1.0", platform: :ruby gem "redis", "~> 4" diff --git a/gemfiles/ruby_2.7_rails5_postgres_redis_activesupport.gemfile b/gemfiles/ruby_2.7_rails5_postgres_redis_activesupport.gemfile index dbfcd414a44..42ecf92382a 100644 --- a/gemfiles/ruby_2.7_rails5_postgres_redis_activesupport.gemfile +++ b/gemfiles/ruby_2.7_rails5_postgres_redis_activesupport.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "rails", "~> 5.2.1" gem "pg", "< 1.0", platform: :ruby gem "redis", "~> 4" diff --git a/gemfiles/ruby_2.7_rails5_postgres_sidekiq.gemfile b/gemfiles/ruby_2.7_rails5_postgres_sidekiq.gemfile index 539f31d0e5d..7c8dbcb73b5 100644 --- a/gemfiles/ruby_2.7_rails5_postgres_sidekiq.gemfile +++ b/gemfiles/ruby_2.7_rails5_postgres_sidekiq.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "rails", "~> 5.2.1" gem "pg", "< 1.0", platform: :ruby gem "sidekiq", "~> 6" diff --git a/gemfiles/ruby_2.7_rails5_semantic_logger.gemfile b/gemfiles/ruby_2.7_rails5_semantic_logger.gemfile index 95ebcf52525..6d15d53e25e 100644 --- a/gemfiles/ruby_2.7_rails5_semantic_logger.gemfile +++ b/gemfiles/ruby_2.7_rails5_semantic_logger.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "rails", "~> 5.2.1" gem "pg", "< 1.0", platform: :ruby gem "sprockets", "< 4" diff --git a/gemfiles/ruby_2.7_rails61_mysql2.gemfile b/gemfiles/ruby_2.7_rails61_mysql2.gemfile index 7e00c33d1cb..fe916b0e46c 100644 --- a/gemfiles/ruby_2.7_rails61_mysql2.gemfile +++ b/gemfiles/ruby_2.7_rails61_mysql2.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "rails", "~> 6.1.0" gem "mysql2", "~> 0.5", platform: :ruby gem "sprockets", "< 4" diff --git a/gemfiles/ruby_2.7_rails61_postgres.gemfile b/gemfiles/ruby_2.7_rails61_postgres.gemfile index a84854b00c1..51836759abf 100644 --- a/gemfiles/ruby_2.7_rails61_postgres.gemfile +++ b/gemfiles/ruby_2.7_rails61_postgres.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "rails", "~> 6.1.0" gem "pg", ">= 1.1", platform: :ruby gem "sprockets", "< 4" diff --git a/gemfiles/ruby_2.7_rails61_postgres_redis.gemfile b/gemfiles/ruby_2.7_rails61_postgres_redis.gemfile index 377b4385be7..0e8d2dd37f2 100644 --- a/gemfiles/ruby_2.7_rails61_postgres_redis.gemfile +++ b/gemfiles/ruby_2.7_rails61_postgres_redis.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "rails", "~> 6.1.0" gem "pg", ">= 1.1", platform: :ruby gem "redis", "~> 4" diff --git a/gemfiles/ruby_2.7_rails61_postgres_sidekiq.gemfile b/gemfiles/ruby_2.7_rails61_postgres_sidekiq.gemfile index 32ee0060bfd..7f54dbb405c 100644 --- a/gemfiles/ruby_2.7_rails61_postgres_sidekiq.gemfile +++ b/gemfiles/ruby_2.7_rails61_postgres_sidekiq.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "rails", "~> 6.1.0" gem "pg", ">= 1.1", platform: :ruby gem "sidekiq", ">= 6.1.2" diff --git a/gemfiles/ruby_2.7_rails61_semantic_logger.gemfile b/gemfiles/ruby_2.7_rails61_semantic_logger.gemfile index ff1ff6bf096..0eceffddbdc 100644 --- a/gemfiles/ruby_2.7_rails61_semantic_logger.gemfile +++ b/gemfiles/ruby_2.7_rails61_semantic_logger.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "rails", "~> 6.1.0" gem "pg", ">= 1.1", platform: :ruby gem "sprockets", "< 4" diff --git a/gemfiles/ruby_2.7_rails6_mysql2.gemfile b/gemfiles/ruby_2.7_rails6_mysql2.gemfile index 1064daf4528..5257c56c906 100644 --- a/gemfiles/ruby_2.7_rails6_mysql2.gemfile +++ b/gemfiles/ruby_2.7_rails6_mysql2.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "rails", "~> 6.0.0" gem "mysql2", "< 1", platform: :ruby gem "sprockets", "< 4" diff --git a/gemfiles/ruby_2.7_rails6_postgres.gemfile b/gemfiles/ruby_2.7_rails6_postgres.gemfile index c2fb7e3e160..5c4c1989101 100644 --- a/gemfiles/ruby_2.7_rails6_postgres.gemfile +++ b/gemfiles/ruby_2.7_rails6_postgres.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "rails", "~> 6.0.0" gem "pg", "< 1.0", platform: :ruby gem "sprockets", "< 4" diff --git a/gemfiles/ruby_2.7_rails6_postgres_redis.gemfile b/gemfiles/ruby_2.7_rails6_postgres_redis.gemfile index 7f38f697a54..f6b15327dcf 100644 --- a/gemfiles/ruby_2.7_rails6_postgres_redis.gemfile +++ b/gemfiles/ruby_2.7_rails6_postgres_redis.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "rails", "~> 6.0.0" gem "pg", "< 1.0", platform: :ruby gem "redis", "~> 4" diff --git a/gemfiles/ruby_2.7_rails6_postgres_redis_activesupport.gemfile b/gemfiles/ruby_2.7_rails6_postgres_redis_activesupport.gemfile index 03519b9690c..0c67fa2430d 100644 --- a/gemfiles/ruby_2.7_rails6_postgres_redis_activesupport.gemfile +++ b/gemfiles/ruby_2.7_rails6_postgres_redis_activesupport.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "rails", "~> 6.0.0" gem "pg", "< 1.0", platform: :ruby gem "redis", "~> 4" diff --git a/gemfiles/ruby_2.7_rails6_postgres_sidekiq.gemfile b/gemfiles/ruby_2.7_rails6_postgres_sidekiq.gemfile index 1766ab6cccb..16d8db86067 100644 --- a/gemfiles/ruby_2.7_rails6_postgres_sidekiq.gemfile +++ b/gemfiles/ruby_2.7_rails6_postgres_sidekiq.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "rails", "~> 6.0.0" gem "pg", "< 1.0", platform: :ruby gem "sidekiq", "~> 6" diff --git a/gemfiles/ruby_2.7_rails6_semantic_logger.gemfile b/gemfiles/ruby_2.7_rails6_semantic_logger.gemfile index da1d19541d1..91967d21748 100644 --- a/gemfiles/ruby_2.7_rails6_semantic_logger.gemfile +++ b/gemfiles/ruby_2.7_rails6_semantic_logger.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "rails", "~> 6.0.0" gem "pg", "< 1.0", platform: :ruby gem "sprockets", "< 4" diff --git a/gemfiles/ruby_2.7_rails_old_redis.gemfile b/gemfiles/ruby_2.7_rails_old_redis.gemfile index 963760610a1..264f661cb3f 100644 --- a/gemfiles/ruby_2.7_rails_old_redis.gemfile +++ b/gemfiles/ruby_2.7_rails_old_redis.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "redis", "< 4" gem "rails", "~> 6.1.0" gem "pg", ">= 1.1", platform: :ruby diff --git a/gemfiles/ruby_2.7_redis_3.gemfile b/gemfiles/ruby_2.7_redis_3.gemfile index 46edb4c521c..ace949b88ef 100644 --- a/gemfiles/ruby_2.7_redis_3.gemfile +++ b/gemfiles/ruby_2.7_redis_3.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "redis", "~> 3" group :check do diff --git a/gemfiles/ruby_2.7_redis_4.gemfile b/gemfiles/ruby_2.7_redis_4.gemfile index 707a37641d4..1836eb46c72 100644 --- a/gemfiles/ruby_2.7_redis_4.gemfile +++ b/gemfiles/ruby_2.7_redis_4.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "redis", "~> 4" group :check do diff --git a/gemfiles/ruby_2.7_redis_5.gemfile b/gemfiles/ruby_2.7_redis_5.gemfile index 43870a16ac6..edc30469c0f 100644 --- a/gemfiles/ruby_2.7_redis_5.gemfile +++ b/gemfiles/ruby_2.7_redis_5.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "redis", "~> 5" group :check do diff --git a/gemfiles/ruby_2.7_relational_db.gemfile b/gemfiles/ruby_2.7_relational_db.gemfile index fe8eefa6ce8..7c9a0846669 100644 --- a/gemfiles/ruby_2.7_relational_db.gemfile +++ b/gemfiles/ruby_2.7_relational_db.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "activerecord", "~> 6.1.0" gem "delayed_job" gem "delayed_job_active_record" diff --git a/gemfiles/ruby_2.7_resque2_redis3.gemfile b/gemfiles/ruby_2.7_resque2_redis3.gemfile index 523734758ec..d79794de7d1 100644 --- a/gemfiles/ruby_2.7_resque2_redis3.gemfile +++ b/gemfiles/ruby_2.7_resque2_redis3.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "redis", "< 4.0" gem "resque", ">= 2.0" diff --git a/gemfiles/ruby_2.7_resque2_redis4.gemfile b/gemfiles/ruby_2.7_resque2_redis4.gemfile index 36c58a59619..be8b9ceb700 100644 --- a/gemfiles/ruby_2.7_resque2_redis4.gemfile +++ b/gemfiles/ruby_2.7_resque2_redis4.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "redis", "~> 4.0" gem "resque", ">= 2.0" diff --git a/gemfiles/ruby_2.7_sinatra_2.gemfile b/gemfiles/ruby_2.7_sinatra_2.gemfile index 268b500bd2f..a634a4ca5fc 100644 --- a/gemfiles/ruby_2.7_sinatra_2.gemfile +++ b/gemfiles/ruby_2.7_sinatra_2.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "sinatra", "~> 2" gem "rack-contrib" gem "rack-test" diff --git a/gemfiles/ruby_2.7_sinatra_3.gemfile b/gemfiles/ruby_2.7_sinatra_3.gemfile index f57187211be..f6e24fd7705 100644 --- a/gemfiles/ruby_2.7_sinatra_3.gemfile +++ b/gemfiles/ruby_2.7_sinatra_3.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "sinatra", "~> 3" gem "rack-contrib" gem "rack-test" diff --git a/gemfiles/ruby_2.7_stripe_10.gemfile b/gemfiles/ruby_2.7_stripe_10.gemfile index 1423553d55f..30c2d604e6b 100644 --- a/gemfiles/ruby_2.7_stripe_10.gemfile +++ b/gemfiles/ruby_2.7_stripe_10.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "stripe", "~> 10" group :check do diff --git a/gemfiles/ruby_2.7_stripe_11.gemfile b/gemfiles/ruby_2.7_stripe_11.gemfile index b19b8f45b58..e62cd65191a 100644 --- a/gemfiles/ruby_2.7_stripe_11.gemfile +++ b/gemfiles/ruby_2.7_stripe_11.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "stripe", "~> 11" group :check do diff --git a/gemfiles/ruby_2.7_stripe_12.gemfile b/gemfiles/ruby_2.7_stripe_12.gemfile index f21616681ca..ee5c89c9826 100644 --- a/gemfiles/ruby_2.7_stripe_12.gemfile +++ b/gemfiles/ruby_2.7_stripe_12.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "stripe", "~> 12" group :check do diff --git a/gemfiles/ruby_2.7_stripe_7.gemfile b/gemfiles/ruby_2.7_stripe_7.gemfile index bb8de0c5b50..160bf01b3a2 100644 --- a/gemfiles/ruby_2.7_stripe_7.gemfile +++ b/gemfiles/ruby_2.7_stripe_7.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "stripe", "~> 7" group :check do diff --git a/gemfiles/ruby_2.7_stripe_8.gemfile b/gemfiles/ruby_2.7_stripe_8.gemfile index 92490a43bbe..71972f7bf68 100644 --- a/gemfiles/ruby_2.7_stripe_8.gemfile +++ b/gemfiles/ruby_2.7_stripe_8.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "stripe", "~> 8" group :check do diff --git a/gemfiles/ruby_2.7_stripe_9.gemfile b/gemfiles/ruby_2.7_stripe_9.gemfile index 25d9b71b3bd..8e30dbb8698 100644 --- a/gemfiles/ruby_2.7_stripe_9.gemfile +++ b/gemfiles/ruby_2.7_stripe_9.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "stripe", "~> 9" group :check do diff --git a/gemfiles/ruby_2.7_stripe_latest.gemfile b/gemfiles/ruby_2.7_stripe_latest.gemfile index 75395fcab65..1ff8df17cd5 100644 --- a/gemfiles/ruby_2.7_stripe_latest.gemfile +++ b/gemfiles/ruby_2.7_stripe_latest.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "stripe" group :check do diff --git a/gemfiles/ruby_2.7_stripe_min.gemfile b/gemfiles/ruby_2.7_stripe_min.gemfile index f86006c2cc4..6e038b2957b 100644 --- a/gemfiles/ruby_2.7_stripe_min.gemfile +++ b/gemfiles/ruby_2.7_stripe_min.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,16 +22,14 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" gem "stripe", "= 5.15.0" group :check do From ee5f6e15260a8c734eafac5530ea09946b57391b Mon Sep 17 00:00:00 2001 From: sarahchen6 Date: Wed, 11 Dec 2024 15:40:31 +0000 Subject: [PATCH 048/161] =?UTF-8?q?[=F0=9F=A4=96]=20Lock=20Dependency:=20h?= =?UTF-8?q?ttps://github.com/DataDog/dd-trace-rb/actions/runs/12279664120?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- gemfiles/ruby_3.0_activesupport.gemfile | 12 ++++++------ gemfiles/ruby_3.0_aws.gemfile | 12 ++++++------ gemfiles/ruby_3.0_contrib.gemfile | 12 ++++++------ gemfiles/ruby_3.0_contrib_old.gemfile | 12 ++++++------ gemfiles/ruby_3.0_core_old.gemfile | 12 ++++++------ gemfiles/ruby_3.0_elasticsearch_7.gemfile | 12 ++++++------ gemfiles/ruby_3.0_elasticsearch_8.gemfile | 12 ++++++------ gemfiles/ruby_3.0_elasticsearch_latest.gemfile | 12 ++++++------ gemfiles/ruby_3.0_graphql_1.13.gemfile | 12 ++++++------ gemfiles/ruby_3.0_graphql_2.0.gemfile | 12 ++++++------ gemfiles/ruby_3.0_graphql_2.1.gemfile | 12 ++++++------ gemfiles/ruby_3.0_graphql_2.2.gemfile | 12 ++++++------ gemfiles/ruby_3.0_graphql_2.3.gemfile | 12 ++++++------ gemfiles/ruby_3.0_http.gemfile | 12 ++++++------ gemfiles/ruby_3.0_opensearch_2.gemfile | 12 ++++++------ gemfiles/ruby_3.0_opensearch_3.gemfile | 12 ++++++------ gemfiles/ruby_3.0_opensearch_latest.gemfile | 12 ++++++------ gemfiles/ruby_3.0_opentelemetry.gemfile | 12 ++++++------ gemfiles/ruby_3.0_opentelemetry_otlp.gemfile | 12 ++++++------ gemfiles/ruby_3.0_rack_1.gemfile | 12 ++++++------ gemfiles/ruby_3.0_rack_2.gemfile | 12 ++++++------ gemfiles/ruby_3.0_rack_3.gemfile | 12 ++++++------ gemfiles/ruby_3.0_rack_latest.gemfile | 12 ++++++------ gemfiles/ruby_3.0_rails61_mysql2.gemfile | 12 ++++++------ gemfiles/ruby_3.0_rails61_postgres.gemfile | 12 ++++++------ gemfiles/ruby_3.0_rails61_postgres_redis.gemfile | 12 ++++++------ gemfiles/ruby_3.0_rails61_postgres_sidekiq.gemfile | 12 ++++++------ gemfiles/ruby_3.0_rails61_semantic_logger.gemfile | 12 ++++++------ gemfiles/ruby_3.0_rails61_trilogy.gemfile | 12 ++++++------ gemfiles/ruby_3.0_rails7.gemfile | 12 ++++++------ gemfiles/ruby_3.0_rails71.gemfile | 12 ++++++------ gemfiles/ruby_3.0_rails_old_redis.gemfile | 12 ++++++------ gemfiles/ruby_3.0_redis_3.gemfile | 12 ++++++------ gemfiles/ruby_3.0_redis_4.gemfile | 12 ++++++------ gemfiles/ruby_3.0_redis_5.gemfile | 12 ++++++------ gemfiles/ruby_3.0_relational_db.gemfile | 12 ++++++------ gemfiles/ruby_3.0_resque2_redis3.gemfile | 12 ++++++------ gemfiles/ruby_3.0_resque2_redis4.gemfile | 12 ++++++------ gemfiles/ruby_3.0_sinatra_2.gemfile | 12 ++++++------ gemfiles/ruby_3.0_sinatra_3.gemfile | 12 ++++++------ gemfiles/ruby_3.0_sinatra_4.gemfile | 12 ++++++------ gemfiles/ruby_3.0_stripe_10.gemfile | 12 ++++++------ gemfiles/ruby_3.0_stripe_11.gemfile | 12 ++++++------ gemfiles/ruby_3.0_stripe_12.gemfile | 12 ++++++------ gemfiles/ruby_3.0_stripe_7.gemfile | 12 ++++++------ gemfiles/ruby_3.0_stripe_8.gemfile | 12 ++++++------ gemfiles/ruby_3.0_stripe_9.gemfile | 12 ++++++------ gemfiles/ruby_3.0_stripe_latest.gemfile | 12 ++++++------ gemfiles/ruby_3.0_stripe_min.gemfile | 12 ++++++------ gemfiles/ruby_3.1_activesupport.gemfile | 12 ++++++------ gemfiles/ruby_3.1_aws.gemfile | 12 ++++++------ gemfiles/ruby_3.1_contrib.gemfile | 12 ++++++------ gemfiles/ruby_3.1_contrib_old.gemfile | 12 ++++++------ gemfiles/ruby_3.1_core_old.gemfile | 12 ++++++------ gemfiles/ruby_3.1_elasticsearch_7.gemfile | 12 ++++++------ gemfiles/ruby_3.1_elasticsearch_8.gemfile | 12 ++++++------ gemfiles/ruby_3.1_elasticsearch_latest.gemfile | 12 ++++++------ gemfiles/ruby_3.1_graphql_1.13.gemfile | 12 ++++++------ gemfiles/ruby_3.1_graphql_2.0.gemfile | 12 ++++++------ gemfiles/ruby_3.1_graphql_2.1.gemfile | 12 ++++++------ gemfiles/ruby_3.1_graphql_2.2.gemfile | 12 ++++++------ gemfiles/ruby_3.1_graphql_2.3.gemfile | 12 ++++++------ gemfiles/ruby_3.1_http.gemfile | 12 ++++++------ gemfiles/ruby_3.1_opensearch_2.gemfile | 12 ++++++------ gemfiles/ruby_3.1_opensearch_3.gemfile | 12 ++++++------ gemfiles/ruby_3.1_opensearch_latest.gemfile | 12 ++++++------ gemfiles/ruby_3.1_opentelemetry.gemfile | 12 ++++++------ gemfiles/ruby_3.1_opentelemetry_otlp.gemfile | 12 ++++++------ gemfiles/ruby_3.1_rack_1.gemfile | 12 ++++++------ gemfiles/ruby_3.1_rack_2.gemfile | 12 ++++++------ gemfiles/ruby_3.1_rack_3.gemfile | 12 ++++++------ gemfiles/ruby_3.1_rack_latest.gemfile | 12 ++++++------ gemfiles/ruby_3.1_rails61_mysql2.gemfile | 12 ++++++------ gemfiles/ruby_3.1_rails61_postgres.gemfile | 12 ++++++------ gemfiles/ruby_3.1_rails61_postgres_redis.gemfile | 12 ++++++------ gemfiles/ruby_3.1_rails61_postgres_sidekiq.gemfile | 12 ++++++------ gemfiles/ruby_3.1_rails61_semantic_logger.gemfile | 12 ++++++------ gemfiles/ruby_3.1_rails61_trilogy.gemfile | 12 ++++++------ gemfiles/ruby_3.1_rails7.gemfile | 12 ++++++------ gemfiles/ruby_3.1_rails71.gemfile | 12 ++++++------ gemfiles/ruby_3.1_rails_old_redis.gemfile | 12 ++++++------ gemfiles/ruby_3.1_redis_3.gemfile | 12 ++++++------ gemfiles/ruby_3.1_redis_4.gemfile | 12 ++++++------ gemfiles/ruby_3.1_redis_5.gemfile | 12 ++++++------ gemfiles/ruby_3.1_relational_db.gemfile | 12 ++++++------ gemfiles/ruby_3.1_resque2_redis3.gemfile | 12 ++++++------ gemfiles/ruby_3.1_resque2_redis4.gemfile | 12 ++++++------ gemfiles/ruby_3.1_sinatra_2.gemfile | 12 ++++++------ gemfiles/ruby_3.1_sinatra_3.gemfile | 12 ++++++------ gemfiles/ruby_3.1_sinatra_4.gemfile | 12 ++++++------ gemfiles/ruby_3.1_stripe_10.gemfile | 12 ++++++------ gemfiles/ruby_3.1_stripe_11.gemfile | 12 ++++++------ gemfiles/ruby_3.1_stripe_12.gemfile | 12 ++++++------ gemfiles/ruby_3.1_stripe_7.gemfile | 12 ++++++------ gemfiles/ruby_3.1_stripe_8.gemfile | 12 ++++++------ gemfiles/ruby_3.1_stripe_9.gemfile | 12 ++++++------ gemfiles/ruby_3.1_stripe_latest.gemfile | 12 ++++++------ gemfiles/ruby_3.1_stripe_min.gemfile | 12 ++++++------ gemfiles/ruby_3.2_activesupport.gemfile | 12 ++++++------ gemfiles/ruby_3.2_aws.gemfile | 12 ++++++------ gemfiles/ruby_3.2_contrib.gemfile | 12 ++++++------ gemfiles/ruby_3.2_contrib_old.gemfile | 12 ++++++------ gemfiles/ruby_3.2_core_old.gemfile | 12 ++++++------ gemfiles/ruby_3.2_elasticsearch_7.gemfile | 12 ++++++------ gemfiles/ruby_3.2_elasticsearch_8.gemfile | 12 ++++++------ gemfiles/ruby_3.2_elasticsearch_latest.gemfile | 12 ++++++------ gemfiles/ruby_3.2_graphql_1.13.gemfile | 12 ++++++------ gemfiles/ruby_3.2_graphql_2.0.gemfile | 12 ++++++------ gemfiles/ruby_3.2_graphql_2.1.gemfile | 12 ++++++------ gemfiles/ruby_3.2_graphql_2.2.gemfile | 12 ++++++------ gemfiles/ruby_3.2_graphql_2.3.gemfile | 12 ++++++------ gemfiles/ruby_3.2_http.gemfile | 12 ++++++------ gemfiles/ruby_3.2_opensearch_2.gemfile | 12 ++++++------ gemfiles/ruby_3.2_opensearch_3.gemfile | 12 ++++++------ gemfiles/ruby_3.2_opensearch_latest.gemfile | 12 ++++++------ gemfiles/ruby_3.2_opentelemetry.gemfile | 12 ++++++------ gemfiles/ruby_3.2_opentelemetry_otlp.gemfile | 12 ++++++------ gemfiles/ruby_3.2_rack_1.gemfile | 12 ++++++------ gemfiles/ruby_3.2_rack_2.gemfile | 12 ++++++------ gemfiles/ruby_3.2_rack_3.gemfile | 12 ++++++------ gemfiles/ruby_3.2_rack_latest.gemfile | 12 ++++++------ gemfiles/ruby_3.2_rails61_mysql2.gemfile | 12 ++++++------ gemfiles/ruby_3.2_rails61_postgres.gemfile | 12 ++++++------ gemfiles/ruby_3.2_rails61_postgres_redis.gemfile | 12 ++++++------ gemfiles/ruby_3.2_rails61_postgres_sidekiq.gemfile | 12 ++++++------ gemfiles/ruby_3.2_rails61_semantic_logger.gemfile | 12 ++++++------ gemfiles/ruby_3.2_rails61_trilogy.gemfile | 12 ++++++------ gemfiles/ruby_3.2_rails7.gemfile | 12 ++++++------ gemfiles/ruby_3.2_rails71.gemfile | 12 ++++++------ gemfiles/ruby_3.2_rails_old_redis.gemfile | 12 ++++++------ gemfiles/ruby_3.2_redis_3.gemfile | 12 ++++++------ gemfiles/ruby_3.2_redis_4.gemfile | 12 ++++++------ gemfiles/ruby_3.2_redis_5.gemfile | 12 ++++++------ gemfiles/ruby_3.2_relational_db.gemfile | 12 ++++++------ gemfiles/ruby_3.2_resque2_redis3.gemfile | 12 ++++++------ gemfiles/ruby_3.2_resque2_redis4.gemfile | 12 ++++++------ gemfiles/ruby_3.2_sinatra_2.gemfile | 12 ++++++------ gemfiles/ruby_3.2_sinatra_3.gemfile | 12 ++++++------ gemfiles/ruby_3.2_sinatra_4.gemfile | 12 ++++++------ gemfiles/ruby_3.2_stripe_10.gemfile | 12 ++++++------ gemfiles/ruby_3.2_stripe_11.gemfile | 12 ++++++------ gemfiles/ruby_3.2_stripe_12.gemfile | 12 ++++++------ gemfiles/ruby_3.2_stripe_7.gemfile | 12 ++++++------ gemfiles/ruby_3.2_stripe_8.gemfile | 12 ++++++------ gemfiles/ruby_3.2_stripe_9.gemfile | 12 ++++++------ gemfiles/ruby_3.2_stripe_latest.gemfile | 12 ++++++------ gemfiles/ruby_3.2_stripe_min.gemfile | 12 ++++++------ gemfiles/ruby_3.3_activesupport.gemfile | 12 ++++++------ gemfiles/ruby_3.3_aws.gemfile | 12 ++++++------ gemfiles/ruby_3.3_contrib.gemfile | 12 ++++++------ gemfiles/ruby_3.3_contrib_old.gemfile | 12 ++++++------ gemfiles/ruby_3.3_core_old.gemfile | 12 ++++++------ gemfiles/ruby_3.3_elasticsearch_7.gemfile | 12 ++++++------ gemfiles/ruby_3.3_elasticsearch_8.gemfile | 12 ++++++------ gemfiles/ruby_3.3_elasticsearch_latest.gemfile | 12 ++++++------ gemfiles/ruby_3.3_graphql_1.13.gemfile | 12 ++++++------ gemfiles/ruby_3.3_graphql_2.0.gemfile | 12 ++++++------ gemfiles/ruby_3.3_graphql_2.1.gemfile | 12 ++++++------ gemfiles/ruby_3.3_graphql_2.2.gemfile | 12 ++++++------ gemfiles/ruby_3.3_graphql_2.3.gemfile | 12 ++++++------ gemfiles/ruby_3.3_http.gemfile | 12 ++++++------ gemfiles/ruby_3.3_opensearch_2.gemfile | 12 ++++++------ gemfiles/ruby_3.3_opensearch_3.gemfile | 12 ++++++------ gemfiles/ruby_3.3_opensearch_latest.gemfile | 12 ++++++------ gemfiles/ruby_3.3_opentelemetry.gemfile | 12 ++++++------ gemfiles/ruby_3.3_opentelemetry_otlp.gemfile | 12 ++++++------ gemfiles/ruby_3.3_rack_2.gemfile | 12 ++++++------ gemfiles/ruby_3.3_rack_3.gemfile | 12 ++++++------ gemfiles/ruby_3.3_rack_latest.gemfile | 12 ++++++------ gemfiles/ruby_3.3_rails61_mysql2.gemfile | 12 ++++++------ gemfiles/ruby_3.3_rails61_postgres.gemfile | 12 ++++++------ gemfiles/ruby_3.3_rails61_postgres_redis.gemfile | 12 ++++++------ gemfiles/ruby_3.3_rails61_postgres_sidekiq.gemfile | 12 ++++++------ gemfiles/ruby_3.3_rails61_semantic_logger.gemfile | 12 ++++++------ gemfiles/ruby_3.3_rails61_trilogy.gemfile | 12 ++++++------ gemfiles/ruby_3.3_rails7.gemfile | 12 ++++++------ gemfiles/ruby_3.3_rails71.gemfile | 12 ++++++------ gemfiles/ruby_3.3_rails_old_redis.gemfile | 12 ++++++------ gemfiles/ruby_3.3_redis_3.gemfile | 12 ++++++------ gemfiles/ruby_3.3_redis_4.gemfile | 12 ++++++------ gemfiles/ruby_3.3_redis_5.gemfile | 12 ++++++------ gemfiles/ruby_3.3_relational_db.gemfile | 12 ++++++------ gemfiles/ruby_3.3_resque2_redis3.gemfile | 12 ++++++------ gemfiles/ruby_3.3_resque2_redis4.gemfile | 12 ++++++------ gemfiles/ruby_3.3_sinatra_2.gemfile | 12 ++++++------ gemfiles/ruby_3.3_sinatra_3.gemfile | 12 ++++++------ gemfiles/ruby_3.3_sinatra_4.gemfile | 12 ++++++------ gemfiles/ruby_3.3_stripe_10.gemfile | 12 ++++++------ gemfiles/ruby_3.3_stripe_11.gemfile | 12 ++++++------ gemfiles/ruby_3.3_stripe_12.gemfile | 12 ++++++------ gemfiles/ruby_3.3_stripe_7.gemfile | 12 ++++++------ gemfiles/ruby_3.3_stripe_8.gemfile | 12 ++++++------ gemfiles/ruby_3.3_stripe_9.gemfile | 12 ++++++------ gemfiles/ruby_3.3_stripe_latest.gemfile | 12 ++++++------ gemfiles/ruby_3.3_stripe_min.gemfile | 12 ++++++------ 195 files changed, 1170 insertions(+), 1170 deletions(-) diff --git a/gemfiles/ruby_3.0_activesupport.gemfile b/gemfiles/ruby_3.0_activesupport.gemfile index 06af5710d31..d575ca8d77b 100644 --- a/gemfiles/ruby_3.0_activesupport.gemfile +++ b/gemfiles/ruby_3.0_activesupport.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,17 +22,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "activesupport", "~> 7" gem "actionpack" gem "actionview" diff --git a/gemfiles/ruby_3.0_aws.gemfile b/gemfiles/ruby_3.0_aws.gemfile index 202b0317053..76a7218a2ba 100644 --- a/gemfiles/ruby_3.0_aws.gemfile +++ b/gemfiles/ruby_3.0_aws.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,17 +22,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "aws-sdk" gem "shoryuken" diff --git a/gemfiles/ruby_3.0_contrib.gemfile b/gemfiles/ruby_3.0_contrib.gemfile index 44c07544b91..3452cefbbac 100644 --- a/gemfiles/ruby_3.0_contrib.gemfile +++ b/gemfiles/ruby_3.0_contrib.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,17 +22,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "dalli", ">= 3.0.0" gem "grpc", ">= 1.38.0", platform: :ruby gem "mongo", ">= 2.8.0", "< 2.15.0" diff --git a/gemfiles/ruby_3.0_contrib_old.gemfile b/gemfiles/ruby_3.0_contrib_old.gemfile index e7a523465b1..303162e744e 100644 --- a/gemfiles/ruby_3.0_contrib_old.gemfile +++ b/gemfiles/ruby_3.0_contrib_old.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,17 +22,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "dalli", "< 3.0.0" gem "presto-client", ">= 0.5.14" gem "qless", "0.12.0" diff --git a/gemfiles/ruby_3.0_core_old.gemfile b/gemfiles/ruby_3.0_core_old.gemfile index d4f08271951..73f50527e6c 100644 --- a/gemfiles/ruby_3.0_core_old.gemfile +++ b/gemfiles/ruby_3.0_core_old.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", "~> 4" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,17 +22,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", "~> 4" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] group :check do diff --git a/gemfiles/ruby_3.0_elasticsearch_7.gemfile b/gemfiles/ruby_3.0_elasticsearch_7.gemfile index f53caf911c6..5f78f86cd1e 100644 --- a/gemfiles/ruby_3.0_elasticsearch_7.gemfile +++ b/gemfiles/ruby_3.0_elasticsearch_7.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,17 +22,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "elasticsearch", "~> 7" group :check do diff --git a/gemfiles/ruby_3.0_elasticsearch_8.gemfile b/gemfiles/ruby_3.0_elasticsearch_8.gemfile index d4cce6c5263..e6b18f89861 100644 --- a/gemfiles/ruby_3.0_elasticsearch_8.gemfile +++ b/gemfiles/ruby_3.0_elasticsearch_8.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,17 +22,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "elasticsearch", "~> 8" group :check do diff --git a/gemfiles/ruby_3.0_elasticsearch_latest.gemfile b/gemfiles/ruby_3.0_elasticsearch_latest.gemfile index a7114116079..731ded8a0da 100644 --- a/gemfiles/ruby_3.0_elasticsearch_latest.gemfile +++ b/gemfiles/ruby_3.0_elasticsearch_latest.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,17 +22,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "elasticsearch" group :check do diff --git a/gemfiles/ruby_3.0_graphql_1.13.gemfile b/gemfiles/ruby_3.0_graphql_1.13.gemfile index b3bb0674f06..d75a0d8e0e0 100644 --- a/gemfiles/ruby_3.0_graphql_1.13.gemfile +++ b/gemfiles/ruby_3.0_graphql_1.13.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,17 +22,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "rails", "~> 6.1.0" gem "graphql", "~> 1.13.0" gem "sprockets", "< 4" diff --git a/gemfiles/ruby_3.0_graphql_2.0.gemfile b/gemfiles/ruby_3.0_graphql_2.0.gemfile index 68c81d18b16..d13f54e683a 100644 --- a/gemfiles/ruby_3.0_graphql_2.0.gemfile +++ b/gemfiles/ruby_3.0_graphql_2.0.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,17 +22,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "rails", "~> 6.1.0" gem "graphql", "~> 2.0.0" gem "sprockets", "< 4" diff --git a/gemfiles/ruby_3.0_graphql_2.1.gemfile b/gemfiles/ruby_3.0_graphql_2.1.gemfile index 056e4259e4d..2e89e7b6a5e 100644 --- a/gemfiles/ruby_3.0_graphql_2.1.gemfile +++ b/gemfiles/ruby_3.0_graphql_2.1.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,17 +22,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "rails", "~> 6.1.0" gem "graphql", "~> 2.1.0" gem "sprockets", "< 4" diff --git a/gemfiles/ruby_3.0_graphql_2.2.gemfile b/gemfiles/ruby_3.0_graphql_2.2.gemfile index fef13896cf2..ae4712dd579 100644 --- a/gemfiles/ruby_3.0_graphql_2.2.gemfile +++ b/gemfiles/ruby_3.0_graphql_2.2.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,17 +22,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "rails", "~> 6.1.0" gem "graphql", "~> 2.2.0" gem "sprockets", "< 4" diff --git a/gemfiles/ruby_3.0_graphql_2.3.gemfile b/gemfiles/ruby_3.0_graphql_2.3.gemfile index 528f5c6ca81..04dcb43da71 100644 --- a/gemfiles/ruby_3.0_graphql_2.3.gemfile +++ b/gemfiles/ruby_3.0_graphql_2.3.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,17 +22,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "rails", "~> 6.1.0" gem "graphql", "~> 2.3.0" gem "sprockets", "< 4" diff --git a/gemfiles/ruby_3.0_http.gemfile b/gemfiles/ruby_3.0_http.gemfile index 9b80cb9c3c9..72eec5f57cf 100644 --- a/gemfiles/ruby_3.0_http.gemfile +++ b/gemfiles/ruby_3.0_http.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,17 +22,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "ethon" gem "excon" gem "faraday" diff --git a/gemfiles/ruby_3.0_opensearch_2.gemfile b/gemfiles/ruby_3.0_opensearch_2.gemfile index b45583fc975..be6297729f5 100644 --- a/gemfiles/ruby_3.0_opensearch_2.gemfile +++ b/gemfiles/ruby_3.0_opensearch_2.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,17 +22,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "opensearch-ruby", "~> 2" group :check do diff --git a/gemfiles/ruby_3.0_opensearch_3.gemfile b/gemfiles/ruby_3.0_opensearch_3.gemfile index 04514ca7864..5086f729f6c 100644 --- a/gemfiles/ruby_3.0_opensearch_3.gemfile +++ b/gemfiles/ruby_3.0_opensearch_3.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,17 +22,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "opensearch-ruby", "~> 3" group :check do diff --git a/gemfiles/ruby_3.0_opensearch_latest.gemfile b/gemfiles/ruby_3.0_opensearch_latest.gemfile index 8771361be6c..016654cd827 100644 --- a/gemfiles/ruby_3.0_opensearch_latest.gemfile +++ b/gemfiles/ruby_3.0_opensearch_latest.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,17 +22,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "opensearch-ruby" group :check do diff --git a/gemfiles/ruby_3.0_opentelemetry.gemfile b/gemfiles/ruby_3.0_opentelemetry.gemfile index d2f4871066d..6f4d60f8803 100644 --- a/gemfiles/ruby_3.0_opentelemetry.gemfile +++ b/gemfiles/ruby_3.0_opentelemetry.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,17 +22,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "opentelemetry-sdk", "~> 1.1" group :check do diff --git a/gemfiles/ruby_3.0_opentelemetry_otlp.gemfile b/gemfiles/ruby_3.0_opentelemetry_otlp.gemfile index 035d7e0f247..455020ef69b 100644 --- a/gemfiles/ruby_3.0_opentelemetry_otlp.gemfile +++ b/gemfiles/ruby_3.0_opentelemetry_otlp.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,17 +22,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "opentelemetry-sdk", "~> 1.1" gem "opentelemetry-exporter-otlp" diff --git a/gemfiles/ruby_3.0_rack_1.gemfile b/gemfiles/ruby_3.0_rack_1.gemfile index 7436a010c5a..65d9dd8585d 100644 --- a/gemfiles/ruby_3.0_rack_1.gemfile +++ b/gemfiles/ruby_3.0_rack_1.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,17 +22,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "rack", "~> 1" gem "rack-contrib" gem "rack-test" diff --git a/gemfiles/ruby_3.0_rack_2.gemfile b/gemfiles/ruby_3.0_rack_2.gemfile index a86dedc06be..6fefbb8dd68 100644 --- a/gemfiles/ruby_3.0_rack_2.gemfile +++ b/gemfiles/ruby_3.0_rack_2.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,17 +22,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "rack", "~> 2" gem "rack-contrib" gem "rack-test" diff --git a/gemfiles/ruby_3.0_rack_3.gemfile b/gemfiles/ruby_3.0_rack_3.gemfile index 842a93fbe01..44930d43f79 100644 --- a/gemfiles/ruby_3.0_rack_3.gemfile +++ b/gemfiles/ruby_3.0_rack_3.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,17 +22,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "rack", "~> 3" gem "rack-contrib" gem "rack-test" diff --git a/gemfiles/ruby_3.0_rack_latest.gemfile b/gemfiles/ruby_3.0_rack_latest.gemfile index 319dc75fe9e..fc1229d3647 100644 --- a/gemfiles/ruby_3.0_rack_latest.gemfile +++ b/gemfiles/ruby_3.0_rack_latest.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,17 +22,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "rack" gem "rack-contrib" gem "rack-test" diff --git a/gemfiles/ruby_3.0_rails61_mysql2.gemfile b/gemfiles/ruby_3.0_rails61_mysql2.gemfile index 06b2edf6fa0..e72653c7d16 100644 --- a/gemfiles/ruby_3.0_rails61_mysql2.gemfile +++ b/gemfiles/ruby_3.0_rails61_mysql2.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,17 +22,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "rails", "~> 6.1.0" gem "mysql2", "~> 0.5", platform: :ruby gem "sprockets", "< 4" diff --git a/gemfiles/ruby_3.0_rails61_postgres.gemfile b/gemfiles/ruby_3.0_rails61_postgres.gemfile index 2f33ea5ce13..6ac0b760a59 100644 --- a/gemfiles/ruby_3.0_rails61_postgres.gemfile +++ b/gemfiles/ruby_3.0_rails61_postgres.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,17 +22,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "rails", "~> 6.1.0" gem "pg", ">= 1.1", platform: :ruby gem "sprockets", "< 4" diff --git a/gemfiles/ruby_3.0_rails61_postgres_redis.gemfile b/gemfiles/ruby_3.0_rails61_postgres_redis.gemfile index 511af39c90d..04e17c3b31f 100644 --- a/gemfiles/ruby_3.0_rails61_postgres_redis.gemfile +++ b/gemfiles/ruby_3.0_rails61_postgres_redis.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,17 +22,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "rails", "~> 6.1.0" gem "pg", ">= 1.1", platform: :ruby gem "redis", "~> 4" diff --git a/gemfiles/ruby_3.0_rails61_postgres_sidekiq.gemfile b/gemfiles/ruby_3.0_rails61_postgres_sidekiq.gemfile index e052d7bda17..441a873b780 100644 --- a/gemfiles/ruby_3.0_rails61_postgres_sidekiq.gemfile +++ b/gemfiles/ruby_3.0_rails61_postgres_sidekiq.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,17 +22,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "rails", "~> 6.1.0" gem "pg", ">= 1.1", platform: :ruby gem "sidekiq", ">= 6.1.2" diff --git a/gemfiles/ruby_3.0_rails61_semantic_logger.gemfile b/gemfiles/ruby_3.0_rails61_semantic_logger.gemfile index 68c2a7a7ad7..32244075e2b 100644 --- a/gemfiles/ruby_3.0_rails61_semantic_logger.gemfile +++ b/gemfiles/ruby_3.0_rails61_semantic_logger.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,17 +22,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "rails", "~> 6.1.0" gem "pg", ">= 1.1", platform: :ruby gem "sprockets", "< 4" diff --git a/gemfiles/ruby_3.0_rails61_trilogy.gemfile b/gemfiles/ruby_3.0_rails61_trilogy.gemfile index 275161fd150..fac74ce6482 100644 --- a/gemfiles/ruby_3.0_rails61_trilogy.gemfile +++ b/gemfiles/ruby_3.0_rails61_trilogy.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,17 +22,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "rails", "~> 6.1.0" gem "trilogy" gem "activerecord-trilogy-adapter" diff --git a/gemfiles/ruby_3.0_rails7.gemfile b/gemfiles/ruby_3.0_rails7.gemfile index 1b4865e61e5..b17a58ae83e 100644 --- a/gemfiles/ruby_3.0_rails7.gemfile +++ b/gemfiles/ruby_3.0_rails7.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,17 +22,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "rails", "~> 7.0.0" group :check do diff --git a/gemfiles/ruby_3.0_rails71.gemfile b/gemfiles/ruby_3.0_rails71.gemfile index 2ac3996b98b..6dbfd093783 100644 --- a/gemfiles/ruby_3.0_rails71.gemfile +++ b/gemfiles/ruby_3.0_rails71.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,17 +22,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "rails", "~> 7.1.0" group :check do diff --git a/gemfiles/ruby_3.0_rails_old_redis.gemfile b/gemfiles/ruby_3.0_rails_old_redis.gemfile index 40fe62d2eeb..c37773ef612 100644 --- a/gemfiles/ruby_3.0_rails_old_redis.gemfile +++ b/gemfiles/ruby_3.0_rails_old_redis.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,17 +22,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "redis", "< 4" gem "rails", "~> 6.1.0" gem "pg", ">= 1.1", platform: :ruby diff --git a/gemfiles/ruby_3.0_redis_3.gemfile b/gemfiles/ruby_3.0_redis_3.gemfile index 2543a241c40..ec4ac063312 100644 --- a/gemfiles/ruby_3.0_redis_3.gemfile +++ b/gemfiles/ruby_3.0_redis_3.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,17 +22,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "redis", "~> 3" group :check do diff --git a/gemfiles/ruby_3.0_redis_4.gemfile b/gemfiles/ruby_3.0_redis_4.gemfile index 61e638f5d54..e12e985d26c 100644 --- a/gemfiles/ruby_3.0_redis_4.gemfile +++ b/gemfiles/ruby_3.0_redis_4.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,17 +22,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "redis", "~> 4" group :check do diff --git a/gemfiles/ruby_3.0_redis_5.gemfile b/gemfiles/ruby_3.0_redis_5.gemfile index 1acbe8bd8b3..8b5cf99cf08 100644 --- a/gemfiles/ruby_3.0_redis_5.gemfile +++ b/gemfiles/ruby_3.0_redis_5.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,17 +22,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "redis", "~> 5" group :check do diff --git a/gemfiles/ruby_3.0_relational_db.gemfile b/gemfiles/ruby_3.0_relational_db.gemfile index 7f2f90a2418..04e64723b4e 100644 --- a/gemfiles/ruby_3.0_relational_db.gemfile +++ b/gemfiles/ruby_3.0_relational_db.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,17 +22,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "activerecord", "~> 7" gem "delayed_job" gem "delayed_job_active_record" diff --git a/gemfiles/ruby_3.0_resque2_redis3.gemfile b/gemfiles/ruby_3.0_resque2_redis3.gemfile index 6a96f9db17f..7b79d1aaab9 100644 --- a/gemfiles/ruby_3.0_resque2_redis3.gemfile +++ b/gemfiles/ruby_3.0_resque2_redis3.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,17 +22,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "redis", "< 4.0" gem "resque", ">= 2.0" diff --git a/gemfiles/ruby_3.0_resque2_redis4.gemfile b/gemfiles/ruby_3.0_resque2_redis4.gemfile index 734c40a0408..1aaaf498b44 100644 --- a/gemfiles/ruby_3.0_resque2_redis4.gemfile +++ b/gemfiles/ruby_3.0_resque2_redis4.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,17 +22,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "redis", ">= 4.0" gem "resque", ">= 2.0" diff --git a/gemfiles/ruby_3.0_sinatra_2.gemfile b/gemfiles/ruby_3.0_sinatra_2.gemfile index 7fad97696b6..c33e7e726a8 100644 --- a/gemfiles/ruby_3.0_sinatra_2.gemfile +++ b/gemfiles/ruby_3.0_sinatra_2.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,17 +22,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "sinatra", "~> 2" gem "rack-contrib" gem "rack-test" diff --git a/gemfiles/ruby_3.0_sinatra_3.gemfile b/gemfiles/ruby_3.0_sinatra_3.gemfile index cee9018ab3c..e2952bf20bd 100644 --- a/gemfiles/ruby_3.0_sinatra_3.gemfile +++ b/gemfiles/ruby_3.0_sinatra_3.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,17 +22,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "sinatra", "~> 3" gem "rack-contrib" gem "rack-test" diff --git a/gemfiles/ruby_3.0_sinatra_4.gemfile b/gemfiles/ruby_3.0_sinatra_4.gemfile index 69ea912fed8..f3302918408 100644 --- a/gemfiles/ruby_3.0_sinatra_4.gemfile +++ b/gemfiles/ruby_3.0_sinatra_4.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,17 +22,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "sinatra", "~> 4" gem "rack-contrib" gem "rack-test" diff --git a/gemfiles/ruby_3.0_stripe_10.gemfile b/gemfiles/ruby_3.0_stripe_10.gemfile index 0f07030118e..56ee7f4126d 100644 --- a/gemfiles/ruby_3.0_stripe_10.gemfile +++ b/gemfiles/ruby_3.0_stripe_10.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,17 +22,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "stripe", "~> 10" group :check do diff --git a/gemfiles/ruby_3.0_stripe_11.gemfile b/gemfiles/ruby_3.0_stripe_11.gemfile index f891ba98c21..d90aa264168 100644 --- a/gemfiles/ruby_3.0_stripe_11.gemfile +++ b/gemfiles/ruby_3.0_stripe_11.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,17 +22,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "stripe", "~> 11" group :check do diff --git a/gemfiles/ruby_3.0_stripe_12.gemfile b/gemfiles/ruby_3.0_stripe_12.gemfile index b99d2080a94..7e835132553 100644 --- a/gemfiles/ruby_3.0_stripe_12.gemfile +++ b/gemfiles/ruby_3.0_stripe_12.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,17 +22,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "stripe", "~> 12" group :check do diff --git a/gemfiles/ruby_3.0_stripe_7.gemfile b/gemfiles/ruby_3.0_stripe_7.gemfile index 05bd336f31b..5af74010422 100644 --- a/gemfiles/ruby_3.0_stripe_7.gemfile +++ b/gemfiles/ruby_3.0_stripe_7.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,17 +22,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "stripe", "~> 7" group :check do diff --git a/gemfiles/ruby_3.0_stripe_8.gemfile b/gemfiles/ruby_3.0_stripe_8.gemfile index d6f4c9e87d7..86d7a931271 100644 --- a/gemfiles/ruby_3.0_stripe_8.gemfile +++ b/gemfiles/ruby_3.0_stripe_8.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,17 +22,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "stripe", "~> 8" group :check do diff --git a/gemfiles/ruby_3.0_stripe_9.gemfile b/gemfiles/ruby_3.0_stripe_9.gemfile index b15d18d7035..83e0e24282a 100644 --- a/gemfiles/ruby_3.0_stripe_9.gemfile +++ b/gemfiles/ruby_3.0_stripe_9.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,17 +22,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "stripe", "~> 9" group :check do diff --git a/gemfiles/ruby_3.0_stripe_latest.gemfile b/gemfiles/ruby_3.0_stripe_latest.gemfile index 94d903d3e17..f792dfa1981 100644 --- a/gemfiles/ruby_3.0_stripe_latest.gemfile +++ b/gemfiles/ruby_3.0_stripe_latest.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,17 +22,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "stripe" group :check do diff --git a/gemfiles/ruby_3.0_stripe_min.gemfile b/gemfiles/ruby_3.0_stripe_min.gemfile index a4e21fbb68a..9d7f405985a 100644 --- a/gemfiles/ruby_3.0_stripe_min.gemfile +++ b/gemfiles/ruby_3.0_stripe_min.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,17 +22,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "stripe", "= 5.15.0" group :check do diff --git a/gemfiles/ruby_3.1_activesupport.gemfile b/gemfiles/ruby_3.1_activesupport.gemfile index 06af5710d31..d575ca8d77b 100644 --- a/gemfiles/ruby_3.1_activesupport.gemfile +++ b/gemfiles/ruby_3.1_activesupport.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,17 +22,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "activesupport", "~> 7" gem "actionpack" gem "actionview" diff --git a/gemfiles/ruby_3.1_aws.gemfile b/gemfiles/ruby_3.1_aws.gemfile index 202b0317053..76a7218a2ba 100644 --- a/gemfiles/ruby_3.1_aws.gemfile +++ b/gemfiles/ruby_3.1_aws.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,17 +22,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "aws-sdk" gem "shoryuken" diff --git a/gemfiles/ruby_3.1_contrib.gemfile b/gemfiles/ruby_3.1_contrib.gemfile index 44c07544b91..3452cefbbac 100644 --- a/gemfiles/ruby_3.1_contrib.gemfile +++ b/gemfiles/ruby_3.1_contrib.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,17 +22,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "dalli", ">= 3.0.0" gem "grpc", ">= 1.38.0", platform: :ruby gem "mongo", ">= 2.8.0", "< 2.15.0" diff --git a/gemfiles/ruby_3.1_contrib_old.gemfile b/gemfiles/ruby_3.1_contrib_old.gemfile index e7a523465b1..303162e744e 100644 --- a/gemfiles/ruby_3.1_contrib_old.gemfile +++ b/gemfiles/ruby_3.1_contrib_old.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,17 +22,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "dalli", "< 3.0.0" gem "presto-client", ">= 0.5.14" gem "qless", "0.12.0" diff --git a/gemfiles/ruby_3.1_core_old.gemfile b/gemfiles/ruby_3.1_core_old.gemfile index d4f08271951..73f50527e6c 100644 --- a/gemfiles/ruby_3.1_core_old.gemfile +++ b/gemfiles/ruby_3.1_core_old.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", "~> 4" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,17 +22,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", "~> 4" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] group :check do diff --git a/gemfiles/ruby_3.1_elasticsearch_7.gemfile b/gemfiles/ruby_3.1_elasticsearch_7.gemfile index f53caf911c6..5f78f86cd1e 100644 --- a/gemfiles/ruby_3.1_elasticsearch_7.gemfile +++ b/gemfiles/ruby_3.1_elasticsearch_7.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,17 +22,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "elasticsearch", "~> 7" group :check do diff --git a/gemfiles/ruby_3.1_elasticsearch_8.gemfile b/gemfiles/ruby_3.1_elasticsearch_8.gemfile index d4cce6c5263..e6b18f89861 100644 --- a/gemfiles/ruby_3.1_elasticsearch_8.gemfile +++ b/gemfiles/ruby_3.1_elasticsearch_8.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,17 +22,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "elasticsearch", "~> 8" group :check do diff --git a/gemfiles/ruby_3.1_elasticsearch_latest.gemfile b/gemfiles/ruby_3.1_elasticsearch_latest.gemfile index a7114116079..731ded8a0da 100644 --- a/gemfiles/ruby_3.1_elasticsearch_latest.gemfile +++ b/gemfiles/ruby_3.1_elasticsearch_latest.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,17 +22,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "elasticsearch" group :check do diff --git a/gemfiles/ruby_3.1_graphql_1.13.gemfile b/gemfiles/ruby_3.1_graphql_1.13.gemfile index b3bb0674f06..d75a0d8e0e0 100644 --- a/gemfiles/ruby_3.1_graphql_1.13.gemfile +++ b/gemfiles/ruby_3.1_graphql_1.13.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,17 +22,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "rails", "~> 6.1.0" gem "graphql", "~> 1.13.0" gem "sprockets", "< 4" diff --git a/gemfiles/ruby_3.1_graphql_2.0.gemfile b/gemfiles/ruby_3.1_graphql_2.0.gemfile index 68c81d18b16..d13f54e683a 100644 --- a/gemfiles/ruby_3.1_graphql_2.0.gemfile +++ b/gemfiles/ruby_3.1_graphql_2.0.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,17 +22,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "rails", "~> 6.1.0" gem "graphql", "~> 2.0.0" gem "sprockets", "< 4" diff --git a/gemfiles/ruby_3.1_graphql_2.1.gemfile b/gemfiles/ruby_3.1_graphql_2.1.gemfile index 056e4259e4d..2e89e7b6a5e 100644 --- a/gemfiles/ruby_3.1_graphql_2.1.gemfile +++ b/gemfiles/ruby_3.1_graphql_2.1.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,17 +22,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "rails", "~> 6.1.0" gem "graphql", "~> 2.1.0" gem "sprockets", "< 4" diff --git a/gemfiles/ruby_3.1_graphql_2.2.gemfile b/gemfiles/ruby_3.1_graphql_2.2.gemfile index fef13896cf2..ae4712dd579 100644 --- a/gemfiles/ruby_3.1_graphql_2.2.gemfile +++ b/gemfiles/ruby_3.1_graphql_2.2.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,17 +22,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "rails", "~> 6.1.0" gem "graphql", "~> 2.2.0" gem "sprockets", "< 4" diff --git a/gemfiles/ruby_3.1_graphql_2.3.gemfile b/gemfiles/ruby_3.1_graphql_2.3.gemfile index 528f5c6ca81..04dcb43da71 100644 --- a/gemfiles/ruby_3.1_graphql_2.3.gemfile +++ b/gemfiles/ruby_3.1_graphql_2.3.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,17 +22,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "rails", "~> 6.1.0" gem "graphql", "~> 2.3.0" gem "sprockets", "< 4" diff --git a/gemfiles/ruby_3.1_http.gemfile b/gemfiles/ruby_3.1_http.gemfile index 9b80cb9c3c9..72eec5f57cf 100644 --- a/gemfiles/ruby_3.1_http.gemfile +++ b/gemfiles/ruby_3.1_http.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,17 +22,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "ethon" gem "excon" gem "faraday" diff --git a/gemfiles/ruby_3.1_opensearch_2.gemfile b/gemfiles/ruby_3.1_opensearch_2.gemfile index b45583fc975..be6297729f5 100644 --- a/gemfiles/ruby_3.1_opensearch_2.gemfile +++ b/gemfiles/ruby_3.1_opensearch_2.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,17 +22,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "opensearch-ruby", "~> 2" group :check do diff --git a/gemfiles/ruby_3.1_opensearch_3.gemfile b/gemfiles/ruby_3.1_opensearch_3.gemfile index 04514ca7864..5086f729f6c 100644 --- a/gemfiles/ruby_3.1_opensearch_3.gemfile +++ b/gemfiles/ruby_3.1_opensearch_3.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,17 +22,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "opensearch-ruby", "~> 3" group :check do diff --git a/gemfiles/ruby_3.1_opensearch_latest.gemfile b/gemfiles/ruby_3.1_opensearch_latest.gemfile index 8771361be6c..016654cd827 100644 --- a/gemfiles/ruby_3.1_opensearch_latest.gemfile +++ b/gemfiles/ruby_3.1_opensearch_latest.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,17 +22,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "opensearch-ruby" group :check do diff --git a/gemfiles/ruby_3.1_opentelemetry.gemfile b/gemfiles/ruby_3.1_opentelemetry.gemfile index d2f4871066d..6f4d60f8803 100644 --- a/gemfiles/ruby_3.1_opentelemetry.gemfile +++ b/gemfiles/ruby_3.1_opentelemetry.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,17 +22,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "opentelemetry-sdk", "~> 1.1" group :check do diff --git a/gemfiles/ruby_3.1_opentelemetry_otlp.gemfile b/gemfiles/ruby_3.1_opentelemetry_otlp.gemfile index 035d7e0f247..455020ef69b 100644 --- a/gemfiles/ruby_3.1_opentelemetry_otlp.gemfile +++ b/gemfiles/ruby_3.1_opentelemetry_otlp.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,17 +22,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "opentelemetry-sdk", "~> 1.1" gem "opentelemetry-exporter-otlp" diff --git a/gemfiles/ruby_3.1_rack_1.gemfile b/gemfiles/ruby_3.1_rack_1.gemfile index 7436a010c5a..65d9dd8585d 100644 --- a/gemfiles/ruby_3.1_rack_1.gemfile +++ b/gemfiles/ruby_3.1_rack_1.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,17 +22,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "rack", "~> 1" gem "rack-contrib" gem "rack-test" diff --git a/gemfiles/ruby_3.1_rack_2.gemfile b/gemfiles/ruby_3.1_rack_2.gemfile index a86dedc06be..6fefbb8dd68 100644 --- a/gemfiles/ruby_3.1_rack_2.gemfile +++ b/gemfiles/ruby_3.1_rack_2.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,17 +22,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "rack", "~> 2" gem "rack-contrib" gem "rack-test" diff --git a/gemfiles/ruby_3.1_rack_3.gemfile b/gemfiles/ruby_3.1_rack_3.gemfile index 842a93fbe01..44930d43f79 100644 --- a/gemfiles/ruby_3.1_rack_3.gemfile +++ b/gemfiles/ruby_3.1_rack_3.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,17 +22,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "rack", "~> 3" gem "rack-contrib" gem "rack-test" diff --git a/gemfiles/ruby_3.1_rack_latest.gemfile b/gemfiles/ruby_3.1_rack_latest.gemfile index 319dc75fe9e..fc1229d3647 100644 --- a/gemfiles/ruby_3.1_rack_latest.gemfile +++ b/gemfiles/ruby_3.1_rack_latest.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,17 +22,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "rack" gem "rack-contrib" gem "rack-test" diff --git a/gemfiles/ruby_3.1_rails61_mysql2.gemfile b/gemfiles/ruby_3.1_rails61_mysql2.gemfile index 06b2edf6fa0..e72653c7d16 100644 --- a/gemfiles/ruby_3.1_rails61_mysql2.gemfile +++ b/gemfiles/ruby_3.1_rails61_mysql2.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,17 +22,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "rails", "~> 6.1.0" gem "mysql2", "~> 0.5", platform: :ruby gem "sprockets", "< 4" diff --git a/gemfiles/ruby_3.1_rails61_postgres.gemfile b/gemfiles/ruby_3.1_rails61_postgres.gemfile index 2f33ea5ce13..6ac0b760a59 100644 --- a/gemfiles/ruby_3.1_rails61_postgres.gemfile +++ b/gemfiles/ruby_3.1_rails61_postgres.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,17 +22,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "rails", "~> 6.1.0" gem "pg", ">= 1.1", platform: :ruby gem "sprockets", "< 4" diff --git a/gemfiles/ruby_3.1_rails61_postgres_redis.gemfile b/gemfiles/ruby_3.1_rails61_postgres_redis.gemfile index 511af39c90d..04e17c3b31f 100644 --- a/gemfiles/ruby_3.1_rails61_postgres_redis.gemfile +++ b/gemfiles/ruby_3.1_rails61_postgres_redis.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,17 +22,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "rails", "~> 6.1.0" gem "pg", ">= 1.1", platform: :ruby gem "redis", "~> 4" diff --git a/gemfiles/ruby_3.1_rails61_postgres_sidekiq.gemfile b/gemfiles/ruby_3.1_rails61_postgres_sidekiq.gemfile index e052d7bda17..441a873b780 100644 --- a/gemfiles/ruby_3.1_rails61_postgres_sidekiq.gemfile +++ b/gemfiles/ruby_3.1_rails61_postgres_sidekiq.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,17 +22,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "rails", "~> 6.1.0" gem "pg", ">= 1.1", platform: :ruby gem "sidekiq", ">= 6.1.2" diff --git a/gemfiles/ruby_3.1_rails61_semantic_logger.gemfile b/gemfiles/ruby_3.1_rails61_semantic_logger.gemfile index 68c2a7a7ad7..32244075e2b 100644 --- a/gemfiles/ruby_3.1_rails61_semantic_logger.gemfile +++ b/gemfiles/ruby_3.1_rails61_semantic_logger.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,17 +22,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "rails", "~> 6.1.0" gem "pg", ">= 1.1", platform: :ruby gem "sprockets", "< 4" diff --git a/gemfiles/ruby_3.1_rails61_trilogy.gemfile b/gemfiles/ruby_3.1_rails61_trilogy.gemfile index 275161fd150..fac74ce6482 100644 --- a/gemfiles/ruby_3.1_rails61_trilogy.gemfile +++ b/gemfiles/ruby_3.1_rails61_trilogy.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,17 +22,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "rails", "~> 6.1.0" gem "trilogy" gem "activerecord-trilogy-adapter" diff --git a/gemfiles/ruby_3.1_rails7.gemfile b/gemfiles/ruby_3.1_rails7.gemfile index 1b4865e61e5..b17a58ae83e 100644 --- a/gemfiles/ruby_3.1_rails7.gemfile +++ b/gemfiles/ruby_3.1_rails7.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,17 +22,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "rails", "~> 7.0.0" group :check do diff --git a/gemfiles/ruby_3.1_rails71.gemfile b/gemfiles/ruby_3.1_rails71.gemfile index 2ac3996b98b..6dbfd093783 100644 --- a/gemfiles/ruby_3.1_rails71.gemfile +++ b/gemfiles/ruby_3.1_rails71.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,17 +22,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "rails", "~> 7.1.0" group :check do diff --git a/gemfiles/ruby_3.1_rails_old_redis.gemfile b/gemfiles/ruby_3.1_rails_old_redis.gemfile index 40fe62d2eeb..c37773ef612 100644 --- a/gemfiles/ruby_3.1_rails_old_redis.gemfile +++ b/gemfiles/ruby_3.1_rails_old_redis.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,17 +22,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "redis", "< 4" gem "rails", "~> 6.1.0" gem "pg", ">= 1.1", platform: :ruby diff --git a/gemfiles/ruby_3.1_redis_3.gemfile b/gemfiles/ruby_3.1_redis_3.gemfile index 2543a241c40..ec4ac063312 100644 --- a/gemfiles/ruby_3.1_redis_3.gemfile +++ b/gemfiles/ruby_3.1_redis_3.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,17 +22,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "redis", "~> 3" group :check do diff --git a/gemfiles/ruby_3.1_redis_4.gemfile b/gemfiles/ruby_3.1_redis_4.gemfile index 61e638f5d54..e12e985d26c 100644 --- a/gemfiles/ruby_3.1_redis_4.gemfile +++ b/gemfiles/ruby_3.1_redis_4.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,17 +22,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "redis", "~> 4" group :check do diff --git a/gemfiles/ruby_3.1_redis_5.gemfile b/gemfiles/ruby_3.1_redis_5.gemfile index 1acbe8bd8b3..8b5cf99cf08 100644 --- a/gemfiles/ruby_3.1_redis_5.gemfile +++ b/gemfiles/ruby_3.1_redis_5.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,17 +22,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "redis", "~> 5" group :check do diff --git a/gemfiles/ruby_3.1_relational_db.gemfile b/gemfiles/ruby_3.1_relational_db.gemfile index 7f2f90a2418..04e64723b4e 100644 --- a/gemfiles/ruby_3.1_relational_db.gemfile +++ b/gemfiles/ruby_3.1_relational_db.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,17 +22,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "activerecord", "~> 7" gem "delayed_job" gem "delayed_job_active_record" diff --git a/gemfiles/ruby_3.1_resque2_redis3.gemfile b/gemfiles/ruby_3.1_resque2_redis3.gemfile index 6a96f9db17f..7b79d1aaab9 100644 --- a/gemfiles/ruby_3.1_resque2_redis3.gemfile +++ b/gemfiles/ruby_3.1_resque2_redis3.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,17 +22,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "redis", "< 4.0" gem "resque", ">= 2.0" diff --git a/gemfiles/ruby_3.1_resque2_redis4.gemfile b/gemfiles/ruby_3.1_resque2_redis4.gemfile index 734c40a0408..1aaaf498b44 100644 --- a/gemfiles/ruby_3.1_resque2_redis4.gemfile +++ b/gemfiles/ruby_3.1_resque2_redis4.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,17 +22,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "redis", ">= 4.0" gem "resque", ">= 2.0" diff --git a/gemfiles/ruby_3.1_sinatra_2.gemfile b/gemfiles/ruby_3.1_sinatra_2.gemfile index 7fad97696b6..c33e7e726a8 100644 --- a/gemfiles/ruby_3.1_sinatra_2.gemfile +++ b/gemfiles/ruby_3.1_sinatra_2.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,17 +22,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "sinatra", "~> 2" gem "rack-contrib" gem "rack-test" diff --git a/gemfiles/ruby_3.1_sinatra_3.gemfile b/gemfiles/ruby_3.1_sinatra_3.gemfile index cee9018ab3c..e2952bf20bd 100644 --- a/gemfiles/ruby_3.1_sinatra_3.gemfile +++ b/gemfiles/ruby_3.1_sinatra_3.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,17 +22,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "sinatra", "~> 3" gem "rack-contrib" gem "rack-test" diff --git a/gemfiles/ruby_3.1_sinatra_4.gemfile b/gemfiles/ruby_3.1_sinatra_4.gemfile index 69ea912fed8..f3302918408 100644 --- a/gemfiles/ruby_3.1_sinatra_4.gemfile +++ b/gemfiles/ruby_3.1_sinatra_4.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,17 +22,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "sinatra", "~> 4" gem "rack-contrib" gem "rack-test" diff --git a/gemfiles/ruby_3.1_stripe_10.gemfile b/gemfiles/ruby_3.1_stripe_10.gemfile index 0f07030118e..56ee7f4126d 100644 --- a/gemfiles/ruby_3.1_stripe_10.gemfile +++ b/gemfiles/ruby_3.1_stripe_10.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,17 +22,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "stripe", "~> 10" group :check do diff --git a/gemfiles/ruby_3.1_stripe_11.gemfile b/gemfiles/ruby_3.1_stripe_11.gemfile index f891ba98c21..d90aa264168 100644 --- a/gemfiles/ruby_3.1_stripe_11.gemfile +++ b/gemfiles/ruby_3.1_stripe_11.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,17 +22,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "stripe", "~> 11" group :check do diff --git a/gemfiles/ruby_3.1_stripe_12.gemfile b/gemfiles/ruby_3.1_stripe_12.gemfile index b99d2080a94..7e835132553 100644 --- a/gemfiles/ruby_3.1_stripe_12.gemfile +++ b/gemfiles/ruby_3.1_stripe_12.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,17 +22,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "stripe", "~> 12" group :check do diff --git a/gemfiles/ruby_3.1_stripe_7.gemfile b/gemfiles/ruby_3.1_stripe_7.gemfile index 05bd336f31b..5af74010422 100644 --- a/gemfiles/ruby_3.1_stripe_7.gemfile +++ b/gemfiles/ruby_3.1_stripe_7.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,17 +22,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "stripe", "~> 7" group :check do diff --git a/gemfiles/ruby_3.1_stripe_8.gemfile b/gemfiles/ruby_3.1_stripe_8.gemfile index d6f4c9e87d7..86d7a931271 100644 --- a/gemfiles/ruby_3.1_stripe_8.gemfile +++ b/gemfiles/ruby_3.1_stripe_8.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,17 +22,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "stripe", "~> 8" group :check do diff --git a/gemfiles/ruby_3.1_stripe_9.gemfile b/gemfiles/ruby_3.1_stripe_9.gemfile index b15d18d7035..83e0e24282a 100644 --- a/gemfiles/ruby_3.1_stripe_9.gemfile +++ b/gemfiles/ruby_3.1_stripe_9.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,17 +22,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "stripe", "~> 9" group :check do diff --git a/gemfiles/ruby_3.1_stripe_latest.gemfile b/gemfiles/ruby_3.1_stripe_latest.gemfile index 94d903d3e17..f792dfa1981 100644 --- a/gemfiles/ruby_3.1_stripe_latest.gemfile +++ b/gemfiles/ruby_3.1_stripe_latest.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,17 +22,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "stripe" group :check do diff --git a/gemfiles/ruby_3.1_stripe_min.gemfile b/gemfiles/ruby_3.1_stripe_min.gemfile index a4e21fbb68a..9d7f405985a 100644 --- a/gemfiles/ruby_3.1_stripe_min.gemfile +++ b/gemfiles/ruby_3.1_stripe_min.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -20,17 +22,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "stripe", "= 5.15.0" group :check do diff --git a/gemfiles/ruby_3.2_activesupport.gemfile b/gemfiles/ruby_3.2_activesupport.gemfile index b5d823c2f9d..f00e86b4902 100644 --- a/gemfiles/ruby_3.2_activesupport.gemfile +++ b/gemfiles/ruby_3.2_activesupport.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -19,17 +21,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "activesupport", "~> 7" gem "actionpack" gem "actionview" diff --git a/gemfiles/ruby_3.2_aws.gemfile b/gemfiles/ruby_3.2_aws.gemfile index c96d8c74047..0b53e609d83 100644 --- a/gemfiles/ruby_3.2_aws.gemfile +++ b/gemfiles/ruby_3.2_aws.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -19,17 +21,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "aws-sdk" gem "shoryuken" diff --git a/gemfiles/ruby_3.2_contrib.gemfile b/gemfiles/ruby_3.2_contrib.gemfile index 8539c49d223..a71755c4a8b 100644 --- a/gemfiles/ruby_3.2_contrib.gemfile +++ b/gemfiles/ruby_3.2_contrib.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -19,17 +21,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "dalli", ">= 3.0.0" gem "grpc", ">= 1.38.0", platform: :ruby gem "mongo", ">= 2.8.0", "< 2.15.0" diff --git a/gemfiles/ruby_3.2_contrib_old.gemfile b/gemfiles/ruby_3.2_contrib_old.gemfile index 5605f89c3ed..2caa7bfff9a 100644 --- a/gemfiles/ruby_3.2_contrib_old.gemfile +++ b/gemfiles/ruby_3.2_contrib_old.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -19,17 +21,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "dalli", "< 3.0.0" gem "presto-client", ">= 0.5.14" gem "qless", "0.12.0" diff --git a/gemfiles/ruby_3.2_core_old.gemfile b/gemfiles/ruby_3.2_core_old.gemfile index f9b6b7af8f1..d67db9a229a 100644 --- a/gemfiles/ruby_3.2_core_old.gemfile +++ b/gemfiles/ruby_3.2_core_old.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", "~> 4" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -19,17 +21,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", "~> 4" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] group :check do diff --git a/gemfiles/ruby_3.2_elasticsearch_7.gemfile b/gemfiles/ruby_3.2_elasticsearch_7.gemfile index e6f883eec60..62f4a0ee3af 100644 --- a/gemfiles/ruby_3.2_elasticsearch_7.gemfile +++ b/gemfiles/ruby_3.2_elasticsearch_7.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -19,17 +21,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "elasticsearch", "~> 7" group :check do diff --git a/gemfiles/ruby_3.2_elasticsearch_8.gemfile b/gemfiles/ruby_3.2_elasticsearch_8.gemfile index 505a954d3f1..cc271883c28 100644 --- a/gemfiles/ruby_3.2_elasticsearch_8.gemfile +++ b/gemfiles/ruby_3.2_elasticsearch_8.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -19,17 +21,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "elasticsearch", "~> 8" group :check do diff --git a/gemfiles/ruby_3.2_elasticsearch_latest.gemfile b/gemfiles/ruby_3.2_elasticsearch_latest.gemfile index 96dd459db66..d8d7aa22e57 100644 --- a/gemfiles/ruby_3.2_elasticsearch_latest.gemfile +++ b/gemfiles/ruby_3.2_elasticsearch_latest.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -19,17 +21,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "elasticsearch" group :check do diff --git a/gemfiles/ruby_3.2_graphql_1.13.gemfile b/gemfiles/ruby_3.2_graphql_1.13.gemfile index 39c7da0169b..59f43aaa1c0 100644 --- a/gemfiles/ruby_3.2_graphql_1.13.gemfile +++ b/gemfiles/ruby_3.2_graphql_1.13.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -19,17 +21,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "rails", "~> 6.1.0" gem "graphql", "~> 1.13.0" gem "sprockets", "< 4" diff --git a/gemfiles/ruby_3.2_graphql_2.0.gemfile b/gemfiles/ruby_3.2_graphql_2.0.gemfile index 5da947b98b1..1abf6d27b26 100644 --- a/gemfiles/ruby_3.2_graphql_2.0.gemfile +++ b/gemfiles/ruby_3.2_graphql_2.0.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -19,17 +21,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "rails", "~> 6.1.0" gem "graphql", "~> 2.0.0" gem "sprockets", "< 4" diff --git a/gemfiles/ruby_3.2_graphql_2.1.gemfile b/gemfiles/ruby_3.2_graphql_2.1.gemfile index 016cd8ba799..8ed2dfaa9e0 100644 --- a/gemfiles/ruby_3.2_graphql_2.1.gemfile +++ b/gemfiles/ruby_3.2_graphql_2.1.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -19,17 +21,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "rails", "~> 6.1.0" gem "graphql", "~> 2.1.0" gem "sprockets", "< 4" diff --git a/gemfiles/ruby_3.2_graphql_2.2.gemfile b/gemfiles/ruby_3.2_graphql_2.2.gemfile index b17d8554e99..f8d6333cdbd 100644 --- a/gemfiles/ruby_3.2_graphql_2.2.gemfile +++ b/gemfiles/ruby_3.2_graphql_2.2.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -19,17 +21,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "rails", "~> 6.1.0" gem "graphql", "~> 2.2.0" gem "sprockets", "< 4" diff --git a/gemfiles/ruby_3.2_graphql_2.3.gemfile b/gemfiles/ruby_3.2_graphql_2.3.gemfile index 78e2b829e39..a5da3023e42 100644 --- a/gemfiles/ruby_3.2_graphql_2.3.gemfile +++ b/gemfiles/ruby_3.2_graphql_2.3.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -19,17 +21,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "rails", "~> 6.1.0" gem "graphql", "~> 2.3.0" gem "sprockets", "< 4" diff --git a/gemfiles/ruby_3.2_http.gemfile b/gemfiles/ruby_3.2_http.gemfile index 90a4c5c20a2..3a1ab022620 100644 --- a/gemfiles/ruby_3.2_http.gemfile +++ b/gemfiles/ruby_3.2_http.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -19,17 +21,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "ethon" gem "excon" gem "faraday" diff --git a/gemfiles/ruby_3.2_opensearch_2.gemfile b/gemfiles/ruby_3.2_opensearch_2.gemfile index 066d90b773c..5e55469e4a3 100644 --- a/gemfiles/ruby_3.2_opensearch_2.gemfile +++ b/gemfiles/ruby_3.2_opensearch_2.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -19,17 +21,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "opensearch-ruby", "~> 2" group :check do diff --git a/gemfiles/ruby_3.2_opensearch_3.gemfile b/gemfiles/ruby_3.2_opensearch_3.gemfile index 1c4287cf9bb..b440d62ca60 100644 --- a/gemfiles/ruby_3.2_opensearch_3.gemfile +++ b/gemfiles/ruby_3.2_opensearch_3.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -19,17 +21,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "opensearch-ruby", "~> 3" group :check do diff --git a/gemfiles/ruby_3.2_opensearch_latest.gemfile b/gemfiles/ruby_3.2_opensearch_latest.gemfile index 2ab6886da97..3e8e5bd6624 100644 --- a/gemfiles/ruby_3.2_opensearch_latest.gemfile +++ b/gemfiles/ruby_3.2_opensearch_latest.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -19,17 +21,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "opensearch-ruby" group :check do diff --git a/gemfiles/ruby_3.2_opentelemetry.gemfile b/gemfiles/ruby_3.2_opentelemetry.gemfile index f762bb3a50f..e5c89526d65 100644 --- a/gemfiles/ruby_3.2_opentelemetry.gemfile +++ b/gemfiles/ruby_3.2_opentelemetry.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -19,17 +21,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "opentelemetry-sdk", "~> 1.1" group :check do diff --git a/gemfiles/ruby_3.2_opentelemetry_otlp.gemfile b/gemfiles/ruby_3.2_opentelemetry_otlp.gemfile index 5c3287129b2..75182024cf7 100644 --- a/gemfiles/ruby_3.2_opentelemetry_otlp.gemfile +++ b/gemfiles/ruby_3.2_opentelemetry_otlp.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -19,17 +21,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "opentelemetry-sdk", "~> 1.1" gem "opentelemetry-exporter-otlp" diff --git a/gemfiles/ruby_3.2_rack_1.gemfile b/gemfiles/ruby_3.2_rack_1.gemfile index e93c01dc7a7..e977278aba9 100644 --- a/gemfiles/ruby_3.2_rack_1.gemfile +++ b/gemfiles/ruby_3.2_rack_1.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -19,17 +21,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "rack", "~> 1" gem "rack-contrib" gem "rack-test" diff --git a/gemfiles/ruby_3.2_rack_2.gemfile b/gemfiles/ruby_3.2_rack_2.gemfile index db272a6140c..87de056577a 100644 --- a/gemfiles/ruby_3.2_rack_2.gemfile +++ b/gemfiles/ruby_3.2_rack_2.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -19,17 +21,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "rack", "~> 2" gem "rack-contrib" gem "rack-test" diff --git a/gemfiles/ruby_3.2_rack_3.gemfile b/gemfiles/ruby_3.2_rack_3.gemfile index cebd36a6618..0e692b97324 100644 --- a/gemfiles/ruby_3.2_rack_3.gemfile +++ b/gemfiles/ruby_3.2_rack_3.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -19,17 +21,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "rack", "~> 3" gem "rack-contrib" gem "rack-test" diff --git a/gemfiles/ruby_3.2_rack_latest.gemfile b/gemfiles/ruby_3.2_rack_latest.gemfile index b015c156006..bce312c52e4 100644 --- a/gemfiles/ruby_3.2_rack_latest.gemfile +++ b/gemfiles/ruby_3.2_rack_latest.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -19,17 +21,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "rack" gem "rack-contrib" gem "rack-test" diff --git a/gemfiles/ruby_3.2_rails61_mysql2.gemfile b/gemfiles/ruby_3.2_rails61_mysql2.gemfile index 2aad69324e2..9c959c1f4c4 100644 --- a/gemfiles/ruby_3.2_rails61_mysql2.gemfile +++ b/gemfiles/ruby_3.2_rails61_mysql2.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -19,17 +21,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "rails", "~> 6.1.0" gem "mysql2", "~> 0.5", platform: :ruby gem "sprockets", "< 4" diff --git a/gemfiles/ruby_3.2_rails61_postgres.gemfile b/gemfiles/ruby_3.2_rails61_postgres.gemfile index b663befcd3f..b70e54c2c92 100644 --- a/gemfiles/ruby_3.2_rails61_postgres.gemfile +++ b/gemfiles/ruby_3.2_rails61_postgres.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -19,17 +21,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "rails", "~> 6.1.0" gem "pg", ">= 1.1", platform: :ruby gem "sprockets", "< 4" diff --git a/gemfiles/ruby_3.2_rails61_postgres_redis.gemfile b/gemfiles/ruby_3.2_rails61_postgres_redis.gemfile index e4ba855389a..fec69ed995c 100644 --- a/gemfiles/ruby_3.2_rails61_postgres_redis.gemfile +++ b/gemfiles/ruby_3.2_rails61_postgres_redis.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -19,17 +21,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "rails", "~> 6.1.0" gem "pg", ">= 1.1", platform: :ruby gem "redis", "~> 4" diff --git a/gemfiles/ruby_3.2_rails61_postgres_sidekiq.gemfile b/gemfiles/ruby_3.2_rails61_postgres_sidekiq.gemfile index 72c6b73cc64..c45085dd974 100644 --- a/gemfiles/ruby_3.2_rails61_postgres_sidekiq.gemfile +++ b/gemfiles/ruby_3.2_rails61_postgres_sidekiq.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -19,17 +21,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "rails", "~> 6.1.0" gem "pg", ">= 1.1", platform: :ruby gem "sidekiq", ">= 6.1.2" diff --git a/gemfiles/ruby_3.2_rails61_semantic_logger.gemfile b/gemfiles/ruby_3.2_rails61_semantic_logger.gemfile index 94707a3a7a9..2cde7f32304 100644 --- a/gemfiles/ruby_3.2_rails61_semantic_logger.gemfile +++ b/gemfiles/ruby_3.2_rails61_semantic_logger.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -19,17 +21,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "rails", "~> 6.1.0" gem "pg", ">= 1.1", platform: :ruby gem "sprockets", "< 4" diff --git a/gemfiles/ruby_3.2_rails61_trilogy.gemfile b/gemfiles/ruby_3.2_rails61_trilogy.gemfile index d831a772386..9022851a92e 100644 --- a/gemfiles/ruby_3.2_rails61_trilogy.gemfile +++ b/gemfiles/ruby_3.2_rails61_trilogy.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -19,17 +21,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "rails", "~> 6.1.0" gem "trilogy" gem "activerecord-trilogy-adapter" diff --git a/gemfiles/ruby_3.2_rails7.gemfile b/gemfiles/ruby_3.2_rails7.gemfile index 22a135fef8f..8c4be9217cf 100644 --- a/gemfiles/ruby_3.2_rails7.gemfile +++ b/gemfiles/ruby_3.2_rails7.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -19,17 +21,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "rails", "~> 7.0.0" group :check do diff --git a/gemfiles/ruby_3.2_rails71.gemfile b/gemfiles/ruby_3.2_rails71.gemfile index 58f19973706..97901ffef09 100644 --- a/gemfiles/ruby_3.2_rails71.gemfile +++ b/gemfiles/ruby_3.2_rails71.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -19,17 +21,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "rails", "~> 7.1.0" group :check do diff --git a/gemfiles/ruby_3.2_rails_old_redis.gemfile b/gemfiles/ruby_3.2_rails_old_redis.gemfile index 6eba23b30d0..732bda94c32 100644 --- a/gemfiles/ruby_3.2_rails_old_redis.gemfile +++ b/gemfiles/ruby_3.2_rails_old_redis.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -19,17 +21,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "redis", "< 4" gem "rails", "~> 6.1.0" gem "pg", ">= 1.1", platform: :ruby diff --git a/gemfiles/ruby_3.2_redis_3.gemfile b/gemfiles/ruby_3.2_redis_3.gemfile index dc50df3ad5c..2621e776d37 100644 --- a/gemfiles/ruby_3.2_redis_3.gemfile +++ b/gemfiles/ruby_3.2_redis_3.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -19,17 +21,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "redis", "~> 3" group :check do diff --git a/gemfiles/ruby_3.2_redis_4.gemfile b/gemfiles/ruby_3.2_redis_4.gemfile index 8219cd198b1..7d028f4bdd6 100644 --- a/gemfiles/ruby_3.2_redis_4.gemfile +++ b/gemfiles/ruby_3.2_redis_4.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -19,17 +21,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "redis", "~> 4" group :check do diff --git a/gemfiles/ruby_3.2_redis_5.gemfile b/gemfiles/ruby_3.2_redis_5.gemfile index 2cfe88ef744..a31604f7db0 100644 --- a/gemfiles/ruby_3.2_redis_5.gemfile +++ b/gemfiles/ruby_3.2_redis_5.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -19,17 +21,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "redis", "~> 5" group :check do diff --git a/gemfiles/ruby_3.2_relational_db.gemfile b/gemfiles/ruby_3.2_relational_db.gemfile index adad7e702b2..1f84b2d4b94 100644 --- a/gemfiles/ruby_3.2_relational_db.gemfile +++ b/gemfiles/ruby_3.2_relational_db.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -19,17 +21,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "activerecord", "~> 7" gem "delayed_job" gem "delayed_job_active_record" diff --git a/gemfiles/ruby_3.2_resque2_redis3.gemfile b/gemfiles/ruby_3.2_resque2_redis3.gemfile index 22e9497a660..e79d7a0f26c 100644 --- a/gemfiles/ruby_3.2_resque2_redis3.gemfile +++ b/gemfiles/ruby_3.2_resque2_redis3.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -19,17 +21,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "redis", "< 4.0" gem "resque", ">= 2.0" diff --git a/gemfiles/ruby_3.2_resque2_redis4.gemfile b/gemfiles/ruby_3.2_resque2_redis4.gemfile index acd6cf30e3b..2572c886f05 100644 --- a/gemfiles/ruby_3.2_resque2_redis4.gemfile +++ b/gemfiles/ruby_3.2_resque2_redis4.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -19,17 +21,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "redis", ">= 4.0" gem "resque", ">= 2.0" diff --git a/gemfiles/ruby_3.2_sinatra_2.gemfile b/gemfiles/ruby_3.2_sinatra_2.gemfile index 1bbea913dc1..9d265f8e3de 100644 --- a/gemfiles/ruby_3.2_sinatra_2.gemfile +++ b/gemfiles/ruby_3.2_sinatra_2.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -19,17 +21,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "sinatra", "~> 2" gem "rack-contrib" gem "rack-test" diff --git a/gemfiles/ruby_3.2_sinatra_3.gemfile b/gemfiles/ruby_3.2_sinatra_3.gemfile index 17cdff127ae..bc754753398 100644 --- a/gemfiles/ruby_3.2_sinatra_3.gemfile +++ b/gemfiles/ruby_3.2_sinatra_3.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -19,17 +21,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "sinatra", "~> 3" gem "rack-contrib" gem "rack-test" diff --git a/gemfiles/ruby_3.2_sinatra_4.gemfile b/gemfiles/ruby_3.2_sinatra_4.gemfile index aab53e33e73..1052d9e7238 100644 --- a/gemfiles/ruby_3.2_sinatra_4.gemfile +++ b/gemfiles/ruby_3.2_sinatra_4.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -19,17 +21,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "sinatra", "~> 4" gem "rack-contrib" gem "rack-test" diff --git a/gemfiles/ruby_3.2_stripe_10.gemfile b/gemfiles/ruby_3.2_stripe_10.gemfile index b914a2a6d5f..2ceadd407b9 100644 --- a/gemfiles/ruby_3.2_stripe_10.gemfile +++ b/gemfiles/ruby_3.2_stripe_10.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -19,17 +21,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "stripe", "~> 10" group :check do diff --git a/gemfiles/ruby_3.2_stripe_11.gemfile b/gemfiles/ruby_3.2_stripe_11.gemfile index 4483da8db6c..3300e5608cc 100644 --- a/gemfiles/ruby_3.2_stripe_11.gemfile +++ b/gemfiles/ruby_3.2_stripe_11.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -19,17 +21,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "stripe", "~> 11" group :check do diff --git a/gemfiles/ruby_3.2_stripe_12.gemfile b/gemfiles/ruby_3.2_stripe_12.gemfile index 090abc1e289..f54cb27fca6 100644 --- a/gemfiles/ruby_3.2_stripe_12.gemfile +++ b/gemfiles/ruby_3.2_stripe_12.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -19,17 +21,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "stripe", "~> 12" group :check do diff --git a/gemfiles/ruby_3.2_stripe_7.gemfile b/gemfiles/ruby_3.2_stripe_7.gemfile index fc56bc4492a..4782529fce3 100644 --- a/gemfiles/ruby_3.2_stripe_7.gemfile +++ b/gemfiles/ruby_3.2_stripe_7.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -19,17 +21,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "stripe", "~> 7" group :check do diff --git a/gemfiles/ruby_3.2_stripe_8.gemfile b/gemfiles/ruby_3.2_stripe_8.gemfile index 3e9ef5c748a..2e93e38446b 100644 --- a/gemfiles/ruby_3.2_stripe_8.gemfile +++ b/gemfiles/ruby_3.2_stripe_8.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -19,17 +21,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "stripe", "~> 8" group :check do diff --git a/gemfiles/ruby_3.2_stripe_9.gemfile b/gemfiles/ruby_3.2_stripe_9.gemfile index d34c26f8276..8b3930e1c50 100644 --- a/gemfiles/ruby_3.2_stripe_9.gemfile +++ b/gemfiles/ruby_3.2_stripe_9.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -19,17 +21,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "stripe", "~> 9" group :check do diff --git a/gemfiles/ruby_3.2_stripe_latest.gemfile b/gemfiles/ruby_3.2_stripe_latest.gemfile index 92b3efaab1c..56dfcce1def 100644 --- a/gemfiles/ruby_3.2_stripe_latest.gemfile +++ b/gemfiles/ruby_3.2_stripe_latest.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -19,17 +21,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "stripe" group :check do diff --git a/gemfiles/ruby_3.2_stripe_min.gemfile b/gemfiles/ruby_3.2_stripe_min.gemfile index 322606e3cd7..1f215af403b 100644 --- a/gemfiles/ruby_3.2_stripe_min.gemfile +++ b/gemfiles/ruby_3.2_stripe_min.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -19,17 +21,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "stripe", "= 5.15.0" group :check do diff --git a/gemfiles/ruby_3.3_activesupport.gemfile b/gemfiles/ruby_3.3_activesupport.gemfile index b5d823c2f9d..f00e86b4902 100644 --- a/gemfiles/ruby_3.3_activesupport.gemfile +++ b/gemfiles/ruby_3.3_activesupport.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -19,17 +21,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "activesupport", "~> 7" gem "actionpack" gem "actionview" diff --git a/gemfiles/ruby_3.3_aws.gemfile b/gemfiles/ruby_3.3_aws.gemfile index c96d8c74047..0b53e609d83 100644 --- a/gemfiles/ruby_3.3_aws.gemfile +++ b/gemfiles/ruby_3.3_aws.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -19,17 +21,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "aws-sdk" gem "shoryuken" diff --git a/gemfiles/ruby_3.3_contrib.gemfile b/gemfiles/ruby_3.3_contrib.gemfile index 8539c49d223..a71755c4a8b 100644 --- a/gemfiles/ruby_3.3_contrib.gemfile +++ b/gemfiles/ruby_3.3_contrib.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -19,17 +21,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "dalli", ">= 3.0.0" gem "grpc", ">= 1.38.0", platform: :ruby gem "mongo", ">= 2.8.0", "< 2.15.0" diff --git a/gemfiles/ruby_3.3_contrib_old.gemfile b/gemfiles/ruby_3.3_contrib_old.gemfile index b94a64bb205..69c05bfa60b 100644 --- a/gemfiles/ruby_3.3_contrib_old.gemfile +++ b/gemfiles/ruby_3.3_contrib_old.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -19,17 +21,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "dalli", "< 3.0.0" gem "presto-client", ">= 0.5.14" gem "qless", "0.12.0" diff --git a/gemfiles/ruby_3.3_core_old.gemfile b/gemfiles/ruby_3.3_core_old.gemfile index f9b6b7af8f1..d67db9a229a 100644 --- a/gemfiles/ruby_3.3_core_old.gemfile +++ b/gemfiles/ruby_3.3_core_old.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", "~> 4" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -19,17 +21,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", "~> 4" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] group :check do diff --git a/gemfiles/ruby_3.3_elasticsearch_7.gemfile b/gemfiles/ruby_3.3_elasticsearch_7.gemfile index e6f883eec60..62f4a0ee3af 100644 --- a/gemfiles/ruby_3.3_elasticsearch_7.gemfile +++ b/gemfiles/ruby_3.3_elasticsearch_7.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -19,17 +21,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "elasticsearch", "~> 7" group :check do diff --git a/gemfiles/ruby_3.3_elasticsearch_8.gemfile b/gemfiles/ruby_3.3_elasticsearch_8.gemfile index 505a954d3f1..cc271883c28 100644 --- a/gemfiles/ruby_3.3_elasticsearch_8.gemfile +++ b/gemfiles/ruby_3.3_elasticsearch_8.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -19,17 +21,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "elasticsearch", "~> 8" group :check do diff --git a/gemfiles/ruby_3.3_elasticsearch_latest.gemfile b/gemfiles/ruby_3.3_elasticsearch_latest.gemfile index 96dd459db66..d8d7aa22e57 100644 --- a/gemfiles/ruby_3.3_elasticsearch_latest.gemfile +++ b/gemfiles/ruby_3.3_elasticsearch_latest.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -19,17 +21,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "elasticsearch" group :check do diff --git a/gemfiles/ruby_3.3_graphql_1.13.gemfile b/gemfiles/ruby_3.3_graphql_1.13.gemfile index 39c7da0169b..59f43aaa1c0 100644 --- a/gemfiles/ruby_3.3_graphql_1.13.gemfile +++ b/gemfiles/ruby_3.3_graphql_1.13.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -19,17 +21,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "rails", "~> 6.1.0" gem "graphql", "~> 1.13.0" gem "sprockets", "< 4" diff --git a/gemfiles/ruby_3.3_graphql_2.0.gemfile b/gemfiles/ruby_3.3_graphql_2.0.gemfile index 5da947b98b1..1abf6d27b26 100644 --- a/gemfiles/ruby_3.3_graphql_2.0.gemfile +++ b/gemfiles/ruby_3.3_graphql_2.0.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -19,17 +21,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "rails", "~> 6.1.0" gem "graphql", "~> 2.0.0" gem "sprockets", "< 4" diff --git a/gemfiles/ruby_3.3_graphql_2.1.gemfile b/gemfiles/ruby_3.3_graphql_2.1.gemfile index 016cd8ba799..8ed2dfaa9e0 100644 --- a/gemfiles/ruby_3.3_graphql_2.1.gemfile +++ b/gemfiles/ruby_3.3_graphql_2.1.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -19,17 +21,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "rails", "~> 6.1.0" gem "graphql", "~> 2.1.0" gem "sprockets", "< 4" diff --git a/gemfiles/ruby_3.3_graphql_2.2.gemfile b/gemfiles/ruby_3.3_graphql_2.2.gemfile index b17d8554e99..f8d6333cdbd 100644 --- a/gemfiles/ruby_3.3_graphql_2.2.gemfile +++ b/gemfiles/ruby_3.3_graphql_2.2.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -19,17 +21,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "rails", "~> 6.1.0" gem "graphql", "~> 2.2.0" gem "sprockets", "< 4" diff --git a/gemfiles/ruby_3.3_graphql_2.3.gemfile b/gemfiles/ruby_3.3_graphql_2.3.gemfile index 78e2b829e39..a5da3023e42 100644 --- a/gemfiles/ruby_3.3_graphql_2.3.gemfile +++ b/gemfiles/ruby_3.3_graphql_2.3.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -19,17 +21,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "rails", "~> 6.1.0" gem "graphql", "~> 2.3.0" gem "sprockets", "< 4" diff --git a/gemfiles/ruby_3.3_http.gemfile b/gemfiles/ruby_3.3_http.gemfile index 90a4c5c20a2..3a1ab022620 100644 --- a/gemfiles/ruby_3.3_http.gemfile +++ b/gemfiles/ruby_3.3_http.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -19,17 +21,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "ethon" gem "excon" gem "faraday" diff --git a/gemfiles/ruby_3.3_opensearch_2.gemfile b/gemfiles/ruby_3.3_opensearch_2.gemfile index 066d90b773c..5e55469e4a3 100644 --- a/gemfiles/ruby_3.3_opensearch_2.gemfile +++ b/gemfiles/ruby_3.3_opensearch_2.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -19,17 +21,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "opensearch-ruby", "~> 2" group :check do diff --git a/gemfiles/ruby_3.3_opensearch_3.gemfile b/gemfiles/ruby_3.3_opensearch_3.gemfile index 1c4287cf9bb..b440d62ca60 100644 --- a/gemfiles/ruby_3.3_opensearch_3.gemfile +++ b/gemfiles/ruby_3.3_opensearch_3.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -19,17 +21,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "opensearch-ruby", "~> 3" group :check do diff --git a/gemfiles/ruby_3.3_opensearch_latest.gemfile b/gemfiles/ruby_3.3_opensearch_latest.gemfile index 2ab6886da97..3e8e5bd6624 100644 --- a/gemfiles/ruby_3.3_opensearch_latest.gemfile +++ b/gemfiles/ruby_3.3_opensearch_latest.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -19,17 +21,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "opensearch-ruby" group :check do diff --git a/gemfiles/ruby_3.3_opentelemetry.gemfile b/gemfiles/ruby_3.3_opentelemetry.gemfile index f762bb3a50f..e5c89526d65 100644 --- a/gemfiles/ruby_3.3_opentelemetry.gemfile +++ b/gemfiles/ruby_3.3_opentelemetry.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -19,17 +21,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "opentelemetry-sdk", "~> 1.1" group :check do diff --git a/gemfiles/ruby_3.3_opentelemetry_otlp.gemfile b/gemfiles/ruby_3.3_opentelemetry_otlp.gemfile index 5c3287129b2..75182024cf7 100644 --- a/gemfiles/ruby_3.3_opentelemetry_otlp.gemfile +++ b/gemfiles/ruby_3.3_opentelemetry_otlp.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -19,17 +21,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "opentelemetry-sdk", "~> 1.1" gem "opentelemetry-exporter-otlp" diff --git a/gemfiles/ruby_3.3_rack_2.gemfile b/gemfiles/ruby_3.3_rack_2.gemfile index db272a6140c..87de056577a 100644 --- a/gemfiles/ruby_3.3_rack_2.gemfile +++ b/gemfiles/ruby_3.3_rack_2.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -19,17 +21,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "rack", "~> 2" gem "rack-contrib" gem "rack-test" diff --git a/gemfiles/ruby_3.3_rack_3.gemfile b/gemfiles/ruby_3.3_rack_3.gemfile index cebd36a6618..0e692b97324 100644 --- a/gemfiles/ruby_3.3_rack_3.gemfile +++ b/gemfiles/ruby_3.3_rack_3.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -19,17 +21,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "rack", "~> 3" gem "rack-contrib" gem "rack-test" diff --git a/gemfiles/ruby_3.3_rack_latest.gemfile b/gemfiles/ruby_3.3_rack_latest.gemfile index b015c156006..bce312c52e4 100644 --- a/gemfiles/ruby_3.3_rack_latest.gemfile +++ b/gemfiles/ruby_3.3_rack_latest.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -19,17 +21,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "rack" gem "rack-contrib" gem "rack-test" diff --git a/gemfiles/ruby_3.3_rails61_mysql2.gemfile b/gemfiles/ruby_3.3_rails61_mysql2.gemfile index 2aad69324e2..9c959c1f4c4 100644 --- a/gemfiles/ruby_3.3_rails61_mysql2.gemfile +++ b/gemfiles/ruby_3.3_rails61_mysql2.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -19,17 +21,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "rails", "~> 6.1.0" gem "mysql2", "~> 0.5", platform: :ruby gem "sprockets", "< 4" diff --git a/gemfiles/ruby_3.3_rails61_postgres.gemfile b/gemfiles/ruby_3.3_rails61_postgres.gemfile index b663befcd3f..b70e54c2c92 100644 --- a/gemfiles/ruby_3.3_rails61_postgres.gemfile +++ b/gemfiles/ruby_3.3_rails61_postgres.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -19,17 +21,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "rails", "~> 6.1.0" gem "pg", ">= 1.1", platform: :ruby gem "sprockets", "< 4" diff --git a/gemfiles/ruby_3.3_rails61_postgres_redis.gemfile b/gemfiles/ruby_3.3_rails61_postgres_redis.gemfile index e4ba855389a..fec69ed995c 100644 --- a/gemfiles/ruby_3.3_rails61_postgres_redis.gemfile +++ b/gemfiles/ruby_3.3_rails61_postgres_redis.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -19,17 +21,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "rails", "~> 6.1.0" gem "pg", ">= 1.1", platform: :ruby gem "redis", "~> 4" diff --git a/gemfiles/ruby_3.3_rails61_postgres_sidekiq.gemfile b/gemfiles/ruby_3.3_rails61_postgres_sidekiq.gemfile index 72c6b73cc64..c45085dd974 100644 --- a/gemfiles/ruby_3.3_rails61_postgres_sidekiq.gemfile +++ b/gemfiles/ruby_3.3_rails61_postgres_sidekiq.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -19,17 +21,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "rails", "~> 6.1.0" gem "pg", ">= 1.1", platform: :ruby gem "sidekiq", ">= 6.1.2" diff --git a/gemfiles/ruby_3.3_rails61_semantic_logger.gemfile b/gemfiles/ruby_3.3_rails61_semantic_logger.gemfile index 94707a3a7a9..2cde7f32304 100644 --- a/gemfiles/ruby_3.3_rails61_semantic_logger.gemfile +++ b/gemfiles/ruby_3.3_rails61_semantic_logger.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -19,17 +21,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "rails", "~> 6.1.0" gem "pg", ">= 1.1", platform: :ruby gem "sprockets", "< 4" diff --git a/gemfiles/ruby_3.3_rails61_trilogy.gemfile b/gemfiles/ruby_3.3_rails61_trilogy.gemfile index d831a772386..9022851a92e 100644 --- a/gemfiles/ruby_3.3_rails61_trilogy.gemfile +++ b/gemfiles/ruby_3.3_rails61_trilogy.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -19,17 +21,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "rails", "~> 6.1.0" gem "trilogy" gem "activerecord-trilogy-adapter" diff --git a/gemfiles/ruby_3.3_rails7.gemfile b/gemfiles/ruby_3.3_rails7.gemfile index 22a135fef8f..8c4be9217cf 100644 --- a/gemfiles/ruby_3.3_rails7.gemfile +++ b/gemfiles/ruby_3.3_rails7.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -19,17 +21,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "rails", "~> 7.0.0" group :check do diff --git a/gemfiles/ruby_3.3_rails71.gemfile b/gemfiles/ruby_3.3_rails71.gemfile index 58f19973706..97901ffef09 100644 --- a/gemfiles/ruby_3.3_rails71.gemfile +++ b/gemfiles/ruby_3.3_rails71.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -19,17 +21,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "rails", "~> 7.1.0" group :check do diff --git a/gemfiles/ruby_3.3_rails_old_redis.gemfile b/gemfiles/ruby_3.3_rails_old_redis.gemfile index 6eba23b30d0..732bda94c32 100644 --- a/gemfiles/ruby_3.3_rails_old_redis.gemfile +++ b/gemfiles/ruby_3.3_rails_old_redis.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -19,17 +21,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "redis", "< 4" gem "rails", "~> 6.1.0" gem "pg", ">= 1.1", platform: :ruby diff --git a/gemfiles/ruby_3.3_redis_3.gemfile b/gemfiles/ruby_3.3_redis_3.gemfile index dc50df3ad5c..2621e776d37 100644 --- a/gemfiles/ruby_3.3_redis_3.gemfile +++ b/gemfiles/ruby_3.3_redis_3.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -19,17 +21,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "redis", "~> 3" group :check do diff --git a/gemfiles/ruby_3.3_redis_4.gemfile b/gemfiles/ruby_3.3_redis_4.gemfile index 8219cd198b1..7d028f4bdd6 100644 --- a/gemfiles/ruby_3.3_redis_4.gemfile +++ b/gemfiles/ruby_3.3_redis_4.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -19,17 +21,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "redis", "~> 4" group :check do diff --git a/gemfiles/ruby_3.3_redis_5.gemfile b/gemfiles/ruby_3.3_redis_5.gemfile index 2cfe88ef744..a31604f7db0 100644 --- a/gemfiles/ruby_3.3_redis_5.gemfile +++ b/gemfiles/ruby_3.3_redis_5.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -19,17 +21,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "redis", "~> 5" group :check do diff --git a/gemfiles/ruby_3.3_relational_db.gemfile b/gemfiles/ruby_3.3_relational_db.gemfile index adad7e702b2..1f84b2d4b94 100644 --- a/gemfiles/ruby_3.3_relational_db.gemfile +++ b/gemfiles/ruby_3.3_relational_db.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -19,17 +21,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "activerecord", "~> 7" gem "delayed_job" gem "delayed_job_active_record" diff --git a/gemfiles/ruby_3.3_resque2_redis3.gemfile b/gemfiles/ruby_3.3_resque2_redis3.gemfile index 22e9497a660..e79d7a0f26c 100644 --- a/gemfiles/ruby_3.3_resque2_redis3.gemfile +++ b/gemfiles/ruby_3.3_resque2_redis3.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -19,17 +21,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "redis", "< 4.0" gem "resque", ">= 2.0" diff --git a/gemfiles/ruby_3.3_resque2_redis4.gemfile b/gemfiles/ruby_3.3_resque2_redis4.gemfile index acd6cf30e3b..2572c886f05 100644 --- a/gemfiles/ruby_3.3_resque2_redis4.gemfile +++ b/gemfiles/ruby_3.3_resque2_redis4.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -19,17 +21,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "redis", ">= 4.0" gem "resque", ">= 2.0" diff --git a/gemfiles/ruby_3.3_sinatra_2.gemfile b/gemfiles/ruby_3.3_sinatra_2.gemfile index 1bbea913dc1..9d265f8e3de 100644 --- a/gemfiles/ruby_3.3_sinatra_2.gemfile +++ b/gemfiles/ruby_3.3_sinatra_2.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -19,17 +21,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "sinatra", "~> 2" gem "rack-contrib" gem "rack-test" diff --git a/gemfiles/ruby_3.3_sinatra_3.gemfile b/gemfiles/ruby_3.3_sinatra_3.gemfile index 17cdff127ae..bc754753398 100644 --- a/gemfiles/ruby_3.3_sinatra_3.gemfile +++ b/gemfiles/ruby_3.3_sinatra_3.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -19,17 +21,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "sinatra", "~> 3" gem "rack-contrib" gem "rack-test" diff --git a/gemfiles/ruby_3.3_sinatra_4.gemfile b/gemfiles/ruby_3.3_sinatra_4.gemfile index aab53e33e73..1052d9e7238 100644 --- a/gemfiles/ruby_3.3_sinatra_4.gemfile +++ b/gemfiles/ruby_3.3_sinatra_4.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -19,17 +21,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "sinatra", "~> 4" gem "rack-contrib" gem "rack-test" diff --git a/gemfiles/ruby_3.3_stripe_10.gemfile b/gemfiles/ruby_3.3_stripe_10.gemfile index b914a2a6d5f..2ceadd407b9 100644 --- a/gemfiles/ruby_3.3_stripe_10.gemfile +++ b/gemfiles/ruby_3.3_stripe_10.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -19,17 +21,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "stripe", "~> 10" group :check do diff --git a/gemfiles/ruby_3.3_stripe_11.gemfile b/gemfiles/ruby_3.3_stripe_11.gemfile index 4483da8db6c..3300e5608cc 100644 --- a/gemfiles/ruby_3.3_stripe_11.gemfile +++ b/gemfiles/ruby_3.3_stripe_11.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -19,17 +21,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "stripe", "~> 11" group :check do diff --git a/gemfiles/ruby_3.3_stripe_12.gemfile b/gemfiles/ruby_3.3_stripe_12.gemfile index 090abc1e289..f54cb27fca6 100644 --- a/gemfiles/ruby_3.3_stripe_12.gemfile +++ b/gemfiles/ruby_3.3_stripe_12.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -19,17 +21,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "stripe", "~> 12" group :check do diff --git a/gemfiles/ruby_3.3_stripe_7.gemfile b/gemfiles/ruby_3.3_stripe_7.gemfile index fc56bc4492a..4782529fce3 100644 --- a/gemfiles/ruby_3.3_stripe_7.gemfile +++ b/gemfiles/ruby_3.3_stripe_7.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -19,17 +21,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "stripe", "~> 7" group :check do diff --git a/gemfiles/ruby_3.3_stripe_8.gemfile b/gemfiles/ruby_3.3_stripe_8.gemfile index 3e9ef5c748a..2e93e38446b 100644 --- a/gemfiles/ruby_3.3_stripe_8.gemfile +++ b/gemfiles/ruby_3.3_stripe_8.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -19,17 +21,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "stripe", "~> 8" group :check do diff --git a/gemfiles/ruby_3.3_stripe_9.gemfile b/gemfiles/ruby_3.3_stripe_9.gemfile index d34c26f8276..8b3930e1c50 100644 --- a/gemfiles/ruby_3.3_stripe_9.gemfile +++ b/gemfiles/ruby_3.3_stripe_9.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -19,17 +21,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "stripe", "~> 9" group :check do diff --git a/gemfiles/ruby_3.3_stripe_latest.gemfile b/gemfiles/ruby_3.3_stripe_latest.gemfile index 92b3efaab1c..56dfcce1def 100644 --- a/gemfiles/ruby_3.3_stripe_latest.gemfile +++ b/gemfiles/ruby_3.3_stripe_latest.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -19,17 +21,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "stripe" group :check do diff --git a/gemfiles/ruby_3.3_stripe_min.gemfile b/gemfiles/ruby_3.3_stripe_min.gemfile index 322606e3cd7..1f215af403b 100644 --- a/gemfiles/ruby_3.3_stripe_min.gemfile +++ b/gemfiles/ruby_3.3_stripe_min.gemfile @@ -6,7 +6,9 @@ gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" gem "os", "~> 1.1" @@ -19,17 +21,15 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" +gem "rubocop", "~> 1.50.0", require: false +gem "rubocop-packaging", "~> 0.5.2", require: false +gem "rubocop-performance", "~> 1.9", require: false +gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.7.0" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "stripe", "= 5.15.0" group :check do From 47ff27cc8c5bfce59946a197dee19392d8a3ef54 Mon Sep 17 00:00:00 2001 From: sarahchen6 Date: Wed, 11 Dec 2024 15:40:40 +0000 Subject: [PATCH 049/161] =?UTF-8?q?[=F0=9F=A4=96]=20Lock=20Dependency:=20h?= =?UTF-8?q?ttps://github.com/DataDog/dd-trace-rb/actions/runs/12279667044?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- gemfiles/ruby_3.4_activesupport.gemfile | 20 +++++++++---------- gemfiles/ruby_3.4_aws.gemfile | 20 +++++++++---------- gemfiles/ruby_3.4_contrib.gemfile | 20 +++++++++---------- gemfiles/ruby_3.4_contrib_old.gemfile | 20 +++++++++---------- gemfiles/ruby_3.4_core_old.gemfile | 20 +++++++++---------- gemfiles/ruby_3.4_elasticsearch_7.gemfile | 20 +++++++++---------- gemfiles/ruby_3.4_elasticsearch_8.gemfile | 20 +++++++++---------- .../ruby_3.4_elasticsearch_latest.gemfile | 20 +++++++++---------- gemfiles/ruby_3.4_graphql_1.13.gemfile | 20 +++++++++---------- gemfiles/ruby_3.4_graphql_2.0.gemfile | 20 +++++++++---------- gemfiles/ruby_3.4_graphql_2.1.gemfile | 20 +++++++++---------- gemfiles/ruby_3.4_graphql_2.2.gemfile | 20 +++++++++---------- gemfiles/ruby_3.4_graphql_2.3.gemfile | 20 +++++++++---------- gemfiles/ruby_3.4_http.gemfile | 20 +++++++++---------- gemfiles/ruby_3.4_opensearch_2.gemfile | 20 +++++++++---------- gemfiles/ruby_3.4_opensearch_3.gemfile | 20 +++++++++---------- gemfiles/ruby_3.4_opensearch_latest.gemfile | 20 +++++++++---------- gemfiles/ruby_3.4_opentelemetry.gemfile | 20 +++++++++---------- gemfiles/ruby_3.4_opentelemetry_otlp.gemfile | 20 +++++++++---------- gemfiles/ruby_3.4_rack_2.gemfile | 20 +++++++++---------- gemfiles/ruby_3.4_rack_3.gemfile | 20 +++++++++---------- gemfiles/ruby_3.4_rack_latest.gemfile | 20 +++++++++---------- gemfiles/ruby_3.4_rails61_mysql2.gemfile | 20 +++++++++---------- gemfiles/ruby_3.4_rails61_postgres.gemfile | 20 +++++++++---------- .../ruby_3.4_rails61_postgres_redis.gemfile | 20 +++++++++---------- .../ruby_3.4_rails61_postgres_sidekiq.gemfile | 20 +++++++++---------- .../ruby_3.4_rails61_semantic_logger.gemfile | 20 +++++++++---------- gemfiles/ruby_3.4_rails61_trilogy.gemfile | 20 +++++++++---------- gemfiles/ruby_3.4_rails7.gemfile | 20 +++++++++---------- gemfiles/ruby_3.4_rails71.gemfile | 20 +++++++++---------- gemfiles/ruby_3.4_rails_old_redis.gemfile | 20 +++++++++---------- gemfiles/ruby_3.4_redis_3.gemfile | 20 +++++++++---------- gemfiles/ruby_3.4_redis_4.gemfile | 20 +++++++++---------- gemfiles/ruby_3.4_redis_5.gemfile | 20 +++++++++---------- gemfiles/ruby_3.4_relational_db.gemfile | 20 +++++++++---------- gemfiles/ruby_3.4_resque2_redis3.gemfile | 20 +++++++++---------- gemfiles/ruby_3.4_resque2_redis4.gemfile | 20 +++++++++---------- gemfiles/ruby_3.4_sinatra_2.gemfile | 20 +++++++++---------- gemfiles/ruby_3.4_sinatra_3.gemfile | 20 +++++++++---------- gemfiles/ruby_3.4_sinatra_4.gemfile | 20 +++++++++---------- gemfiles/ruby_3.4_stripe_10.gemfile | 20 +++++++++---------- gemfiles/ruby_3.4_stripe_11.gemfile | 20 +++++++++---------- gemfiles/ruby_3.4_stripe_12.gemfile | 20 +++++++++---------- gemfiles/ruby_3.4_stripe_7.gemfile | 20 +++++++++---------- gemfiles/ruby_3.4_stripe_8.gemfile | 20 +++++++++---------- gemfiles/ruby_3.4_stripe_9.gemfile | 20 +++++++++---------- gemfiles/ruby_3.4_stripe_latest.gemfile | 20 +++++++++---------- gemfiles/ruby_3.4_stripe_min.gemfile | 20 +++++++++---------- 48 files changed, 480 insertions(+), 480 deletions(-) diff --git a/gemfiles/ruby_3.4_activesupport.gemfile b/gemfiles/ruby_3.4_activesupport.gemfile index ef18848f977..9c6d7cf607d 100644 --- a/gemfiles/ruby_3.4_activesupport.gemfile +++ b/gemfiles/ruby_3.4_activesupport.gemfile @@ -2,13 +2,18 @@ source "https://rubygems.org" +gem "base64" gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" +gem "bigdecimal" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" +gem "mutex_m" gem "os", "~> 1.1" gem "pimpmychangelog", ">= 0.1.2" gem "pry" @@ -19,21 +24,16 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" -gem "webrick", ">= 1.8.2" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" gem "strscan", git: "https://github.com/ruby/strscan", ref: "041b15df4ccc067deabd85fd489b2c15961d0e2f" -gem "base64" -gem "bigdecimal" -gem "mutex_m" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" +gem "webrick", ">= 1.8.2" gem "activesupport", "~> 7" gem "actionpack" gem "actionview" diff --git a/gemfiles/ruby_3.4_aws.gemfile b/gemfiles/ruby_3.4_aws.gemfile index 1dfeb23ab9d..1d0ffa5ece1 100644 --- a/gemfiles/ruby_3.4_aws.gemfile +++ b/gemfiles/ruby_3.4_aws.gemfile @@ -2,13 +2,18 @@ source "https://rubygems.org" +gem "base64" gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" +gem "bigdecimal" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" +gem "mutex_m" gem "os", "~> 1.1" gem "pimpmychangelog", ">= 0.1.2" gem "pry" @@ -19,21 +24,16 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" -gem "webrick", ">= 1.8.2" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" gem "strscan", git: "https://github.com/ruby/strscan", ref: "041b15df4ccc067deabd85fd489b2c15961d0e2f" -gem "base64" -gem "bigdecimal" -gem "mutex_m" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" +gem "webrick", ">= 1.8.2" gem "aws-sdk" gem "shoryuken" diff --git a/gemfiles/ruby_3.4_contrib.gemfile b/gemfiles/ruby_3.4_contrib.gemfile index 5d920e42df0..6b918e37619 100644 --- a/gemfiles/ruby_3.4_contrib.gemfile +++ b/gemfiles/ruby_3.4_contrib.gemfile @@ -2,13 +2,18 @@ source "https://rubygems.org" +gem "base64" gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" +gem "bigdecimal" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" +gem "mutex_m" gem "os", "~> 1.1" gem "pimpmychangelog", ">= 0.1.2" gem "pry" @@ -19,21 +24,16 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" -gem "webrick", ">= 1.8.2" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" gem "strscan", git: "https://github.com/ruby/strscan", ref: "041b15df4ccc067deabd85fd489b2c15961d0e2f" -gem "base64" -gem "bigdecimal" -gem "mutex_m" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" +gem "webrick", ">= 1.8.2" gem "dalli", ">= 3.0.0" gem "grpc", ">= 1.38.0", platform: :ruby gem "mongo", ">= 2.8.0", "< 2.15.0" diff --git a/gemfiles/ruby_3.4_contrib_old.gemfile b/gemfiles/ruby_3.4_contrib_old.gemfile index 28cc92abffb..21050379892 100644 --- a/gemfiles/ruby_3.4_contrib_old.gemfile +++ b/gemfiles/ruby_3.4_contrib_old.gemfile @@ -2,13 +2,18 @@ source "https://rubygems.org" +gem "base64" gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" +gem "bigdecimal" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" +gem "mutex_m" gem "os", "~> 1.1" gem "pimpmychangelog", ">= 0.1.2" gem "pry" @@ -19,21 +24,16 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" -gem "webrick", ">= 1.8.2" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" gem "strscan", git: "https://github.com/ruby/strscan", ref: "041b15df4ccc067deabd85fd489b2c15961d0e2f" -gem "base64" -gem "bigdecimal" -gem "mutex_m" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" +gem "webrick", ">= 1.8.2" gem "dalli", "< 3.0.0" gem "presto-client", ">= 0.5.14" gem "qless", "0.12.0" diff --git a/gemfiles/ruby_3.4_core_old.gemfile b/gemfiles/ruby_3.4_core_old.gemfile index d58648ba078..547f67430e4 100644 --- a/gemfiles/ruby_3.4_core_old.gemfile +++ b/gemfiles/ruby_3.4_core_old.gemfile @@ -2,13 +2,18 @@ source "https://rubygems.org" +gem "base64" gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" +gem "bigdecimal" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", "~> 4" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" +gem "mutex_m" gem "os", "~> 1.1" gem "pimpmychangelog", ">= 0.1.2" gem "pry" @@ -19,21 +24,16 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" -gem "webrick", ">= 1.8.2" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", "~> 4" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" gem "strscan", git: "https://github.com/ruby/strscan", ref: "041b15df4ccc067deabd85fd489b2c15961d0e2f" -gem "base64" -gem "bigdecimal" -gem "mutex_m" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" +gem "webrick", ">= 1.8.2" group :check do diff --git a/gemfiles/ruby_3.4_elasticsearch_7.gemfile b/gemfiles/ruby_3.4_elasticsearch_7.gemfile index bcd98bcb5e3..ca0a57a3b86 100644 --- a/gemfiles/ruby_3.4_elasticsearch_7.gemfile +++ b/gemfiles/ruby_3.4_elasticsearch_7.gemfile @@ -2,13 +2,18 @@ source "https://rubygems.org" +gem "base64" gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" +gem "bigdecimal" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" +gem "mutex_m" gem "os", "~> 1.1" gem "pimpmychangelog", ">= 0.1.2" gem "pry" @@ -19,21 +24,16 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" -gem "webrick", ">= 1.8.2" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" gem "strscan", git: "https://github.com/ruby/strscan", ref: "041b15df4ccc067deabd85fd489b2c15961d0e2f" -gem "base64" -gem "bigdecimal" -gem "mutex_m" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" +gem "webrick", ">= 1.8.2" gem "elasticsearch", "~> 7" group :check do diff --git a/gemfiles/ruby_3.4_elasticsearch_8.gemfile b/gemfiles/ruby_3.4_elasticsearch_8.gemfile index e2443f388c0..e206077209e 100644 --- a/gemfiles/ruby_3.4_elasticsearch_8.gemfile +++ b/gemfiles/ruby_3.4_elasticsearch_8.gemfile @@ -2,13 +2,18 @@ source "https://rubygems.org" +gem "base64" gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" +gem "bigdecimal" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" +gem "mutex_m" gem "os", "~> 1.1" gem "pimpmychangelog", ">= 0.1.2" gem "pry" @@ -19,21 +24,16 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" -gem "webrick", ">= 1.8.2" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" gem "strscan", git: "https://github.com/ruby/strscan", ref: "041b15df4ccc067deabd85fd489b2c15961d0e2f" -gem "base64" -gem "bigdecimal" -gem "mutex_m" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" +gem "webrick", ">= 1.8.2" gem "elasticsearch", "~> 8" group :check do diff --git a/gemfiles/ruby_3.4_elasticsearch_latest.gemfile b/gemfiles/ruby_3.4_elasticsearch_latest.gemfile index 041f34637cf..617eece269d 100644 --- a/gemfiles/ruby_3.4_elasticsearch_latest.gemfile +++ b/gemfiles/ruby_3.4_elasticsearch_latest.gemfile @@ -2,13 +2,18 @@ source "https://rubygems.org" +gem "base64" gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" +gem "bigdecimal" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" +gem "mutex_m" gem "os", "~> 1.1" gem "pimpmychangelog", ">= 0.1.2" gem "pry" @@ -19,21 +24,16 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" -gem "webrick", ">= 1.8.2" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" gem "strscan", git: "https://github.com/ruby/strscan", ref: "041b15df4ccc067deabd85fd489b2c15961d0e2f" -gem "base64" -gem "bigdecimal" -gem "mutex_m" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" +gem "webrick", ">= 1.8.2" gem "elasticsearch" group :check do diff --git a/gemfiles/ruby_3.4_graphql_1.13.gemfile b/gemfiles/ruby_3.4_graphql_1.13.gemfile index a3cebe436ba..bed7165479a 100644 --- a/gemfiles/ruby_3.4_graphql_1.13.gemfile +++ b/gemfiles/ruby_3.4_graphql_1.13.gemfile @@ -2,13 +2,18 @@ source "https://rubygems.org" +gem "base64" gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" +gem "bigdecimal" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" +gem "mutex_m", ">= 0.1.0" gem "os", "~> 1.1" gem "pimpmychangelog", ">= 0.1.2" gem "pry" @@ -19,21 +24,16 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" -gem "webrick", ">= 1.8.2" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" gem "strscan", git: "https://github.com/ruby/strscan", ref: "041b15df4ccc067deabd85fd489b2c15961d0e2f" -gem "base64" -gem "bigdecimal" -gem "mutex_m", ">= 0.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" +gem "webrick", ">= 1.8.2" gem "rails", "~> 6.1.0" gem "graphql", "~> 1.13.0" gem "sprockets", "< 4" diff --git a/gemfiles/ruby_3.4_graphql_2.0.gemfile b/gemfiles/ruby_3.4_graphql_2.0.gemfile index c24a050e91a..86a7af994d9 100644 --- a/gemfiles/ruby_3.4_graphql_2.0.gemfile +++ b/gemfiles/ruby_3.4_graphql_2.0.gemfile @@ -2,13 +2,18 @@ source "https://rubygems.org" +gem "base64" gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" +gem "bigdecimal" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" +gem "mutex_m", ">= 0.1.0" gem "os", "~> 1.1" gem "pimpmychangelog", ">= 0.1.2" gem "pry" @@ -19,21 +24,16 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" -gem "webrick", ">= 1.8.2" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" gem "strscan", git: "https://github.com/ruby/strscan", ref: "041b15df4ccc067deabd85fd489b2c15961d0e2f" -gem "base64" -gem "bigdecimal" -gem "mutex_m", ">= 0.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" +gem "webrick", ">= 1.8.2" gem "rails", "~> 6.1.0" gem "graphql", "~> 2.0.0" gem "sprockets", "< 4" diff --git a/gemfiles/ruby_3.4_graphql_2.1.gemfile b/gemfiles/ruby_3.4_graphql_2.1.gemfile index dab6030acd4..7910e1feec2 100644 --- a/gemfiles/ruby_3.4_graphql_2.1.gemfile +++ b/gemfiles/ruby_3.4_graphql_2.1.gemfile @@ -2,13 +2,18 @@ source "https://rubygems.org" +gem "base64" gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" +gem "bigdecimal" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" +gem "mutex_m", ">= 0.1.0" gem "os", "~> 1.1" gem "pimpmychangelog", ">= 0.1.2" gem "pry" @@ -19,21 +24,16 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" -gem "webrick", ">= 1.8.2" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" gem "strscan", git: "https://github.com/ruby/strscan", ref: "041b15df4ccc067deabd85fd489b2c15961d0e2f" -gem "base64" -gem "bigdecimal" -gem "mutex_m", ">= 0.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" +gem "webrick", ">= 1.8.2" gem "rails", "~> 6.1.0" gem "graphql", "~> 2.1.0" gem "sprockets", "< 4" diff --git a/gemfiles/ruby_3.4_graphql_2.2.gemfile b/gemfiles/ruby_3.4_graphql_2.2.gemfile index e866e918bb6..10c6d255c33 100644 --- a/gemfiles/ruby_3.4_graphql_2.2.gemfile +++ b/gemfiles/ruby_3.4_graphql_2.2.gemfile @@ -2,13 +2,18 @@ source "https://rubygems.org" +gem "base64" gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" +gem "bigdecimal" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" +gem "mutex_m", ">= 0.1.0" gem "os", "~> 1.1" gem "pimpmychangelog", ">= 0.1.2" gem "pry" @@ -19,21 +24,16 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" -gem "webrick", ">= 1.8.2" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" gem "strscan", git: "https://github.com/ruby/strscan", ref: "041b15df4ccc067deabd85fd489b2c15961d0e2f" -gem "base64" -gem "bigdecimal" -gem "mutex_m", ">= 0.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" +gem "webrick", ">= 1.8.2" gem "rails", "~> 6.1.0" gem "graphql", "~> 2.2.0" gem "sprockets", "< 4" diff --git a/gemfiles/ruby_3.4_graphql_2.3.gemfile b/gemfiles/ruby_3.4_graphql_2.3.gemfile index 6b44d3e28cd..f775428fe71 100644 --- a/gemfiles/ruby_3.4_graphql_2.3.gemfile +++ b/gemfiles/ruby_3.4_graphql_2.3.gemfile @@ -2,13 +2,18 @@ source "https://rubygems.org" +gem "base64" gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" +gem "bigdecimal" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" +gem "mutex_m", ">= 0.1.0" gem "os", "~> 1.1" gem "pimpmychangelog", ">= 0.1.2" gem "pry" @@ -19,21 +24,16 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" -gem "webrick", ">= 1.8.2" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" gem "strscan", git: "https://github.com/ruby/strscan", ref: "041b15df4ccc067deabd85fd489b2c15961d0e2f" -gem "base64" -gem "bigdecimal" -gem "mutex_m", ">= 0.1.0" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" +gem "webrick", ">= 1.8.2" gem "rails", "~> 6.1.0" gem "graphql", "~> 2.3.0" gem "sprockets", "< 4" diff --git a/gemfiles/ruby_3.4_http.gemfile b/gemfiles/ruby_3.4_http.gemfile index 9425412f858..9013f09cfca 100644 --- a/gemfiles/ruby_3.4_http.gemfile +++ b/gemfiles/ruby_3.4_http.gemfile @@ -2,13 +2,18 @@ source "https://rubygems.org" +gem "base64" gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" +gem "bigdecimal" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" +gem "mutex_m" gem "os", "~> 1.1" gem "pimpmychangelog", ">= 0.1.2" gem "pry" @@ -19,21 +24,16 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" -gem "webrick", ">= 1.8.2" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" gem "strscan", git: "https://github.com/ruby/strscan", ref: "041b15df4ccc067deabd85fd489b2c15961d0e2f" -gem "base64" -gem "bigdecimal" -gem "mutex_m" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" +gem "webrick", ">= 1.8.2" gem "ethon" gem "excon" gem "faraday" diff --git a/gemfiles/ruby_3.4_opensearch_2.gemfile b/gemfiles/ruby_3.4_opensearch_2.gemfile index 4ab4d4c7ed4..8487af6f277 100644 --- a/gemfiles/ruby_3.4_opensearch_2.gemfile +++ b/gemfiles/ruby_3.4_opensearch_2.gemfile @@ -2,13 +2,18 @@ source "https://rubygems.org" +gem "base64" gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" +gem "bigdecimal" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" +gem "mutex_m" gem "os", "~> 1.1" gem "pimpmychangelog", ">= 0.1.2" gem "pry" @@ -19,21 +24,16 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" -gem "webrick", ">= 1.8.2" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" gem "strscan", git: "https://github.com/ruby/strscan", ref: "041b15df4ccc067deabd85fd489b2c15961d0e2f" -gem "base64" -gem "bigdecimal" -gem "mutex_m" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" +gem "webrick", ">= 1.8.2" gem "opensearch-ruby", "~> 2" group :check do diff --git a/gemfiles/ruby_3.4_opensearch_3.gemfile b/gemfiles/ruby_3.4_opensearch_3.gemfile index 60f5d7d7c74..1a928a4a7c8 100644 --- a/gemfiles/ruby_3.4_opensearch_3.gemfile +++ b/gemfiles/ruby_3.4_opensearch_3.gemfile @@ -2,13 +2,18 @@ source "https://rubygems.org" +gem "base64" gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" +gem "bigdecimal" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" +gem "mutex_m" gem "os", "~> 1.1" gem "pimpmychangelog", ">= 0.1.2" gem "pry" @@ -19,21 +24,16 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" -gem "webrick", ">= 1.8.2" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" gem "strscan", git: "https://github.com/ruby/strscan", ref: "041b15df4ccc067deabd85fd489b2c15961d0e2f" -gem "base64" -gem "bigdecimal" -gem "mutex_m" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" +gem "webrick", ">= 1.8.2" gem "opensearch-ruby", "~> 3" group :check do diff --git a/gemfiles/ruby_3.4_opensearch_latest.gemfile b/gemfiles/ruby_3.4_opensearch_latest.gemfile index c26955fd839..4bdc9cd1ec5 100644 --- a/gemfiles/ruby_3.4_opensearch_latest.gemfile +++ b/gemfiles/ruby_3.4_opensearch_latest.gemfile @@ -2,13 +2,18 @@ source "https://rubygems.org" +gem "base64" gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" +gem "bigdecimal" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" +gem "mutex_m" gem "os", "~> 1.1" gem "pimpmychangelog", ">= 0.1.2" gem "pry" @@ -19,21 +24,16 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" -gem "webrick", ">= 1.8.2" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" gem "strscan", git: "https://github.com/ruby/strscan", ref: "041b15df4ccc067deabd85fd489b2c15961d0e2f" -gem "base64" -gem "bigdecimal" -gem "mutex_m" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" +gem "webrick", ">= 1.8.2" gem "opensearch-ruby" group :check do diff --git a/gemfiles/ruby_3.4_opentelemetry.gemfile b/gemfiles/ruby_3.4_opentelemetry.gemfile index 4c5e9eb41ec..13f8c87ba04 100644 --- a/gemfiles/ruby_3.4_opentelemetry.gemfile +++ b/gemfiles/ruby_3.4_opentelemetry.gemfile @@ -2,13 +2,18 @@ source "https://rubygems.org" +gem "base64" gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" +gem "bigdecimal" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" +gem "mutex_m" gem "os", "~> 1.1" gem "pimpmychangelog", ">= 0.1.2" gem "pry" @@ -19,21 +24,16 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" -gem "webrick", ">= 1.8.2" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" gem "strscan", git: "https://github.com/ruby/strscan", ref: "041b15df4ccc067deabd85fd489b2c15961d0e2f" -gem "base64" -gem "bigdecimal" -gem "mutex_m" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" +gem "webrick", ">= 1.8.2" gem "opentelemetry-sdk", "~> 1.1" group :check do diff --git a/gemfiles/ruby_3.4_opentelemetry_otlp.gemfile b/gemfiles/ruby_3.4_opentelemetry_otlp.gemfile index b6dc9b9fc61..dcef28884e0 100644 --- a/gemfiles/ruby_3.4_opentelemetry_otlp.gemfile +++ b/gemfiles/ruby_3.4_opentelemetry_otlp.gemfile @@ -2,13 +2,18 @@ source "https://rubygems.org" +gem "base64" gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" +gem "bigdecimal" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" +gem "mutex_m" gem "os", "~> 1.1" gem "pimpmychangelog", ">= 0.1.2" gem "pry" @@ -19,21 +24,16 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" -gem "webrick", ">= 1.8.2" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" gem "strscan", git: "https://github.com/ruby/strscan", ref: "041b15df4ccc067deabd85fd489b2c15961d0e2f" -gem "base64" -gem "bigdecimal" -gem "mutex_m" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" +gem "webrick", ">= 1.8.2" gem "opentelemetry-sdk", "~> 1.1" gem "opentelemetry-exporter-otlp" diff --git a/gemfiles/ruby_3.4_rack_2.gemfile b/gemfiles/ruby_3.4_rack_2.gemfile index 0e0b8caf71e..1471d0b6b31 100644 --- a/gemfiles/ruby_3.4_rack_2.gemfile +++ b/gemfiles/ruby_3.4_rack_2.gemfile @@ -2,13 +2,18 @@ source "https://rubygems.org" +gem "base64" gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" +gem "bigdecimal" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" +gem "mutex_m" gem "os", "~> 1.1" gem "pimpmychangelog", ">= 0.1.2" gem "pry" @@ -19,21 +24,16 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" -gem "webrick", ">= 1.8.2" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" gem "strscan", git: "https://github.com/ruby/strscan", ref: "041b15df4ccc067deabd85fd489b2c15961d0e2f" -gem "base64" -gem "bigdecimal" -gem "mutex_m" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" +gem "webrick", ">= 1.8.2" gem "rack", "~> 2" gem "rack-contrib" gem "rack-test" diff --git a/gemfiles/ruby_3.4_rack_3.gemfile b/gemfiles/ruby_3.4_rack_3.gemfile index 637cdcb7426..7c8b1e43db9 100644 --- a/gemfiles/ruby_3.4_rack_3.gemfile +++ b/gemfiles/ruby_3.4_rack_3.gemfile @@ -2,13 +2,18 @@ source "https://rubygems.org" +gem "base64" gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" +gem "bigdecimal" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" +gem "mutex_m" gem "os", "~> 1.1" gem "pimpmychangelog", ">= 0.1.2" gem "pry" @@ -19,21 +24,16 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" -gem "webrick", ">= 1.8.2" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" gem "strscan", git: "https://github.com/ruby/strscan", ref: "041b15df4ccc067deabd85fd489b2c15961d0e2f" -gem "base64" -gem "bigdecimal" -gem "mutex_m" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" +gem "webrick", ">= 1.8.2" gem "rack", "~> 3" gem "rack-contrib" gem "rack-test" diff --git a/gemfiles/ruby_3.4_rack_latest.gemfile b/gemfiles/ruby_3.4_rack_latest.gemfile index 2562371574d..9f705bee167 100644 --- a/gemfiles/ruby_3.4_rack_latest.gemfile +++ b/gemfiles/ruby_3.4_rack_latest.gemfile @@ -2,13 +2,18 @@ source "https://rubygems.org" +gem "base64" gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" +gem "bigdecimal" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" +gem "mutex_m" gem "os", "~> 1.1" gem "pimpmychangelog", ">= 0.1.2" gem "pry" @@ -19,21 +24,16 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" -gem "webrick", ">= 1.8.2" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" gem "strscan", git: "https://github.com/ruby/strscan", ref: "041b15df4ccc067deabd85fd489b2c15961d0e2f" -gem "base64" -gem "bigdecimal" -gem "mutex_m" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" +gem "webrick", ">= 1.8.2" gem "rack" gem "rack-contrib" gem "rack-test" diff --git a/gemfiles/ruby_3.4_rails61_mysql2.gemfile b/gemfiles/ruby_3.4_rails61_mysql2.gemfile index f2724a50c94..88849759a64 100644 --- a/gemfiles/ruby_3.4_rails61_mysql2.gemfile +++ b/gemfiles/ruby_3.4_rails61_mysql2.gemfile @@ -2,13 +2,18 @@ source "https://rubygems.org" +gem "base64" gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" +gem "bigdecimal" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" +gem "mutex_m" gem "os", "~> 1.1" gem "pimpmychangelog", ">= 0.1.2" gem "pry" @@ -19,21 +24,16 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" -gem "webrick", ">= 1.8.2" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" gem "strscan", git: "https://github.com/ruby/strscan", ref: "041b15df4ccc067deabd85fd489b2c15961d0e2f" -gem "base64" -gem "bigdecimal" -gem "mutex_m" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" +gem "webrick", ">= 1.8.2" gem "rails", "~> 6.1.0" gem "mysql2", "~> 0.5", platform: :ruby gem "sprockets", "< 4" diff --git a/gemfiles/ruby_3.4_rails61_postgres.gemfile b/gemfiles/ruby_3.4_rails61_postgres.gemfile index 411f993b1fb..017c1a501db 100644 --- a/gemfiles/ruby_3.4_rails61_postgres.gemfile +++ b/gemfiles/ruby_3.4_rails61_postgres.gemfile @@ -2,13 +2,18 @@ source "https://rubygems.org" +gem "base64" gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" +gem "bigdecimal" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" +gem "mutex_m" gem "os", "~> 1.1" gem "pimpmychangelog", ">= 0.1.2" gem "pry" @@ -19,21 +24,16 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" -gem "webrick", ">= 1.8.2" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" gem "strscan", git: "https://github.com/ruby/strscan", ref: "041b15df4ccc067deabd85fd489b2c15961d0e2f" -gem "base64" -gem "bigdecimal" -gem "mutex_m" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" +gem "webrick", ">= 1.8.2" gem "rails", "~> 6.1.0" gem "pg", ">= 1.1", platform: :ruby gem "sprockets", "< 4" diff --git a/gemfiles/ruby_3.4_rails61_postgres_redis.gemfile b/gemfiles/ruby_3.4_rails61_postgres_redis.gemfile index 0f5ccb64ff1..5227ff1a053 100644 --- a/gemfiles/ruby_3.4_rails61_postgres_redis.gemfile +++ b/gemfiles/ruby_3.4_rails61_postgres_redis.gemfile @@ -2,13 +2,18 @@ source "https://rubygems.org" +gem "base64" gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" +gem "bigdecimal" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" +gem "mutex_m" gem "os", "~> 1.1" gem "pimpmychangelog", ">= 0.1.2" gem "pry" @@ -19,21 +24,16 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" -gem "webrick", ">= 1.8.2" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" gem "strscan", git: "https://github.com/ruby/strscan", ref: "041b15df4ccc067deabd85fd489b2c15961d0e2f" -gem "base64" -gem "bigdecimal" -gem "mutex_m" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" +gem "webrick", ">= 1.8.2" gem "rails", "~> 6.1.0" gem "pg", ">= 1.1", platform: :ruby gem "redis", "~> 4" diff --git a/gemfiles/ruby_3.4_rails61_postgres_sidekiq.gemfile b/gemfiles/ruby_3.4_rails61_postgres_sidekiq.gemfile index 1a44b8717cd..e36430d98c7 100644 --- a/gemfiles/ruby_3.4_rails61_postgres_sidekiq.gemfile +++ b/gemfiles/ruby_3.4_rails61_postgres_sidekiq.gemfile @@ -2,13 +2,18 @@ source "https://rubygems.org" +gem "base64" gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" +gem "bigdecimal" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" +gem "mutex_m" gem "os", "~> 1.1" gem "pimpmychangelog", ">= 0.1.2" gem "pry" @@ -19,21 +24,16 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" -gem "webrick", ">= 1.8.2" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" gem "strscan", git: "https://github.com/ruby/strscan", ref: "041b15df4ccc067deabd85fd489b2c15961d0e2f" -gem "base64" -gem "bigdecimal" -gem "mutex_m" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" +gem "webrick", ">= 1.8.2" gem "rails", "~> 6.1.0" gem "pg", ">= 1.1", platform: :ruby gem "sidekiq", ">= 6.1.2" diff --git a/gemfiles/ruby_3.4_rails61_semantic_logger.gemfile b/gemfiles/ruby_3.4_rails61_semantic_logger.gemfile index 4c3bc5b5cf1..eb3d09a2613 100644 --- a/gemfiles/ruby_3.4_rails61_semantic_logger.gemfile +++ b/gemfiles/ruby_3.4_rails61_semantic_logger.gemfile @@ -2,13 +2,18 @@ source "https://rubygems.org" +gem "base64" gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" +gem "bigdecimal" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" +gem "mutex_m" gem "os", "~> 1.1" gem "pimpmychangelog", ">= 0.1.2" gem "pry" @@ -19,21 +24,16 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" -gem "webrick", ">= 1.8.2" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" gem "strscan", git: "https://github.com/ruby/strscan", ref: "041b15df4ccc067deabd85fd489b2c15961d0e2f" -gem "base64" -gem "bigdecimal" -gem "mutex_m" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" +gem "webrick", ">= 1.8.2" gem "rails", "~> 6.1.0" gem "pg", ">= 1.1", platform: :ruby gem "sprockets", "< 4" diff --git a/gemfiles/ruby_3.4_rails61_trilogy.gemfile b/gemfiles/ruby_3.4_rails61_trilogy.gemfile index 17746b0e368..ebb99bceb42 100644 --- a/gemfiles/ruby_3.4_rails61_trilogy.gemfile +++ b/gemfiles/ruby_3.4_rails61_trilogy.gemfile @@ -2,13 +2,18 @@ source "https://rubygems.org" +gem "base64" gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" +gem "bigdecimal" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" +gem "mutex_m" gem "os", "~> 1.1" gem "pimpmychangelog", ">= 0.1.2" gem "pry" @@ -19,21 +24,16 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" -gem "webrick", ">= 1.8.2" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" gem "strscan", git: "https://github.com/ruby/strscan", ref: "041b15df4ccc067deabd85fd489b2c15961d0e2f" -gem "base64" -gem "bigdecimal" -gem "mutex_m" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" +gem "webrick", ">= 1.8.2" gem "rails", "~> 6.1.0" gem "trilogy" gem "activerecord-trilogy-adapter" diff --git a/gemfiles/ruby_3.4_rails7.gemfile b/gemfiles/ruby_3.4_rails7.gemfile index ba49c7ea9a5..ce59672af11 100644 --- a/gemfiles/ruby_3.4_rails7.gemfile +++ b/gemfiles/ruby_3.4_rails7.gemfile @@ -2,13 +2,18 @@ source "https://rubygems.org" +gem "base64" gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" +gem "bigdecimal" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" +gem "mutex_m" gem "os", "~> 1.1" gem "pimpmychangelog", ">= 0.1.2" gem "pry" @@ -19,21 +24,16 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" -gem "webrick", ">= 1.8.2" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" gem "strscan", git: "https://github.com/ruby/strscan", ref: "041b15df4ccc067deabd85fd489b2c15961d0e2f" -gem "base64" -gem "bigdecimal" -gem "mutex_m" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" +gem "webrick", ">= 1.8.2" gem "rails", "~> 7.0.0" group :check do diff --git a/gemfiles/ruby_3.4_rails71.gemfile b/gemfiles/ruby_3.4_rails71.gemfile index 66343ea9b6c..d62f469a994 100644 --- a/gemfiles/ruby_3.4_rails71.gemfile +++ b/gemfiles/ruby_3.4_rails71.gemfile @@ -2,13 +2,18 @@ source "https://rubygems.org" +gem "base64" gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" +gem "bigdecimal" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" +gem "mutex_m" gem "os", "~> 1.1" gem "pimpmychangelog", ">= 0.1.2" gem "pry" @@ -19,21 +24,16 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" -gem "webrick", ">= 1.8.2" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" gem "strscan", git: "https://github.com/ruby/strscan", ref: "041b15df4ccc067deabd85fd489b2c15961d0e2f" -gem "base64" -gem "bigdecimal" -gem "mutex_m" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" +gem "webrick", ">= 1.8.2" gem "rails", "~> 7.1.0" group :check do diff --git a/gemfiles/ruby_3.4_rails_old_redis.gemfile b/gemfiles/ruby_3.4_rails_old_redis.gemfile index a1fa7abb9b3..3b67a2fe8da 100644 --- a/gemfiles/ruby_3.4_rails_old_redis.gemfile +++ b/gemfiles/ruby_3.4_rails_old_redis.gemfile @@ -2,13 +2,18 @@ source "https://rubygems.org" +gem "base64" gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" +gem "bigdecimal" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" +gem "mutex_m" gem "os", "~> 1.1" gem "pimpmychangelog", ">= 0.1.2" gem "pry" @@ -19,21 +24,16 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" -gem "webrick", ">= 1.8.2" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" gem "strscan", git: "https://github.com/ruby/strscan", ref: "041b15df4ccc067deabd85fd489b2c15961d0e2f" -gem "base64" -gem "bigdecimal" -gem "mutex_m" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" +gem "webrick", ">= 1.8.2" gem "redis", "< 4" gem "rails", "~> 6.1.0" gem "pg", ">= 1.1", platform: :ruby diff --git a/gemfiles/ruby_3.4_redis_3.gemfile b/gemfiles/ruby_3.4_redis_3.gemfile index d719e320f7b..58da84c1f65 100644 --- a/gemfiles/ruby_3.4_redis_3.gemfile +++ b/gemfiles/ruby_3.4_redis_3.gemfile @@ -2,13 +2,18 @@ source "https://rubygems.org" +gem "base64" gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" +gem "bigdecimal" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" +gem "mutex_m" gem "os", "~> 1.1" gem "pimpmychangelog", ">= 0.1.2" gem "pry" @@ -19,21 +24,16 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" -gem "webrick", ">= 1.8.2" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" gem "strscan", git: "https://github.com/ruby/strscan", ref: "041b15df4ccc067deabd85fd489b2c15961d0e2f" -gem "base64" -gem "bigdecimal" -gem "mutex_m" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" +gem "webrick", ">= 1.8.2" gem "redis", "~> 3" group :check do diff --git a/gemfiles/ruby_3.4_redis_4.gemfile b/gemfiles/ruby_3.4_redis_4.gemfile index 361d4a4c01e..9abbb22f0f9 100644 --- a/gemfiles/ruby_3.4_redis_4.gemfile +++ b/gemfiles/ruby_3.4_redis_4.gemfile @@ -2,13 +2,18 @@ source "https://rubygems.org" +gem "base64" gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" +gem "bigdecimal" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" +gem "mutex_m" gem "os", "~> 1.1" gem "pimpmychangelog", ">= 0.1.2" gem "pry" @@ -19,21 +24,16 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" -gem "webrick", ">= 1.8.2" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" gem "strscan", git: "https://github.com/ruby/strscan", ref: "041b15df4ccc067deabd85fd489b2c15961d0e2f" -gem "base64" -gem "bigdecimal" -gem "mutex_m" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" +gem "webrick", ">= 1.8.2" gem "redis", "~> 4" group :check do diff --git a/gemfiles/ruby_3.4_redis_5.gemfile b/gemfiles/ruby_3.4_redis_5.gemfile index 6168f4cebb5..d7d32251619 100644 --- a/gemfiles/ruby_3.4_redis_5.gemfile +++ b/gemfiles/ruby_3.4_redis_5.gemfile @@ -2,13 +2,18 @@ source "https://rubygems.org" +gem "base64" gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" +gem "bigdecimal" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" +gem "mutex_m" gem "os", "~> 1.1" gem "pimpmychangelog", ">= 0.1.2" gem "pry" @@ -19,21 +24,16 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" -gem "webrick", ">= 1.8.2" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" gem "strscan", git: "https://github.com/ruby/strscan", ref: "041b15df4ccc067deabd85fd489b2c15961d0e2f" -gem "base64" -gem "bigdecimal" -gem "mutex_m" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" +gem "webrick", ">= 1.8.2" gem "redis", "~> 5" group :check do diff --git a/gemfiles/ruby_3.4_relational_db.gemfile b/gemfiles/ruby_3.4_relational_db.gemfile index 66af00613dd..1edd7a29e13 100644 --- a/gemfiles/ruby_3.4_relational_db.gemfile +++ b/gemfiles/ruby_3.4_relational_db.gemfile @@ -2,13 +2,18 @@ source "https://rubygems.org" +gem "base64" gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" +gem "bigdecimal" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" +gem "mutex_m" gem "os", "~> 1.1" gem "pimpmychangelog", ">= 0.1.2" gem "pry" @@ -19,21 +24,16 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" -gem "webrick", ">= 1.8.2" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" gem "strscan", git: "https://github.com/ruby/strscan", ref: "041b15df4ccc067deabd85fd489b2c15961d0e2f" -gem "base64" -gem "bigdecimal" -gem "mutex_m" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" +gem "webrick", ">= 1.8.2" gem "activerecord", "~> 7.0.0" gem "delayed_job" gem "delayed_job_active_record" diff --git a/gemfiles/ruby_3.4_resque2_redis3.gemfile b/gemfiles/ruby_3.4_resque2_redis3.gemfile index ad0b6337ca7..441d2cec014 100644 --- a/gemfiles/ruby_3.4_resque2_redis3.gemfile +++ b/gemfiles/ruby_3.4_resque2_redis3.gemfile @@ -2,13 +2,18 @@ source "https://rubygems.org" +gem "base64" gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" +gem "bigdecimal" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" +gem "mutex_m" gem "os", "~> 1.1" gem "pimpmychangelog", ">= 0.1.2" gem "pry" @@ -19,21 +24,16 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" -gem "webrick", ">= 1.8.2" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" gem "strscan", git: "https://github.com/ruby/strscan", ref: "041b15df4ccc067deabd85fd489b2c15961d0e2f" -gem "base64" -gem "bigdecimal" -gem "mutex_m" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" +gem "webrick", ">= 1.8.2" gem "redis", "< 4.0" gem "resque", ">= 2.0" diff --git a/gemfiles/ruby_3.4_resque2_redis4.gemfile b/gemfiles/ruby_3.4_resque2_redis4.gemfile index 8e343c3d73b..71b690f141b 100644 --- a/gemfiles/ruby_3.4_resque2_redis4.gemfile +++ b/gemfiles/ruby_3.4_resque2_redis4.gemfile @@ -2,13 +2,18 @@ source "https://rubygems.org" +gem "base64" gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" +gem "bigdecimal" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" +gem "mutex_m" gem "os", "~> 1.1" gem "pimpmychangelog", ">= 0.1.2" gem "pry" @@ -19,21 +24,16 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" -gem "webrick", ">= 1.8.2" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" gem "strscan", git: "https://github.com/ruby/strscan", ref: "041b15df4ccc067deabd85fd489b2c15961d0e2f" -gem "base64" -gem "bigdecimal" -gem "mutex_m" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" +gem "webrick", ">= 1.8.2" gem "redis", ">= 4.0" gem "resque", ">= 2.0" diff --git a/gemfiles/ruby_3.4_sinatra_2.gemfile b/gemfiles/ruby_3.4_sinatra_2.gemfile index 099556ec61d..5c157ea5e77 100644 --- a/gemfiles/ruby_3.4_sinatra_2.gemfile +++ b/gemfiles/ruby_3.4_sinatra_2.gemfile @@ -2,13 +2,18 @@ source "https://rubygems.org" +gem "base64" gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" +gem "bigdecimal" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" +gem "mutex_m" gem "os", "~> 1.1" gem "pimpmychangelog", ">= 0.1.2" gem "pry" @@ -19,21 +24,16 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" -gem "webrick", ">= 1.8.2" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" gem "strscan", git: "https://github.com/ruby/strscan", ref: "041b15df4ccc067deabd85fd489b2c15961d0e2f" -gem "base64" -gem "bigdecimal" -gem "mutex_m" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" +gem "webrick", ">= 1.8.2" gem "sinatra", "~> 2" gem "rack-contrib" gem "rack-test" diff --git a/gemfiles/ruby_3.4_sinatra_3.gemfile b/gemfiles/ruby_3.4_sinatra_3.gemfile index 48b4fdedc47..808a0a071a8 100644 --- a/gemfiles/ruby_3.4_sinatra_3.gemfile +++ b/gemfiles/ruby_3.4_sinatra_3.gemfile @@ -2,13 +2,18 @@ source "https://rubygems.org" +gem "base64" gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" +gem "bigdecimal" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" +gem "mutex_m" gem "os", "~> 1.1" gem "pimpmychangelog", ">= 0.1.2" gem "pry" @@ -19,21 +24,16 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" -gem "webrick", ">= 1.8.2" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" gem "strscan", git: "https://github.com/ruby/strscan", ref: "041b15df4ccc067deabd85fd489b2c15961d0e2f" -gem "base64" -gem "bigdecimal" -gem "mutex_m" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" +gem "webrick", ">= 1.8.2" gem "sinatra", "~> 3" gem "rack-contrib" gem "rack-test" diff --git a/gemfiles/ruby_3.4_sinatra_4.gemfile b/gemfiles/ruby_3.4_sinatra_4.gemfile index 501af4ce36e..dce6bd501f4 100644 --- a/gemfiles/ruby_3.4_sinatra_4.gemfile +++ b/gemfiles/ruby_3.4_sinatra_4.gemfile @@ -2,13 +2,18 @@ source "https://rubygems.org" +gem "base64" gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" +gem "bigdecimal" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" +gem "mutex_m" gem "os", "~> 1.1" gem "pimpmychangelog", ">= 0.1.2" gem "pry" @@ -19,21 +24,16 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" -gem "webrick", ">= 1.8.2" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" gem "strscan", git: "https://github.com/ruby/strscan", ref: "041b15df4ccc067deabd85fd489b2c15961d0e2f" -gem "base64" -gem "bigdecimal" -gem "mutex_m" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" +gem "webrick", ">= 1.8.2" gem "sinatra", "~> 4" gem "rack-contrib" gem "rack-test" diff --git a/gemfiles/ruby_3.4_stripe_10.gemfile b/gemfiles/ruby_3.4_stripe_10.gemfile index ab51037d5f5..564e99d4354 100644 --- a/gemfiles/ruby_3.4_stripe_10.gemfile +++ b/gemfiles/ruby_3.4_stripe_10.gemfile @@ -2,13 +2,18 @@ source "https://rubygems.org" +gem "base64" gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" +gem "bigdecimal" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" +gem "mutex_m" gem "os", "~> 1.1" gem "pimpmychangelog", ">= 0.1.2" gem "pry" @@ -19,21 +24,16 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" -gem "webrick", ">= 1.8.2" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" gem "strscan", git: "https://github.com/ruby/strscan", ref: "041b15df4ccc067deabd85fd489b2c15961d0e2f" -gem "base64" -gem "bigdecimal" -gem "mutex_m" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" +gem "webrick", ">= 1.8.2" gem "stripe", "~> 10" group :check do diff --git a/gemfiles/ruby_3.4_stripe_11.gemfile b/gemfiles/ruby_3.4_stripe_11.gemfile index e1585ee0c48..8744f24ffd2 100644 --- a/gemfiles/ruby_3.4_stripe_11.gemfile +++ b/gemfiles/ruby_3.4_stripe_11.gemfile @@ -2,13 +2,18 @@ source "https://rubygems.org" +gem "base64" gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" +gem "bigdecimal" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" +gem "mutex_m" gem "os", "~> 1.1" gem "pimpmychangelog", ">= 0.1.2" gem "pry" @@ -19,21 +24,16 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" -gem "webrick", ">= 1.8.2" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" gem "strscan", git: "https://github.com/ruby/strscan", ref: "041b15df4ccc067deabd85fd489b2c15961d0e2f" -gem "base64" -gem "bigdecimal" -gem "mutex_m" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" +gem "webrick", ">= 1.8.2" gem "stripe", "~> 11" group :check do diff --git a/gemfiles/ruby_3.4_stripe_12.gemfile b/gemfiles/ruby_3.4_stripe_12.gemfile index f0d430e9435..8a5eefa2e33 100644 --- a/gemfiles/ruby_3.4_stripe_12.gemfile +++ b/gemfiles/ruby_3.4_stripe_12.gemfile @@ -2,13 +2,18 @@ source "https://rubygems.org" +gem "base64" gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" +gem "bigdecimal" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" +gem "mutex_m" gem "os", "~> 1.1" gem "pimpmychangelog", ">= 0.1.2" gem "pry" @@ -19,21 +24,16 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" -gem "webrick", ">= 1.8.2" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" gem "strscan", git: "https://github.com/ruby/strscan", ref: "041b15df4ccc067deabd85fd489b2c15961d0e2f" -gem "base64" -gem "bigdecimal" -gem "mutex_m" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" +gem "webrick", ">= 1.8.2" gem "stripe", "~> 12" group :check do diff --git a/gemfiles/ruby_3.4_stripe_7.gemfile b/gemfiles/ruby_3.4_stripe_7.gemfile index 4bc9aa572fc..aa0580743a2 100644 --- a/gemfiles/ruby_3.4_stripe_7.gemfile +++ b/gemfiles/ruby_3.4_stripe_7.gemfile @@ -2,13 +2,18 @@ source "https://rubygems.org" +gem "base64" gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" +gem "bigdecimal" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" +gem "mutex_m" gem "os", "~> 1.1" gem "pimpmychangelog", ">= 0.1.2" gem "pry" @@ -19,21 +24,16 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" -gem "webrick", ">= 1.8.2" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" gem "strscan", git: "https://github.com/ruby/strscan", ref: "041b15df4ccc067deabd85fd489b2c15961d0e2f" -gem "base64" -gem "bigdecimal" -gem "mutex_m" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" +gem "webrick", ">= 1.8.2" gem "stripe", "~> 7" group :check do diff --git a/gemfiles/ruby_3.4_stripe_8.gemfile b/gemfiles/ruby_3.4_stripe_8.gemfile index b6a02ded673..bf483a884d8 100644 --- a/gemfiles/ruby_3.4_stripe_8.gemfile +++ b/gemfiles/ruby_3.4_stripe_8.gemfile @@ -2,13 +2,18 @@ source "https://rubygems.org" +gem "base64" gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" +gem "bigdecimal" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" +gem "mutex_m" gem "os", "~> 1.1" gem "pimpmychangelog", ">= 0.1.2" gem "pry" @@ -19,21 +24,16 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" -gem "webrick", ">= 1.8.2" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" gem "strscan", git: "https://github.com/ruby/strscan", ref: "041b15df4ccc067deabd85fd489b2c15961d0e2f" -gem "base64" -gem "bigdecimal" -gem "mutex_m" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" +gem "webrick", ">= 1.8.2" gem "stripe", "~> 8" group :check do diff --git a/gemfiles/ruby_3.4_stripe_9.gemfile b/gemfiles/ruby_3.4_stripe_9.gemfile index f7b66d9cc45..555bae6e9ce 100644 --- a/gemfiles/ruby_3.4_stripe_9.gemfile +++ b/gemfiles/ruby_3.4_stripe_9.gemfile @@ -2,13 +2,18 @@ source "https://rubygems.org" +gem "base64" gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" +gem "bigdecimal" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" +gem "mutex_m" gem "os", "~> 1.1" gem "pimpmychangelog", ">= 0.1.2" gem "pry" @@ -19,21 +24,16 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" -gem "webrick", ">= 1.8.2" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" gem "strscan", git: "https://github.com/ruby/strscan", ref: "041b15df4ccc067deabd85fd489b2c15961d0e2f" -gem "base64" -gem "bigdecimal" -gem "mutex_m" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" +gem "webrick", ">= 1.8.2" gem "stripe", "~> 9" group :check do diff --git a/gemfiles/ruby_3.4_stripe_latest.gemfile b/gemfiles/ruby_3.4_stripe_latest.gemfile index 81da8919d7d..32fde1e0507 100644 --- a/gemfiles/ruby_3.4_stripe_latest.gemfile +++ b/gemfiles/ruby_3.4_stripe_latest.gemfile @@ -2,13 +2,18 @@ source "https://rubygems.org" +gem "base64" gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" +gem "bigdecimal" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" +gem "mutex_m" gem "os", "~> 1.1" gem "pimpmychangelog", ">= 0.1.2" gem "pry" @@ -19,21 +24,16 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" -gem "webrick", ">= 1.8.2" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" gem "strscan", git: "https://github.com/ruby/strscan", ref: "041b15df4ccc067deabd85fd489b2c15961d0e2f" -gem "base64" -gem "bigdecimal" -gem "mutex_m" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" +gem "webrick", ">= 1.8.2" gem "stripe" group :check do diff --git a/gemfiles/ruby_3.4_stripe_min.gemfile b/gemfiles/ruby_3.4_stripe_min.gemfile index 9289dcdd02d..7082d9f9cfd 100644 --- a/gemfiles/ruby_3.4_stripe_min.gemfile +++ b/gemfiles/ruby_3.4_stripe_min.gemfile @@ -2,13 +2,18 @@ source "https://rubygems.org" +gem "base64" gem "benchmark-ips", "~> 2.8" gem "benchmark-memory", "< 0.2" +gem "bigdecimal" gem "climate_control", "~> 0.2.0" gem "concurrent-ruby" +gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" gem "extlz4", "~> 0.3", ">= 0.3.3" +gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] gem "json-schema", "< 3" gem "memory_profiler", "~> 0.9" +gem "mutex_m" gem "os", "~> 1.1" gem "pimpmychangelog", ">= 0.1.2" gem "pry" @@ -19,21 +24,16 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" -gem "simplecov-cobertura", "~> 2.1.0" -gem "warning", "~> 1" -gem "webmock", ">= 3.10.0" -gem "webrick", ">= 1.8.2" gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "dogstatsd-ruby", ">= 3.3.0", "!= 5.0.0", "!= 5.0.1", "!= 5.1.0" -gem "google-protobuf", ["~> 3.0", "!= 3.7.0", "!= 3.7.1"] +gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov-cobertura", "~> 2.1.0" gem "strscan", git: "https://github.com/ruby/strscan", ref: "041b15df4ccc067deabd85fd489b2c15961d0e2f" -gem "base64" -gem "bigdecimal" -gem "mutex_m" +gem "warning", "~> 1" +gem "webmock", ">= 3.10.0" +gem "webrick", ">= 1.8.2" gem "stripe", "= 5.15.0" group :check do From b4c8a3211104ebbb6c3e5efaf8ad15be5aad0993 Mon Sep 17 00:00:00 2001 From: Marco Costa Date: Wed, 11 Dec 2024 11:40:36 -0800 Subject: [PATCH 050/161] Fix otel table fields --- docs/Compatibility.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/Compatibility.md b/docs/Compatibility.md index 15058852c5b..7334f2254a9 100644 --- a/docs/Compatibility.md +++ b/docs/Compatibility.md @@ -38,7 +38,7 @@ The Ruby Datadog Trace library is open source. See the [dd-trace-rb][1] GitHub r | Type | Documentation | Version | Support type | Gem version support | |-------------|-------------------------------------------------|---------|---------------------|---------------------| -| OpenTelemetry | https://github.com/open-telemetry/opentelemetry-ruby | 1.9.0+ | >= 1.1.0 | +| OpenTelemetry | https://github.com/open-telemetry/opentelemetry-ruby | >= 1.1.0 | [latest](#support-latest) | 1.9.0+ | | OpenTracing | https://github.com/opentracing/opentracing-ruby | 0.4.1+ | [EOL](#support-eol) | < 2.0.0 | ### Supported operating systems From afce2401f654a6e86e050a055cb6a247d4f84368 Mon Sep 17 00:00:00 2001 From: Marco Costa Date: Wed, 11 Dec 2024 11:57:21 -0800 Subject: [PATCH 051/161] Add documentation on native format --- lib/datadog/tracing/span_event.rb | 8 ++++++++ lib/datadog/tracing/transport/serializable_trace.rb | 4 ++++ 2 files changed, 12 insertions(+) diff --git a/lib/datadog/tracing/span_event.rb b/lib/datadog/tracing/span_event.rb index 1cfaa5fc317..4a0685e7b15 100644 --- a/lib/datadog/tracing/span_event.rb +++ b/lib/datadog/tracing/span_event.rb @@ -36,12 +36,20 @@ def initialize( @time_unix_nano = time_unix_nano || (Time.now.to_r * 1_000_000_000).to_i end + # Converts the span event into a hash to be used by with the span tag serialization + # (`span.set_tag('events) = [event.to_hash]`). This serialization format has the drawback + # of being limiting span events to the size limit of a span tag. + # All Datadog agents support this format. def to_hash h = { 'name' => @name, 'time_unix_nano' => @time_unix_nano } h['attributes'] = @attributes unless @attributes.empty? h end + # Converts the span event into a hash to be used by the MessagePack serialization as a + # top-level span field (span.span_events = [event.to_native_format]). + # This serialization format removes the serialization limitations of the `span.set_tag('events)` approach, + # but is only supported by newer version of the Datadog agent. def to_native_format h = { 'name' => @name, 'time_unix_nano' => @time_unix_nano } diff --git a/lib/datadog/tracing/transport/serializable_trace.rb b/lib/datadog/tracing/transport/serializable_trace.rb index 371852ff84e..380f8623954 100644 --- a/lib/datadog/tracing/transport/serializable_trace.rb +++ b/lib/datadog/tracing/transport/serializable_trace.rb @@ -12,6 +12,8 @@ class SerializableTrace attr_reader \ :trace + # @param trace [Datadog::Trace] the trace to serialize + # @param native_events_supported [Boolean] whether the agent supports span events as a top-level field def initialize(trace, native_events_supported = false) @trace = trace @native_events_supported = native_events_supported @@ -42,6 +44,8 @@ class SerializableSpan attr_reader \ :span + # @param span [Datadog::Span] the span to serialize + # @param native_events_supported [Boolean] whether the agent supports span events as a top-level field def initialize(span, native_events_supported) @span = span @trace_id = Tracing::Utils::TraceId.to_low_order(span.trace_id) From 65fb81d4cff4ac378a8d60460ee8298a9f1e3178 Mon Sep 17 00:00:00 2001 From: Oleg Pudeyev <156273877+p-datadog@users.noreply.github.com> Date: Thu, 12 Dec 2024 12:07:50 -0500 Subject: [PATCH 052/161] DEBUG-3176 DI: report an error when instrumenting a loaded file that is not in registry (#4208) Co-authored-by: Oleg Pudeyev --- lib/datadog/di/error.rb | 5 +++++ lib/datadog/di/instrumenter.rb | 24 +++++++++++++++++++++++- sig/datadog/di/error.rbs | 2 ++ sig/datadog/di/instrumenter.rbs | 1 + spec/datadog/di/instrumenter_spec.rb | 14 ++++++++++++++ 5 files changed, 45 insertions(+), 1 deletion(-) diff --git a/lib/datadog/di/error.rb b/lib/datadog/di/error.rb index d5f305617cd..c1785f71ba7 100644 --- a/lib/datadog/di/error.rb +++ b/lib/datadog/di/error.rb @@ -27,6 +27,11 @@ class AgentCommunicationError < Error class DITargetNotDefined < Error end + # Attempting to instrument a line and the file containing the line + # was loaded prior to code tracking being enabled. + class DITargetNotInRegistry < Error + end + # Raised when trying to install a probe whose installation failed # earlier in the same process. This exception should contain the # original exception report from initial installation attempt. diff --git a/lib/datadog/di/instrumenter.rb b/lib/datadog/di/instrumenter.rb index b9238c9ad74..b1f8f0f599a 100644 --- a/lib/datadog/di/instrumenter.rb +++ b/lib/datadog/di/instrumenter.rb @@ -246,11 +246,12 @@ def hook_line(probe, &block) # # If the requested file is not in code tracker's registry, # or the code tracker does not exist at all, - # do not attempt to instrumnet now. + # do not attempt to instrument now. # The caller should add the line to the list of pending lines # to instrument and install the hook when the file in # question is loaded (and hopefully, by then code tracking # is active, otherwise the line will never be instrumented.) + raise_if_probe_in_loaded_features(probe) raise Error::DITargetNotDefined, "File not in code tracker registry: #{probe.file}" end end @@ -258,6 +259,7 @@ def hook_line(probe, &block) # Same as previous comment, if untargeted trace points are not # explicitly defined, and we do not have code tracking, do not # instrument the method. + raise_if_probe_in_loaded_features(probe) raise Error::DITargetNotDefined, "File not in code tracker registry: #{probe.file}" end @@ -374,6 +376,26 @@ def unhook(probe) attr_reader :lock + def raise_if_probe_in_loaded_features(probe) + return unless probe.file + + # If the probe file is in the list of loaded files + # (as per $LOADED_FEATURES, using either exact or suffix match), + # raise an error indicating that + # code tracker is missing the loaded file because the file + # won't be loaded again (DI only works in production environments + # that do not normally reload code). + if $LOADED_FEATURES.include?(probe.file) + raise Error::DITargetNotInRegistry, "File loaded but is not in code tracker registry: #{probe.file}" + end + # Ths is an expensive check + $LOADED_FEATURES.each do |path| + if Utils.path_matches_suffix?(path, probe.file) + raise Error::DITargetNotInRegistry, "File matching probe path (#{probe.file}) was loaded and is not in code tracker registry: #{path}" + end + end + end + # TODO test that this resolves qualified names e.g. A::B def symbolize_class_name(cls_name) Object.const_get(cls_name) diff --git a/sig/datadog/di/error.rbs b/sig/datadog/di/error.rbs index 351fa7bb85a..4812de578a7 100644 --- a/sig/datadog/di/error.rbs +++ b/sig/datadog/di/error.rbs @@ -7,6 +7,8 @@ module Datadog end class DITargetNotDefined < Error end + class DITargetNotInRegistry < Error + end class ProbePreviouslyFailed < Error end class MultiplePathsMatch < Error diff --git a/sig/datadog/di/instrumenter.rbs b/sig/datadog/di/instrumenter.rbs index cfaa56cac64..f87c2818cf4 100644 --- a/sig/datadog/di/instrumenter.rbs +++ b/sig/datadog/di/instrumenter.rbs @@ -48,6 +48,7 @@ module Datadog attr_reader lock: untyped def symbolize_class_name: (untyped cls_name) -> untyped + def raise_if_probe_in_loaded_features: (Probe probe) -> void end end end diff --git a/spec/datadog/di/instrumenter_spec.rb b/spec/datadog/di/instrumenter_spec.rb index 821e6f685df..695d8567386 100644 --- a/spec/datadog/di/instrumenter_spec.rb +++ b/spec/datadog/di/instrumenter_spec.rb @@ -983,6 +983,20 @@ expect(observed_calls.length).to eq 1 expect(observed_calls.first).to be_a(Hash) end + + context 'when instrumenting a line in loaded but not tracked file' do + let(:probe) do + Datadog::DI::Probe.new(file: 'hook_line.rb', line_no: 3, + id: 1, type: :log) + end + + it 'raises DITargetNotInRegistry' do + expect do + instrumenter.hook_line(probe) do |payload| + end + end.to raise_error(Datadog::DI::Error::DITargetNotInRegistry, /File matching probe path.*was loaded and is not in code tracker registry/) + end + end end context 'when method is recursive' do From ec144ceb95afb222f88a6005fb60b2d40bfa8545 Mon Sep 17 00:00:00 2001 From: Ivo Anjo Date: Fri, 13 Dec 2024 17:38:17 +0000 Subject: [PATCH 053/161] [NO-TICKET] Extract spec for binary setting **What does this PR do?** This PR introduces a single shared example to replace approximately ONE BILLION copy pasted test cases to test a binary setting that can be read from an env variable. **Motivation:** I've gotten tired of copy-pasting this again and again and decided to finally clean this up. **Additional Notes:** My only regret is not having cleaned this up earlier. **How to test the change?** Validate tests still pass. --- .../core/configuration/settings_spec.rb | 382 ++---------------- 1 file changed, 39 insertions(+), 343 deletions(-) diff --git a/spec/datadog/core/configuration/settings_spec.rb b/spec/datadog/core/configuration/settings_spec.rb index 1d7bb6b730b..f73dcd8c7de 100644 --- a/spec/datadog/core/configuration/settings_spec.rb +++ b/spec/datadog/core/configuration/settings_spec.rb @@ -18,6 +18,26 @@ ClimateControl.modify('DD_REMOTE_CONFIGURATION_ENABLED' => nil) { example.run } end + shared_examples_for 'a binary setting with' do |env_variable:, default:| + context "when #{env_variable}" do + around { |example| ClimateControl.modify(env_variable => environment) { example.run } } + + context 'is not defined' do + let(:environment) { nil } + + it { is_expected.to be default } + end + + [true, false].each do |value| + context "is defined as #{value}" do + let(:environment) { value.to_s } + + it { is_expected.to be value } + end + end + end + end + describe '#api_key' do subject(:api_key) { settings.api_key } @@ -220,27 +240,7 @@ describe '#enabled' do subject(:enabled) { settings.health_metrics.enabled } - context "when #{Datadog::Core::Configuration::Ext::Diagnostics::ENV_HEALTH_METRICS_ENABLED}" do - around do |example| - ClimateControl.modify( - Datadog::Core::Configuration::Ext::Diagnostics::ENV_HEALTH_METRICS_ENABLED => environment - ) do - example.run - end - end - - context 'is not defined' do - let(:environment) { nil } - - it { is_expected.to be false } - end - - context 'is defined' do - let(:environment) { 'true' } - - it { is_expected.to be true } - end - end + it_behaves_like 'a binary setting with', env_variable: 'DD_HEALTH_METRICS_ENABLED', default: false end describe '#enabled=' do @@ -319,25 +319,7 @@ describe '#enabled' do subject(:enabled) { settings.profiling.enabled } - context "when #{Datadog::Profiling::Ext::ENV_ENABLED}" do - around do |example| - ClimateControl.modify(Datadog::Profiling::Ext::ENV_ENABLED => environment) do - example.run - end - end - - context 'is not defined' do - let(:environment) { nil } - - it { is_expected.to be false } - end - - context 'is defined' do - let(:environment) { 'true' } - - it { is_expected.to be true } - end - end + it_behaves_like 'a binary setting with', env_variable: 'DD_PROFILING_ENABLED', default: false end describe '#enabled=' do @@ -371,27 +353,7 @@ describe '#allocation_enabled' do subject(:allocation_enabled) { settings.profiling.allocation_enabled } - context 'when DD_PROFILING_ALLOCATION_ENABLED' do - around do |example| - ClimateControl.modify('DD_PROFILING_ALLOCATION_ENABLED' => environment) do - example.run - end - end - - context 'is not defined' do - let(:environment) { nil } - - it { is_expected.to be false } - end - - [true, false].each do |value| - context "is defined as #{value}" do - let(:environment) { value.to_s } - - it { is_expected.to be value } - end - end - end + it_behaves_like 'a binary setting with', env_variable: 'DD_PROFILING_ALLOCATION_ENABLED', default: false end describe '#allocation_enabled=' do @@ -442,27 +404,7 @@ describe '#enabled' do subject(:enabled) { settings.profiling.advanced.endpoint.collection.enabled } - context "when #{Datadog::Profiling::Ext::ENV_ENDPOINT_COLLECTION_ENABLED}" do - around do |example| - ClimateControl.modify(Datadog::Profiling::Ext::ENV_ENDPOINT_COLLECTION_ENABLED => environment) do - example.run - end - end - - context 'is not defined' do - let(:environment) { nil } - - it { is_expected.to be true } - end - - [true, false].each do |value| - context "is defined as #{value}" do - let(:environment) { value.to_s } - - it { is_expected.to be value } - end - end - end + it_behaves_like 'a binary setting with', env_variable: 'DD_PROFILING_ENDPOINT_COLLECTION_ENABLED', default: true end describe '#enabled=' do @@ -494,27 +436,7 @@ describe '#gc_enabled' do subject(:gc_enabled) { settings.profiling.advanced.gc_enabled } - context 'when DD_PROFILING_GC_ENABLED' do - around do |example| - ClimateControl.modify('DD_PROFILING_GC_ENABLED' => environment) do - example.run - end - end - - context 'is not defined' do - let(:environment) { nil } - - it { is_expected.to be true } - end - - [true, false].each do |value| - context "is defined as #{value}" do - let(:environment) { value.to_s } - - it { is_expected.to be value } - end - end - end + it_behaves_like 'a binary setting with', env_variable: 'DD_PROFILING_GC_ENABLED', default: true end describe '#gc_enabled=' do @@ -544,27 +466,7 @@ describe '#experimental_heap_enabled' do subject(:experimental_heap_enabled) { settings.profiling.advanced.experimental_heap_enabled } - context 'when DD_PROFILING_EXPERIMENTAL_HEAP_ENABLED' do - around do |example| - ClimateControl.modify('DD_PROFILING_EXPERIMENTAL_HEAP_ENABLED' => environment) do - example.run - end - end - - context 'is not defined' do - let(:environment) { nil } - - it { is_expected.to be false } - end - - [true, false].each do |value| - context "is defined as #{value}" do - let(:environment) { value.to_s } - - it { is_expected.to be value } - end - end - end + it_behaves_like 'a binary setting with', env_variable: 'DD_PROFILING_EXPERIMENTAL_HEAP_ENABLED', default: false end describe '#experimental_heap_enabled=' do @@ -579,27 +481,7 @@ describe '#experimental_heap_size_enabled' do subject(:experimental_heap_size_enabled) { settings.profiling.advanced.experimental_heap_size_enabled } - context 'when DD_PROFILING_EXPERIMENTAL_HEAP_SIZE_ENABLED' do - around do |example| - ClimateControl.modify('DD_PROFILING_EXPERIMENTAL_HEAP_SIZE_ENABLED' => environment) do - example.run - end - end - - context 'is not defined' do - let(:environment) { nil } - - it { is_expected.to be true } - end - - [true, false].each do |value| - context "is defined as #{value}" do - let(:environment) { value.to_s } - - it { is_expected.to be value } - end - end - end + it_behaves_like 'a binary setting with', env_variable: 'DD_PROFILING_EXPERIMENTAL_HEAP_SIZE_ENABLED', default: true end describe '#experimental_heap_size_enabled=' do @@ -647,27 +529,7 @@ describe '#skip_mysql2_check' do subject(:skip_mysql2_check) { settings.profiling.advanced.skip_mysql2_check } - context 'when DD_PROFILING_SKIP_MYSQL2_CHECK' do - around do |example| - ClimateControl.modify('DD_PROFILING_SKIP_MYSQL2_CHECK' => environment) do - example.run - end - end - - context 'is not defined' do - let(:environment) { nil } - - it { is_expected.to be false } - end - - [true, false].each do |value| - context "is defined as #{value}" do - let(:environment) { value.to_s } - - it { is_expected.to be value } - end - end - end + it_behaves_like 'a binary setting with', env_variable: 'DD_PROFILING_SKIP_MYSQL2_CHECK', default: false end describe '#skip_mysql2_check=' do @@ -717,27 +579,7 @@ describe '#timeline_enabled' do subject(:timeline_enabled) { settings.profiling.advanced.timeline_enabled } - context 'when DD_PROFILING_TIMELINE_ENABLED' do - around do |example| - ClimateControl.modify('DD_PROFILING_TIMELINE_ENABLED' => environment) do - example.run - end - end - - context 'is not defined' do - let(:environment) { nil } - - it { is_expected.to be true } - end - - [true, false].each do |value| - context "is defined as #{value}" do - let(:environment) { value.to_s } - - it { is_expected.to be value } - end - end - end + it_behaves_like 'a binary setting with', env_variable: 'DD_PROFILING_TIMELINE_ENABLED', default: true end describe '#timeline_enabled=' do @@ -818,27 +660,7 @@ describe '#experimental_crash_tracking_enabled' do subject(:experimental_crash_tracking_enabled) { settings.profiling.advanced.experimental_crash_tracking_enabled } - context 'when DD_PROFILING_EXPERIMENTAL_CRASH_TRACKING_ENABLED' do - around do |example| - ClimateControl.modify('DD_PROFILING_EXPERIMENTAL_CRASH_TRACKING_ENABLED' => environment) do - example.run - end - end - - context 'is not defined' do - let(:environment) { nil } - - it { is_expected.to be_nil } - end - - [true, false].each do |value| - context "is defined as #{value}" do - let(:environment) { value.to_s } - - it { is_expected.to be_nil } - end - end - end + it { is_expected.to be_nil } # Currently a no-op, kept for backwards compatibility end describe '#experimental_crash_tracking_enabled=' do @@ -852,27 +674,9 @@ describe '#dir_interruption_workaround_enabled' do subject(:dir_interruption_workaround_enabled) { settings.profiling.advanced.dir_interruption_workaround_enabled } - context 'when DD_PROFILING_DIR_INTERRUPTION_WORKAROUND_ENABLED' do - around do |example| - ClimateControl.modify('DD_PROFILING_DIR_INTERRUPTION_WORKAROUND_ENABLED' => environment) do - example.run - end - end - - context 'is not defined' do - let(:environment) { nil } - - it { is_expected.to be true } - end - - [true, false].each do |value| - context "is defined as #{value}" do - let(:environment) { value.to_s } - - it { is_expected.to be value } - end - end - end + it_behaves_like 'a binary setting with', + env_variable: 'DD_PROFILING_DIR_INTERRUPTION_WORKAROUND_ENABLED', + default: true end describe '#dir_interruption_workaround_enabled=' do @@ -887,27 +691,7 @@ describe '#preview_gvl_enabled' do subject(:preview_gvl_enabled) { settings.profiling.advanced.preview_gvl_enabled } - context 'when DD_PROFILING_PREVIEW_GVL_ENABLED' do - around do |example| - ClimateControl.modify('DD_PROFILING_PREVIEW_GVL_ENABLED' => environment) do - example.run - end - end - - context 'is not defined' do - let(:environment) { nil } - - it { is_expected.to be false } - end - - [true, false].each do |value| - context "is defined as #{value}" do - let(:environment) { value.to_s } - - it { is_expected.to be value } - end - end - end + it_behaves_like 'a binary setting with', env_variable: 'DD_PROFILING_PREVIEW_GVL_ENABLED', default: false end describe '#preview_gvl_enabled=' do @@ -922,27 +706,7 @@ describe '#heap_clean_after_gc_enabled' do subject(:heap_clean_after_gc_enabled) { settings.profiling.advanced.heap_clean_after_gc_enabled } - context 'when DD_PROFILING_HEAP_CLEAN_AFTER_GC_ENABLED' do - around do |example| - ClimateControl.modify('DD_PROFILING_HEAP_CLEAN_AFTER_GC_ENABLED' => environment) do - example.run - end - end - - context 'is not defined' do - let(:environment) { nil } - - it { is_expected.to be true } - end - - [true, false].each do |value| - context "is defined as #{value}" do - let(:environment) { value.to_s } - - it { is_expected.to be value } - end - end - end + it_behaves_like 'a binary setting with', env_variable: 'DD_PROFILING_HEAP_CLEAN_AFTER_GC_ENABLED', default: true end describe '#heap_clean_after_gc_enabled=' do @@ -1083,25 +847,7 @@ describe '#enabled' do subject(:enabled) { settings.runtime_metrics.enabled } - context "when #{Datadog::Core::Runtime::Ext::Metrics::ENV_ENABLED}" do - around do |example| - ClimateControl.modify(Datadog::Core::Runtime::Ext::Metrics::ENV_ENABLED => environment) do - example.run - end - end - - context 'is not defined' do - let(:environment) { nil } - - it { is_expected.to be false } - end - - context 'is defined' do - let(:environment) { 'true' } - - it { is_expected.to be true } - end - end + it_behaves_like 'a binary setting with', env_variable: 'DD_RUNTIME_METRICS_ENABLED', default: false end describe '#enabled=' do @@ -1735,23 +1481,8 @@ describe '#metrics_enabled' do subject(:metrics_enabled) { settings.telemetry.metrics_enabled } - let(:env_var_name) { 'DD_TELEMETRY_METRICS_ENABLED' } - - context 'when DD_TELEMETRY_METRICS_ENABLED' do - context 'is not defined' do - let(:env_var_value) { nil } - - it { is_expected.to be true } - end - - [true, false].each do |value| - context "is defined as #{value}" do - let(:env_var_value) { value.to_s } - it { is_expected.to be value } - end - end - end + it_behaves_like 'a binary setting with', env_variable: 'DD_TELEMETRY_METRICS_ENABLED', default: true end describe '#metrics_enabled=' do @@ -1768,23 +1499,8 @@ describe '#log_collection_enabled' do subject(:log_collection_enabled) { settings.telemetry.log_collection_enabled } - let(:env_var_name) { 'DD_TELEMETRY_LOG_COLLECTION_ENABLED' } - context 'when DD_TELEMETRY_LOG_COLLECTION_ENABLED' do - context 'is not defined' do - let(:env_var_value) { nil } - - it { is_expected.to be true } - end - - [true, false].each do |value| - context "is defined as #{value}" do - let(:env_var_value) { value.to_s } - - it { is_expected.to be value } - end - end - end + it_behaves_like 'a binary setting with', env_variable: 'DD_TELEMETRY_LOG_COLLECTION_ENABLED', default: true end describe '#log_collection_enabled=' do @@ -2098,27 +1814,7 @@ describe '#enabled' do subject(:crashtracking_enabled) { settings.crashtracking.enabled } - context 'when DD_CRASHTRACKING_ENABLED' do - around do |example| - ClimateControl.modify('DD_CRASHTRACKING_ENABLED' => environment) do - example.run - end - end - - context 'is not defined' do - let(:environment) { nil } - - it { is_expected.to be true } - end - - [true, false].each do |value| - context "is defined as #{value}" do - let(:environment) { value.to_s } - - it { is_expected.to be value } - end - end - end + it_behaves_like 'a binary setting with', env_variable: 'DD_CRASHTRACKING_ENABLED', default: true end describe '#enabled=' do From ef81a2f574db4f0bf56c0e2fd7d0bfe60a49f865 Mon Sep 17 00:00:00 2001 From: Marco Costa Date: Fri, 13 Dec 2024 11:09:38 -0800 Subject: [PATCH 054/161] Upgrade steep and make it a bit more strict (#4221) * Upgrade steep and make it a bit more strict * Update ruby-3.0.gemfile Co-authored-by: Sergey Fedorov * Unlock rbs and steep --------- Co-authored-by: Sergey Fedorov --- Steepfile | 40 +++++++++++++++++++++ lib/datadog/appsec/processor/rule_loader.rb | 3 -- ruby-3.0.gemfile | 4 +-- ruby-3.1.gemfile | 4 +-- ruby-3.2.gemfile | 4 +-- ruby-3.3.gemfile | 4 +-- ruby-3.4.gemfile | 4 +-- 7 files changed, 50 insertions(+), 13 deletions(-) diff --git a/Steepfile b/Steepfile index c2baeedd576..24d49808692 100644 --- a/Steepfile +++ b/Steepfile @@ -1,8 +1,48 @@ +# Declare shortcuts for Steep::Signature::Ruby to make this file easier to read +# as well as facilitating the findability of violation types emitted by the CLI +# (e.g. the CLI emits `Diagnostic ID: Ruby::UnknownConstant` when finding errors). +Ruby = Steep::Diagnostic::Ruby + target :datadog do signature 'sig' check 'lib/' + # This makes Steep check the codebase with the strictest settings. + # We are free to disable checks if needed inside the block. + # + # The default level is `Ruby.default`, and there's an even stricter level called `Ruby.all_error`. + configure_code_diagnostics(Ruby.strict) do |hash| + # These checks can be gradually enabled as the codebase cleans up. + # The reporting levels are: + # * `:error`, `:warning`: These will fail `rake typecheck` and are always reported by default. + # * `:information`, `:hint`: To see these, run `rake 'typecheck[--severity-level=information]'` + # or `rake 'typecheck[--severity-level=hint]'` + + # These first checks are likely the easiest to fix, given they capture a mismatch + # between the already declared type in `.rbs` and the actual type inferred by Steep. + hash[Ruby::DifferentMethodParameterKind] = :information + hash[Ruby::IncompatibleAssignment] = :information + + # These checks are a bit harder, because they represent the lack of sufficient type information. + hash[Ruby::FallbackAny] = :information + hash[Ruby::UnknownInstanceVariable] = :information + hash[Ruby::UnknownRecordKey] = :information + + # This check asks you to type every empty collection used in + # local variables with an inline type annotation (e.g. `ret = {} #: Hash[Symbol,untyped]`). + # This pollutes the code base, and demands seemingly unnecessary typing of internal variables. + # Ideally, these empty collections automatically assume a signature based on its usage inside its method. + # @see https://github.com/soutaro/steep/pull/1338 + hash[Ruby::UnannotatedEmptyCollection] = :information + + # This one is funny: it is raised whenever we use `super` from a method in a Module. + # Since there's no guarantee that the module will be included in a class with the matching method, + # Steep cannot know if the `super` call will be valid. + # But this is very common in the codebase, as such module are used for monkey-patching. + hash[Ruby::UnexpectedSuper] = :information + end + ignore 'lib/datadog/appsec.rb' ignore 'lib/datadog/appsec/component.rb' # Excluded due to https://github.com/soutaro/steep/issues/1232 diff --git a/lib/datadog/appsec/processor/rule_loader.rb b/lib/datadog/appsec/processor/rule_loader.rb index 8ca587df75b..b19debed1fb 100644 --- a/lib/datadog/appsec/processor/rule_loader.rb +++ b/lib/datadog/appsec/processor/rule_loader.rb @@ -74,9 +74,6 @@ def passlist_exclusions(ip_passlist) # rubocop:disable Metrics/MethodLength when Hash pass = ip_passlist[:pass] monitor = ip_passlist[:monitor] - else - pass = [] - monitor = [] end exclusions = [] diff --git a/ruby-3.0.gemfile b/ruby-3.0.gemfile index d5e3269cbe3..dd924ae91b5 100644 --- a/ruby-3.0.gemfile +++ b/ruby-3.0.gemfile @@ -53,8 +53,8 @@ gem 'webmock', '>= 3.10.0' gem 'webrick', '>= 1.7.0' group :check do - gem 'rbs', '~> 3.6', require: false - gem 'steep', '~> 1.7.0', require: false + gem 'rbs', '>= 3.6.1', require: false + gem 'steep', '~> 1', '>= 1.7.1', require: false gem 'standard', require: false end diff --git a/ruby-3.1.gemfile b/ruby-3.1.gemfile index d5e3269cbe3..dd924ae91b5 100644 --- a/ruby-3.1.gemfile +++ b/ruby-3.1.gemfile @@ -53,8 +53,8 @@ gem 'webmock', '>= 3.10.0' gem 'webrick', '>= 1.7.0' group :check do - gem 'rbs', '~> 3.6', require: false - gem 'steep', '~> 1.7.0', require: false + gem 'rbs', '>= 3.6.1', require: false + gem 'steep', '~> 1', '>= 1.7.1', require: false gem 'standard', require: false end diff --git a/ruby-3.2.gemfile b/ruby-3.2.gemfile index 21787978220..8d496c0a1f3 100644 --- a/ruby-3.2.gemfile +++ b/ruby-3.2.gemfile @@ -52,8 +52,8 @@ gem 'webmock', '>= 3.10.0' gem 'webrick', '>= 1.7.0' group :check do - gem 'rbs', '~> 3.6', require: false - gem 'steep', '~> 1.7.0', require: false + gem 'rbs', '>= 3.6.1', require: false + gem 'steep', '~> 1', '>= 1.7.1', require: false gem 'standard', require: false end diff --git a/ruby-3.3.gemfile b/ruby-3.3.gemfile index 21787978220..8d496c0a1f3 100644 --- a/ruby-3.3.gemfile +++ b/ruby-3.3.gemfile @@ -52,8 +52,8 @@ gem 'webmock', '>= 3.10.0' gem 'webrick', '>= 1.7.0' group :check do - gem 'rbs', '~> 3.6', require: false - gem 'steep', '~> 1.7.0', require: false + gem 'rbs', '>= 3.6.1', require: false + gem 'steep', '~> 1', '>= 1.7.1', require: false gem 'standard', require: false end diff --git a/ruby-3.4.gemfile b/ruby-3.4.gemfile index 31078cc443c..f65ed3f600e 100644 --- a/ruby-3.4.gemfile +++ b/ruby-3.4.gemfile @@ -63,8 +63,8 @@ gem 'webmock', '>= 3.10.0' gem 'webrick', '>= 1.8.2' group :check do - gem 'rbs', '~> 3.6', require: false - gem 'steep', '~> 1.7.0', require: false + gem 'rbs', '>= 3.6.1', require: false + gem 'steep', '~> 1', '>= 1.7.1', require: false gem 'ruby_memcheck', '>= 3' gem 'standard', require: false end From 341b234ad608a58ad85c8e9e0d343a10639183ac Mon Sep 17 00:00:00 2001 From: Marco Costa Date: Fri, 13 Dec 2024 13:31:57 -0800 Subject: [PATCH 055/161] Improve docs --- lib/datadog/core/telemetry/event.rb | 6 ++++++ lib/datadog/core/telemetry/worker.rb | 6 +++--- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/lib/datadog/core/telemetry/event.rb b/lib/datadog/core/telemetry/event.rb index b73cf09be49..c461698e1f7 100644 --- a/lib/datadog/core/telemetry/event.rb +++ b/lib/datadog/core/telemetry/event.rb @@ -393,14 +393,20 @@ def type 'logs' end + # @param message [String] the log message + # @param level [Symbol, String] the log level. Either :error, :warn, 'ERROR', or 'WARN'. + # @param stack_trace [String, nil] the stack trace + # @param count [Integer] the number of times the log was emitted. Used for deduplication. def initialize(message:, level:, stack_trace: nil, count: 1) super() @message = message @stack_trace = stack_trace if level.is_a?(String) && LEVELS_STRING.include?(level) + # String level is used during object copy for deduplication @level = level elsif level.is_a?(Symbol) + # Symbol level is used by the regular log emitter user @level = LEVELS.fetch(level) { |k| raise ArgumentError, "Invalid log level :#{k}" } else raise ArgumentError, "Invalid log level #{level}" diff --git a/lib/datadog/core/telemetry/worker.rb b/lib/datadog/core/telemetry/worker.rb index 9385fa542cc..cc3d9554cb7 100644 --- a/lib/datadog/core/telemetry/worker.rb +++ b/lib/datadog/core/telemetry/worker.rb @@ -170,9 +170,9 @@ def disable_on_not_found!(response) disable! end - # Deduplicate all_logs by counting the number of occurrences of each log - # entry and replacing them with a single entry with the count. - # Other events are passed through unchanged. + # Deduplicate logs by counting the number of repeated occurrences of the same log + # entry and replacing them with a single entry with the calculated `count` value. + # Non-log events are unchanged. def deduplicate_logs(events) return events if events.empty? From 7fa79102e87cfec3adc79f09a80a2f3ca0fe8b49 Mon Sep 17 00:00:00 2001 From: TonyCTHsu <16049123+TonyCTHsu@users.noreply.github.com> Date: Sun, 15 Dec 2024 00:16:55 +0000 Subject: [PATCH 056/161] =?UTF-8?q?[=F0=9F=A4=96]=20Update=20Latest=20Depe?= =?UTF-8?q?ndency:=20https://github.com/DataDog/dd-trace-rb/actions/runs/1?= =?UTF-8?q?2334121595?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- gemfiles/jruby_9.2_elasticsearch_8.gemfile.lock | 6 +++--- gemfiles/jruby_9.2_elasticsearch_latest.gemfile.lock | 6 +++--- gemfiles/jruby_9.3_elasticsearch_8.gemfile.lock | 6 +++--- gemfiles/jruby_9.3_elasticsearch_latest.gemfile.lock | 6 +++--- gemfiles/jruby_9.4_elasticsearch_7.gemfile.lock | 4 ++-- gemfiles/jruby_9.4_elasticsearch_8.gemfile.lock | 10 +++++----- gemfiles/jruby_9.4_elasticsearch_latest.gemfile.lock | 10 +++++----- gemfiles/jruby_9.4_opensearch_2.gemfile.lock | 4 ++-- gemfiles/jruby_9.4_opensearch_3.gemfile.lock | 4 ++-- gemfiles/jruby_9.4_opensearch_latest.gemfile.lock | 4 ++-- gemfiles/ruby_2.5_elasticsearch_8.gemfile.lock | 6 +++--- gemfiles/ruby_2.5_elasticsearch_latest.gemfile.lock | 6 +++--- gemfiles/ruby_2.6_elasticsearch_8.gemfile.lock | 6 +++--- gemfiles/ruby_2.6_elasticsearch_latest.gemfile.lock | 6 +++--- gemfiles/ruby_2.7_elasticsearch_8.gemfile.lock | 6 +++--- gemfiles/ruby_2.7_elasticsearch_latest.gemfile.lock | 6 +++--- gemfiles/ruby_3.0_elasticsearch_7.gemfile.lock | 4 ++-- gemfiles/ruby_3.0_elasticsearch_8.gemfile.lock | 10 +++++----- gemfiles/ruby_3.0_elasticsearch_latest.gemfile.lock | 10 +++++----- gemfiles/ruby_3.0_opensearch_2.gemfile.lock | 4 ++-- gemfiles/ruby_3.0_opensearch_3.gemfile.lock | 4 ++-- gemfiles/ruby_3.0_opensearch_latest.gemfile.lock | 4 ++-- gemfiles/ruby_3.1_elasticsearch_7.gemfile.lock | 4 ++-- gemfiles/ruby_3.1_elasticsearch_8.gemfile.lock | 10 +++++----- gemfiles/ruby_3.1_elasticsearch_latest.gemfile.lock | 10 +++++----- gemfiles/ruby_3.1_opensearch_2.gemfile.lock | 4 ++-- gemfiles/ruby_3.1_opensearch_3.gemfile.lock | 4 ++-- gemfiles/ruby_3.1_opensearch_latest.gemfile.lock | 4 ++-- gemfiles/ruby_3.2_elasticsearch_7.gemfile.lock | 4 ++-- gemfiles/ruby_3.2_elasticsearch_8.gemfile.lock | 10 +++++----- gemfiles/ruby_3.2_elasticsearch_latest.gemfile.lock | 10 +++++----- gemfiles/ruby_3.2_opensearch_2.gemfile.lock | 4 ++-- gemfiles/ruby_3.2_opensearch_3.gemfile.lock | 4 ++-- gemfiles/ruby_3.2_opensearch_latest.gemfile.lock | 4 ++-- gemfiles/ruby_3.3_elasticsearch_7.gemfile.lock | 4 ++-- gemfiles/ruby_3.3_elasticsearch_8.gemfile.lock | 10 +++++----- gemfiles/ruby_3.3_elasticsearch_latest.gemfile.lock | 10 +++++----- gemfiles/ruby_3.3_opensearch_2.gemfile.lock | 4 ++-- gemfiles/ruby_3.3_opensearch_3.gemfile.lock | 4 ++-- gemfiles/ruby_3.3_opensearch_latest.gemfile.lock | 4 ++-- gemfiles/ruby_3.4_elasticsearch_7.gemfile.lock | 4 ++-- gemfiles/ruby_3.4_elasticsearch_8.gemfile.lock | 10 +++++----- gemfiles/ruby_3.4_elasticsearch_latest.gemfile.lock | 10 +++++----- gemfiles/ruby_3.4_opensearch_2.gemfile.lock | 4 ++-- gemfiles/ruby_3.4_opensearch_3.gemfile.lock | 4 ++-- gemfiles/ruby_3.4_opensearch_latest.gemfile.lock | 4 ++-- 46 files changed, 138 insertions(+), 138 deletions(-) diff --git a/gemfiles/jruby_9.2_elasticsearch_8.gemfile.lock b/gemfiles/jruby_9.2_elasticsearch_8.gemfile.lock index 959f298db71..91dc061385d 100644 --- a/gemfiles/jruby_9.2_elasticsearch_8.gemfile.lock +++ b/gemfiles/jruby_9.2_elasticsearch_8.gemfile.lock @@ -37,10 +37,10 @@ GEM elastic-transport (8.3.5) faraday (< 3) multi_json - elasticsearch (8.16.0) + elasticsearch (8.17.0) elastic-transport (~> 8.3) - elasticsearch-api (= 8.16.0) - elasticsearch-api (8.16.0) + elasticsearch-api (= 8.17.0) + elasticsearch-api (8.17.0) multi_json faraday (1.10.4) faraday-em_http (~> 1.0) diff --git a/gemfiles/jruby_9.2_elasticsearch_latest.gemfile.lock b/gemfiles/jruby_9.2_elasticsearch_latest.gemfile.lock index 67342aac216..a63ceba005e 100644 --- a/gemfiles/jruby_9.2_elasticsearch_latest.gemfile.lock +++ b/gemfiles/jruby_9.2_elasticsearch_latest.gemfile.lock @@ -39,10 +39,10 @@ GEM elastic-transport (8.3.5) faraday (< 3) multi_json - elasticsearch (8.16.0) + elasticsearch (8.17.0) elastic-transport (~> 8.3) - elasticsearch-api (= 8.16.0) - elasticsearch-api (8.16.0) + elasticsearch-api (= 8.17.0) + elasticsearch-api (8.17.0) multi_json faraday (1.10.4) faraday-em_http (~> 1.0) diff --git a/gemfiles/jruby_9.3_elasticsearch_8.gemfile.lock b/gemfiles/jruby_9.3_elasticsearch_8.gemfile.lock index 5b5d1093bf0..387f74aaf0b 100644 --- a/gemfiles/jruby_9.3_elasticsearch_8.gemfile.lock +++ b/gemfiles/jruby_9.3_elasticsearch_8.gemfile.lock @@ -39,10 +39,10 @@ GEM elastic-transport (8.3.5) faraday (< 3) multi_json - elasticsearch (8.16.0) + elasticsearch (8.17.0) elastic-transport (~> 8.3) - elasticsearch-api (= 8.16.0) - elasticsearch-api (8.16.0) + elasticsearch-api (= 8.17.0) + elasticsearch-api (8.17.0) multi_json faraday (2.8.1) base64 diff --git a/gemfiles/jruby_9.3_elasticsearch_latest.gemfile.lock b/gemfiles/jruby_9.3_elasticsearch_latest.gemfile.lock index 1b279a51a60..e2ebf64a1b5 100644 --- a/gemfiles/jruby_9.3_elasticsearch_latest.gemfile.lock +++ b/gemfiles/jruby_9.3_elasticsearch_latest.gemfile.lock @@ -41,10 +41,10 @@ GEM elastic-transport (8.3.5) faraday (< 3) multi_json - elasticsearch (8.16.0) + elasticsearch (8.17.0) elastic-transport (~> 8.3) - elasticsearch-api (= 8.16.0) - elasticsearch-api (8.16.0) + elasticsearch-api (= 8.17.0) + elasticsearch-api (8.17.0) multi_json faraday (2.8.1) base64 diff --git a/gemfiles/jruby_9.4_elasticsearch_7.gemfile.lock b/gemfiles/jruby_9.4_elasticsearch_7.gemfile.lock index 7e29a3af42b..6dd71889373 100644 --- a/gemfiles/jruby_9.4_elasticsearch_7.gemfile.lock +++ b/gemfiles/jruby_9.4_elasticsearch_7.gemfile.lock @@ -45,7 +45,7 @@ GEM base64 faraday (>= 1, < 3) multi_json - faraday (2.12.1) + faraday (2.12.2) faraday-net_http (>= 2.0, < 3.5) json logger @@ -59,7 +59,7 @@ GEM libdatadog (14.3.1.1.0) libddwaf (1.18.0.0.0-java) ffi (~> 1.0) - logger (1.6.2) + logger (1.6.3) memory_profiler (0.9.14) method_source (1.0.0) msgpack (1.7.5-java) diff --git a/gemfiles/jruby_9.4_elasticsearch_8.gemfile.lock b/gemfiles/jruby_9.4_elasticsearch_8.gemfile.lock index 050b977c89f..f1ded272e52 100644 --- a/gemfiles/jruby_9.4_elasticsearch_8.gemfile.lock +++ b/gemfiles/jruby_9.4_elasticsearch_8.gemfile.lock @@ -38,12 +38,12 @@ GEM elastic-transport (8.3.5) faraday (< 3) multi_json - elasticsearch (8.16.0) + elasticsearch (8.17.0) elastic-transport (~> 8.3) - elasticsearch-api (= 8.16.0) - elasticsearch-api (8.16.0) + elasticsearch-api (= 8.17.0) + elasticsearch-api (8.17.0) multi_json - faraday (2.12.1) + faraday (2.12.2) faraday-net_http (>= 2.0, < 3.5) json logger @@ -57,7 +57,7 @@ GEM libdatadog (14.3.1.1.0) libddwaf (1.18.0.0.0-java) ffi (~> 1.0) - logger (1.6.2) + logger (1.6.3) memory_profiler (0.9.14) method_source (1.0.0) msgpack (1.7.5-java) diff --git a/gemfiles/jruby_9.4_elasticsearch_latest.gemfile.lock b/gemfiles/jruby_9.4_elasticsearch_latest.gemfile.lock index 72ad849483b..ce0510eeb65 100644 --- a/gemfiles/jruby_9.4_elasticsearch_latest.gemfile.lock +++ b/gemfiles/jruby_9.4_elasticsearch_latest.gemfile.lock @@ -40,12 +40,12 @@ GEM elastic-transport (8.3.5) faraday (< 3) multi_json - elasticsearch (8.16.0) + elasticsearch (8.17.0) elastic-transport (~> 8.3) - elasticsearch-api (= 8.16.0) - elasticsearch-api (8.16.0) + elasticsearch-api (= 8.17.0) + elasticsearch-api (8.17.0) multi_json - faraday (2.12.1) + faraday (2.12.2) faraday-net_http (>= 2.0, < 3.5) json logger @@ -59,7 +59,7 @@ GEM libdatadog (14.3.1.1.0) libddwaf (1.18.0.0.0-java) ffi (~> 1.0) - logger (1.6.2) + logger (1.6.3) memory_profiler (0.9.14) method_source (1.1.0) msgpack (1.7.5-java) diff --git a/gemfiles/jruby_9.4_opensearch_2.gemfile.lock b/gemfiles/jruby_9.4_opensearch_2.gemfile.lock index c6643667d8b..84cb79302ca 100644 --- a/gemfiles/jruby_9.4_opensearch_2.gemfile.lock +++ b/gemfiles/jruby_9.4_opensearch_2.gemfile.lock @@ -35,7 +35,7 @@ GEM diff-lcs (1.5.0) docile (1.4.0) dogstatsd-ruby (5.6.1) - faraday (2.12.1) + faraday (2.12.2) faraday-net_http (>= 2.0, < 3.5) json logger @@ -49,7 +49,7 @@ GEM libdatadog (14.3.1.1.0) libddwaf (1.18.0.0.0-java) ffi (~> 1.0) - logger (1.6.2) + logger (1.6.3) memory_profiler (0.9.14) method_source (1.0.0) msgpack (1.7.5-java) diff --git a/gemfiles/jruby_9.4_opensearch_3.gemfile.lock b/gemfiles/jruby_9.4_opensearch_3.gemfile.lock index f2f602e68fe..5f378a33a3c 100644 --- a/gemfiles/jruby_9.4_opensearch_3.gemfile.lock +++ b/gemfiles/jruby_9.4_opensearch_3.gemfile.lock @@ -35,7 +35,7 @@ GEM diff-lcs (1.5.0) docile (1.4.0) dogstatsd-ruby (5.6.1) - faraday (2.12.1) + faraday (2.12.2) faraday-net_http (>= 2.0, < 3.5) json logger @@ -49,7 +49,7 @@ GEM libdatadog (14.3.1.1.0) libddwaf (1.18.0.0.0-java) ffi (~> 1.0) - logger (1.6.2) + logger (1.6.3) memory_profiler (0.9.14) method_source (1.0.0) msgpack (1.7.5-java) diff --git a/gemfiles/jruby_9.4_opensearch_latest.gemfile.lock b/gemfiles/jruby_9.4_opensearch_latest.gemfile.lock index 17f92fa1aac..c67fd9388a6 100644 --- a/gemfiles/jruby_9.4_opensearch_latest.gemfile.lock +++ b/gemfiles/jruby_9.4_opensearch_latest.gemfile.lock @@ -37,7 +37,7 @@ GEM diff-lcs (1.5.1) docile (1.4.1) dogstatsd-ruby (5.6.1) - faraday (2.12.1) + faraday (2.12.2) faraday-net_http (>= 2.0, < 3.5) json logger @@ -51,7 +51,7 @@ GEM libdatadog (14.3.1.1.0) libddwaf (1.18.0.0.0-java) ffi (~> 1.0) - logger (1.6.2) + logger (1.6.3) memory_profiler (0.9.14) method_source (1.1.0) msgpack (1.7.5-java) diff --git a/gemfiles/ruby_2.5_elasticsearch_8.gemfile.lock b/gemfiles/ruby_2.5_elasticsearch_8.gemfile.lock index 94a00e6a94f..596827a7cf5 100644 --- a/gemfiles/ruby_2.5_elasticsearch_8.gemfile.lock +++ b/gemfiles/ruby_2.5_elasticsearch_8.gemfile.lock @@ -40,10 +40,10 @@ GEM elastic-transport (8.3.5) faraday (< 3) multi_json - elasticsearch (8.16.0) + elasticsearch (8.17.0) elastic-transport (~> 8.3) - elasticsearch-api (= 8.16.0) - elasticsearch-api (8.16.0) + elasticsearch-api (= 8.17.0) + elasticsearch-api (8.17.0) multi_json extlz4 (0.3.4) faraday (1.10.4) diff --git a/gemfiles/ruby_2.5_elasticsearch_latest.gemfile.lock b/gemfiles/ruby_2.5_elasticsearch_latest.gemfile.lock index 433a3c65568..3f17859abca 100644 --- a/gemfiles/ruby_2.5_elasticsearch_latest.gemfile.lock +++ b/gemfiles/ruby_2.5_elasticsearch_latest.gemfile.lock @@ -42,10 +42,10 @@ GEM elastic-transport (8.3.5) faraday (< 3) multi_json - elasticsearch (8.16.0) + elasticsearch (8.17.0) elastic-transport (~> 8.3) - elasticsearch-api (= 8.16.0) - elasticsearch-api (8.16.0) + elasticsearch-api (= 8.17.0) + elasticsearch-api (8.17.0) multi_json extlz4 (0.3.4) faraday (1.10.4) diff --git a/gemfiles/ruby_2.6_elasticsearch_8.gemfile.lock b/gemfiles/ruby_2.6_elasticsearch_8.gemfile.lock index d0ca784c49d..39997e6b489 100644 --- a/gemfiles/ruby_2.6_elasticsearch_8.gemfile.lock +++ b/gemfiles/ruby_2.6_elasticsearch_8.gemfile.lock @@ -43,10 +43,10 @@ GEM elastic-transport (8.3.5) faraday (< 3) multi_json - elasticsearch (8.16.0) + elasticsearch (8.17.0) elastic-transport (~> 8.3) - elasticsearch-api (= 8.16.0) - elasticsearch-api (8.16.0) + elasticsearch-api (= 8.17.0) + elasticsearch-api (8.17.0) multi_json extlz4 (0.3.4) faraday (2.8.1) diff --git a/gemfiles/ruby_2.6_elasticsearch_latest.gemfile.lock b/gemfiles/ruby_2.6_elasticsearch_latest.gemfile.lock index 365202f0fad..ddb371009db 100644 --- a/gemfiles/ruby_2.6_elasticsearch_latest.gemfile.lock +++ b/gemfiles/ruby_2.6_elasticsearch_latest.gemfile.lock @@ -45,10 +45,10 @@ GEM elastic-transport (8.3.5) faraday (< 3) multi_json - elasticsearch (8.16.0) + elasticsearch (8.17.0) elastic-transport (~> 8.3) - elasticsearch-api (= 8.16.0) - elasticsearch-api (8.16.0) + elasticsearch-api (= 8.17.0) + elasticsearch-api (8.17.0) multi_json extlz4 (0.3.4) faraday (2.8.1) diff --git a/gemfiles/ruby_2.7_elasticsearch_8.gemfile.lock b/gemfiles/ruby_2.7_elasticsearch_8.gemfile.lock index 48b79cf3c75..707fc6e91b4 100644 --- a/gemfiles/ruby_2.7_elasticsearch_8.gemfile.lock +++ b/gemfiles/ruby_2.7_elasticsearch_8.gemfile.lock @@ -43,10 +43,10 @@ GEM elastic-transport (8.3.5) faraday (< 3) multi_json - elasticsearch (8.16.0) + elasticsearch (8.17.0) elastic-transport (~> 8.3) - elasticsearch-api (= 8.16.0) - elasticsearch-api (8.16.0) + elasticsearch-api (= 8.17.0) + elasticsearch-api (8.17.0) multi_json extlz4 (0.3.4) faraday (2.8.1) diff --git a/gemfiles/ruby_2.7_elasticsearch_latest.gemfile.lock b/gemfiles/ruby_2.7_elasticsearch_latest.gemfile.lock index 941c432765e..aaa15644f0b 100644 --- a/gemfiles/ruby_2.7_elasticsearch_latest.gemfile.lock +++ b/gemfiles/ruby_2.7_elasticsearch_latest.gemfile.lock @@ -45,10 +45,10 @@ GEM elastic-transport (8.3.5) faraday (< 3) multi_json - elasticsearch (8.16.0) + elasticsearch (8.17.0) elastic-transport (~> 8.3) - elasticsearch-api (= 8.16.0) - elasticsearch-api (8.16.0) + elasticsearch-api (= 8.17.0) + elasticsearch-api (8.17.0) multi_json extlz4 (0.3.4) faraday (2.8.1) diff --git a/gemfiles/ruby_3.0_elasticsearch_7.gemfile.lock b/gemfiles/ruby_3.0_elasticsearch_7.gemfile.lock index fad3533337e..5dd36c80c58 100644 --- a/gemfiles/ruby_3.0_elasticsearch_7.gemfile.lock +++ b/gemfiles/ruby_3.0_elasticsearch_7.gemfile.lock @@ -50,7 +50,7 @@ GEM faraday (>= 1, < 3) multi_json extlz4 (0.3.4) - faraday (2.12.1) + faraday (2.12.2) faraday-net_http (>= 2.0, < 3.5) json logger @@ -70,7 +70,7 @@ GEM ffi (~> 1.0) libddwaf (1.18.0.0.0-x86_64-linux) ffi (~> 1.0) - logger (1.6.2) + logger (1.6.3) memory_profiler (0.9.14) method_source (1.0.0) msgpack (1.7.5) diff --git a/gemfiles/ruby_3.0_elasticsearch_8.gemfile.lock b/gemfiles/ruby_3.0_elasticsearch_8.gemfile.lock index 7382d596112..e13ba54b8ee 100644 --- a/gemfiles/ruby_3.0_elasticsearch_8.gemfile.lock +++ b/gemfiles/ruby_3.0_elasticsearch_8.gemfile.lock @@ -42,13 +42,13 @@ GEM elastic-transport (8.3.5) faraday (< 3) multi_json - elasticsearch (8.16.0) + elasticsearch (8.17.0) elastic-transport (~> 8.3) - elasticsearch-api (= 8.16.0) - elasticsearch-api (8.16.0) + elasticsearch-api (= 8.17.0) + elasticsearch-api (8.17.0) multi_json extlz4 (0.3.4) - faraday (2.12.1) + faraday (2.12.2) faraday-net_http (>= 2.0, < 3.5) json logger @@ -68,7 +68,7 @@ GEM ffi (~> 1.0) libddwaf (1.18.0.0.0-x86_64-linux) ffi (~> 1.0) - logger (1.6.2) + logger (1.6.3) memory_profiler (0.9.14) method_source (1.0.0) msgpack (1.7.5) diff --git a/gemfiles/ruby_3.0_elasticsearch_latest.gemfile.lock b/gemfiles/ruby_3.0_elasticsearch_latest.gemfile.lock index b5c748ab825..1c3a5cc7c4d 100644 --- a/gemfiles/ruby_3.0_elasticsearch_latest.gemfile.lock +++ b/gemfiles/ruby_3.0_elasticsearch_latest.gemfile.lock @@ -44,13 +44,13 @@ GEM elastic-transport (8.3.5) faraday (< 3) multi_json - elasticsearch (8.16.0) + elasticsearch (8.17.0) elastic-transport (~> 8.3) - elasticsearch-api (= 8.16.0) - elasticsearch-api (8.16.0) + elasticsearch-api (= 8.17.0) + elasticsearch-api (8.17.0) multi_json extlz4 (0.3.4) - faraday (2.12.1) + faraday (2.12.2) faraday-net_http (>= 2.0, < 3.5) json logger @@ -70,7 +70,7 @@ GEM ffi (~> 1.0) libddwaf (1.18.0.0.0-x86_64-linux) ffi (~> 1.0) - logger (1.6.2) + logger (1.6.3) memory_profiler (0.9.14) method_source (1.1.0) msgpack (1.7.5) diff --git a/gemfiles/ruby_3.0_opensearch_2.gemfile.lock b/gemfiles/ruby_3.0_opensearch_2.gemfile.lock index 4321b9bdc02..d9fb329fdc0 100644 --- a/gemfiles/ruby_3.0_opensearch_2.gemfile.lock +++ b/gemfiles/ruby_3.0_opensearch_2.gemfile.lock @@ -40,7 +40,7 @@ GEM docile (1.4.0) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) - faraday (2.12.1) + faraday (2.12.2) faraday-net_http (>= 2.0, < 3.5) json logger @@ -60,7 +60,7 @@ GEM ffi (~> 1.0) libddwaf (1.18.0.0.0-x86_64-linux) ffi (~> 1.0) - logger (1.6.2) + logger (1.6.3) memory_profiler (0.9.14) method_source (1.0.0) msgpack (1.7.5) diff --git a/gemfiles/ruby_3.0_opensearch_3.gemfile.lock b/gemfiles/ruby_3.0_opensearch_3.gemfile.lock index 95a12c3df01..3140a31c431 100644 --- a/gemfiles/ruby_3.0_opensearch_3.gemfile.lock +++ b/gemfiles/ruby_3.0_opensearch_3.gemfile.lock @@ -40,7 +40,7 @@ GEM docile (1.4.0) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) - faraday (2.12.1) + faraday (2.12.2) faraday-net_http (>= 2.0, < 3.5) json logger @@ -60,7 +60,7 @@ GEM ffi (~> 1.0) libddwaf (1.18.0.0.0-x86_64-linux) ffi (~> 1.0) - logger (1.6.2) + logger (1.6.3) memory_profiler (0.9.14) method_source (1.0.0) msgpack (1.7.5) diff --git a/gemfiles/ruby_3.0_opensearch_latest.gemfile.lock b/gemfiles/ruby_3.0_opensearch_latest.gemfile.lock index b5ace5ca402..49df06ea0c7 100644 --- a/gemfiles/ruby_3.0_opensearch_latest.gemfile.lock +++ b/gemfiles/ruby_3.0_opensearch_latest.gemfile.lock @@ -42,7 +42,7 @@ GEM docile (1.4.1) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) - faraday (2.12.1) + faraday (2.12.2) faraday-net_http (>= 2.0, < 3.5) json logger @@ -62,7 +62,7 @@ GEM ffi (~> 1.0) libddwaf (1.18.0.0.0-x86_64-linux) ffi (~> 1.0) - logger (1.6.2) + logger (1.6.3) memory_profiler (0.9.14) method_source (1.1.0) msgpack (1.7.5) diff --git a/gemfiles/ruby_3.1_elasticsearch_7.gemfile.lock b/gemfiles/ruby_3.1_elasticsearch_7.gemfile.lock index fad3533337e..5dd36c80c58 100644 --- a/gemfiles/ruby_3.1_elasticsearch_7.gemfile.lock +++ b/gemfiles/ruby_3.1_elasticsearch_7.gemfile.lock @@ -50,7 +50,7 @@ GEM faraday (>= 1, < 3) multi_json extlz4 (0.3.4) - faraday (2.12.1) + faraday (2.12.2) faraday-net_http (>= 2.0, < 3.5) json logger @@ -70,7 +70,7 @@ GEM ffi (~> 1.0) libddwaf (1.18.0.0.0-x86_64-linux) ffi (~> 1.0) - logger (1.6.2) + logger (1.6.3) memory_profiler (0.9.14) method_source (1.0.0) msgpack (1.7.5) diff --git a/gemfiles/ruby_3.1_elasticsearch_8.gemfile.lock b/gemfiles/ruby_3.1_elasticsearch_8.gemfile.lock index 7382d596112..e13ba54b8ee 100644 --- a/gemfiles/ruby_3.1_elasticsearch_8.gemfile.lock +++ b/gemfiles/ruby_3.1_elasticsearch_8.gemfile.lock @@ -42,13 +42,13 @@ GEM elastic-transport (8.3.5) faraday (< 3) multi_json - elasticsearch (8.16.0) + elasticsearch (8.17.0) elastic-transport (~> 8.3) - elasticsearch-api (= 8.16.0) - elasticsearch-api (8.16.0) + elasticsearch-api (= 8.17.0) + elasticsearch-api (8.17.0) multi_json extlz4 (0.3.4) - faraday (2.12.1) + faraday (2.12.2) faraday-net_http (>= 2.0, < 3.5) json logger @@ -68,7 +68,7 @@ GEM ffi (~> 1.0) libddwaf (1.18.0.0.0-x86_64-linux) ffi (~> 1.0) - logger (1.6.2) + logger (1.6.3) memory_profiler (0.9.14) method_source (1.0.0) msgpack (1.7.5) diff --git a/gemfiles/ruby_3.1_elasticsearch_latest.gemfile.lock b/gemfiles/ruby_3.1_elasticsearch_latest.gemfile.lock index b5c748ab825..1c3a5cc7c4d 100644 --- a/gemfiles/ruby_3.1_elasticsearch_latest.gemfile.lock +++ b/gemfiles/ruby_3.1_elasticsearch_latest.gemfile.lock @@ -44,13 +44,13 @@ GEM elastic-transport (8.3.5) faraday (< 3) multi_json - elasticsearch (8.16.0) + elasticsearch (8.17.0) elastic-transport (~> 8.3) - elasticsearch-api (= 8.16.0) - elasticsearch-api (8.16.0) + elasticsearch-api (= 8.17.0) + elasticsearch-api (8.17.0) multi_json extlz4 (0.3.4) - faraday (2.12.1) + faraday (2.12.2) faraday-net_http (>= 2.0, < 3.5) json logger @@ -70,7 +70,7 @@ GEM ffi (~> 1.0) libddwaf (1.18.0.0.0-x86_64-linux) ffi (~> 1.0) - logger (1.6.2) + logger (1.6.3) memory_profiler (0.9.14) method_source (1.1.0) msgpack (1.7.5) diff --git a/gemfiles/ruby_3.1_opensearch_2.gemfile.lock b/gemfiles/ruby_3.1_opensearch_2.gemfile.lock index 4321b9bdc02..d9fb329fdc0 100644 --- a/gemfiles/ruby_3.1_opensearch_2.gemfile.lock +++ b/gemfiles/ruby_3.1_opensearch_2.gemfile.lock @@ -40,7 +40,7 @@ GEM docile (1.4.0) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) - faraday (2.12.1) + faraday (2.12.2) faraday-net_http (>= 2.0, < 3.5) json logger @@ -60,7 +60,7 @@ GEM ffi (~> 1.0) libddwaf (1.18.0.0.0-x86_64-linux) ffi (~> 1.0) - logger (1.6.2) + logger (1.6.3) memory_profiler (0.9.14) method_source (1.0.0) msgpack (1.7.5) diff --git a/gemfiles/ruby_3.1_opensearch_3.gemfile.lock b/gemfiles/ruby_3.1_opensearch_3.gemfile.lock index 95a12c3df01..3140a31c431 100644 --- a/gemfiles/ruby_3.1_opensearch_3.gemfile.lock +++ b/gemfiles/ruby_3.1_opensearch_3.gemfile.lock @@ -40,7 +40,7 @@ GEM docile (1.4.0) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) - faraday (2.12.1) + faraday (2.12.2) faraday-net_http (>= 2.0, < 3.5) json logger @@ -60,7 +60,7 @@ GEM ffi (~> 1.0) libddwaf (1.18.0.0.0-x86_64-linux) ffi (~> 1.0) - logger (1.6.2) + logger (1.6.3) memory_profiler (0.9.14) method_source (1.0.0) msgpack (1.7.5) diff --git a/gemfiles/ruby_3.1_opensearch_latest.gemfile.lock b/gemfiles/ruby_3.1_opensearch_latest.gemfile.lock index b5ace5ca402..49df06ea0c7 100644 --- a/gemfiles/ruby_3.1_opensearch_latest.gemfile.lock +++ b/gemfiles/ruby_3.1_opensearch_latest.gemfile.lock @@ -42,7 +42,7 @@ GEM docile (1.4.1) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) - faraday (2.12.1) + faraday (2.12.2) faraday-net_http (>= 2.0, < 3.5) json logger @@ -62,7 +62,7 @@ GEM ffi (~> 1.0) libddwaf (1.18.0.0.0-x86_64-linux) ffi (~> 1.0) - logger (1.6.2) + logger (1.6.3) memory_profiler (0.9.14) method_source (1.1.0) msgpack (1.7.5) diff --git a/gemfiles/ruby_3.2_elasticsearch_7.gemfile.lock b/gemfiles/ruby_3.2_elasticsearch_7.gemfile.lock index 2c2f48d1760..08f4dc773b3 100644 --- a/gemfiles/ruby_3.2_elasticsearch_7.gemfile.lock +++ b/gemfiles/ruby_3.2_elasticsearch_7.gemfile.lock @@ -49,7 +49,7 @@ GEM faraday (>= 1, < 3) multi_json extlz4 (0.3.4) - faraday (2.12.1) + faraday (2.12.2) faraday-net_http (>= 2.0, < 3.5) json logger @@ -69,7 +69,7 @@ GEM ffi (~> 1.0) libddwaf (1.18.0.0.0-x86_64-linux) ffi (~> 1.0) - logger (1.6.2) + logger (1.6.3) memory_profiler (0.9.14) method_source (1.0.0) msgpack (1.7.5) diff --git a/gemfiles/ruby_3.2_elasticsearch_8.gemfile.lock b/gemfiles/ruby_3.2_elasticsearch_8.gemfile.lock index 29e59ca0653..e2ec84ce2d2 100644 --- a/gemfiles/ruby_3.2_elasticsearch_8.gemfile.lock +++ b/gemfiles/ruby_3.2_elasticsearch_8.gemfile.lock @@ -41,13 +41,13 @@ GEM elastic-transport (8.3.5) faraday (< 3) multi_json - elasticsearch (8.16.0) + elasticsearch (8.17.0) elastic-transport (~> 8.3) - elasticsearch-api (= 8.16.0) - elasticsearch-api (8.16.0) + elasticsearch-api (= 8.17.0) + elasticsearch-api (8.17.0) multi_json extlz4 (0.3.4) - faraday (2.12.1) + faraday (2.12.2) faraday-net_http (>= 2.0, < 3.5) json logger @@ -67,7 +67,7 @@ GEM ffi (~> 1.0) libddwaf (1.18.0.0.0-x86_64-linux) ffi (~> 1.0) - logger (1.6.2) + logger (1.6.3) memory_profiler (0.9.14) method_source (1.0.0) msgpack (1.7.5) diff --git a/gemfiles/ruby_3.2_elasticsearch_latest.gemfile.lock b/gemfiles/ruby_3.2_elasticsearch_latest.gemfile.lock index 89aa408d497..3fc10091baf 100644 --- a/gemfiles/ruby_3.2_elasticsearch_latest.gemfile.lock +++ b/gemfiles/ruby_3.2_elasticsearch_latest.gemfile.lock @@ -43,13 +43,13 @@ GEM elastic-transport (8.3.5) faraday (< 3) multi_json - elasticsearch (8.16.0) + elasticsearch (8.17.0) elastic-transport (~> 8.3) - elasticsearch-api (= 8.16.0) - elasticsearch-api (8.16.0) + elasticsearch-api (= 8.17.0) + elasticsearch-api (8.17.0) multi_json extlz4 (0.3.4) - faraday (2.12.1) + faraday (2.12.2) faraday-net_http (>= 2.0, < 3.5) json logger @@ -69,7 +69,7 @@ GEM ffi (~> 1.0) libddwaf (1.18.0.0.0-x86_64-linux) ffi (~> 1.0) - logger (1.6.2) + logger (1.6.3) memory_profiler (0.9.14) method_source (1.1.0) msgpack (1.7.5) diff --git a/gemfiles/ruby_3.2_opensearch_2.gemfile.lock b/gemfiles/ruby_3.2_opensearch_2.gemfile.lock index 57b38e1b9f7..b205a5efc85 100644 --- a/gemfiles/ruby_3.2_opensearch_2.gemfile.lock +++ b/gemfiles/ruby_3.2_opensearch_2.gemfile.lock @@ -39,7 +39,7 @@ GEM docile (1.4.0) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) - faraday (2.12.1) + faraday (2.12.2) faraday-net_http (>= 2.0, < 3.5) json logger @@ -59,7 +59,7 @@ GEM ffi (~> 1.0) libddwaf (1.18.0.0.0-x86_64-linux) ffi (~> 1.0) - logger (1.6.2) + logger (1.6.3) memory_profiler (0.9.14) method_source (1.0.0) msgpack (1.7.5) diff --git a/gemfiles/ruby_3.2_opensearch_3.gemfile.lock b/gemfiles/ruby_3.2_opensearch_3.gemfile.lock index 932f9299022..2633f94129e 100644 --- a/gemfiles/ruby_3.2_opensearch_3.gemfile.lock +++ b/gemfiles/ruby_3.2_opensearch_3.gemfile.lock @@ -39,7 +39,7 @@ GEM docile (1.4.0) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) - faraday (2.12.1) + faraday (2.12.2) faraday-net_http (>= 2.0, < 3.5) json logger @@ -59,7 +59,7 @@ GEM ffi (~> 1.0) libddwaf (1.18.0.0.0-x86_64-linux) ffi (~> 1.0) - logger (1.6.2) + logger (1.6.3) memory_profiler (0.9.14) method_source (1.0.0) msgpack (1.7.5) diff --git a/gemfiles/ruby_3.2_opensearch_latest.gemfile.lock b/gemfiles/ruby_3.2_opensearch_latest.gemfile.lock index ee3b72c4016..28454df0418 100644 --- a/gemfiles/ruby_3.2_opensearch_latest.gemfile.lock +++ b/gemfiles/ruby_3.2_opensearch_latest.gemfile.lock @@ -41,7 +41,7 @@ GEM docile (1.4.1) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) - faraday (2.12.1) + faraday (2.12.2) faraday-net_http (>= 2.0, < 3.5) json logger @@ -61,7 +61,7 @@ GEM ffi (~> 1.0) libddwaf (1.18.0.0.0-x86_64-linux) ffi (~> 1.0) - logger (1.6.2) + logger (1.6.3) memory_profiler (0.9.14) method_source (1.1.0) msgpack (1.7.5) diff --git a/gemfiles/ruby_3.3_elasticsearch_7.gemfile.lock b/gemfiles/ruby_3.3_elasticsearch_7.gemfile.lock index 8455c7171b6..7eb225de5e7 100644 --- a/gemfiles/ruby_3.3_elasticsearch_7.gemfile.lock +++ b/gemfiles/ruby_3.3_elasticsearch_7.gemfile.lock @@ -49,7 +49,7 @@ GEM faraday (>= 1, < 3) multi_json extlz4 (0.3.4) - faraday (2.12.1) + faraday (2.12.2) faraday-net_http (>= 2.0, < 3.5) json logger @@ -68,7 +68,7 @@ GEM ffi (~> 1.0) libddwaf (1.18.0.0.0-x86_64-linux) ffi (~> 1.0) - logger (1.6.2) + logger (1.6.3) memory_profiler (0.9.14) method_source (1.0.0) msgpack (1.7.5) diff --git a/gemfiles/ruby_3.3_elasticsearch_8.gemfile.lock b/gemfiles/ruby_3.3_elasticsearch_8.gemfile.lock index 62274828686..05696eade1f 100644 --- a/gemfiles/ruby_3.3_elasticsearch_8.gemfile.lock +++ b/gemfiles/ruby_3.3_elasticsearch_8.gemfile.lock @@ -41,13 +41,13 @@ GEM elastic-transport (8.3.5) faraday (< 3) multi_json - elasticsearch (8.16.0) + elasticsearch (8.17.0) elastic-transport (~> 8.3) - elasticsearch-api (= 8.16.0) - elasticsearch-api (8.16.0) + elasticsearch-api (= 8.17.0) + elasticsearch-api (8.17.0) multi_json extlz4 (0.3.4) - faraday (2.12.1) + faraday (2.12.2) faraday-net_http (>= 2.0, < 3.5) json logger @@ -66,7 +66,7 @@ GEM ffi (~> 1.0) libddwaf (1.18.0.0.0-x86_64-linux) ffi (~> 1.0) - logger (1.6.2) + logger (1.6.3) memory_profiler (0.9.14) method_source (1.0.0) msgpack (1.7.5) diff --git a/gemfiles/ruby_3.3_elasticsearch_latest.gemfile.lock b/gemfiles/ruby_3.3_elasticsearch_latest.gemfile.lock index 89aa408d497..3fc10091baf 100644 --- a/gemfiles/ruby_3.3_elasticsearch_latest.gemfile.lock +++ b/gemfiles/ruby_3.3_elasticsearch_latest.gemfile.lock @@ -43,13 +43,13 @@ GEM elastic-transport (8.3.5) faraday (< 3) multi_json - elasticsearch (8.16.0) + elasticsearch (8.17.0) elastic-transport (~> 8.3) - elasticsearch-api (= 8.16.0) - elasticsearch-api (8.16.0) + elasticsearch-api (= 8.17.0) + elasticsearch-api (8.17.0) multi_json extlz4 (0.3.4) - faraday (2.12.1) + faraday (2.12.2) faraday-net_http (>= 2.0, < 3.5) json logger @@ -69,7 +69,7 @@ GEM ffi (~> 1.0) libddwaf (1.18.0.0.0-x86_64-linux) ffi (~> 1.0) - logger (1.6.2) + logger (1.6.3) memory_profiler (0.9.14) method_source (1.1.0) msgpack (1.7.5) diff --git a/gemfiles/ruby_3.3_opensearch_2.gemfile.lock b/gemfiles/ruby_3.3_opensearch_2.gemfile.lock index 4c047514a8b..74243f25c2d 100644 --- a/gemfiles/ruby_3.3_opensearch_2.gemfile.lock +++ b/gemfiles/ruby_3.3_opensearch_2.gemfile.lock @@ -39,7 +39,7 @@ GEM docile (1.4.0) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) - faraday (2.12.1) + faraday (2.12.2) faraday-net_http (>= 2.0, < 3.5) json logger @@ -58,7 +58,7 @@ GEM ffi (~> 1.0) libddwaf (1.18.0.0.0-x86_64-linux) ffi (~> 1.0) - logger (1.6.2) + logger (1.6.3) memory_profiler (0.9.14) method_source (1.0.0) msgpack (1.7.5) diff --git a/gemfiles/ruby_3.3_opensearch_3.gemfile.lock b/gemfiles/ruby_3.3_opensearch_3.gemfile.lock index c06260e4ead..dda7aa3baf8 100644 --- a/gemfiles/ruby_3.3_opensearch_3.gemfile.lock +++ b/gemfiles/ruby_3.3_opensearch_3.gemfile.lock @@ -39,7 +39,7 @@ GEM docile (1.4.0) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) - faraday (2.12.1) + faraday (2.12.2) faraday-net_http (>= 2.0, < 3.5) json logger @@ -58,7 +58,7 @@ GEM ffi (~> 1.0) libddwaf (1.18.0.0.0-x86_64-linux) ffi (~> 1.0) - logger (1.6.2) + logger (1.6.3) memory_profiler (0.9.14) method_source (1.0.0) msgpack (1.7.5) diff --git a/gemfiles/ruby_3.3_opensearch_latest.gemfile.lock b/gemfiles/ruby_3.3_opensearch_latest.gemfile.lock index ee3b72c4016..28454df0418 100644 --- a/gemfiles/ruby_3.3_opensearch_latest.gemfile.lock +++ b/gemfiles/ruby_3.3_opensearch_latest.gemfile.lock @@ -41,7 +41,7 @@ GEM docile (1.4.1) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) - faraday (2.12.1) + faraday (2.12.2) faraday-net_http (>= 2.0, < 3.5) json logger @@ -61,7 +61,7 @@ GEM ffi (~> 1.0) libddwaf (1.18.0.0.0-x86_64-linux) ffi (~> 1.0) - logger (1.6.2) + logger (1.6.3) memory_profiler (0.9.14) method_source (1.1.0) msgpack (1.7.5) diff --git a/gemfiles/ruby_3.4_elasticsearch_7.gemfile.lock b/gemfiles/ruby_3.4_elasticsearch_7.gemfile.lock index 79dc87b6c0d..210980e39b8 100644 --- a/gemfiles/ruby_3.4_elasticsearch_7.gemfile.lock +++ b/gemfiles/ruby_3.4_elasticsearch_7.gemfile.lock @@ -58,7 +58,7 @@ GEM faraday (>= 1, < 3) multi_json extlz4 (0.3.4) - faraday (2.12.1) + faraday (2.12.2) faraday-net_http (>= 2.0, < 3.5) json logger @@ -76,7 +76,7 @@ GEM ffi (~> 1.0) libddwaf (1.18.0.0.0-x86_64-linux) ffi (~> 1.0) - logger (1.6.2) + logger (1.6.3) memory_profiler (0.9.14) method_source (1.1.0) msgpack (1.7.5) diff --git a/gemfiles/ruby_3.4_elasticsearch_8.gemfile.lock b/gemfiles/ruby_3.4_elasticsearch_8.gemfile.lock index 320d7b266a5..8066fa9fa4a 100644 --- a/gemfiles/ruby_3.4_elasticsearch_8.gemfile.lock +++ b/gemfiles/ruby_3.4_elasticsearch_8.gemfile.lock @@ -51,13 +51,13 @@ GEM elastic-transport (8.3.5) faraday (< 3) multi_json - elasticsearch (8.16.0) + elasticsearch (8.17.0) elastic-transport (~> 8.3) - elasticsearch-api (= 8.16.0) - elasticsearch-api (8.16.0) + elasticsearch-api (= 8.17.0) + elasticsearch-api (8.17.0) multi_json extlz4 (0.3.4) - faraday (2.12.1) + faraday (2.12.2) faraday-net_http (>= 2.0, < 3.5) json logger @@ -75,7 +75,7 @@ GEM ffi (~> 1.0) libddwaf (1.18.0.0.0-x86_64-linux) ffi (~> 1.0) - logger (1.6.2) + logger (1.6.3) memory_profiler (0.9.14) method_source (1.1.0) msgpack (1.7.5) diff --git a/gemfiles/ruby_3.4_elasticsearch_latest.gemfile.lock b/gemfiles/ruby_3.4_elasticsearch_latest.gemfile.lock index e1b9edfa730..3fed44778ad 100644 --- a/gemfiles/ruby_3.4_elasticsearch_latest.gemfile.lock +++ b/gemfiles/ruby_3.4_elasticsearch_latest.gemfile.lock @@ -51,13 +51,13 @@ GEM elastic-transport (8.3.5) faraday (< 3) multi_json - elasticsearch (8.16.0) + elasticsearch (8.17.0) elastic-transport (~> 8.3) - elasticsearch-api (= 8.16.0) - elasticsearch-api (8.16.0) + elasticsearch-api (= 8.17.0) + elasticsearch-api (8.17.0) multi_json extlz4 (0.3.4) - faraday (2.12.1) + faraday (2.12.2) faraday-net_http (>= 2.0, < 3.5) json logger @@ -75,7 +75,7 @@ GEM ffi (~> 1.0) libddwaf (1.18.0.0.0-x86_64-linux) ffi (~> 1.0) - logger (1.6.2) + logger (1.6.3) memory_profiler (0.9.14) method_source (1.1.0) msgpack (1.7.5) diff --git a/gemfiles/ruby_3.4_opensearch_2.gemfile.lock b/gemfiles/ruby_3.4_opensearch_2.gemfile.lock index d85eaef341c..3ac828d5569 100644 --- a/gemfiles/ruby_3.4_opensearch_2.gemfile.lock +++ b/gemfiles/ruby_3.4_opensearch_2.gemfile.lock @@ -49,7 +49,7 @@ GEM docile (1.4.0) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) - faraday (2.12.1) + faraday (2.12.2) faraday-net_http (>= 2.0, < 3.5) json logger @@ -67,7 +67,7 @@ GEM ffi (~> 1.0) libddwaf (1.18.0.0.0-x86_64-linux) ffi (~> 1.0) - logger (1.6.2) + logger (1.6.3) memory_profiler (0.9.14) method_source (1.1.0) msgpack (1.7.5) diff --git a/gemfiles/ruby_3.4_opensearch_3.gemfile.lock b/gemfiles/ruby_3.4_opensearch_3.gemfile.lock index 8253833e8d1..f44f391d09e 100644 --- a/gemfiles/ruby_3.4_opensearch_3.gemfile.lock +++ b/gemfiles/ruby_3.4_opensearch_3.gemfile.lock @@ -49,7 +49,7 @@ GEM docile (1.4.0) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) - faraday (2.12.1) + faraday (2.12.2) faraday-net_http (>= 2.0, < 3.5) json logger @@ -67,7 +67,7 @@ GEM ffi (~> 1.0) libddwaf (1.18.0.0.0-x86_64-linux) ffi (~> 1.0) - logger (1.6.2) + logger (1.6.3) memory_profiler (0.9.14) method_source (1.1.0) msgpack (1.7.5) diff --git a/gemfiles/ruby_3.4_opensearch_latest.gemfile.lock b/gemfiles/ruby_3.4_opensearch_latest.gemfile.lock index edc200a4a98..2b8c4e95cdc 100644 --- a/gemfiles/ruby_3.4_opensearch_latest.gemfile.lock +++ b/gemfiles/ruby_3.4_opensearch_latest.gemfile.lock @@ -49,7 +49,7 @@ GEM docile (1.4.1) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) - faraday (2.12.1) + faraday (2.12.2) faraday-net_http (>= 2.0, < 3.5) json logger @@ -67,7 +67,7 @@ GEM ffi (~> 1.0) libddwaf (1.18.0.0.0-x86_64-linux) ffi (~> 1.0) - logger (1.6.2) + logger (1.6.3) memory_profiler (0.9.14) method_source (1.1.0) msgpack (1.7.5) From 66061457dd3aee730f8065339eca3ae260cfc777 Mon Sep 17 00:00:00 2001 From: Ivo Anjo Date: Mon, 16 Dec 2024 17:27:58 +0000 Subject: [PATCH 057/161] [PROF-11305] Require datadog-ruby_core_source >= 3.3.7 to ensure Ruby 3.4 support **What does this PR do?** This PR adds an extra version restriction to our `datadog-ruby_core_source` dependency to ensure that version 3.3.7 or newer gets used. **Motivation:** Version 3.3.7 ships support for Ruby 3.4 (using 3.4.0-rc1 headers) and has a nice on-disk footprint reduction so we want to make sure that it gets used, instead of an older version. **Additional Notes:** N/A **How to test the change?** If CI is still green, we're almost good. The final part is testing this with 3.4.0-rc1 -- which we don't yet have in CI. For now I did that locally and got a green build; once we pick up 3.4.0-rc1 (or 3.4.0 stable) in CI, we'll be able to validate this part in CI as well. --- datadog.gemspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/datadog.gemspec b/datadog.gemspec index 447ed6b3f9a..6991a84d70b 100644 --- a/datadog.gemspec +++ b/datadog.gemspec @@ -62,7 +62,7 @@ Gem::Specification.new do |spec| spec.add_dependency 'msgpack' # Used by the profiler native extension to support Ruby 2.5 and > 3.2, see NativeExtensionDesign.md for details - spec.add_dependency 'datadog-ruby_core_source', '~> 3.3' + spec.add_dependency 'datadog-ruby_core_source', '~> 3.3', '>= 3.3.7' # Used by appsec spec.add_dependency 'libddwaf', '~> 1.18.0.0.0' From 4fe11cf7e2158d9266a5737f0187e25c2076b3f4 Mon Sep 17 00:00:00 2001 From: Ivo Anjo Date: Mon, 16 Dec 2024 17:47:06 +0000 Subject: [PATCH 058/161] [PROF-11305] Enable memory leak testing with ASAN, try 3 **What does this PR do?** This PR tries again to re-enable the memory leak testing with AddressSanitizer ("ASAN"). We previously had disabled it since it was failing due to an unrelated issue (specifically, the asan builds are based on Ruby master, and Ruby master was slightly incompatible with the profiler until the `datadog-ruby_core_source` 3.3.7 brought a newer set of headers). **Motivation:** The ASAN tool is quite powerful at detecting memory issues and other problems in native extensions, so if we can keep it running it can help flag issues before they make it to our customers. **Additional Notes:** We can always disable again later if needed. Hopefully once Ruby 3.4 stable is out, we can see if it's possible to have a "stable ASAN" build that's not based off of ruby master, and thus is a bit more predictable. **How to test the change?** Validate the "Test for memory leaks > test asan" CI step is running and passing. --- .github/workflows/test-memory-leaks.yaml | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/.github/workflows/test-memory-leaks.yaml b/.github/workflows/test-memory-leaks.yaml index 7a1138b4cd4..e1842cb38b6 100644 --- a/.github/workflows/test-memory-leaks.yaml +++ b/.github/workflows/test-memory-leaks.yaml @@ -15,10 +15,6 @@ jobs: - run: gem update --system 3.5.23 # TODO: This is a workaround for a buggy rubygems in 3.4.0-preview2; remove once stable version 3.4 is out - run: bundle exec rake compile spec:profiling:memcheck test-asan: - # Temporarily ruby-asan builds changes - # from: `ruby 3.4.0dev (2024-11-07T14:35:19Z :detached: fca07d73e3) +PRISM [x86_64-linux]` - # To: `ruby 3.4.0dev (2024-11-11T18:38:40Z :detached: 8672e88cd2) +PRISM [x86_64-linux]` - if: false runs-on: ubuntu-24.04 steps: - uses: actions/checkout@v4 @@ -27,5 +23,5 @@ jobs: ruby-version: asan bundler-cache: true # runs 'bundle install' and caches installed gems automatically bundler: latest - cache-version: v1 # bump this to invalidate cache + cache-version: v2 # bump this to invalidate cache - run: env RUBY_FREE_AT_EXIT=1 LSAN_OPTIONS=verbosity=0:log_threads=1:suppressions=`pwd`/suppressions/lsan.supp ASAN_OPTIONS=detect_leaks=1 bundle exec rake spec:profiling:main From c02fc51a83e5fb07a1188266dd5070b5fe86620f Mon Sep 17 00:00:00 2001 From: Ivo Anjo Date: Tue, 17 Dec 2024 10:45:35 +0000 Subject: [PATCH 059/161] Reduce severity of allocation profiling + ractors warning Since most folks are not using ractors, this is more of a "FYI/BTW". Also, I've slightly tweaked the text to reduce the overall string, while keeping the same info. --- lib/datadog/profiling/component.rb | 4 ++-- spec/datadog/profiling/component_spec.rb | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/datadog/profiling/component.rb b/lib/datadog/profiling/component.rb index 86f8fb798df..2d24d01a4f5 100644 --- a/lib/datadog/profiling/component.rb +++ b/lib/datadog/profiling/component.rb @@ -190,8 +190,8 @@ def self.build_profiler_component(settings:, agent_settings:, optional_tracer:) # On all known versions of Ruby 3.x, due to https://bugs.ruby-lang.org/issues/19112, when a ractor gets # garbage collected, Ruby will disable all active tracepoints, which this feature internally relies on. elsif RUBY_VERSION.start_with?("3.") - Datadog.logger.warn( - "In all known versions of Ruby 3.x, using Ractors may result in allocation profiling unexpectedly " \ + Datadog.logger.info( + "Using Ractors may result in allocation profiling " \ "stopping (https://bugs.ruby-lang.org/issues/19112). Note that this stop has no impact in your " \ "application stability or performance. This does not happen if Ractors are not used." ) diff --git a/spec/datadog/profiling/component_spec.rb b/spec/datadog/profiling/component_spec.rb index 2320c482ce6..5c8b95d3e29 100644 --- a/spec/datadog/profiling/component_spec.rb +++ b/spec/datadog/profiling/component_spec.rb @@ -272,7 +272,7 @@ .with(hash_including(alloc_samples_enabled: true)) .and_call_original - expect(Datadog.logger).to receive(:warn).with(/Ractors.+stopping/) + expect(Datadog.logger).to receive(:info).with(/Ractors.+stopping/) expect(Datadog.logger).to receive(:debug).with(/Enabled allocation profiling/) build_profiler_component @@ -342,7 +342,7 @@ .with(hash_including(heap_samples_enabled: true, heap_size_enabled: true)) .and_call_original - expect(Datadog.logger).to receive(:warn).with(/Ractors.+stopping/) + expect(Datadog.logger).to receive(:info).with(/Ractors.+stopping/) expect(Datadog.logger).to receive(:debug).with(/Enabled allocation profiling/) expect(Datadog.logger).to receive(:warn).with(/experimental heap profiling/) expect(Datadog.logger).to receive(:warn).with(/experimental heap size profiling/) From bb534817113188784086ae44e525fd06b37d091a Mon Sep 17 00:00:00 2001 From: Ivo Anjo Date: Tue, 17 Dec 2024 10:52:11 +0000 Subject: [PATCH 060/161] Simplify and clean up a few more profiling logging messages --- lib/datadog/profiling/component.rb | 12 ++++++------ spec/datadog/profiling/component_spec.rb | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/lib/datadog/profiling/component.rb b/lib/datadog/profiling/component.rb index 2d24d01a4f5..b1ea56f6a9d 100644 --- a/lib/datadog/profiling/component.rb +++ b/lib/datadog/profiling/component.rb @@ -138,7 +138,7 @@ def self.build_profiler_component(settings:, agent_settings:, optional_tracer:) return false elsif RUBY_VERSION.start_with?("3.") Datadog.logger.debug( - "In all known versions of Ruby 3.x, using Ractors may result in GC profiling unexpectedly " \ + "Using Ractors may result in GC profiling unexpectedly " \ "stopping (https://bugs.ruby-lang.org/issues/19112). Note that this stop has no impact in your " \ "application stability or performance. This does not happen if Ractors are not used." ) @@ -254,12 +254,12 @@ def self.build_profiler_component(settings:, agent_settings:, optional_tracer:) end if setting_value == false - if legacy_ruby_that_should_use_workaround + if RUBY_VERSION.start_with?("2.5.") Datadog.logger.warn( - 'The profiling "no signals" workaround has been disabled via configuration on a legacy Ruby version ' \ - "(< 2.6). This is not recommended " \ - "in production environments, as due to limitations in Ruby APIs, we suspect it may lead to crashes " \ - "in very rare situations. Please report any issues you run into to Datadog support or " \ + 'The profiling "no signals" workaround has been disabled via configuration on Ruby 2.5. ' \ + "This is not recommended " \ + "in production environments, as due to limitations in Ruby APIs, we suspect it may lead to rare crashes " \ + "Please report any issues you run into to Datadog support or " \ "via !" ) else diff --git a/spec/datadog/profiling/component_spec.rb b/spec/datadog/profiling/component_spec.rb index 5c8b95d3e29..c818a1bbfb6 100644 --- a/spec/datadog/profiling/component_spec.rb +++ b/spec/datadog/profiling/component_spec.rb @@ -177,7 +177,7 @@ it "emits a debug log about Ractors interfering with GC profiling" do expect(Datadog.logger) - .to receive(:debug).with(/using Ractors may result in GC profiling unexpectedly stopping/) + .to receive(:debug).with(/Ractors may result in GC profiling unexpectedly stopping/) build_profiler_component end From 4cee37f5c8f9943f1c8066160dcb5281eb6186b4 Mon Sep 17 00:00:00 2001 From: Ivo Anjo Date: Tue, 17 Dec 2024 10:55:07 +0000 Subject: [PATCH 061/161] Minor: Update comment with UX rename --- lib/datadog/profiling/component.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/datadog/profiling/component.rb b/lib/datadog/profiling/component.rb index b1ea56f6a9d..f69f6464a3a 100644 --- a/lib/datadog/profiling/component.rb +++ b/lib/datadog/profiling/component.rb @@ -5,7 +5,7 @@ module Profiling # Responsible for wiring up the Profiler for execution module Component # Passing in a `nil` tracer is supported and will disable the following profiling features: - # * Code Hotspots panel in the trace viewer, as well as scoping a profile down to a span + # * Profiling in the trace viewer, as well as scoping a profile down to a span # * Endpoint aggregation in the profiler UX, including normalization (resource per endpoint call) def self.build_profiler_component(settings:, agent_settings:, optional_tracer:) # rubocop:disable Metrics/MethodLength return [nil, {profiling_enabled: false}] unless settings.profiling.enabled From a163311504fa3a46cae4374abcaea4b8000ae198 Mon Sep 17 00:00:00 2001 From: Ivo Anjo Date: Tue, 17 Dec 2024 11:01:23 +0000 Subject: [PATCH 062/161] Minor: Add extra expectation to avoid actual logger printing during test suite execution --- spec/datadog/profiling/component_spec.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/spec/datadog/profiling/component_spec.rb b/spec/datadog/profiling/component_spec.rb index c818a1bbfb6..91a0357e36f 100644 --- a/spec/datadog/profiling/component_spec.rb +++ b/spec/datadog/profiling/component_spec.rb @@ -360,6 +360,7 @@ .with(hash_including(heap_samples_enabled: true, heap_size_enabled: false)) .and_call_original + expect(Datadog.logger).to receive(:info).with(/Ractors.+stopping/) expect(Datadog.logger).to receive(:debug).with(/Enabled allocation profiling/) expect(Datadog.logger).to receive(:warn).with(/experimental heap profiling/) expect(Datadog.logger).not_to receive(:warn).with(/experimental heap size profiling/) From da960a335468940b7245654929105579a2eb29ef Mon Sep 17 00:00:00 2001 From: Ivo Anjo Date: Tue, 17 Dec 2024 11:31:08 +0000 Subject: [PATCH 063/161] Refactor Profiling::Component to receive logger as argument Receiving the logger as argument means that we'll use the latest logger configured via `Datadog.configure`; in contrast with using the `Datadog.logger` directly, since during components initialization the **older/fallback** logger gets used, which won't reflect any settings given. The distinction is subtle but important: consider the case of setting log level. Prior to this PR, the log level got ignored by the `Profiling::Component` since the old/fallback logger usually did not pick itt up. After this PR, enabling profiling and changing the log level in the same `Datadog.configure` block will produce the expected effect of Profiling::Component respecting that log level. --- lib/datadog/core/configuration/components.rb | 3 +- lib/datadog/profiling/component.rb | 76 ++++++------ sig/datadog/profiling/component.rbs | 22 ++-- .../core/configuration/components_spec.rb | 6 +- spec/datadog/profiling/component_spec.rb | 110 +++++++++--------- 5 files changed, 114 insertions(+), 103 deletions(-) diff --git a/lib/datadog/core/configuration/components.rb b/lib/datadog/core/configuration/components.rb index 4fedb03adb4..bf154311b43 100644 --- a/lib/datadog/core/configuration/components.rb +++ b/lib/datadog/core/configuration/components.rb @@ -105,7 +105,8 @@ def initialize(settings) @profiler, profiler_logger_extra = Datadog::Profiling::Component.build_profiler_component( settings: settings, agent_settings: agent_settings, - optional_tracer: @tracer + optional_tracer: @tracer, + logger: @logger, ) @environment_logger_extra.merge!(profiler_logger_extra) if profiler_logger_extra diff --git a/lib/datadog/profiling/component.rb b/lib/datadog/profiling/component.rb index f69f6464a3a..657f9f1cfcb 100644 --- a/lib/datadog/profiling/component.rb +++ b/lib/datadog/profiling/component.rb @@ -7,7 +7,7 @@ module Component # Passing in a `nil` tracer is supported and will disable the following profiling features: # * Profiling in the trace viewer, as well as scoping a profile down to a span # * Endpoint aggregation in the profiler UX, including normalization (resource per endpoint call) - def self.build_profiler_component(settings:, agent_settings:, optional_tracer:) # rubocop:disable Metrics/MethodLength + def self.build_profiler_component(settings:, agent_settings:, optional_tracer:, logger:) # rubocop:disable Metrics/MethodLength return [nil, {profiling_enabled: false}] unless settings.profiling.enabled # Workaround for weird dependency direction: the Core::Configuration::Components class currently has a @@ -36,14 +36,14 @@ def self.build_profiler_component(settings:, agent_settings:, optional_tracer:) # NOTE: Please update the Initialization section of ProfilingDevelopment.md with any changes to this method - no_signals_workaround_enabled = no_signals_workaround_enabled?(settings) + no_signals_workaround_enabled = no_signals_workaround_enabled?(settings, logger) timeline_enabled = settings.profiling.advanced.timeline_enabled - allocation_profiling_enabled = enable_allocation_profiling?(settings) + allocation_profiling_enabled = enable_allocation_profiling?(settings, logger) heap_sample_every = get_heap_sample_every(settings) - heap_profiling_enabled = enable_heap_profiling?(settings, allocation_profiling_enabled, heap_sample_every) - heap_size_profiling_enabled = enable_heap_size_profiling?(settings, heap_profiling_enabled) + heap_profiling_enabled = enable_heap_profiling?(settings, allocation_profiling_enabled, heap_sample_every, logger) + heap_size_profiling_enabled = enable_heap_size_profiling?(settings, heap_profiling_enabled, logger) - overhead_target_percentage = valid_overhead_target(settings.profiling.advanced.overhead_target_percentage) + overhead_target_percentage = valid_overhead_target(settings.profiling.advanced.overhead_target_percentage, logger) upload_period_seconds = [60, settings.profiling.advanced.upload_period_seconds].max recorder = Datadog::Profiling::StackRecorder.new( @@ -57,13 +57,13 @@ def self.build_profiler_component(settings:, agent_settings:, optional_tracer:) ) thread_context_collector = build_thread_context_collector(settings, recorder, optional_tracer, timeline_enabled) worker = Datadog::Profiling::Collectors::CpuAndWallTimeWorker.new( - gc_profiling_enabled: enable_gc_profiling?(settings), + gc_profiling_enabled: enable_gc_profiling?(settings, logger), no_signals_workaround_enabled: no_signals_workaround_enabled, thread_context_collector: thread_context_collector, dynamic_sampling_rate_overhead_target_percentage: overhead_target_percentage, allocation_profiling_enabled: allocation_profiling_enabled, allocation_counting_enabled: settings.profiling.advanced.allocation_counting_enabled, - gvl_profiling_enabled: enable_gvl_profiling?(settings), + gvl_profiling_enabled: enable_gvl_profiling?(settings, logger), ) internal_metadata = { @@ -120,7 +120,7 @@ def self.build_profiler_component(settings:, agent_settings:, optional_tracer:) ) end - private_class_method def self.enable_gc_profiling?(settings) + private_class_method def self.enable_gc_profiling?(settings, logger) return false unless settings.profiling.advanced.gc_enabled # SEVERE - Only with Ractors @@ -131,13 +131,13 @@ def self.build_profiler_component(settings:, agent_settings:, optional_tracer:) if RUBY_VERSION.start_with?("3.0.") || (RUBY_VERSION.start_with?("3.1.") && RUBY_VERSION < "3.1.4") || (RUBY_VERSION.start_with?("3.2.") && RUBY_VERSION < "3.2.3") - Datadog.logger.warn( + logger.warn( "Current Ruby version (#{RUBY_VERSION}) has a VM bug where enabling GC profiling would cause " \ "crashes (https://bugs.ruby-lang.org/issues/18464). GC profiling has been disabled." ) return false elsif RUBY_VERSION.start_with?("3.") - Datadog.logger.debug( + logger.debug( "Using Ractors may result in GC profiling unexpectedly " \ "stopping (https://bugs.ruby-lang.org/issues/19112). Note that this stop has no impact in your " \ "application stability or performance. This does not happen if Ractors are not used." @@ -155,7 +155,7 @@ def self.build_profiler_component(settings:, agent_settings:, optional_tracer:) heap_sample_rate end - private_class_method def self.enable_allocation_profiling?(settings) + private_class_method def self.enable_allocation_profiling?(settings, logger) return false unless settings.profiling.allocation_enabled # Allocation sampling is safe and supported on Ruby 2.x, but has a few caveats on Ruby 3.x. @@ -165,7 +165,7 @@ def self.build_profiler_component(settings:, agent_settings:, optional_tracer:) # https://github.com/ruby/ruby/pull/7464) that makes this crash in any configuration. This bug is # fixed on Ruby versions 3.2.3 and 3.3.0. if RUBY_VERSION.start_with?("3.2.") && RUBY_VERSION < "3.2.3" - Datadog.logger.warn( + logger.warn( "Allocation profiling is not supported in Ruby versions 3.2.0, 3.2.1 and 3.2.2 and will be forcibly " \ "disabled. This is due to a VM bug that can lead to crashes (https://bugs.ruby-lang.org/issues/19482). " \ "Other Ruby versions do not suffer from this issue." @@ -181,7 +181,7 @@ def self.build_profiler_component(settings:, agent_settings:, optional_tracer:) if RUBY_VERSION.start_with?("3.0.") || (RUBY_VERSION.start_with?("3.1.") && RUBY_VERSION < "3.1.4") || (RUBY_VERSION.start_with?("3.2.") && RUBY_VERSION < "3.2.3") - Datadog.logger.warn( + logger.warn( "Current Ruby version (#{RUBY_VERSION}) has a VM bug where enabling allocation profiling while using " \ "Ractors may cause unexpected issues, including crashes (https://bugs.ruby-lang.org/issues/18464). " \ "This does not happen if Ractors are not used." @@ -190,25 +190,25 @@ def self.build_profiler_component(settings:, agent_settings:, optional_tracer:) # On all known versions of Ruby 3.x, due to https://bugs.ruby-lang.org/issues/19112, when a ractor gets # garbage collected, Ruby will disable all active tracepoints, which this feature internally relies on. elsif RUBY_VERSION.start_with?("3.") - Datadog.logger.info( + logger.info( "Using Ractors may result in allocation profiling " \ "stopping (https://bugs.ruby-lang.org/issues/19112). Note that this stop has no impact in your " \ "application stability or performance. This does not happen if Ractors are not used." ) end - Datadog.logger.debug("Enabled allocation profiling") + logger.debug("Enabled allocation profiling") true end - private_class_method def self.enable_heap_profiling?(settings, allocation_profiling_enabled, heap_sample_rate) + private_class_method def self.enable_heap_profiling?(settings, allocation_profiling_enabled, heap_sample_rate, logger) heap_profiling_enabled = settings.profiling.advanced.experimental_heap_enabled return false unless heap_profiling_enabled if RUBY_VERSION < "3.1" - Datadog.logger.warn( + logger.warn( "Current Ruby version (#{RUBY_VERSION}) cannot support heap profiling due to VM limitations. " \ "Please upgrade to Ruby >= 3.1 in order to use this feature. Heap profiling has been disabled." ) @@ -219,7 +219,7 @@ def self.build_profiler_component(settings:, agent_settings:, optional_tracer:) raise ArgumentError, "Heap profiling requires allocation profiling to be enabled" end - Datadog.logger.warn( + logger.warn( "Enabled experimental heap profiling: heap_sample_rate=#{heap_sample_rate}. This is experimental, not " \ "recommended, and will increase overhead!" ) @@ -227,25 +227,25 @@ def self.build_profiler_component(settings:, agent_settings:, optional_tracer:) true end - private_class_method def self.enable_heap_size_profiling?(settings, heap_profiling_enabled) + private_class_method def self.enable_heap_size_profiling?(settings, heap_profiling_enabled, logger) heap_size_profiling_enabled = settings.profiling.advanced.experimental_heap_size_enabled return false unless heap_profiling_enabled && heap_size_profiling_enabled - Datadog.logger.warn( + logger.warn( "Enabled experimental heap size profiling. This is experimental, not recommended, and will increase overhead!" ) true end - private_class_method def self.no_signals_workaround_enabled?(settings) # rubocop:disable Metrics/MethodLength + private_class_method def self.no_signals_workaround_enabled?(settings, logger) # rubocop:disable Metrics/MethodLength setting_value = settings.profiling.advanced.no_signals_workaround_enabled legacy_ruby_that_should_use_workaround = RUBY_VERSION.start_with?("2.5.") unless [true, false, :auto].include?(setting_value) # TODO: Replace with a warning instead. - Datadog.logger.error( + logger.error( "Ignoring invalid value for profiling no_signals_workaround_enabled setting: #{setting_value.inspect}. " \ "Valid options are `true`, `false` or (default) `:auto`." ) @@ -255,7 +255,7 @@ def self.build_profiler_component(settings:, agent_settings:, optional_tracer:) if setting_value == false if RUBY_VERSION.start_with?("2.5.") - Datadog.logger.warn( + logger.warn( 'The profiling "no signals" workaround has been disabled via configuration on Ruby 2.5. ' \ "This is not recommended " \ "in production environments, as due to limitations in Ruby APIs, we suspect it may lead to rare crashes " \ @@ -263,14 +263,14 @@ def self.build_profiler_component(settings:, agent_settings:, optional_tracer:) "via !" ) else - Datadog.logger.warn('Profiling "no signals" workaround disabled via configuration') + logger.warn('Profiling "no signals" workaround disabled via configuration') end return false end if setting_value == true - Datadog.logger.warn( + logger.warn( 'Profiling "no signals" workaround enabled via configuration. Profiling data will have lower quality.' ) @@ -282,8 +282,8 @@ def self.build_profiler_component(settings:, agent_settings:, optional_tracer:) # We don't warn users in this situation because "upgrade your Ruby" is not a great warning return true if legacy_ruby_that_should_use_workaround - if Gem.loaded_specs["mysql2"] && incompatible_libmysqlclient_version?(settings) - Datadog.logger.warn( + if Gem.loaded_specs["mysql2"] && incompatible_libmysqlclient_version?(settings, logger) + logger.warn( 'Enabling the profiling "no signals" workaround because an incompatible version of the mysql2 gem is ' \ "installed. Profiling data will have lower quality. " \ "To fix this, upgrade the libmysqlclient in your OS image to version 8.0.0 or above." @@ -292,7 +292,7 @@ def self.build_profiler_component(settings:, agent_settings:, optional_tracer:) end if Gem.loaded_specs["rugged"] - Datadog.logger.warn( + logger.warn( 'Enabling the profiling "no signals" workaround because the rugged gem is installed. ' \ "This is needed because some operations on this gem are currently incompatible with the normal working mode " \ "of the profiler, as detailed in . " \ @@ -302,7 +302,7 @@ def self.build_profiler_component(settings:, agent_settings:, optional_tracer:) end if (defined?(::PhusionPassenger) || Gem.loaded_specs["passenger"]) && incompatible_passenger_version? - Datadog.logger.warn( + logger.warn( 'Enabling the profiling "no signals" workaround because an incompatible version of the passenger gem is ' \ "installed. Profiling data will have lower quality." \ "To fix this, upgrade the passenger gem to version 6.0.19 or above." @@ -322,10 +322,10 @@ def self.build_profiler_component(settings:, agent_settings:, optional_tracer:) # # The `mysql2` gem's `info` method can be used to determine which `libmysqlclient` version is in use, and thus to # detect if it's safe for the profiler to use signals or if we need to employ a fallback. - private_class_method def self.incompatible_libmysqlclient_version?(settings) + private_class_method def self.incompatible_libmysqlclient_version?(settings, logger) return true if settings.profiling.advanced.skip_mysql2_check - Datadog.logger.debug( + logger.debug( "Requiring `mysql2` to check if the `libmysqlclient` version it uses is compatible with profiling" ) @@ -354,14 +354,14 @@ def self.build_profiler_component(settings:, agent_settings:, optional_tracer:) libmysqlclient_version >= Gem::Version.new("8.0.0") || looks_like_mariadb?(info, libmysqlclient_version) - Datadog.logger.debug( + logger.debug( "The `mysql2` gem is using #{compatible ? "a compatible" : "an incompatible"} version of " \ "the `libmysqlclient` library (#{libmysqlclient_version})" ) !compatible rescue StandardError, LoadError => e - Datadog.logger.warn( + logger.warn( "Failed to probe `mysql2` gem information. " \ "Cause: #{e.class.name} #{e.message} Location: #{Array(e.backtrace).first}" ) @@ -383,12 +383,12 @@ def self.build_profiler_component(settings:, agent_settings:, optional_tracer:) end end - private_class_method def self.valid_overhead_target(overhead_target_percentage) + private_class_method def self.valid_overhead_target(overhead_target_percentage, logger) if overhead_target_percentage > 0 && overhead_target_percentage <= 20 overhead_target_percentage else # TODO: Replace with a warning instead. - Datadog.logger.error( + logger.error( "Ignoring invalid value for profiling overhead_target_percentage setting: " \ "#{overhead_target_percentage.inspect}. Falling back to default value." ) @@ -432,10 +432,10 @@ def self.build_profiler_component(settings:, agent_settings:, optional_tracer:) settings.profiling.advanced.dir_interruption_workaround_enabled end - private_class_method def self.enable_gvl_profiling?(settings) + private_class_method def self.enable_gvl_profiling?(settings, logger) if RUBY_VERSION < "3.2" if settings.profiling.advanced.preview_gvl_enabled - Datadog.logger.warn("GVL profiling is currently not supported in Ruby < 3.2 and will not be enabled.") + logger.warn("GVL profiling is currently not supported in Ruby < 3.2 and will not be enabled.") end return false diff --git a/sig/datadog/profiling/component.rbs b/sig/datadog/profiling/component.rbs index 227383e0de6..4dded90e5a4 100644 --- a/sig/datadog/profiling/component.rbs +++ b/sig/datadog/profiling/component.rbs @@ -5,6 +5,7 @@ module Datadog settings: untyped, agent_settings: Datadog::Core::Configuration::AgentSettingsResolver::AgentSettings, optional_tracer: Datadog::Tracing::Tracer?, + logger: Datadog::Core::Logger, ) -> [Datadog::Profiling::Profiler?, {profiling_enabled: bool}] def self.build_thread_context_collector: ( @@ -26,20 +27,25 @@ module Datadog Datadog::Core::Configuration::AgentSettingsResolver::AgentSettings agent_settings ) -> untyped - def self.enable_gc_profiling?: (untyped settings) -> bool - def self.enable_allocation_profiling?: (untyped settings) -> bool + def self.enable_gc_profiling?: (untyped settings, Datadog::Core::Logger logger) -> bool + def self.enable_allocation_profiling?: (untyped settings, Datadog::Core::Logger logger) -> bool def self.get_heap_sample_every: (untyped settings) -> ::Integer - def self.enable_heap_profiling?: (untyped settings, bool allocation_profiling_enabled, ::Integer heap_sample_every) -> bool - def self.enable_heap_size_profiling?: (untyped settings, bool heap_profiling_enabled) -> bool + def self.enable_heap_profiling?: ( + untyped settings, + bool allocation_profiling_enabled, + ::Integer heap_sample_every, + Datadog::Core::Logger logger, + ) -> bool + def self.enable_heap_size_profiling?: (untyped settings, bool heap_profiling_enabled, Datadog::Core::Logger logger) -> bool - def self.no_signals_workaround_enabled?: (untyped settings) -> bool - def self.incompatible_libmysqlclient_version?: (untyped settings) -> bool + def self.no_signals_workaround_enabled?: (untyped settings, Datadog::Core::Logger logger) -> bool + def self.incompatible_libmysqlclient_version?: (untyped settings, Datadog::Core::Logger logger) -> bool def self.incompatible_passenger_version?: () -> bool def self.flush_interval: (untyped settings) -> ::Numeric - def self.valid_overhead_target: (::Float overhead_target_percentage) -> ::Float + def self.valid_overhead_target: (::Float overhead_target_percentage, Datadog::Core::Logger logger) -> ::Float def self.looks_like_mariadb?: ({ header_version: ::String? }, ::Gem::Version) -> bool def self.dir_interruption_workaround_enabled?: (untyped settings, bool no_signals_workaround_enabled) -> bool - def self.enable_gvl_profiling?: (untyped settings) -> bool + def self.enable_gvl_profiling?: (untyped settings, Datadog::Core::Logger logger) -> bool end end end diff --git a/spec/datadog/core/configuration/components_spec.rb b/spec/datadog/core/configuration/components_spec.rb index 767c38abd50..43247c74990 100644 --- a/spec/datadog/core/configuration/components_spec.rb +++ b/spec/datadog/core/configuration/components_spec.rb @@ -75,7 +75,8 @@ expect(Datadog::Profiling::Component).to receive(:build_profiler_component).with( settings: settings, agent_settings: agent_settings, - optional_tracer: tracer + optional_tracer: tracer, + logger: logger, ).and_return([profiler, environment_logger_extra]) expect(described_class).to receive(:build_runtime_metrics_worker) @@ -1091,7 +1092,8 @@ expect(Datadog::Profiling::Component).to receive(:build_profiler_component).with( settings: settings, agent_settings: agent_settings, - optional_tracer: anything + optional_tracer: anything, + logger: anything, # Tested above in "new" ).and_return([profiler, environment_logger_extra]) end diff --git a/spec/datadog/profiling/component_spec.rb b/spec/datadog/profiling/component_spec.rb index 91a0357e36f..aa96036189b 100644 --- a/spec/datadog/profiling/component_spec.rb +++ b/spec/datadog/profiling/component_spec.rb @@ -2,8 +2,9 @@ RSpec.describe Datadog::Profiling::Component do let(:settings) { Datadog::Core::Configuration::Settings.new } - let(:logger) { nil } - let(:agent_settings) { Datadog::Core::Configuration::AgentSettingsResolver.call(settings, logger: logger) } + let(:logger) { instance_double(Datadog::Core::Logger) } + # Note: We explicitly pass in a nil logger below as we don't want the AgentSettingsResolver to try to log anything + let(:agent_settings) { Datadog::Core::Configuration::AgentSettingsResolver.call(settings, logger: nil) } let(:profiler_setup_task) { instance_double(Datadog::Profiling::Tasks::Setup) if Datadog::Profiling.supported? } before do @@ -21,7 +22,8 @@ described_class.build_profiler_component( settings: settings, agent_settings: agent_settings, - optional_tracer: tracer + optional_tracer: tracer, + logger: logger, ) end @@ -116,7 +118,7 @@ expect(settings.profiling.advanced).to receive(:overhead_target_percentage) .and_return(:overhead_target_percentage_config) expect(described_class).to receive(:valid_overhead_target) - .with(:overhead_target_percentage_config).and_return(:overhead_target_percentage_config) + .with(:overhead_target_percentage_config, logger).and_return(:overhead_target_percentage_config) expect(settings.profiling.advanced) .to receive(:allocation_counting_enabled).and_return(:allocation_counting_enabled_config) expect(described_class).to receive(:enable_gvl_profiling?).and_return(:gvl_profiling_result) @@ -149,7 +151,7 @@ gc_profiling_enabled: true, ) - allow(Datadog.logger).to receive(:debug) + allow(logger).to receive(:debug) build_profiler_component end @@ -165,7 +167,7 @@ gc_profiling_enabled: false, ) - expect(Datadog.logger).to receive(:warn).with(/has been disabled/) + expect(logger).to receive(:warn).with(/has been disabled/) build_profiler_component end @@ -176,7 +178,7 @@ let(:testing_version) { "3.3.0" } it "emits a debug log about Ractors interfering with GC profiling" do - expect(Datadog.logger) + expect(logger) .to receive(:debug).with(/Ractors may result in GC profiling unexpectedly stopping/) build_profiler_component @@ -214,8 +216,8 @@ .with(hash_including(alloc_samples_enabled: true)) .and_call_original - expect(Datadog.logger).to receive(:debug).with(/Enabled allocation profiling/) - expect(Datadog.logger).to_not receive(:warn) + expect(logger).to receive(:debug).with(/Enabled allocation profiling/) + expect(logger).to_not receive(:warn) build_profiler_component end @@ -233,8 +235,8 @@ .with(hash_including(alloc_samples_enabled: false)) .and_call_original - expect(Datadog.logger).to receive(:warn).with(/forcibly disabled/) - expect(Datadog.logger).to_not receive(:warn).with(/Ractor/) + expect(logger).to receive(:warn).with(/forcibly disabled/) + expect(logger).to_not receive(:warn).with(/Ractor/) build_profiler_component end @@ -253,8 +255,8 @@ .with(hash_including(alloc_samples_enabled: true)) .and_call_original - expect(Datadog.logger).to receive(:warn).with(/Ractors.+crashes/) - expect(Datadog.logger).to receive(:debug).with(/Enabled allocation profiling/) + expect(logger).to receive(:warn).with(/Ractors.+crashes/) + expect(logger).to receive(:debug).with(/Enabled allocation profiling/) build_profiler_component end @@ -272,8 +274,8 @@ .with(hash_including(alloc_samples_enabled: true)) .and_call_original - expect(Datadog.logger).to receive(:info).with(/Ractors.+stopping/) - expect(Datadog.logger).to receive(:debug).with(/Enabled allocation profiling/) + expect(logger).to receive(:info).with(/Ractors.+stopping/) + expect(logger).to receive(:debug).with(/Enabled allocation profiling/) build_profiler_component end @@ -316,7 +318,7 @@ .with(hash_including(heap_samples_enabled: false, heap_size_enabled: false)) .and_call_original - expect(Datadog.logger).to receive(:warn).with(/upgrade to Ruby >= 3.1/) + expect(logger).to receive(:warn).with(/upgrade to Ruby >= 3.1/) build_profiler_component end @@ -342,10 +344,10 @@ .with(hash_including(heap_samples_enabled: true, heap_size_enabled: true)) .and_call_original - expect(Datadog.logger).to receive(:info).with(/Ractors.+stopping/) - expect(Datadog.logger).to receive(:debug).with(/Enabled allocation profiling/) - expect(Datadog.logger).to receive(:warn).with(/experimental heap profiling/) - expect(Datadog.logger).to receive(:warn).with(/experimental heap size profiling/) + expect(logger).to receive(:info).with(/Ractors.+stopping/) + expect(logger).to receive(:debug).with(/Enabled allocation profiling/) + expect(logger).to receive(:warn).with(/experimental heap profiling/) + expect(logger).to receive(:warn).with(/experimental heap size profiling/) build_profiler_component end @@ -360,10 +362,10 @@ .with(hash_including(heap_samples_enabled: true, heap_size_enabled: false)) .and_call_original - expect(Datadog.logger).to receive(:info).with(/Ractors.+stopping/) - expect(Datadog.logger).to receive(:debug).with(/Enabled allocation profiling/) - expect(Datadog.logger).to receive(:warn).with(/experimental heap profiling/) - expect(Datadog.logger).not_to receive(:warn).with(/experimental heap size profiling/) + expect(logger).to receive(:info).with(/Ractors.+stopping/) + expect(logger).to receive(:debug).with(/Enabled allocation profiling/) + expect(logger).to receive(:warn).with(/experimental heap profiling/) + expect(logger).not_to receive(:warn).with(/experimental heap size profiling/) build_profiler_component end @@ -635,7 +637,7 @@ before { skip "Behavior does not apply to current Ruby version" if RUBY_VERSION >= "3.2." } it "does not enable GVL profiling" do - allow(Datadog.logger).to receive(:warn) + allow(logger).to receive(:warn) expect(Datadog::Profiling::Collectors::CpuAndWallTimeWorker) .to receive(:new).with(hash_including(gvl_profiling_enabled: false)) @@ -644,7 +646,7 @@ end it "logs a warning" do - expect(Datadog.logger).to receive(:warn).with(/GVL profiling is currently not supported/) + expect(logger).to receive(:warn).with(/GVL profiling is currently not supported/) build_profiler_component end @@ -680,14 +682,14 @@ end describe ".valid_overhead_target" do - subject(:valid_overhead_target) { described_class.send(:valid_overhead_target, overhead_target_percentage) } + subject(:valid_overhead_target) { described_class.send(:valid_overhead_target, overhead_target_percentage, logger) } [0, 20.1].each do |invalid_value| let(:overhead_target_percentage) { invalid_value } context "when overhead_target_percentage is invalid value (#{invalid_value})" do it "logs an error" do - expect(Datadog.logger).to receive(:error).with( + expect(logger).to receive(:error).with( /Ignoring invalid value for profiling overhead_target_percentage/ ) @@ -695,7 +697,7 @@ end it "falls back to the default value" do - allow(Datadog.logger).to receive(:error) + allow(logger).to receive(:error) expect(valid_overhead_target).to eq 2.0 end @@ -712,14 +714,14 @@ end describe ".no_signals_workaround_enabled?" do - subject(:no_signals_workaround_enabled?) { described_class.send(:no_signals_workaround_enabled?, settings) } + subject(:no_signals_workaround_enabled?) { described_class.send(:no_signals_workaround_enabled?, settings, logger) } before { skip_if_profiling_not_supported(self) } context "when no_signals_workaround_enabled is false" do before do settings.profiling.advanced.no_signals_workaround_enabled = false - allow(Datadog.logger).to receive(:warn) + allow(logger).to receive(:warn) end it { is_expected.to be false } @@ -728,7 +730,7 @@ before { skip "Behavior does not apply to current Ruby version" if RUBY_VERSION >= "2.6." } it "logs a warning message mentioning that this is is not recommended" do - expect(Datadog.logger).to receive(:warn).with( + expect(logger).to receive(:warn).with( /workaround has been disabled via configuration.*This is not recommended/ ) @@ -740,7 +742,7 @@ before { skip "Behavior does not apply to current Ruby version" if RUBY_VERSION < "2.6." } it "logs a warning message mentioning that the no signals mode has been disabled" do - expect(Datadog.logger).to receive(:warn).with('Profiling "no signals" workaround disabled via configuration') + expect(logger).to receive(:warn).with('Profiling "no signals" workaround disabled via configuration') no_signals_workaround_enabled? end @@ -750,13 +752,13 @@ context "when no_signals_workaround_enabled is true" do before do settings.profiling.advanced.no_signals_workaround_enabled = true - allow(Datadog.logger).to receive(:warn) + allow(logger).to receive(:warn) end it { is_expected.to be true } it "logs a warning message mentioning that this setting is active" do - expect(Datadog.logger).to receive(:warn).with(/Profiling "no signals" workaround enabled via configuration/) + expect(logger).to receive(:warn).with(/Profiling "no signals" workaround enabled via configuration/) no_signals_workaround_enabled? end @@ -776,8 +778,8 @@ include_context("loaded gems", mysql2: Gem::Version.new("0.5.5"), rugged: nil) before do - allow(Datadog.logger).to receive(:warn) - allow(Datadog.logger).to receive(:debug) + allow(logger).to receive(:warn) + allow(logger).to receive(:debug) end context "when skip_mysql2_check is enabled" do @@ -786,7 +788,7 @@ it { is_expected.to be true } it "logs a warning message mentioning that the no signals workaround is going to be used" do - expect(Datadog.logger).to receive(:warn).with(/Enabling the profiling "no signals" workaround/) + expect(logger).to receive(:warn).with(/Enabling the profiling "no signals" workaround/) no_signals_workaround_enabled? end @@ -798,7 +800,7 @@ it { is_expected.to be true } it "logs that probing mysql2 failed" do - expect(Datadog.logger).to receive(:warn).with(/Failed to probe `mysql2` gem information/) + expect(logger).to receive(:warn).with(/Failed to probe `mysql2` gem information/) no_signals_workaround_enabled? end @@ -808,7 +810,7 @@ before { allow(described_class).to receive(:require).with("mysql2") } it "logs a debug message stating mysql2 will be required" do - expect(Datadog.logger).to receive(:debug).with(/Requiring `mysql2` to check/) + expect(logger).to receive(:debug).with(/Requiring `mysql2` to check/) no_signals_workaround_enabled? end @@ -831,7 +833,7 @@ it { is_expected.to be true } it "logs a warning including the error details" do - expect(Datadog.logger).to receive(:warn).with(/Failed to probe `mysql2` gem information/) + expect(logger).to receive(:warn).with(/Failed to probe `mysql2` gem information/) no_signals_workaround_enabled? end @@ -848,7 +850,7 @@ it { is_expected.to be false } it "does not log any warning message" do - expect(Datadog.logger).to_not receive(:warn) + expect(logger).to_not receive(:warn) no_signals_workaround_enabled? end @@ -864,7 +866,7 @@ it { is_expected.to be true } it "logs a warning message mentioning that the no signals workaround is going to be used" do - expect(Datadog.logger).to receive(:warn).with(/Enabling the profiling "no signals" workaround/) + expect(logger).to receive(:warn).with(/Enabling the profiling "no signals" workaround/) no_signals_workaround_enabled? end @@ -880,7 +882,7 @@ it { is_expected.to be false } it "does not log any warning message" do - expect(Datadog.logger).to_not receive(:warn) + expect(logger).to_not receive(:warn) no_signals_workaround_enabled? end @@ -917,12 +919,12 @@ context "when rugged gem is available" do include_context("loaded gems", rugged: Gem::Version.new("1.6.3"), mysql2: nil) - before { allow(Datadog.logger).to receive(:warn) } + before { allow(logger).to receive(:warn) } it { is_expected.to be true } it "logs a warning message mentioning that the no signals workaround is going to be used" do - expect(Datadog.logger).to receive(:warn).with(/Enabling the profiling "no signals" workaround/) + expect(logger).to receive(:warn).with(/Enabling the profiling "no signals" workaround/) no_signals_workaround_enabled? end @@ -933,13 +935,13 @@ before do stub_const("::PhusionPassenger", Module.new) - allow(Datadog.logger).to receive(:warn) + allow(logger).to receive(:warn) end it { is_expected.to be true } it "logs a warning message mentioning that the no signals workaround is going to be used" do - expect(Datadog.logger).to receive(:warn).with(/Enabling the profiling "no signals" workaround/) + expect(logger).to receive(:warn).with(/Enabling the profiling "no signals" workaround/) no_signals_workaround_enabled? end @@ -955,12 +957,12 @@ context "on passenger < 6.0.19" do include_context("loaded gems", passenger: Gem::Version.new("6.0.18"), rugged: nil, mysql2: nil) - before { allow(Datadog.logger).to receive(:warn) } + before { allow(logger).to receive(:warn) } it { is_expected.to be true } it "logs a warning message mentioning that the no signals workaround is going to be used" do - expect(Datadog.logger).to receive(:warn).with(/Enabling the profiling "no signals" workaround/) + expect(logger).to receive(:warn).with(/Enabling the profiling "no signals" workaround/) no_signals_workaround_enabled? end @@ -977,13 +979,13 @@ context "on passenger < 6.0.19" do before do stub_const("PhusionPassenger::VERSION_STRING", "6.0.18") - allow(Datadog.logger).to receive(:warn) + allow(logger).to receive(:warn) end it { is_expected.to be true } it "logs a warning message mentioning that the no signals workaround is going to be used" do - expect(Datadog.logger).to receive(:warn).with(/Enabling the profiling "no signals" workaround/) + expect(logger).to receive(:warn).with(/Enabling the profiling "no signals" workaround/) no_signals_workaround_enabled? end @@ -1007,11 +1009,11 @@ context "when no_signals_workaround_enabled is an invalid value" do before do settings.profiling.advanced.no_signals_workaround_enabled = "invalid value" - allow(Datadog.logger).to receive(:error) + allow(logger).to receive(:error) end it "logs an error message mentioning that the invalid value will be ignored" do - expect(Datadog.logger).to receive(:error).with(/Ignoring invalid value/) + expect(logger).to receive(:error).with(/Ignoring invalid value/) no_signals_workaround_enabled? end From 7c01831d5255111ad15473877840fec196dda56e Mon Sep 17 00:00:00 2001 From: Ivo Anjo Date: Tue, 17 Dec 2024 11:40:46 +0000 Subject: [PATCH 064/161] Update logs that were marked with TODOs to be warnings instead of errors We had left these TODOs a while ago and since I'm cleaning up a number of logging-related things in the profiling component, I decided to go ahead and clear these ones as well. --- lib/datadog/profiling/component.rb | 6 ++---- spec/datadog/profiling/component_spec.rb | 11 +++-------- 2 files changed, 5 insertions(+), 12 deletions(-) diff --git a/lib/datadog/profiling/component.rb b/lib/datadog/profiling/component.rb index 657f9f1cfcb..1036b522189 100644 --- a/lib/datadog/profiling/component.rb +++ b/lib/datadog/profiling/component.rb @@ -244,8 +244,7 @@ def self.build_profiler_component(settings:, agent_settings:, optional_tracer:, legacy_ruby_that_should_use_workaround = RUBY_VERSION.start_with?("2.5.") unless [true, false, :auto].include?(setting_value) - # TODO: Replace with a warning instead. - logger.error( + logger.warn( "Ignoring invalid value for profiling no_signals_workaround_enabled setting: #{setting_value.inspect}. " \ "Valid options are `true`, `false` or (default) `:auto`." ) @@ -387,8 +386,7 @@ def self.build_profiler_component(settings:, agent_settings:, optional_tracer:, if overhead_target_percentage > 0 && overhead_target_percentage <= 20 overhead_target_percentage else - # TODO: Replace with a warning instead. - logger.error( + logger.warn( "Ignoring invalid value for profiling overhead_target_percentage setting: " \ "#{overhead_target_percentage.inspect}. Falling back to default value." ) diff --git a/spec/datadog/profiling/component_spec.rb b/spec/datadog/profiling/component_spec.rb index aa96036189b..9a2bef8a8d6 100644 --- a/spec/datadog/profiling/component_spec.rb +++ b/spec/datadog/profiling/component_spec.rb @@ -689,7 +689,7 @@ context "when overhead_target_percentage is invalid value (#{invalid_value})" do it "logs an error" do - expect(logger).to receive(:error).with( + expect(logger).to receive(:warn).with( /Ignoring invalid value for profiling overhead_target_percentage/ ) @@ -697,7 +697,7 @@ end it "falls back to the default value" do - allow(logger).to receive(:error) + allow(logger).to receive(:warn) expect(valid_overhead_target).to eq 2.0 end @@ -1009,13 +1009,8 @@ context "when no_signals_workaround_enabled is an invalid value" do before do settings.profiling.advanced.no_signals_workaround_enabled = "invalid value" - allow(logger).to receive(:error) - end - it "logs an error message mentioning that the invalid value will be ignored" do - expect(logger).to receive(:error).with(/Ignoring invalid value/) - - no_signals_workaround_enabled? + expect(logger).to receive(:warn).with(/Ignoring invalid value/) end include_examples "no_signals_workaround_enabled :auto behavior" From 700d08a6c85cc5a1b58305865ec6d0ae47a00a41 Mon Sep 17 00:00:00 2001 From: Ivo Anjo Date: Tue, 17 Dec 2024 11:54:05 +0000 Subject: [PATCH 065/161] Wrap info logs in profiling component with an OnlyOnce This makes sure these information messages, when printed, are not printed more than once. I considered what to do with the warning messages as well, but since having individual OnlyOnce instances is quite a bit of boilerplate for the number of warnings we are emitting, I decided to target only this one for now. --- lib/datadog/profiling/component.rb | 15 ++++++++++----- sig/datadog/profiling/component.rbs | 2 ++ spec/datadog/profiling/component_spec.rb | 4 ++++ 3 files changed, 16 insertions(+), 5 deletions(-) diff --git a/lib/datadog/profiling/component.rb b/lib/datadog/profiling/component.rb index 1036b522189..9c84b57008c 100644 --- a/lib/datadog/profiling/component.rb +++ b/lib/datadog/profiling/component.rb @@ -4,6 +4,9 @@ module Datadog module Profiling # Responsible for wiring up the Profiler for execution module Component + ALLOCATION_WITH_RACTORS_ONLY_ONCE = Datadog::Core::Utils::OnlyOnce.new + private_constant :ALLOCATION_WITH_RACTORS_ONLY_ONCE + # Passing in a `nil` tracer is supported and will disable the following profiling features: # * Profiling in the trace viewer, as well as scoping a profile down to a span # * Endpoint aggregation in the profiler UX, including normalization (resource per endpoint call) @@ -190,11 +193,13 @@ def self.build_profiler_component(settings:, agent_settings:, optional_tracer:, # On all known versions of Ruby 3.x, due to https://bugs.ruby-lang.org/issues/19112, when a ractor gets # garbage collected, Ruby will disable all active tracepoints, which this feature internally relies on. elsif RUBY_VERSION.start_with?("3.") - logger.info( - "Using Ractors may result in allocation profiling " \ - "stopping (https://bugs.ruby-lang.org/issues/19112). Note that this stop has no impact in your " \ - "application stability or performance. This does not happen if Ractors are not used." - ) + ALLOCATION_WITH_RACTORS_ONLY_ONCE.run do + logger.info( + "Using Ractors may result in allocation profiling " \ + "stopping (https://bugs.ruby-lang.org/issues/19112). Note that this stop has no impact in your " \ + "application stability or performance. This does not happen if Ractors are not used." + ) + end end logger.debug("Enabled allocation profiling") diff --git a/sig/datadog/profiling/component.rbs b/sig/datadog/profiling/component.rbs index 4dded90e5a4..100c96ff029 100644 --- a/sig/datadog/profiling/component.rbs +++ b/sig/datadog/profiling/component.rbs @@ -1,6 +1,8 @@ module Datadog module Profiling module Component + ALLOCATION_WITH_RACTORS_ONLY_ONCE: Datadog::Core::Utils::OnlyOnce + def self.build_profiler_component: ( settings: untyped, agent_settings: Datadog::Core::Configuration::AgentSettingsResolver::AgentSettings, diff --git a/spec/datadog/profiling/component_spec.rb b/spec/datadog/profiling/component_spec.rb index 9a2bef8a8d6..87068942729 100644 --- a/spec/datadog/profiling/component_spec.rb +++ b/spec/datadog/profiling/component_spec.rb @@ -203,6 +203,8 @@ settings.profiling.allocation_enabled = true settings.profiling.advanced.gc_enabled = false # Disable this to avoid any additional warnings coming from it stub_const("RUBY_VERSION", testing_version) + + described_class.const_get(:ALLOCATION_WITH_RACTORS_ONLY_ONCE).send(:reset_ran_once_state_for_tests) end context "on Ruby 2.x" do @@ -337,6 +339,8 @@ context "and allocation profiling enabled and supported" do before do settings.profiling.allocation_enabled = true + + described_class.const_get(:ALLOCATION_WITH_RACTORS_ONLY_ONCE).send(:reset_ran_once_state_for_tests) end it "initializes StackRecorder with heap sampling support and warns" do From 76f2b402b4e37df7d1efc7d54d8a0d8acd06deb4 Mon Sep 17 00:00:00 2001 From: Ivo Anjo Date: Tue, 17 Dec 2024 12:16:59 +0000 Subject: [PATCH 066/161] Inline check for legacy ruby (since it's only one now anyway) --- lib/datadog/profiling/component.rb | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/datadog/profiling/component.rb b/lib/datadog/profiling/component.rb index 9c84b57008c..e06eeb26251 100644 --- a/lib/datadog/profiling/component.rb +++ b/lib/datadog/profiling/component.rb @@ -246,7 +246,6 @@ def self.build_profiler_component(settings:, agent_settings:, optional_tracer:, private_class_method def self.no_signals_workaround_enabled?(settings, logger) # rubocop:disable Metrics/MethodLength setting_value = settings.profiling.advanced.no_signals_workaround_enabled - legacy_ruby_that_should_use_workaround = RUBY_VERSION.start_with?("2.5.") unless [true, false, :auto].include?(setting_value) logger.warn( @@ -284,7 +283,7 @@ def self.build_profiler_component(settings:, agent_settings:, optional_tracer:, # Setting is in auto mode. Let's probe to see if we should enable it: # We don't warn users in this situation because "upgrade your Ruby" is not a great warning - return true if legacy_ruby_that_should_use_workaround + return true if RUBY_VERSION.start_with?("2.5.") if Gem.loaded_specs["mysql2"] && incompatible_libmysqlclient_version?(settings, logger) logger.warn( From 73496802eae9bbe44d491f9c02820dae021762b3 Mon Sep 17 00:00:00 2001 From: Oleg Pudeyev <156273877+p-datadog@users.noreply.github.com> Date: Tue, 17 Dec 2024 08:42:12 -0500 Subject: [PATCH 067/161] DEBUG-3182 DI: remove hard dependency on tracing (#4223) --- lib/datadog/di/component.rb | 2 + lib/datadog/di/init.rb | 2 - lib/datadog/di/probe_notification_builder.rb | 18 +++++- lib/datadog/di/transport.rb | 1 + sig/datadog/di/probe_notification_builder.rbs | 3 + spec/datadog/di/code_tracker_spec.rb | 7 +-- spec/datadog/di/instrumenter_spec.rb | 57 ++++++++++++------- spec/datadog/di/probe_manager_spec.rb | 2 + spec/datadog/di/probe_notifier_worker_spec.rb | 1 + spec/datadog/di/remote_spec.rb | 2 + spec/datadog/di/spec_helper.rb | 8 +++ spec/datadog/di/transport_spec.rb | 1 + spec/spec_helper.rb | 2 +- 13 files changed, 76 insertions(+), 30 deletions(-) diff --git a/lib/datadog/di/component.rb b/lib/datadog/di/component.rb index c109bd4082e..8ef93e626d4 100644 --- a/lib/datadog/di/component.rb +++ b/lib/datadog/di/component.rb @@ -1,5 +1,7 @@ # frozen_string_literal: true +require_relative '../core' + module Datadog module DI # Component for dynamic instrumentation. diff --git a/lib/datadog/di/init.rb b/lib/datadog/di/init.rb index a0eb8eb5cf3..0b6a9217c2d 100644 --- a/lib/datadog/di/init.rb +++ b/lib/datadog/di/init.rb @@ -4,8 +4,6 @@ # enable dynamic instrumentation for third-party libraries used by the # application. -require_relative '../tracing' -require_relative '../tracing/contrib' require_relative '../di' # Code tracking is required for line probes to work; see the comments diff --git a/lib/datadog/di/probe_notification_builder.rb b/lib/datadog/di/probe_notification_builder.rb index f9be3bea746..f11bbdf8603 100644 --- a/lib/datadog/di/probe_notification_builder.rb +++ b/lib/datadog/di/probe_notification_builder.rb @@ -141,8 +141,8 @@ def build_snapshot(probe, rv: nil, snapshot: nil, path: nil, version: 2, }, # TODO add tests that the trace/span id is correctly propagated - "dd.trace_id": Datadog::Tracing.active_trace&.id&.to_s, - "dd.span_id": Datadog::Tracing.active_span&.id&.to_s, + "dd.trace_id": active_trace&.id&.to_s, + "dd.span_id": active_span&.id&.to_s, ddsource: 'dd_debugger', message: probe.template && evaluate_template(probe.template, duration: duration ? duration * 1000 : 0), @@ -150,6 +150,8 @@ def build_snapshot(probe, rv: nil, snapshot: nil, path: nil, } end + private + def build_status(probe, message:, status:) { service: settings.service, @@ -200,6 +202,18 @@ def get_local_variables(trace_point) map[name] = value end end + + def active_trace + if defined?(Datadog::Tracing) + Datadog::Tracing.active_trace + end + end + + def active_span + if defined?(Datadog::Tracing) + Datadog::Tracing.active_span + end + end end end end diff --git a/lib/datadog/di/transport.rb b/lib/datadog/di/transport.rb index a6a5522f645..aa8ebce9b75 100644 --- a/lib/datadog/di/transport.rb +++ b/lib/datadog/di/transport.rb @@ -2,6 +2,7 @@ require 'ostruct' require_relative 'error' +require_relative '../core/transport/http/adapters/net' module Datadog module DI diff --git a/sig/datadog/di/probe_notification_builder.rbs b/sig/datadog/di/probe_notification_builder.rbs index 3a46f3eef53..45891828166 100644 --- a/sig/datadog/di/probe_notification_builder.rbs +++ b/sig/datadog/di/probe_notification_builder.rbs @@ -27,6 +27,9 @@ module Datadog def timestamp_now: () -> Integer def get_local_variables: (TracePoint trace_point) -> Hash[Symbol,untyped] + + def active_trace: () -> Datadog::Tracing::TraceSegment? + def active_span: () -> Datadog::Tracing::SpanOperation? end end end diff --git a/spec/datadog/di/code_tracker_spec.rb b/spec/datadog/di/code_tracker_spec.rb index 5b9bf0d7fde..896eef6e6dc 100644 --- a/spec/datadog/di/code_tracker_spec.rb +++ b/spec/datadog/di/code_tracker_spec.rb @@ -1,12 +1,9 @@ +require 'datadog/di' require "datadog/di/spec_helper" -require "datadog/di/code_tracker" RSpec.describe Datadog::DI::CodeTracker do di_test - - before(:all) do - Datadog::DI.deactivate_tracking! - end + deactivate_code_tracking let(:tracker) do described_class.new diff --git a/spec/datadog/di/instrumenter_spec.rb b/spec/datadog/di/instrumenter_spec.rb index 695d8567386..93cc8aee457 100644 --- a/spec/datadog/di/instrumenter_spec.rb +++ b/spec/datadog/di/instrumenter_spec.rb @@ -1,8 +1,14 @@ require "datadog/di/spec_helper" -require 'datadog/di' +require 'datadog/di/instrumenter' +require 'datadog/di/code_tracker' +require 'datadog/di/serializer' +require 'datadog/di/probe' require_relative 'hook_line' require_relative 'hook_method' +require 'logger' +# The examples below use a local code tracker when they set line probes, +# for better test encapsulation and to avoid having to clear/reset global state. RSpec.describe Datadog::DI::Instrumenter do di_test @@ -55,6 +61,18 @@ %i[caller_locations duration probe rv serialized_entry_args] end + shared_context 'with code tracking' do + let!(:code_tracker) do + Datadog::DI::CodeTracker.new.tap do |tracker| + tracker.start + end + end + + after do + code_tracker.stop + end + end + describe '.hook_method' do after do instrumenter.unhook(probe) @@ -582,6 +600,12 @@ end context 'when hooking two identical but different probes' do + include_context 'with code tracking' + + before do + load File.join(File.dirname(__FILE__), 'hook_line_recursive.rb') + end + let(:probe) do Datadog::DI::Probe.new(**base_probe_args.merge( type_name: 'HookTestClass', method_name: 'hook_test_method' @@ -810,12 +834,10 @@ end context 'with code tracking' do - let(:code_tracker) { Datadog::DI.code_tracker } + include_context 'with code tracking' before do expect(di_internal_settings).to receive(:untargeted_trace_points).and_return(false) - Datadog::DI.activate_tracking! - code_tracker.clear end let(:probe) do @@ -906,7 +928,6 @@ context 'when hooking same line twice with identical but different probes' do before(:all) do - Datadog::DI.activate_tracking! require_relative 'hook_line_basic' end @@ -952,16 +973,14 @@ end context 'when code tracking is available' do - before do - Datadog::DI.activate_tracking! - require_relative 'hook_line_targeted' + include_context 'with code tracking' + before do path = File.join(File.dirname(__FILE__), 'hook_line_targeted.rb') - expect(Datadog::DI.code_tracker.send(:registry)[path]).to be_a(RubyVM::InstructionSequence) + load path + expect(code_tracker.send(:registry)[path]).to be_a(RubyVM::InstructionSequence) end - let(:code_tracker) { Datadog::DI.code_tracker } - let(:probe) do Datadog::DI::Probe.new(file: 'hook_line_targeted.rb', line_no: 3, id: 1, type: :log) @@ -969,7 +988,7 @@ it 'targets the trace point' do path = File.join(File.dirname(__FILE__), 'hook_line_targeted.rb') - target = Datadog::DI.code_tracker.send(:registry)[path] + target = code_tracker.send(:registry)[path] expect(target).to be_a(RubyVM::InstructionSequence) expect_any_instance_of(TracePoint).to receive(:enable).with(target: target, target_line: 3).and_call_original @@ -1000,13 +1019,12 @@ end context 'when method is recursive' do - before(:all) do - Datadog::DI.activate_tracking! + include_context 'with code tracking' + + before do load File.join(File.dirname(__FILE__), 'hook_line_recursive.rb') end - let(:code_tracker) { Datadog::DI.code_tracker } - context 'non-enriched probe' do let(:probe_args) do {file: 'hook_line_recursive.rb', line_no: 3} @@ -1039,13 +1057,12 @@ end context 'when method is infinitely recursive' do - before(:all) do - Datadog::DI.activate_tracking! + include_context 'with code tracking' + + before do require_relative 'hook_line_recursive' end - let(:code_tracker) { Datadog::DI.code_tracker } - # We need to use a rate limiter, otherwise the stack is exhausted # very slowly and this test burns 100% CPU for a long time performing # snapshot building etc. diff --git a/spec/datadog/di/probe_manager_spec.rb b/spec/datadog/di/probe_manager_spec.rb index f32cb71f577..a6f7a1c8d8a 100644 --- a/spec/datadog/di/probe_manager_spec.rb +++ b/spec/datadog/di/probe_manager_spec.rb @@ -1,5 +1,7 @@ require "datadog/di/spec_helper" require 'datadog/di/probe_manager' +require 'datadog/di/instrumenter' +require 'logger' class ProbeManagerSpecTestClass; end diff --git a/spec/datadog/di/probe_notifier_worker_spec.rb b/spec/datadog/di/probe_notifier_worker_spec.rb index bbb5b2effee..f4ad4bdd30f 100644 --- a/spec/datadog/di/probe_notifier_worker_spec.rb +++ b/spec/datadog/di/probe_notifier_worker_spec.rb @@ -1,5 +1,6 @@ require "datadog/di/spec_helper" require "datadog/di/probe_notifier_worker" +require 'logger' RSpec.describe Datadog::DI::ProbeNotifierWorker do di_test diff --git a/spec/datadog/di/remote_spec.rb b/spec/datadog/di/remote_spec.rb index f3a7d386b9e..06368623d3a 100644 --- a/spec/datadog/di/remote_spec.rb +++ b/spec/datadog/di/remote_spec.rb @@ -1,5 +1,7 @@ require "datadog/di/spec_helper" +require 'datadog/di' require 'spec_helper' +require 'logger' RSpec.describe Datadog::DI::Remote do di_test diff --git a/spec/datadog/di/spec_helper.rb b/spec/datadog/di/spec_helper.rb index 0e0258ddae9..09d8ffbd3c2 100644 --- a/spec/datadog/di/spec_helper.rb +++ b/spec/datadog/di/spec_helper.rb @@ -1,5 +1,13 @@ module DIHelpers module ClassMethods + def deactivate_code_tracking + before(:all) do + if Datadog::DI.respond_to?(:deactivate_tracking!) + Datadog::DI.deactivate_tracking! + end + end + end + def ruby_2_only if RUBY_VERSION >= '3' before(:all) do diff --git a/spec/datadog/di/transport_spec.rb b/spec/datadog/di/transport_spec.rb index 302cc3ecbe3..87b4af67f15 100644 --- a/spec/datadog/di/transport_spec.rb +++ b/spec/datadog/di/transport_spec.rb @@ -1,5 +1,6 @@ require "datadog/di/spec_helper" require "datadog/di/transport" +require 'datadog/core/configuration/agent_settings_resolver' RSpec.describe Datadog::DI::Transport do di_test diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb index 671a0b002c1..db9b84cd140 100644 --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -306,4 +306,4 @@ def initialize(*args, &block) # Code tracking calls out to the current DI component, which may reference # mock objects in the test suite. Disable it and tests that need code tracking # will enable it back for themselves. -Datadog::DI.deactivate_tracking! if Datadog::DI.respond_to?(:deactivate_tracking!) +Datadog::DI.deactivate_tracking! if defined?(Datadog::DI) && Datadog::DI.respond_to?(:deactivate_tracking!) From 8e809ea83e40167ebc63cf4aa2f98633dbab9242 Mon Sep 17 00:00:00 2001 From: roberto montero Date: Tue, 17 Dec 2024 16:52:01 +0100 Subject: [PATCH 068/161] K8s lib injection tests new scenarios --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 4d2d111bf81..db76f519010 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -8,7 +8,7 @@ stages: - benchmarks include: - - remote: https://gitlab-templates.ddbuild.io/libdatadog/include/one-pipeline.yml + - remote: https://gitlab-templates.ddbuild.io/libdatadog/include-wip/robertomonteromiguel/k8s_new_scenarios/one-pipeline.yml - local: ".gitlab/benchmarks.yml" variables: From 08a42a4d82f891d21df486d50a219f1e2863ecff Mon Sep 17 00:00:00 2001 From: roberto montero Date: Tue, 17 Dec 2024 17:16:55 +0100 Subject: [PATCH 069/161] new k8s scenarios added --- .gitlab-ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index db76f519010..3608d56881c 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -131,7 +131,9 @@ onboarding_tests_installer: onboarding_tests_k8s_injection: parallel: matrix: - - WEBLOG_VARIANT: [dd-lib-ruby-init-test-rails, dd-lib-ruby-init-test-rails-explicit,dd-lib-ruby-init-test-rails-gemsrb] + - WEBLOG_VARIANT: [dd-lib-ruby-init-test-rails, dd-lib-ruby-init-test-rails-explicit,dd-lib-ruby-init-test-rails-gemsrb] + SCENARIO: [K8S_LIB_INJECTION, K8S_LIB_INJECTION_UDS, K8S_LIB_INJECTION_NO_AC, K8S_LIB_INJECTION_NO_AC_UDS, K8S_LIB_INJECTION_PROFILING_DISABLED, K8S_LIB_INJECTION_PROFILING_ENABLED, K8S_LIB_INJECTION_PROFILING_OVERRIDE] + K8S_CLUSTER_VERSION: ['7.56.2', '7.57.0', '7.59.0'] save_versions: image: $DOCKER_REGISTRY/images/mirror/ruby:3.2.2 From 05898642086e4813ae610d6310638a99f6e9ee02 Mon Sep 17 00:00:00 2001 From: roberto montero Date: Tue, 17 Dec 2024 17:46:29 +0100 Subject: [PATCH 070/161] reduce the matrix --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 3608d56881c..79cf40e1ac3 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -133,7 +133,7 @@ onboarding_tests_k8s_injection: matrix: - WEBLOG_VARIANT: [dd-lib-ruby-init-test-rails, dd-lib-ruby-init-test-rails-explicit,dd-lib-ruby-init-test-rails-gemsrb] SCENARIO: [K8S_LIB_INJECTION, K8S_LIB_INJECTION_UDS, K8S_LIB_INJECTION_NO_AC, K8S_LIB_INJECTION_NO_AC_UDS, K8S_LIB_INJECTION_PROFILING_DISABLED, K8S_LIB_INJECTION_PROFILING_ENABLED, K8S_LIB_INJECTION_PROFILING_OVERRIDE] - K8S_CLUSTER_VERSION: ['7.56.2', '7.57.0', '7.59.0'] + K8S_CLUSTER_VERSION: ['7.56.2', '7.59.0'] save_versions: image: $DOCKER_REGISTRY/images/mirror/ruby:3.2.2 From 31753225553073a8c272741b9af71dfb14ef3e66 Mon Sep 17 00:00:00 2001 From: Marco Costa Date: Tue, 17 Dec 2024 15:37:33 -0800 Subject: [PATCH 071/161] Update lib/datadog/core/telemetry/event.rb Co-authored-by: Sergey Fedorov --- lib/datadog/core/telemetry/event.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/datadog/core/telemetry/event.rb b/lib/datadog/core/telemetry/event.rb index c461698e1f7..c80a289945f 100644 --- a/lib/datadog/core/telemetry/event.rb +++ b/lib/datadog/core/telemetry/event.rb @@ -378,7 +378,7 @@ def hash end # Telemetry class for the 'logs' event. - # Logs with the same contend are deduplicated at flush time. + # Logs with the same content are deduplicated at flush time. class Log < Base LEVELS = { error: 'ERROR', From 8c24f2cba36383ef7397d91dc9a5943dfe16485b Mon Sep 17 00:00:00 2001 From: Marco Costa Date: Tue, 17 Dec 2024 15:37:43 -0800 Subject: [PATCH 072/161] Update spec/datadog/core/telemetry/event_spec.rb Co-authored-by: Sergey Fedorov --- spec/datadog/core/telemetry/event_spec.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/spec/datadog/core/telemetry/event_spec.rb b/spec/datadog/core/telemetry/event_spec.rb index 5d8ab543157..e9d87938fd4 100644 --- a/spec/datadog/core/telemetry/event_spec.rb +++ b/spec/datadog/core/telemetry/event_spec.rb @@ -294,6 +294,7 @@ def contain_configuration(*array) ] expect(events.uniq).to have(1).item + expect(events.uniq[0].count).to eq(2) end it 'all events to be different' do From fcde76ae06f389715e936cad85067568dea3e63e Mon Sep 17 00:00:00 2001 From: Marco Costa Date: Tue, 17 Dec 2024 15:48:47 -0800 Subject: [PATCH 073/161] Revert suggestion --- spec/datadog/core/telemetry/event_spec.rb | 1 - 1 file changed, 1 deletion(-) diff --git a/spec/datadog/core/telemetry/event_spec.rb b/spec/datadog/core/telemetry/event_spec.rb index e9d87938fd4..5d8ab543157 100644 --- a/spec/datadog/core/telemetry/event_spec.rb +++ b/spec/datadog/core/telemetry/event_spec.rb @@ -294,7 +294,6 @@ def contain_configuration(*array) ] expect(events.uniq).to have(1).item - expect(events.uniq[0].count).to eq(2) end it 'all events to be different' do From 0a7856d8c1bed37e3912440eb2bf4207544d990f Mon Sep 17 00:00:00 2001 From: roberto montero Date: Wed, 18 Dec 2024 08:31:47 +0100 Subject: [PATCH 074/161] add 7.57.0 --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 79cf40e1ac3..16d857f848c 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -133,7 +133,7 @@ onboarding_tests_k8s_injection: matrix: - WEBLOG_VARIANT: [dd-lib-ruby-init-test-rails, dd-lib-ruby-init-test-rails-explicit,dd-lib-ruby-init-test-rails-gemsrb] SCENARIO: [K8S_LIB_INJECTION, K8S_LIB_INJECTION_UDS, K8S_LIB_INJECTION_NO_AC, K8S_LIB_INJECTION_NO_AC_UDS, K8S_LIB_INJECTION_PROFILING_DISABLED, K8S_LIB_INJECTION_PROFILING_ENABLED, K8S_LIB_INJECTION_PROFILING_OVERRIDE] - K8S_CLUSTER_VERSION: ['7.56.2', '7.59.0'] + K8S_CLUSTER_VERSION: ['7.56.2','7.57.0','7.59.0'] save_versions: image: $DOCKER_REGISTRY/images/mirror/ruby:3.2.2 From 99f3dd8ae2811efb0da4194df7566e6deef29c11 Mon Sep 17 00:00:00 2001 From: roberto montero Date: Wed, 18 Dec 2024 09:03:57 +0100 Subject: [PATCH 075/161] test needs k8s --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 16d857f848c..9a2636e4c26 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -127,7 +127,7 @@ onboarding_tests_installer: parallel: matrix: - ONBOARDING_FILTER_WEBLOG: [test-app-ruby, test-app-ruby-container] - +#K8s onboarding_tests_k8s_injection: parallel: matrix: From 07603f5e3bb401635642041181d7b5ea90707b2f Mon Sep 17 00:00:00 2001 From: roberto montero Date: Wed, 18 Dec 2024 10:10:56 +0100 Subject: [PATCH 076/161] skiping k8s profiling for ruby --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 9a2636e4c26..16d857f848c 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -127,7 +127,7 @@ onboarding_tests_installer: parallel: matrix: - ONBOARDING_FILTER_WEBLOG: [test-app-ruby, test-app-ruby-container] -#K8s + onboarding_tests_k8s_injection: parallel: matrix: From 7fd1feb1058822554c23d49f8e5ed03918759f9d Mon Sep 17 00:00:00 2001 From: Oleg Pudeyev <156273877+p-datadog@users.noreply.github.com> Date: Wed, 18 Dec 2024 09:04:50 -0500 Subject: [PATCH 077/161] DEBUG-3175 DI snapshot/rate limit benchmark (#4207) --- benchmarks/di_snapshot.rb | 257 ++++++++++++++++++ benchmarks/support/di_snapshot_target.rb | 22 ++ lib/datadog/di/configuration/settings.rb | 12 +- lib/datadog/di/probe_notifier_worker.rb | 3 +- spec/datadog/di/probe_notifier_worker_spec.rb | 1 + spec/datadog/di/validate_benchmarks_spec.rb | 17 +- 6 files changed, 306 insertions(+), 6 deletions(-) create mode 100644 benchmarks/di_snapshot.rb create mode 100644 benchmarks/support/di_snapshot_target.rb diff --git a/benchmarks/di_snapshot.rb b/benchmarks/di_snapshot.rb new file mode 100644 index 00000000000..09ffc4d9e93 --- /dev/null +++ b/benchmarks/di_snapshot.rb @@ -0,0 +1,257 @@ +=begin + +This benchmark verifies that the rate limits used for dynamic instrumentation +probes are attainable. + +Each benchmark performs as many operations as the rate limit permits - +5000 for a basic probe and 1 for enriched probe. If the benchmark +produces a rate of fewer than 1 "instructions" per second, the rate limit is +not being reached. A result of more than 1 "instruction" per second +means the rate limit is being reached. + +Note that the number of "instructions per second" reported by benchmark/ips +does not reflect how many times the instrumentation creates a snapshot - +there can (and normally are) invocations of the target method that do not +produce DI snapshots due to rate limit but these invocations are counted in +the "instructions per second" reported by benchmark/ips. + +The default dynamic instrumentation settings for the probe notifier worker +(queue capacity of 100 and minimum send interval of 3 seconds) mean an +effective rate limit of 30 snapshots per second for basic probes, +which is shared across all probes in the application, which is significantly +below the 5000 snapshots per second per probe that DI is theoretically +supposed to achieve. However, to increase actual attainable snapshot rate +to 5000/second, the probe notifier worker needs to be changed to send +multiple network requests for a single queue processing run or be more +aggressive in flushing the snapshots to the network when the queue is getting +full. In either case care needs to be taken not to starve customer applications +of CPU. + +=end + +# Used to quickly run benchmark under RSpec as part of the usual test suite, to validate it didn't bitrot +VALIDATE_BENCHMARK_MODE = ENV['VALIDATE_BENCHMARK'] == 'true' + +return unless __FILE__ == $PROGRAM_NAME || VALIDATE_BENCHMARK_MODE + +require 'benchmark/ips' +require 'datadog' +require 'webrick' + +class DISnapshotBenchmark + # If we are validating the benchmark a single operation is sufficient. + BASIC_RATE_LIMIT = VALIDATE_BENCHMARK_MODE ? 1 : 5000 + ENRICHED_RATE_LIMIT = 1 + + def initialize + + Datadog::DI.activate_tracking! + + Datadog.configure do |c| + c.remote.enabled = true + c.dynamic_instrumentation.enabled = true + c.dynamic_instrumentation.internal.development = true + + # Increase queue capacity and reduce min send interval + # to be able to send more snapshots out. + # The default settings will result in dropped snapshots + # way before non-enriched probe rate limit is reached. + c.dynamic_instrumentation.internal.snapshot_queue_capacity = 10000 + c.dynamic_instrumentation.internal.min_send_interval = 1 + end + + Thread.new do + # If there is an actual Datadog agent running locally, the server + # used in this benchmark will fail to start. + # Using an actual Datadog agent instead of the fake server should not + # affect the indication of whether the rate limit is reachable + # since the agent shouldn't take longer to process than the fake + # web server (and the agent should also run on another core), + # however using a real agent would forego reports of the number of + # snapshots submitted and their size. + server.start + end + + require_relative 'support/di_snapshot_target' + end + + def run_benchmark + probe = Datadog::DI::Probe.new( + id: 1, type: :log, + type_name: 'DISnapshotTarget', method_name: 'test_method', + rate_limit: BASIC_RATE_LIMIT, + ) + + unless probe_manager.add_probe(probe) + raise "Failed to instrument method (without snapshot capture)" + end + + @received_snapshot_count = 0 + @received_snapshot_bytes = 0 + + Benchmark.ips do |x| + benchmark_time = VALIDATE_BENCHMARK_MODE ? { time: 0.01, warmup: 0 } : { time: 10, warmup: 2 } + x.config( + **benchmark_time, + ) + + x.report('method probe - basic') do + BASIC_RATE_LIMIT.times do + DISnapshotTarget.new.test_method + end + Datadog::DI.component.probe_notifier_worker.flush + end + + x.save! 'di-snapshot-results.json' unless VALIDATE_BENCHMARK_MODE + x.compare! + end + + # DI does not provide an API to remove a specific probe because + # this functionality is currently not needed by the product. + probe_manager.remove_other_probes([]) + + puts "Received #{@received_snapshot_count} snapshots, #{@received_snapshot_bytes} bytes total" + + probe = Datadog::DI::Probe.new( + id: 1, type: :log, + type_name: 'DISnapshotTarget', method_name: 'test_method', + capture_snapshot: true, + # Normally rate limit for enriched probes is 1. + # To get a meaningful number of submissions, increase it to 20. + # We should get about 200 snapshots in the 10 seconds that the + # benchmark is supposed to run. + rate_limit: ENRICHED_RATE_LIMIT, + ) + + unless probe_manager.add_probe(probe) + raise "Failed to instrument method (with snapshot capture)" + end + + @received_snapshot_count = 0 + @received_snapshot_bytes = 0 + + Benchmark.ips do |x| + benchmark_time = VALIDATE_BENCHMARK_MODE ? { time: 0.01, warmup: 0 } : { time: 10, warmup: 2 } + x.config( + **benchmark_time, + ) + + x.report('method probe - enriched') do + ENRICHED_RATE_LIMIT.times do + DISnapshotTarget.new.test_method + end + Datadog::DI.component.probe_notifier_worker.flush + end + + x.save! 'di-snapshot-results.json' unless VALIDATE_BENCHMARK_MODE + x.compare! + end + + probe_manager.remove_other_probes([]) + + puts "Received #{@received_snapshot_count} snapshots, #{@received_snapshot_bytes} bytes total" + + probe = Datadog::DI::Probe.new( + id: 1, type: :log, + file: 'di_snapshot_target.rb', line_no: 20, + capture_snapshot: false, + rate_limit: BASIC_RATE_LIMIT, + ) + + unless probe_manager.add_probe(probe) + raise "Failed to instrument line (with snapshot capture)" + end + + @received_snapshot_count = 0 + @received_snapshot_bytes = 0 + + Benchmark.ips do |x| + benchmark_time = VALIDATE_BENCHMARK_MODE ? { time: 0.01, warmup: 0 } : { time: 10, warmup: 2 } + x.config( + **benchmark_time, + ) + + x.report('line probe - basic') do + BASIC_RATE_LIMIT.times do + DISnapshotTarget.new.test_method + end + Datadog::DI.component.probe_notifier_worker.flush + end + + x.save! 'di-snapshot-results.json' unless VALIDATE_BENCHMARK_MODE + x.compare! + end + + probe_manager.remove_other_probes([]) + + puts "Received #{@received_snapshot_count} snapshots, #{@received_snapshot_bytes} bytes total" + + probe = Datadog::DI::Probe.new( + id: 1, type: :log, + file: 'di_snapshot_target.rb', line_no: 20, + capture_snapshot: true, + rate_limit: ENRICHED_RATE_LIMIT, + ) + + unless probe_manager.add_probe(probe) + raise "Failed to instrument line (with snapshot capture)" + end + + @received_snapshot_count = 0 + @received_snapshot_bytes = 0 + + Benchmark.ips do |x| + benchmark_time = VALIDATE_BENCHMARK_MODE ? { time: 0.01, warmup: 0 } : { time: 10, warmup: 2 } + x.config( + **benchmark_time, + ) + + x.report('line probe - enriched') do + ENRICHED_RATE_LIMIT.times do + DISnapshotTarget.new.test_method + end + Datadog::DI.component.probe_notifier_worker.flush + end + + x.save! 'di-snapshot-results.json' unless VALIDATE_BENCHMARK_MODE + x.compare! + end + + probe_manager.remove_other_probes([]) + + puts "Received #{@received_snapshot_count} snapshots, #{@received_snapshot_bytes} bytes total" + end + + private + + def probe_manager + Datadog::DI.component.probe_manager + end + + def server + WEBrick::HTTPServer.new( + Port: 8126, + ).tap do |server| + @received_snapshot_count = 0 + @received_snapshot_bytes = 0 + + server.mount_proc('/debugger/v1/diagnostics') do |req, res| + # This request is a multipart form post + end + + server.mount_proc('/debugger/v1/input') do |req, res| + payload = JSON.parse(req.body) + @received_snapshot_count += payload.length + @received_snapshot_bytes += req.body.length + end + end + end + + attr_reader :received_snapshot_count +end + +puts "Current pid is #{Process.pid}" + +DISnapshotBenchmark.new.instance_exec do + run_benchmark +end diff --git a/benchmarks/support/di_snapshot_target.rb b/benchmarks/support/di_snapshot_target.rb new file mode 100644 index 00000000000..d36177640e0 --- /dev/null +++ b/benchmarks/support/di_snapshot_target.rb @@ -0,0 +1,22 @@ +class DISnapshotTarget + def test_method + # Perform some work to take up time + SecureRandom.uuid + + v1 = Datadog.configuration + v2 = Datadog.configuration + v3 = Datadog.configuration + v4 = Datadog.configuration + v5 = Datadog.configuration + v6 = Datadog.configuration + v7 = Datadog.configuration + v8 = Datadog.configuration + v9 = Datadog.configuration + + # Currently Ruby DI does not implement capture of local variables + # in method probes, or instance variables. + # Return a complex object which will be serialized for the + # enriched probe. + Datadog.configuration # Line 20 + end +end diff --git a/lib/datadog/di/configuration/settings.rb b/lib/datadog/di/configuration/settings.rb index 55413613494..0a1c5637302 100644 --- a/lib/datadog/di/configuration/settings.rb +++ b/lib/datadog/di/configuration/settings.rb @@ -166,10 +166,20 @@ def self.add_settings!(base) # being sent out by the probe notifier worker) and creates a # possibility of dropping payloads if the queue gets too long. option :min_send_interval do |o| - o.type :int + o.type :float o.default 3 end + # Number of snapshots that can be stored in the probe + # notifier worker queue. Larger capacity runs the risk of + # creating snapshots that exceed the agent's request size + # limit. Smaller capacity increases the risk of dropping + # snapshots. + option :snapshot_queue_capacity do |o| + o.type :int + o.default 100 + end + # Enable dynamic instrumentation in development environments. # Currently DI does not fully implement support for code # unloading and reloading, and is not supported in diff --git a/lib/datadog/di/probe_notifier_worker.rb b/lib/datadog/di/probe_notifier_worker.rb index 6ce2ccdf340..b7cb2e78fba 100644 --- a/lib/datadog/di/probe_notifier_worker.rb +++ b/lib/datadog/di/probe_notifier_worker.rb @@ -183,8 +183,7 @@ def io_in_progress? define_method("add_#{event_type}") do |event| @lock.synchronize do queue = send("#{event_type}_queue") - # TODO determine a suitable limit via testing/benchmarking - if queue.length > 100 + if queue.length > settings.dynamic_instrumentation.internal.snapshot_queue_capacity logger.warn("#{self.class.name}: dropping #{event_type} because queue is full") else queue << event diff --git a/spec/datadog/di/probe_notifier_worker_spec.rb b/spec/datadog/di/probe_notifier_worker_spec.rb index f4ad4bdd30f..7d89ff2cd89 100644 --- a/spec/datadog/di/probe_notifier_worker_spec.rb +++ b/spec/datadog/di/probe_notifier_worker_spec.rb @@ -10,6 +10,7 @@ allow(settings.dynamic_instrumentation.internal).to receive(:propagate_all_exceptions).and_return(false) # Reduce to 1 to have the test run faster allow(settings.dynamic_instrumentation.internal).to receive(:min_send_interval).and_return(1) + allow(settings.dynamic_instrumentation.internal).to receive(:snapshot_queue_capacity).and_return(10) end let(:transport) do diff --git a/spec/datadog/di/validate_benchmarks_spec.rb b/spec/datadog/di/validate_benchmarks_spec.rb index e84472b4fc9..3df628e8243 100644 --- a/spec/datadog/di/validate_benchmarks_spec.rb +++ b/spec/datadog/di/validate_benchmarks_spec.rb @@ -10,18 +10,29 @@ end benchmarks_to_validate = [ - "di_instrument", + "di_instrument", "di_snapshot", ].freeze benchmarks_to_validate.each do |benchmark| describe benchmark do - it("runs without raising errors") { expect_in_fork { load "./benchmarks/#{benchmark}.rb" } } + timeout = if benchmark == 'di_snapshot' + 20 + else + 10 + end + it "runs without raising errors" do + expect_in_fork(timeout_seconds: timeout) do + load "./benchmarks/#{benchmark}.rb" + end + end end end # This test validates that we don't forget to add new benchmarks to benchmarks_to_validate it "tests all expected benchmarks in the benchmarks folder" do - all_benchmarks = Dir["./benchmarks/di_*"].map { |it| it.gsub("./benchmarks/", "").gsub(".rb", "") } + all_benchmarks = Dir["./benchmarks/di_*"].map do |it| + it.gsub("./benchmarks/", "").gsub(".rb", "") + end expect(benchmarks_to_validate).to contain_exactly(*all_benchmarks) end From 1482f00275c4496ff9b2b7f348e39370c7547adc Mon Sep 17 00:00:00 2001 From: Ivo Anjo Date: Thu, 19 Dec 2024 10:54:12 +0000 Subject: [PATCH 078/161] Add unsafe api calls checker to track down issues such as #4195 This checker is used to detect accidental thread scheduling switching points happening during profiling sampling. See the bigger comment in unsafe_api_calls_check.h . I was able to check that this checker correctly triggers for the bug in #4195, and also the bug I'm going to fix next, which is the use of `rb_hash_lookup` in the otel context reading code. --- .../collectors_thread_context.c | 78 +++++++++++++++++-- .../profiling.c | 2 + .../unsafe_api_calls_check.c | 47 +++++++++++ .../unsafe_api_calls_check.h | 25 ++++++ lib/datadog/core/configuration.rb | 2 +- .../collectors/thread_context_spec.rb | 23 +++--- 6 files changed, 159 insertions(+), 18 deletions(-) create mode 100644 ext/datadog_profiling_native_extension/unsafe_api_calls_check.c create mode 100644 ext/datadog_profiling_native_extension/unsafe_api_calls_check.h diff --git a/ext/datadog_profiling_native_extension/collectors_thread_context.c b/ext/datadog_profiling_native_extension/collectors_thread_context.c index 0b56268bed5..b9606797106 100644 --- a/ext/datadog_profiling_native_extension/collectors_thread_context.c +++ b/ext/datadog_profiling_native_extension/collectors_thread_context.c @@ -9,6 +9,7 @@ #include "private_vm_api_access.h" #include "stack_recorder.h" #include "time_helpers.h" +#include "unsafe_api_calls_check.h" // Used to trigger sampling of threads, based on external "events", such as: // * periodic timer for cpu-time and wall-time @@ -203,10 +204,10 @@ static int hash_map_per_thread_context_mark(st_data_t key_thread, st_data_t _val static int hash_map_per_thread_context_free_values(st_data_t _thread, st_data_t value_per_thread_context, st_data_t _argument); static VALUE _native_new(VALUE klass); static VALUE _native_initialize(int argc, VALUE *argv, DDTRACE_UNUSED VALUE _self); -static VALUE _native_sample(VALUE self, VALUE collector_instance, VALUE profiler_overhead_stack_thread); +static VALUE _native_sample(VALUE self, VALUE collector_instance, VALUE profiler_overhead_stack_thread, VALUE allow_exception); static VALUE _native_on_gc_start(VALUE self, VALUE collector_instance); static VALUE _native_on_gc_finish(VALUE self, VALUE collector_instance); -static VALUE _native_sample_after_gc(DDTRACE_UNUSED VALUE self, VALUE collector_instance, VALUE reset_monotonic_to_system_state); +static VALUE _native_sample_after_gc(DDTRACE_UNUSED VALUE self, VALUE collector_instance, VALUE reset_monotonic_to_system_state, VALUE allow_exception); static void update_metrics_and_sample( struct thread_context_collector_state *state, VALUE thread_being_sampled, @@ -310,11 +311,11 @@ void collectors_thread_context_init(VALUE profiling_module) { rb_define_singleton_method(collectors_thread_context_class, "_native_initialize", _native_initialize, -1); rb_define_singleton_method(collectors_thread_context_class, "_native_inspect", _native_inspect, 1); rb_define_singleton_method(collectors_thread_context_class, "_native_reset_after_fork", _native_reset_after_fork, 1); - rb_define_singleton_method(testing_module, "_native_sample", _native_sample, 2); + rb_define_singleton_method(testing_module, "_native_sample", _native_sample, 3); rb_define_singleton_method(testing_module, "_native_sample_allocation", _native_sample_allocation, 3); rb_define_singleton_method(testing_module, "_native_on_gc_start", _native_on_gc_start, 1); rb_define_singleton_method(testing_module, "_native_on_gc_finish", _native_on_gc_finish, 1); - rb_define_singleton_method(testing_module, "_native_sample_after_gc", _native_sample_after_gc, 2); + rb_define_singleton_method(testing_module, "_native_sample_after_gc", _native_sample_after_gc, 3); rb_define_singleton_method(testing_module, "_native_thread_list", _native_thread_list, 0); rb_define_singleton_method(testing_module, "_native_per_thread_context", _native_per_thread_context, 1); rb_define_singleton_method(testing_module, "_native_stats", _native_stats, 1); @@ -504,31 +505,49 @@ static VALUE _native_initialize(int argc, VALUE *argv, DDTRACE_UNUSED VALUE _sel // This method exists only to enable testing Datadog::Profiling::Collectors::ThreadContext behavior using RSpec. // It SHOULD NOT be used for other purposes. -static VALUE _native_sample(DDTRACE_UNUSED VALUE _self, VALUE collector_instance, VALUE profiler_overhead_stack_thread) { +static VALUE _native_sample(DDTRACE_UNUSED VALUE _self, VALUE collector_instance, VALUE profiler_overhead_stack_thread, VALUE allow_exception) { + ENFORCE_BOOLEAN(allow_exception); + if (!is_thread_alive(profiler_overhead_stack_thread)) rb_raise(rb_eArgError, "Unexpected: profiler_overhead_stack_thread is not alive"); + if (allow_exception == Qfalse) debug_enter_unsafe_context(); + thread_context_collector_sample(collector_instance, monotonic_wall_time_now_ns(RAISE_ON_FAILURE), profiler_overhead_stack_thread); + + if (allow_exception == Qfalse) debug_leave_unsafe_context(); + return Qtrue; } // This method exists only to enable testing Datadog::Profiling::Collectors::ThreadContext behavior using RSpec. // It SHOULD NOT be used for other purposes. static VALUE _native_on_gc_start(DDTRACE_UNUSED VALUE self, VALUE collector_instance) { + debug_enter_unsafe_context(); + thread_context_collector_on_gc_start(collector_instance); + + debug_leave_unsafe_context(); + return Qtrue; } // This method exists only to enable testing Datadog::Profiling::Collectors::ThreadContext behavior using RSpec. // It SHOULD NOT be used for other purposes. static VALUE _native_on_gc_finish(DDTRACE_UNUSED VALUE self, VALUE collector_instance) { + debug_enter_unsafe_context(); + (void) !thread_context_collector_on_gc_finish(collector_instance); + + debug_leave_unsafe_context(); + return Qtrue; } // This method exists only to enable testing Datadog::Profiling::Collectors::ThreadContext behavior using RSpec. // It SHOULD NOT be used for other purposes. -static VALUE _native_sample_after_gc(DDTRACE_UNUSED VALUE self, VALUE collector_instance, VALUE reset_monotonic_to_system_state) { +static VALUE _native_sample_after_gc(DDTRACE_UNUSED VALUE self, VALUE collector_instance, VALUE reset_monotonic_to_system_state, VALUE allow_exception) { ENFORCE_BOOLEAN(reset_monotonic_to_system_state); + ENFORCE_BOOLEAN(allow_exception); struct thread_context_collector_state *state; TypedData_Get_Struct(collector_instance, struct thread_context_collector_state, &thread_context_collector_typed_data, state); @@ -537,7 +556,12 @@ static VALUE _native_sample_after_gc(DDTRACE_UNUSED VALUE self, VALUE collector_ state->time_converter_state = (monotonic_to_system_epoch_state) MONOTONIC_TO_SYSTEM_EPOCH_INITIALIZER; } + if (allow_exception == Qfalse) debug_enter_unsafe_context(); + thread_context_collector_sample_after_gc(collector_instance); + + if (allow_exception == Qfalse) debug_leave_unsafe_context(); + return Qtrue; } @@ -982,7 +1006,13 @@ static void trigger_sample_for_thread( // It SHOULD NOT be used for other purposes. static VALUE _native_thread_list(DDTRACE_UNUSED VALUE _self) { VALUE result = rb_ary_new(); + + debug_enter_unsafe_context(); + ddtrace_thread_list(result); + + debug_leave_unsafe_context(); + return result; } @@ -1501,7 +1531,12 @@ void thread_context_collector_sample_allocation(VALUE self_instance, unsigned in // This method exists only to enable testing Datadog::Profiling::Collectors::ThreadContext behavior using RSpec. // It SHOULD NOT be used for other purposes. static VALUE _native_sample_allocation(DDTRACE_UNUSED VALUE self, VALUE collector_instance, VALUE sample_weight, VALUE new_object) { + debug_enter_unsafe_context(); + thread_context_collector_sample_allocation(collector_instance, NUM2UINT(sample_weight), new_object); + + debug_leave_unsafe_context(); + return Qtrue; } @@ -1640,7 +1675,12 @@ void thread_context_collector_sample_skipped_allocation_samples(VALUE self_insta } static VALUE _native_sample_skipped_allocation_samples(DDTRACE_UNUSED VALUE self, VALUE collector_instance, VALUE skipped_samples) { + debug_enter_unsafe_context(); + thread_context_collector_sample_skipped_allocation_samples(collector_instance, NUM2UINT(skipped_samples)); + + debug_leave_unsafe_context(); + return Qtrue; } @@ -1979,31 +2019,53 @@ static uint64_t otel_span_id_to_uint(VALUE otel_span_id) { static VALUE _native_on_gvl_waiting(DDTRACE_UNUSED VALUE self, VALUE thread) { ENFORCE_THREAD(thread); + debug_enter_unsafe_context(); + thread_context_collector_on_gvl_waiting(thread_from_thread_object(thread)); + + debug_leave_unsafe_context(); + return Qnil; } static VALUE _native_gvl_waiting_at_for(DDTRACE_UNUSED VALUE self, VALUE thread) { ENFORCE_THREAD(thread); + debug_enter_unsafe_context(); + intptr_t gvl_waiting_at = gvl_profiling_state_thread_object_get(thread); + + debug_leave_unsafe_context(); + return LONG2NUM(gvl_waiting_at); } static VALUE _native_on_gvl_running(DDTRACE_UNUSED VALUE self, VALUE thread) { ENFORCE_THREAD(thread); - return thread_context_collector_on_gvl_running(thread_from_thread_object(thread)) == ON_GVL_RUNNING_SAMPLE ? Qtrue : Qfalse; + debug_enter_unsafe_context(); + + VALUE result = thread_context_collector_on_gvl_running(thread_from_thread_object(thread)) == ON_GVL_RUNNING_SAMPLE ? Qtrue : Qfalse; + + debug_leave_unsafe_context(); + + return result; } static VALUE _native_sample_after_gvl_running(DDTRACE_UNUSED VALUE self, VALUE collector_instance, VALUE thread) { ENFORCE_THREAD(thread); - return thread_context_collector_sample_after_gvl_running( + debug_enter_unsafe_context(); + + VALUE result = thread_context_collector_sample_after_gvl_running( collector_instance, thread, monotonic_wall_time_now_ns(RAISE_ON_FAILURE) ); + + debug_leave_unsafe_context(); + + return result; } static VALUE _native_apply_delta_to_cpu_time_at_previous_sample_ns(DDTRACE_UNUSED VALUE self, VALUE collector_instance, VALUE thread, VALUE delta_ns) { diff --git a/ext/datadog_profiling_native_extension/profiling.c b/ext/datadog_profiling_native_extension/profiling.c index 315ca0d2954..a7bfe0d466b 100644 --- a/ext/datadog_profiling_native_extension/profiling.c +++ b/ext/datadog_profiling_native_extension/profiling.c @@ -11,6 +11,7 @@ #include "ruby_helpers.h" #include "setup_signal_handler.h" #include "time_helpers.h" +#include "unsafe_api_calls_check.h" // Each class/module here is implemented in their separate file void collectors_cpu_and_wall_time_worker_init(VALUE profiling_module); @@ -56,6 +57,7 @@ void DDTRACE_EXPORT Init_datadog_profiling_native_extension(void) { collectors_thread_context_init(profiling_module); http_transport_init(profiling_module); stack_recorder_init(profiling_module); + unsafe_api_calls_check_init(); // Hosts methods used for testing the native code using RSpec VALUE testing_module = rb_define_module_under(native_extension_module, "Testing"); diff --git a/ext/datadog_profiling_native_extension/unsafe_api_calls_check.c b/ext/datadog_profiling_native_extension/unsafe_api_calls_check.c new file mode 100644 index 00000000000..c3c23b7f1c7 --- /dev/null +++ b/ext/datadog_profiling_native_extension/unsafe_api_calls_check.c @@ -0,0 +1,47 @@ +#include +#include +#include + +#include "datadog_ruby_common.h" +#include "unsafe_api_calls_check.h" +#include "extconf.h" + +static bool inside_unsafe_context = false; + +#ifndef NO_POSTPONED_TRIGGER + static rb_postponed_job_handle_t check_for_unsafe_api_calls_handle; +#endif + +static void check_for_unsafe_api_calls(DDTRACE_UNUSED void *_unused); + +void unsafe_api_calls_check_init(void) { + #ifndef NO_POSTPONED_TRIGGER + int unused_flags = 0; + + check_for_unsafe_api_calls_handle = rb_postponed_job_preregister(unused_flags, check_for_unsafe_api_calls, NULL); + + if (check_for_unsafe_api_calls_handle == POSTPONED_JOB_HANDLE_INVALID) { + rb_raise(rb_eRuntimeError, "Failed to register check_for_unsafe_api_calls_handle postponed job (got POSTPONED_JOB_HANDLE_INVALID)"); + } + #endif +} + +void debug_enter_unsafe_context(void) { + inside_unsafe_context = true; + + #ifndef NO_POSTPONED_TRIGGER + rb_postponed_job_trigger(check_for_unsafe_api_calls_handle); + #else + rb_postponed_job_register(0, check_for_unsafe_api_calls, NULL); + #endif +} + +void debug_leave_unsafe_context(void) { + inside_unsafe_context = false; +} + +static void check_for_unsafe_api_calls(DDTRACE_UNUSED void *_unused) { + if (inside_unsafe_context) rb_bug( + "Datadog Ruby profiler detected callback nested inside sample. Please report this at https://github.com/datadog/dd-trace-rb/blob/master/CONTRIBUTING.md#found-a-bug" + ); +} diff --git a/ext/datadog_profiling_native_extension/unsafe_api_calls_check.h b/ext/datadog_profiling_native_extension/unsafe_api_calls_check.h new file mode 100644 index 00000000000..092a59f30b3 --- /dev/null +++ b/ext/datadog_profiling_native_extension/unsafe_api_calls_check.h @@ -0,0 +1,25 @@ +#pragma once + +// This checker is used to detect accidental thread scheduling switching points happening during profiling sampling. +// +// Specifically, when the profiler is sampling, we're never supposed to call into Ruby code (e.g. methods +// implemented using Ruby code) or allocate Ruby objects. +// That's because those events introduce thread switch points, and really we don't the VM switching between threads +// in the middle of the profiler sampling. +// This includes raising exceptions, unless we're trying to stop the profiler, and even then we must be careful. +// +// The above is especially true in situations such as GC profiling or allocation/heap profiling, as in those situations +// we can even crash the Ruby VM if we switch away at the wrong time. +// +// The below APIs can be used to detect these situations. They work by relying on the following observation: +// in most (all?) thread switch points, Ruby will check for interrupts and run the postponed jobs. +// +// Thus, if we set a flag while we're sampling (inside_unsafe_context), trigger the postponed job, and then only unset +// the flag after sampling, he correct thing to happen is that the postponed job should never see the flag. +// +// If, however, we have a bug and there's a thread switch point, our postponed job will see the flag and immediately +// stop the Ruby VM before further damage happens (and hopefully giving us a stack trace clearly pointing to the culprit). + +void unsafe_api_calls_check_init(void); +void debug_enter_unsafe_context(void); +void debug_leave_unsafe_context(void); diff --git a/lib/datadog/core/configuration.rb b/lib/datadog/core/configuration.rb index 826a3bb414a..4b2b21d6ee7 100644 --- a/lib/datadog/core/configuration.rb +++ b/lib/datadog/core/configuration.rb @@ -236,7 +236,7 @@ def safely_synchronize rescue ThreadError => e logger_without_components.error( 'Detected deadlock during datadog initialization. ' \ - 'Please report this at https://github.com/DataDog/dd-trace-rb/blob/master/CONTRIBUTING.md#found-a-bug' \ + 'Please report this at https://github.com/datadog/dd-trace-rb/blob/master/CONTRIBUTING.md#found-a-bug' \ "\n\tSource:\n\t#{Array(e.backtrace).join("\n\t")}" ) nil diff --git a/spec/datadog/profiling/collectors/thread_context_spec.rb b/spec/datadog/profiling/collectors/thread_context_spec.rb index e7b1bd28ba0..7145729bcec 100644 --- a/spec/datadog/profiling/collectors/thread_context_spec.rb +++ b/spec/datadog/profiling/collectors/thread_context_spec.rb @@ -66,8 +66,8 @@ end end - def sample(profiler_overhead_stack_thread: Thread.current) - described_class::Testing._native_sample(cpu_and_wall_time_collector, profiler_overhead_stack_thread) + def sample(profiler_overhead_stack_thread: Thread.current, allow_exception: false) + described_class::Testing._native_sample(cpu_and_wall_time_collector, profiler_overhead_stack_thread, allow_exception) end def on_gc_start @@ -78,8 +78,12 @@ def on_gc_finish described_class::Testing._native_on_gc_finish(cpu_and_wall_time_collector) end - def sample_after_gc(reset_monotonic_to_system_state: false) - described_class::Testing._native_sample_after_gc(cpu_and_wall_time_collector, reset_monotonic_to_system_state) + def sample_after_gc(reset_monotonic_to_system_state: false, allow_exception: false) + described_class::Testing._native_sample_after_gc( + cpu_and_wall_time_collector, + reset_monotonic_to_system_state, + allow_exception, + ) end def sample_allocation(weight:, new_object: Object.new) @@ -782,18 +786,18 @@ def otel_span_id_to_i(span_id) ) end - context 'raises an exception' do + context 'when an exception is raised' do before { setup_failure } after { expect(ran_log).to eq [:ran_code] } it 'does not leave the exception pending' do - sample + sample(allow_exception: true) expect($!).to be nil end it 'omits the "local root span id" and "span id" labels in the sample' do - sample + sample(allow_exception: true) expect(t1_sample.labels.keys).to_not include(:"local root span id", :"span id") end @@ -1433,7 +1437,7 @@ def sample_and_check(expected_state:) context "when called before on_gc_start/on_gc_finish" do it do - expect { sample_after_gc }.to raise_error(RuntimeError, /Unexpected call to sample_after_gc/) + expect { sample_after_gc(allow_exception: true) }.to raise_error(RuntimeError, /Unexpected call to sample_after_gc/) end end @@ -1451,7 +1455,8 @@ def sample_and_check(expected_state:) it do sample_after_gc - expect { sample_after_gc }.to raise_error(RuntimeError, /Unexpected call to sample_after_gc/) + expect { sample_after_gc(allow_exception: true) } + .to raise_error(RuntimeError, /Unexpected call to sample_after_gc/) end end From 1c26fd855211760e26278406b44d06cef76fb646 Mon Sep 17 00:00:00 2001 From: Ivo Anjo Date: Thu, 19 Dec 2024 14:17:03 +0000 Subject: [PATCH 079/161] Fix going into Ruby code when looking up otel context `rb_hash_lookup` calls `#hash` on the key being looked up so it's safe to use unless during sampling. This can cause the same issue as we saw in #4195 leading to ``` [BUG] unexpected situation - recordd:1 current:0 -- C level backtrace information ------------------------------------------- ruby(rb_print_backtrace+0x11) [0x55ba03ccf90f] vm_dump.c:820 ruby(rb_vm_bugreport) vm_dump.c:1151 ruby(bug_report_end+0x0) [0x55ba03e91607] error.c:1042 ruby(rb_bug_without_die) error.c:1042 ruby(die+0x0) [0x55ba03ac0998] error.c:1050 ruby(rb_bug) error.c:1052 ruby(disallow_reentry+0x0) [0x55ba03ab6dcc] vm_sync.c:226 ruby(rb_ec_vm_lock_rec_check+0x1a) [0x55ba03cb17aa] eval_intern.h:144 ruby(rb_ec_tag_state) eval_intern.h:155 ruby(rb_vm_exec) vm.c:2484 ruby(vm_invoke_proc+0x201) [0x55ba03cb62b1] vm.c:1509 ruby(rb_vm_invoke_proc+0x33) [0x55ba03cb65d3] vm.c:1728 ruby(thread_do_start_proc+0x176) [0x55ba03c63516] thread.c:598 ruby(thread_do_start+0x12) [0x55ba03c648a2] thread.c:615 ruby(thread_start_func_2) thread.c:672 ruby(nt_start+0x107) [0x55ba03c65137] thread_pthread.c:2187 /lib/x86_64-linux-gnu/libpthread.so.0(start_thread+0xd9) [0x7ff360b66609] /lib/x86_64-linux-gnu/libc.so.6(clone+0x43) [0x7ff360a70353] ``` --- .../collectors_thread_context.c | 39 ++++++++- .../collectors/thread_context_spec.rb | 84 ++++++++++++++++++- 2 files changed, 120 insertions(+), 3 deletions(-) diff --git a/ext/datadog_profiling_native_extension/collectors_thread_context.c b/ext/datadog_profiling_native_extension/collectors_thread_context.c index b9606797106..b8e7aedfefb 100644 --- a/ext/datadog_profiling_native_extension/collectors_thread_context.c +++ b/ext/datadog_profiling_native_extension/collectors_thread_context.c @@ -291,6 +291,7 @@ static void otel_without_ddtrace_trace_identifiers_for( ); static struct otel_span otel_span_from(VALUE otel_context, VALUE otel_current_span_key); static uint64_t otel_span_id_to_uint(VALUE otel_span_id); +static VALUE safely_lookup_hash_without_going_into_ruby_code(VALUE hash, VALUE key); void collectors_thread_context_init(VALUE profiling_module) { VALUE collectors_module = rb_define_module_under(profiling_module, "Collectors"); @@ -1632,7 +1633,7 @@ static void ddtrace_otel_trace_identifiers_for( // trace and span representing it. Each ddtrace trace is then connected to the previous otel span, forming a linked // list. The local root span is going to be the trace/span we find at the end of this linked list. while (otel_values != Qnil) { - VALUE otel_span = rb_hash_lookup(otel_values, otel_current_span_key); + VALUE otel_span = safely_lookup_hash_without_going_into_ruby_code(otel_values, otel_current_span_key); if (otel_span == Qnil) break; VALUE next_trace = rb_ivar_get(otel_span, at_datadog_trace_id); if (next_trace == Qnil) break; @@ -1766,7 +1767,7 @@ static struct otel_span otel_span_from(VALUE otel_context, VALUE otel_current_sp if (context_entries == Qnil || !RB_TYPE_P(context_entries, T_HASH)) return failed; // If it exists, context_entries is expected to be a Hash[OpenTelemetry::Context::Key, OpenTelemetry::Trace::Span] - VALUE span = rb_hash_lookup(context_entries, otel_current_span_key); + VALUE span = safely_lookup_hash_without_going_into_ruby_code(context_entries, otel_current_span_key); if (span == Qnil) return failed; // If it exists, span_context is expected to be a OpenTelemetry::Trace::SpanContext (don't confuse it with OpenTelemetry::Context) @@ -2092,3 +2093,37 @@ static uint64_t otel_span_id_to_uint(VALUE otel_span_id) { DDTRACE_UNUSED long current_cpu_time_ns ) { return false; } #endif // NO_GVL_INSTRUMENTATION + +#define MAX_SAFE_LOOKUP_SIZE 16 + +typedef struct { VALUE lookup_key; VALUE result; } safe_lookup_hash_state; + +static int safe_lookup_hash_iterate(VALUE key, VALUE value, VALUE state_ptr) { + safe_lookup_hash_state *state = (safe_lookup_hash_state *) state_ptr; + + if (key == state->lookup_key) { + state->result = value; + return ST_STOP; + } + + return ST_CONTINUE; +} + +// This method exists because we need to look up a hash during sampling, but we don't want to invoke any +// Ruby code as a side effect. To be able to look up by hash, `rb_hash_lookup` calls `#hash` on the key, +// which we want to avoid. +// Thus, instead, we opt to just iterate through the hash and check if we can find what we're looking for. +// +// To avoid having too much overhead here we only iterate in hashes up to MAX_SAFE_LOOKUP_SIZE. +// Note that we don't even try to iterate if the hash is bigger -- this is to avoid flaky behavior where +// depending on the internal storage order of the hash we may or not find the key, and instead we always +// enforce the size. +static VALUE safely_lookup_hash_without_going_into_ruby_code(VALUE hash, VALUE key) { + if (!RB_TYPE_P(hash, T_HASH) || RHASH_SIZE(hash) > MAX_SAFE_LOOKUP_SIZE) return Qnil; + + safe_lookup_hash_state state = {.lookup_key = key, .result = Qnil}; + + rb_hash_foreach(hash, safe_lookup_hash_iterate, (VALUE) &state); + + return state.result; +} diff --git a/spec/datadog/profiling/collectors/thread_context_spec.rb b/spec/datadog/profiling/collectors/thread_context_spec.rb index 7145729bcec..0296be0ff72 100644 --- a/spec/datadog/profiling/collectors/thread_context_spec.rb +++ b/spec/datadog/profiling/collectors/thread_context_spec.rb @@ -588,6 +588,7 @@ def self.otel_otlp_exporter_available? false end + # When opentelemetry-sdk is on the Gemfile, but not opentelemetry-exporter-otlp context "when trace comes from otel sdk", if: otel_sdk_available? && !otel_otlp_exporter_available? do let(:otel_tracer) do require "datadog/opentelemetry" @@ -622,6 +623,31 @@ def self.otel_otlp_exporter_available? expect(t1_sample.labels).to_not include("trace endpoint": anything) end + describe 'accessing the current span' do + before do + allow(Datadog.logger).to receive(:error) + + # initialize otel context reading + sample + # clear samples + recorder.serialize! + end + + it 'does not try to hash the CURRENT_SPAN_KEY' do + inner_check_ran = false + + otel_tracer.in_span("profiler.test") do |_span| + expect(OpenTelemetry::Trace.const_get(:CURRENT_SPAN_KEY)).to_not receive(:hash) + + sample_allocation(weight: 1) + + inner_check_ran = true + end + + expect(inner_check_ran).to be true + end + end + context "when there are multiple otel spans nested" do let(:t1) do Thread.new(ready_queue, otel_tracer) do |ready_queue, otel_tracer| @@ -721,6 +747,7 @@ def self.otel_otlp_exporter_available? end end + # When opentelemetry-sdk AND opentelemetry-exporter-otlp are on the Gemfile context( "when trace comes from otel sdk and the ddtrace otel support is not loaded", if: otel_sdk_available? && otel_otlp_exporter_available? @@ -769,7 +796,7 @@ def otel_span_id_to_i(span_id) expect(t1_sample.labels).to_not include("trace endpoint": anything) end - context 'reading CURRENT_SPAN_KEY' do + describe 'reading CURRENT_SPAN_KEY into otel_current_span_key' do let!(:ran_log) { [] } let(:setup_failure) do @@ -818,6 +845,61 @@ def otel_span_id_to_i(span_id) end end + describe 'accessing the current span' do + before do + allow(OpenTelemetry.logger).to receive(:error) + + # initialize otel context reading + sample + # clear samples + recorder.serialize! + end + + it 'does not try to hash the CURRENT_SPAN_KEY' do + inner_check_ran = false + + otel_tracer.in_span("profiler.test") do |_span| + expect(OpenTelemetry::Trace.const_get(:CURRENT_SPAN_KEY)).to_not receive(:hash) + + sample_allocation(weight: 1) + + inner_check_ran = true + end + + expect(inner_check_ran).to be true + end + + context 'when there are more than MAX_SAFE_LOOKUP_SIZE entries in the otel context' do + let(:max_safe_lookup_size) { 16 } # Value of MAX_SAFE_LOOKUP_SIZE in C code + + it 'does not try to look up the context' do + otel_tracer.in_span("profiler.test") do |_span| + current_size = OpenTelemetry::Context.current.instance_variable_get(:@entries).size + + OpenTelemetry::Context.with_values( + Array.new((max_safe_lookup_size + 1 - current_size)) { |it| ["key_#{it}", it] }.to_h + ) do + sample_allocation(weight: 12) + end + + OpenTelemetry::Context.with_values( + Array.new((max_safe_lookup_size - current_size)) { |it| ["key_#{it}", it] }.to_h + ) do + sample_allocation(weight: 34) + end + end + + result = samples_for_thread(samples, Thread.current) + + expect(result.size).to be 2 + expect(result.find { |it| it.values.fetch(:"alloc-samples") == 12 }.labels.keys) + .to_not include(:"local root span id", :"span id") + expect(result.find { |it| it.values.fetch(:"alloc-samples") == 34 }.labels.keys) + .to include(:"local root span id", :"span id") + end + end + end + context 'when otel_context_enabled is false' do let(:otel_context_enabled) { false } From eeed3a95ab6774dcbfce1929eadf5b860a0670d5 Mon Sep 17 00:00:00 2001 From: Ivo Anjo Date: Thu, 19 Dec 2024 14:42:39 +0000 Subject: [PATCH 080/161] Avoid trying to sample allocations when VM is raising exception During my experiments to reproduce issues around allocation profiling, I've noted that the VM is in an especially delicate state during exception raising, so let's just decline to sample in this situation. --- .../collectors_cpu_and_wall_time_worker.c | 10 ++++++++++ .../private_vm_api_access.c | 3 +++ .../private_vm_api_access.h | 2 ++ 3 files changed, 15 insertions(+) diff --git a/ext/datadog_profiling_native_extension/collectors_cpu_and_wall_time_worker.c b/ext/datadog_profiling_native_extension/collectors_cpu_and_wall_time_worker.c index e4e9b69473e..723e2d93b33 100644 --- a/ext/datadog_profiling_native_extension/collectors_cpu_and_wall_time_worker.c +++ b/ext/datadog_profiling_native_extension/collectors_cpu_and_wall_time_worker.c @@ -1171,6 +1171,16 @@ static void on_newobj_event(DDTRACE_UNUSED VALUE unused1, DDTRACE_UNUSED void *u return; } + // If Ruby is in the middle of raising an exception, we don't want to try to sample. This is because if we accidentally + // trigger an exception inside the profiler code, bad things will happen (specifically, Ruby will try to kill off the + // thread even though we may try to catch the exception). + // + // Note that "in the middle of raising an exception" means the exception itself has already been allocated. + // What's getting allocated now is probably the backtrace objects (@ivoanjo or at least that's what I've observed) + if (is_raised_flag_set(rb_thread_current())) { + return; + } + // Hot path: Dynamic sampling rate is usually enabled and the sampling decision is usually false if (RB_LIKELY(state->dynamic_sampling_rate_enabled && !discrete_dynamic_sampler_should_sample(&state->allocation_sampler))) { state->stats.allocation_skipped++; diff --git a/ext/datadog_profiling_native_extension/private_vm_api_access.c b/ext/datadog_profiling_native_extension/private_vm_api_access.c index 59e5c644882..f7c188861d7 100644 --- a/ext/datadog_profiling_native_extension/private_vm_api_access.c +++ b/ext/datadog_profiling_native_extension/private_vm_api_access.c @@ -800,3 +800,6 @@ static inline int ddtrace_imemo_type(VALUE imemo) { return current_thread; } #endif + +// Is the VM smack in the middle of raising an exception? +bool is_raised_flag_set(VALUE thread) { return thread_struct_from_object(thread)->ec->raised_flag > 0; } diff --git a/ext/datadog_profiling_native_extension/private_vm_api_access.h b/ext/datadog_profiling_native_extension/private_vm_api_access.h index c40992274cb..3e412f51ea5 100644 --- a/ext/datadog_profiling_native_extension/private_vm_api_access.h +++ b/ext/datadog_profiling_native_extension/private_vm_api_access.h @@ -68,3 +68,5 @@ const char *imemo_kind(VALUE imemo); #define ENFORCE_THREAD(value) \ { if (RB_UNLIKELY(!rb_typeddata_is_kind_of(value, RTYPEDDATA_TYPE(rb_thread_current())))) raise_unexpected_type(value, ADD_QUOTES(value), "Thread", __FILE__, __LINE__, __func__); } + +bool is_raised_flag_set(VALUE thread); From 31997bff2d41df72089d19a4d8aa8d4ecc530904 Mon Sep 17 00:00:00 2001 From: Ivo Anjo Date: Thu, 19 Dec 2024 14:51:46 +0000 Subject: [PATCH 081/161] Update tests with new signatures for test methods --- benchmarks/profiler_gc.rb | 6 +++--- benchmarks/profiler_sample_gvl.rb | 2 +- benchmarks/profiler_sample_loop_v2.rb | 2 +- benchmarks/profiler_sample_serialize.rb | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/benchmarks/profiler_gc.rb b/benchmarks/profiler_gc.rb index e96198cdfba..401af152d84 100644 --- a/benchmarks/profiler_gc.rb +++ b/benchmarks/profiler_gc.rb @@ -14,7 +14,7 @@ def create_profiler # We take a dummy sample so that the context for the main thread is created, as otherwise the GC profiling methods do # not create it (because we don't want to do memory allocations in the middle of GC) - Datadog::Profiling::Collectors::ThreadContext::Testing._native_sample(@collector, Thread.current) + Datadog::Profiling::Collectors::ThreadContext::Testing._native_sample(@collector, Thread.current, false) end def run_benchmark @@ -29,7 +29,7 @@ def run_benchmark x.report('profiler gc') do Datadog::Profiling::Collectors::ThreadContext::Testing._native_on_gc_start(@collector) Datadog::Profiling::Collectors::ThreadContext::Testing._native_on_gc_finish(@collector) - Datadog::Profiling::Collectors::ThreadContext::Testing._native_sample_after_gc(@collector, false) + Datadog::Profiling::Collectors::ThreadContext::Testing._native_sample_after_gc(@collector, false, false) end x.save! "#{File.basename(__FILE__)}-results.json" unless VALIDATE_BENCHMARK_MODE @@ -52,7 +52,7 @@ def run_benchmark estimated_gc_per_minute.times do Datadog::Profiling::Collectors::ThreadContext::Testing._native_on_gc_start(@collector) Datadog::Profiling::Collectors::ThreadContext::Testing._native_on_gc_finish(@collector) - Datadog::Profiling::Collectors::ThreadContext::Testing._native_sample_after_gc(@collector, false) + Datadog::Profiling::Collectors::ThreadContext::Testing._native_sample_after_gc(@collector, false, false) end @recorder.serialize diff --git a/benchmarks/profiler_sample_gvl.rb b/benchmarks/profiler_sample_gvl.rb index 76e8528f417..7688730b714 100644 --- a/benchmarks/profiler_sample_gvl.rb +++ b/benchmarks/profiler_sample_gvl.rb @@ -27,7 +27,7 @@ def initialize @target_thread = thread_with_very_deep_stack # Sample once to trigger thread context creation for all threads (including @target_thread) - Datadog::Profiling::Collectors::ThreadContext::Testing._native_sample(@collector, PROFILER_OVERHEAD_STACK_THREAD) + Datadog::Profiling::Collectors::ThreadContext::Testing._native_sample(@collector, PROFILER_OVERHEAD_STACK_THREAD, false) end def create_profiler diff --git a/benchmarks/profiler_sample_loop_v2.rb b/benchmarks/profiler_sample_loop_v2.rb index e007375cf6c..624f29bad25 100644 --- a/benchmarks/profiler_sample_loop_v2.rb +++ b/benchmarks/profiler_sample_loop_v2.rb @@ -37,7 +37,7 @@ def run_benchmark ) x.report("stack collector #{ENV['CONFIG']}") do - Datadog::Profiling::Collectors::ThreadContext::Testing._native_sample(@collector, PROFILER_OVERHEAD_STACK_THREAD) + Datadog::Profiling::Collectors::ThreadContext::Testing._native_sample(@collector, PROFILER_OVERHEAD_STACK_THREAD, false) end x.save! "#{File.basename(__FILE__)}-results.json" unless VALIDATE_BENCHMARK_MODE diff --git a/benchmarks/profiler_sample_serialize.rb b/benchmarks/profiler_sample_serialize.rb index 47ae1b6854a..b90997c42d5 100644 --- a/benchmarks/profiler_sample_serialize.rb +++ b/benchmarks/profiler_sample_serialize.rb @@ -35,7 +35,7 @@ def run_benchmark simulate_seconds = 60 (samples_per_second * simulate_seconds).times do - Datadog::Profiling::Collectors::ThreadContext::Testing._native_sample(@collector, PROFILER_OVERHEAD_STACK_THREAD) + Datadog::Profiling::Collectors::ThreadContext::Testing._native_sample(@collector, PROFILER_OVERHEAD_STACK_THREAD, false) end @recorder.serialize From 54c9d05d576f0a8bde9b35703101ac4644b1619e Mon Sep 17 00:00:00 2001 From: Ivo Anjo Date: Thu, 19 Dec 2024 14:56:37 +0000 Subject: [PATCH 082/161] Check if symbol is static before calling SYM2ID on it It occurs to me that if a symbol is dynamic, we were causing it to become a static symbol (e.g. making it never be able to be garbage collected). This can be very bad! And also, we know the symbol we're looking for must be a static symbol because if nothing else, our initialization caused it to become a static symbol. Thus, if we see a dynamic symbol, we can stop there, since by definition it won't be the symbol we're looking after. This is... really awkward to add a specific unit test for, so I've just relied on our existing test coverage to show that this has not affected the correctness of our otel code. --- .../collectors_thread_context.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/datadog_profiling_native_extension/collectors_thread_context.c b/ext/datadog_profiling_native_extension/collectors_thread_context.c index b8e7aedfefb..4afb23c5a9e 100644 --- a/ext/datadog_profiling_native_extension/collectors_thread_context.c +++ b/ext/datadog_profiling_native_extension/collectors_thread_context.c @@ -1750,7 +1750,7 @@ static void otel_without_ddtrace_trace_identifiers_for( VALUE root_span_type = rb_ivar_get(local_root_span.span, at_kind_id /* @kind */); // We filter out spans that don't have `kind: :server` - if (root_span_type == Qnil || !RB_TYPE_P(root_span_type, T_SYMBOL) || SYM2ID(root_span_type) != server_id) return; + if (root_span_type == Qnil || !RB_TYPE_P(root_span_type, T_SYMBOL) || !RB_STATIC_SYM_P(root_span_type) || SYM2ID(root_span_type) != server_id) return; VALUE trace_resource = rb_ivar_get(local_root_span.span, at_name_id /* @name */); if (!RB_TYPE_P(trace_resource, T_STRING)) return; From 7e493241465e0a6e1a817dc0be9b4e5502bb6a9a Mon Sep 17 00:00:00 2001 From: Ivo Anjo Date: Thu, 19 Dec 2024 17:20:49 +0000 Subject: [PATCH 083/161] Document that unsafe api calls checker is only for test code --- .../unsafe_api_calls_check.h | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/ext/datadog_profiling_native_extension/unsafe_api_calls_check.h b/ext/datadog_profiling_native_extension/unsafe_api_calls_check.h index 092a59f30b3..c6c8dc56cf5 100644 --- a/ext/datadog_profiling_native_extension/unsafe_api_calls_check.h +++ b/ext/datadog_profiling_native_extension/unsafe_api_calls_check.h @@ -21,5 +21,11 @@ // stop the Ruby VM before further damage happens (and hopefully giving us a stack trace clearly pointing to the culprit). void unsafe_api_calls_check_init(void); + +// IMPORTANT: This method **MUST** only be called from test code, as it causes an immediate hard-crash on the Ruby VM +// when it detects a potential issue, and that's not something we want for production apps. +// +// In the future we may introduce some kind of setting (off by default) to also allow this to be safely be used +// in production code if needed. void debug_enter_unsafe_context(void); void debug_leave_unsafe_context(void); From ba0aaf3fa952a93e65635e47ff62c025ba997a38 Mon Sep 17 00:00:00 2001 From: Oleg Pudeyev <156273877+p-datadog@users.noreply.github.com> Date: Thu, 19 Dec 2024 17:57:02 -0500 Subject: [PATCH 084/161] Properly indicate required steep dependency (#4238) --- gemfiles/jruby_9.2_activesupport.gemfile.lock | 4 ++-- gemfiles/jruby_9.2_aws.gemfile.lock | 4 ++-- gemfiles/jruby_9.2_contrib.gemfile.lock | 4 ++-- gemfiles/jruby_9.2_contrib_old.gemfile.lock | 4 ++-- gemfiles/jruby_9.2_core_old.gemfile.lock | 4 ++-- gemfiles/jruby_9.2_elasticsearch_7.gemfile.lock | 4 ++-- gemfiles/jruby_9.2_elasticsearch_8.gemfile.lock | 4 ++-- gemfiles/jruby_9.2_elasticsearch_latest.gemfile.lock | 4 ++-- gemfiles/jruby_9.2_graphql_2.0.gemfile.lock | 4 ++-- gemfiles/jruby_9.2_http.gemfile.lock | 4 ++-- gemfiles/jruby_9.2_opensearch_2.gemfile.lock | 4 ++-- gemfiles/jruby_9.2_opensearch_3.gemfile.lock | 4 ++-- gemfiles/jruby_9.2_opensearch_latest.gemfile.lock | 4 ++-- gemfiles/jruby_9.2_rack_1.gemfile.lock | 4 ++-- gemfiles/jruby_9.2_rack_2.gemfile.lock | 4 ++-- gemfiles/jruby_9.2_rack_3.gemfile.lock | 4 ++-- gemfiles/jruby_9.2_rack_latest.gemfile.lock | 4 ++-- gemfiles/jruby_9.2_rails5_mysql2.gemfile.lock | 4 ++-- gemfiles/jruby_9.2_rails5_postgres.gemfile.lock | 4 ++-- gemfiles/jruby_9.2_rails5_postgres_redis.gemfile.lock | 4 ++-- ...jruby_9.2_rails5_postgres_redis_activesupport.gemfile.lock | 4 ++-- gemfiles/jruby_9.2_rails5_postgres_sidekiq.gemfile.lock | 4 ++-- gemfiles/jruby_9.2_rails5_semantic_logger.gemfile.lock | 4 ++-- gemfiles/jruby_9.2_rails61_mysql2.gemfile.lock | 4 ++-- gemfiles/jruby_9.2_rails61_postgres.gemfile.lock | 4 ++-- gemfiles/jruby_9.2_rails61_postgres_redis.gemfile.lock | 4 ++-- gemfiles/jruby_9.2_rails61_postgres_sidekiq.gemfile.lock | 4 ++-- gemfiles/jruby_9.2_rails61_semantic_logger.gemfile.lock | 4 ++-- gemfiles/jruby_9.2_rails6_mysql2.gemfile.lock | 4 ++-- gemfiles/jruby_9.2_rails6_postgres.gemfile.lock | 4 ++-- gemfiles/jruby_9.2_rails6_postgres_redis.gemfile.lock | 4 ++-- ...jruby_9.2_rails6_postgres_redis_activesupport.gemfile.lock | 4 ++-- gemfiles/jruby_9.2_rails6_postgres_sidekiq.gemfile.lock | 4 ++-- gemfiles/jruby_9.2_rails6_semantic_logger.gemfile.lock | 4 ++-- gemfiles/jruby_9.2_redis_3.gemfile.lock | 4 ++-- gemfiles/jruby_9.2_redis_4.gemfile.lock | 4 ++-- gemfiles/jruby_9.2_redis_5.gemfile.lock | 4 ++-- gemfiles/jruby_9.2_relational_db.gemfile.lock | 4 ++-- gemfiles/jruby_9.2_resque2_redis3.gemfile.lock | 4 ++-- gemfiles/jruby_9.2_resque2_redis4.gemfile.lock | 4 ++-- gemfiles/jruby_9.2_sinatra_2.gemfile.lock | 4 ++-- gemfiles/jruby_9.2_stripe_10.gemfile.lock | 4 ++-- gemfiles/jruby_9.2_stripe_11.gemfile.lock | 4 ++-- gemfiles/jruby_9.2_stripe_12.gemfile.lock | 4 ++-- gemfiles/jruby_9.2_stripe_7.gemfile.lock | 4 ++-- gemfiles/jruby_9.2_stripe_8.gemfile.lock | 4 ++-- gemfiles/jruby_9.2_stripe_9.gemfile.lock | 4 ++-- gemfiles/jruby_9.2_stripe_latest.gemfile.lock | 4 ++-- gemfiles/jruby_9.2_stripe_min.gemfile.lock | 4 ++-- gemfiles/jruby_9.3_activesupport.gemfile.lock | 4 ++-- gemfiles/jruby_9.3_aws.gemfile.lock | 4 ++-- gemfiles/jruby_9.3_contrib.gemfile.lock | 4 ++-- gemfiles/jruby_9.3_contrib_old.gemfile.lock | 4 ++-- gemfiles/jruby_9.3_core_old.gemfile.lock | 4 ++-- gemfiles/jruby_9.3_elasticsearch_7.gemfile.lock | 4 ++-- gemfiles/jruby_9.3_elasticsearch_8.gemfile.lock | 4 ++-- gemfiles/jruby_9.3_elasticsearch_latest.gemfile.lock | 4 ++-- gemfiles/jruby_9.3_graphql_1.13.gemfile.lock | 4 ++-- gemfiles/jruby_9.3_graphql_2.0.gemfile.lock | 4 ++-- gemfiles/jruby_9.3_http.gemfile.lock | 4 ++-- gemfiles/jruby_9.3_opensearch_2.gemfile.lock | 4 ++-- gemfiles/jruby_9.3_opensearch_3.gemfile.lock | 4 ++-- gemfiles/jruby_9.3_opensearch_latest.gemfile.lock | 4 ++-- gemfiles/jruby_9.3_rack_1.gemfile.lock | 4 ++-- gemfiles/jruby_9.3_rack_2.gemfile.lock | 4 ++-- gemfiles/jruby_9.3_rack_3.gemfile.lock | 4 ++-- gemfiles/jruby_9.3_rack_latest.gemfile.lock | 4 ++-- gemfiles/jruby_9.3_rails5_mysql2.gemfile.lock | 4 ++-- gemfiles/jruby_9.3_rails5_postgres.gemfile.lock | 4 ++-- gemfiles/jruby_9.3_rails5_postgres_redis.gemfile.lock | 4 ++-- ...jruby_9.3_rails5_postgres_redis_activesupport.gemfile.lock | 4 ++-- gemfiles/jruby_9.3_rails5_postgres_sidekiq.gemfile.lock | 4 ++-- gemfiles/jruby_9.3_rails5_semantic_logger.gemfile.lock | 4 ++-- gemfiles/jruby_9.3_rails61_mysql2.gemfile.lock | 4 ++-- gemfiles/jruby_9.3_rails61_postgres.gemfile.lock | 4 ++-- gemfiles/jruby_9.3_rails61_postgres_redis.gemfile.lock | 4 ++-- gemfiles/jruby_9.3_rails61_postgres_sidekiq.gemfile.lock | 4 ++-- gemfiles/jruby_9.3_rails61_semantic_logger.gemfile.lock | 4 ++-- gemfiles/jruby_9.3_rails6_mysql2.gemfile.lock | 4 ++-- gemfiles/jruby_9.3_rails6_postgres.gemfile.lock | 4 ++-- gemfiles/jruby_9.3_rails6_postgres_redis.gemfile.lock | 4 ++-- ...jruby_9.3_rails6_postgres_redis_activesupport.gemfile.lock | 4 ++-- gemfiles/jruby_9.3_rails6_postgres_sidekiq.gemfile.lock | 4 ++-- gemfiles/jruby_9.3_rails6_semantic_logger.gemfile.lock | 4 ++-- gemfiles/jruby_9.3_redis_3.gemfile.lock | 4 ++-- gemfiles/jruby_9.3_redis_4.gemfile.lock | 4 ++-- gemfiles/jruby_9.3_redis_5.gemfile.lock | 4 ++-- gemfiles/jruby_9.3_relational_db.gemfile.lock | 4 ++-- gemfiles/jruby_9.3_resque2_redis3.gemfile.lock | 4 ++-- gemfiles/jruby_9.3_resque2_redis4.gemfile.lock | 4 ++-- gemfiles/jruby_9.3_sinatra_2.gemfile.lock | 4 ++-- gemfiles/jruby_9.3_sinatra_3.gemfile.lock | 4 ++-- gemfiles/jruby_9.3_stripe_10.gemfile.lock | 4 ++-- gemfiles/jruby_9.3_stripe_11.gemfile.lock | 4 ++-- gemfiles/jruby_9.3_stripe_12.gemfile.lock | 4 ++-- gemfiles/jruby_9.3_stripe_7.gemfile.lock | 4 ++-- gemfiles/jruby_9.3_stripe_8.gemfile.lock | 4 ++-- gemfiles/jruby_9.3_stripe_9.gemfile.lock | 4 ++-- gemfiles/jruby_9.3_stripe_latest.gemfile.lock | 4 ++-- gemfiles/jruby_9.3_stripe_min.gemfile.lock | 4 ++-- gemfiles/jruby_9.4_activesupport.gemfile.lock | 4 ++-- gemfiles/jruby_9.4_aws.gemfile.lock | 4 ++-- gemfiles/jruby_9.4_contrib.gemfile.lock | 4 ++-- gemfiles/jruby_9.4_contrib_old.gemfile.lock | 4 ++-- gemfiles/jruby_9.4_core_old.gemfile.lock | 4 ++-- gemfiles/jruby_9.4_elasticsearch_7.gemfile.lock | 4 ++-- gemfiles/jruby_9.4_elasticsearch_8.gemfile.lock | 4 ++-- gemfiles/jruby_9.4_elasticsearch_latest.gemfile.lock | 4 ++-- gemfiles/jruby_9.4_graphql_1.13.gemfile.lock | 4 ++-- gemfiles/jruby_9.4_graphql_2.0.gemfile.lock | 4 ++-- gemfiles/jruby_9.4_graphql_2.1.gemfile.lock | 4 ++-- gemfiles/jruby_9.4_graphql_2.2.gemfile.lock | 4 ++-- gemfiles/jruby_9.4_graphql_2.3.gemfile.lock | 4 ++-- gemfiles/jruby_9.4_http.gemfile.lock | 4 ++-- gemfiles/jruby_9.4_opensearch_2.gemfile.lock | 4 ++-- gemfiles/jruby_9.4_opensearch_3.gemfile.lock | 4 ++-- gemfiles/jruby_9.4_opensearch_latest.gemfile.lock | 4 ++-- gemfiles/jruby_9.4_rack_1.gemfile.lock | 4 ++-- gemfiles/jruby_9.4_rack_2.gemfile.lock | 4 ++-- gemfiles/jruby_9.4_rack_3.gemfile.lock | 4 ++-- gemfiles/jruby_9.4_rack_latest.gemfile.lock | 4 ++-- gemfiles/jruby_9.4_rails61_mysql2.gemfile.lock | 4 ++-- gemfiles/jruby_9.4_rails61_postgres.gemfile.lock | 4 ++-- gemfiles/jruby_9.4_rails61_postgres_redis.gemfile.lock | 4 ++-- gemfiles/jruby_9.4_rails61_postgres_sidekiq.gemfile.lock | 4 ++-- gemfiles/jruby_9.4_rails61_semantic_logger.gemfile.lock | 4 ++-- gemfiles/jruby_9.4_redis_3.gemfile.lock | 4 ++-- gemfiles/jruby_9.4_redis_4.gemfile.lock | 4 ++-- gemfiles/jruby_9.4_redis_5.gemfile.lock | 4 ++-- gemfiles/jruby_9.4_relational_db.gemfile.lock | 4 ++-- gemfiles/jruby_9.4_resque2_redis3.gemfile.lock | 4 ++-- gemfiles/jruby_9.4_resque2_redis4.gemfile.lock | 4 ++-- gemfiles/jruby_9.4_sinatra_2.gemfile.lock | 4 ++-- gemfiles/jruby_9.4_sinatra_3.gemfile.lock | 4 ++-- gemfiles/jruby_9.4_sinatra_4.gemfile.lock | 4 ++-- gemfiles/jruby_9.4_stripe_10.gemfile.lock | 4 ++-- gemfiles/jruby_9.4_stripe_11.gemfile.lock | 4 ++-- gemfiles/jruby_9.4_stripe_12.gemfile.lock | 4 ++-- gemfiles/jruby_9.4_stripe_7.gemfile.lock | 4 ++-- gemfiles/jruby_9.4_stripe_8.gemfile.lock | 4 ++-- gemfiles/jruby_9.4_stripe_9.gemfile.lock | 4 ++-- gemfiles/jruby_9.4_stripe_latest.gemfile.lock | 4 ++-- gemfiles/jruby_9.4_stripe_min.gemfile.lock | 4 ++-- gemfiles/ruby_2.5_activesupport.gemfile.lock | 4 ++-- gemfiles/ruby_2.5_aws.gemfile.lock | 4 ++-- gemfiles/ruby_2.5_contrib.gemfile.lock | 4 ++-- gemfiles/ruby_2.5_contrib_old.gemfile.lock | 4 ++-- gemfiles/ruby_2.5_core_old.gemfile.lock | 4 ++-- gemfiles/ruby_2.5_elasticsearch_7.gemfile.lock | 4 ++-- gemfiles/ruby_2.5_elasticsearch_8.gemfile.lock | 4 ++-- gemfiles/ruby_2.5_elasticsearch_latest.gemfile.lock | 4 ++-- gemfiles/ruby_2.5_graphql_2.0.gemfile.lock | 4 ++-- gemfiles/ruby_2.5_hanami_1.gemfile.lock | 4 ++-- gemfiles/ruby_2.5_http.gemfile.lock | 4 ++-- gemfiles/ruby_2.5_opensearch_2.gemfile.lock | 4 ++-- gemfiles/ruby_2.5_opensearch_3.gemfile.lock | 4 ++-- gemfiles/ruby_2.5_opensearch_latest.gemfile.lock | 4 ++-- gemfiles/ruby_2.5_rack_1.gemfile.lock | 4 ++-- gemfiles/ruby_2.5_rack_2.gemfile.lock | 4 ++-- gemfiles/ruby_2.5_rack_3.gemfile.lock | 4 ++-- gemfiles/ruby_2.5_rack_latest.gemfile.lock | 4 ++-- gemfiles/ruby_2.5_rails4_mysql2.gemfile.lock | 4 ++-- gemfiles/ruby_2.5_rails4_postgres.gemfile.lock | 4 ++-- gemfiles/ruby_2.5_rails4_postgres_redis.gemfile.lock | 4 ++-- gemfiles/ruby_2.5_rails4_postgres_sidekiq.gemfile.lock | 4 ++-- gemfiles/ruby_2.5_rails4_semantic_logger.gemfile.lock | 4 ++-- gemfiles/ruby_2.5_rails5_mysql2.gemfile.lock | 4 ++-- gemfiles/ruby_2.5_rails5_postgres.gemfile.lock | 4 ++-- gemfiles/ruby_2.5_rails5_postgres_redis.gemfile.lock | 4 ++-- .../ruby_2.5_rails5_postgres_redis_activesupport.gemfile.lock | 4 ++-- gemfiles/ruby_2.5_rails5_postgres_sidekiq.gemfile.lock | 4 ++-- gemfiles/ruby_2.5_rails5_semantic_logger.gemfile.lock | 4 ++-- gemfiles/ruby_2.5_rails61_mysql2.gemfile.lock | 4 ++-- gemfiles/ruby_2.5_rails61_postgres.gemfile.lock | 4 ++-- gemfiles/ruby_2.5_rails61_postgres_redis.gemfile.lock | 4 ++-- gemfiles/ruby_2.5_rails61_postgres_sidekiq.gemfile.lock | 4 ++-- gemfiles/ruby_2.5_rails61_semantic_logger.gemfile.lock | 4 ++-- gemfiles/ruby_2.5_rails6_mysql2.gemfile.lock | 4 ++-- gemfiles/ruby_2.5_rails6_postgres.gemfile.lock | 4 ++-- gemfiles/ruby_2.5_rails6_postgres_redis.gemfile.lock | 4 ++-- .../ruby_2.5_rails6_postgres_redis_activesupport.gemfile.lock | 4 ++-- gemfiles/ruby_2.5_rails6_postgres_sidekiq.gemfile.lock | 4 ++-- gemfiles/ruby_2.5_rails6_semantic_logger.gemfile.lock | 4 ++-- gemfiles/ruby_2.5_redis_3.gemfile.lock | 4 ++-- gemfiles/ruby_2.5_redis_4.gemfile.lock | 4 ++-- gemfiles/ruby_2.5_redis_5.gemfile.lock | 4 ++-- gemfiles/ruby_2.5_relational_db.gemfile.lock | 4 ++-- gemfiles/ruby_2.5_resque2_redis3.gemfile.lock | 4 ++-- gemfiles/ruby_2.5_resque2_redis4.gemfile.lock | 4 ++-- gemfiles/ruby_2.5_sinatra_2.gemfile.lock | 4 ++-- gemfiles/ruby_2.5_stripe_10.gemfile.lock | 4 ++-- gemfiles/ruby_2.5_stripe_11.gemfile.lock | 4 ++-- gemfiles/ruby_2.5_stripe_12.gemfile.lock | 4 ++-- gemfiles/ruby_2.5_stripe_7.gemfile.lock | 4 ++-- gemfiles/ruby_2.5_stripe_8.gemfile.lock | 4 ++-- gemfiles/ruby_2.5_stripe_9.gemfile.lock | 4 ++-- gemfiles/ruby_2.5_stripe_latest.gemfile.lock | 4 ++-- gemfiles/ruby_2.5_stripe_min.gemfile.lock | 4 ++-- gemfiles/ruby_2.6_activesupport.gemfile.lock | 4 ++-- gemfiles/ruby_2.6_aws.gemfile.lock | 4 ++-- gemfiles/ruby_2.6_contrib.gemfile.lock | 4 ++-- gemfiles/ruby_2.6_contrib_old.gemfile.lock | 4 ++-- gemfiles/ruby_2.6_core_old.gemfile.lock | 4 ++-- gemfiles/ruby_2.6_elasticsearch_7.gemfile.lock | 4 ++-- gemfiles/ruby_2.6_elasticsearch_8.gemfile.lock | 4 ++-- gemfiles/ruby_2.6_elasticsearch_latest.gemfile.lock | 4 ++-- gemfiles/ruby_2.6_graphql_1.13.gemfile.lock | 4 ++-- gemfiles/ruby_2.6_graphql_2.0.gemfile.lock | 4 ++-- gemfiles/ruby_2.6_hanami_1.gemfile.lock | 4 ++-- gemfiles/ruby_2.6_http.gemfile.lock | 4 ++-- gemfiles/ruby_2.6_opensearch_2.gemfile.lock | 4 ++-- gemfiles/ruby_2.6_opensearch_3.gemfile.lock | 4 ++-- gemfiles/ruby_2.6_opensearch_latest.gemfile.lock | 4 ++-- gemfiles/ruby_2.6_opentelemetry.gemfile.lock | 4 ++-- gemfiles/ruby_2.6_opentelemetry_otlp.gemfile.lock | 4 ++-- gemfiles/ruby_2.6_rack_1.gemfile.lock | 4 ++-- gemfiles/ruby_2.6_rack_2.gemfile.lock | 4 ++-- gemfiles/ruby_2.6_rack_3.gemfile.lock | 4 ++-- gemfiles/ruby_2.6_rack_latest.gemfile.lock | 4 ++-- gemfiles/ruby_2.6_rails5_mysql2.gemfile.lock | 4 ++-- gemfiles/ruby_2.6_rails5_postgres.gemfile.lock | 4 ++-- gemfiles/ruby_2.6_rails5_postgres_redis.gemfile.lock | 4 ++-- .../ruby_2.6_rails5_postgres_redis_activesupport.gemfile.lock | 4 ++-- gemfiles/ruby_2.6_rails5_postgres_sidekiq.gemfile.lock | 4 ++-- gemfiles/ruby_2.6_rails5_semantic_logger.gemfile.lock | 4 ++-- gemfiles/ruby_2.6_rails61_mysql2.gemfile.lock | 4 ++-- gemfiles/ruby_2.6_rails61_postgres.gemfile.lock | 4 ++-- gemfiles/ruby_2.6_rails61_postgres_redis.gemfile.lock | 4 ++-- gemfiles/ruby_2.6_rails61_postgres_sidekiq.gemfile.lock | 4 ++-- gemfiles/ruby_2.6_rails61_semantic_logger.gemfile.lock | 4 ++-- gemfiles/ruby_2.6_rails6_mysql2.gemfile.lock | 4 ++-- gemfiles/ruby_2.6_rails6_postgres.gemfile.lock | 4 ++-- gemfiles/ruby_2.6_rails6_postgres_redis.gemfile.lock | 4 ++-- .../ruby_2.6_rails6_postgres_redis_activesupport.gemfile.lock | 4 ++-- gemfiles/ruby_2.6_rails6_postgres_sidekiq.gemfile.lock | 4 ++-- gemfiles/ruby_2.6_rails6_semantic_logger.gemfile.lock | 4 ++-- gemfiles/ruby_2.6_redis_3.gemfile.lock | 4 ++-- gemfiles/ruby_2.6_redis_4.gemfile.lock | 4 ++-- gemfiles/ruby_2.6_redis_5.gemfile.lock | 4 ++-- gemfiles/ruby_2.6_relational_db.gemfile.lock | 4 ++-- gemfiles/ruby_2.6_resque2_redis3.gemfile.lock | 4 ++-- gemfiles/ruby_2.6_resque2_redis4.gemfile.lock | 4 ++-- gemfiles/ruby_2.6_sinatra_2.gemfile.lock | 4 ++-- gemfiles/ruby_2.6_sinatra_3.gemfile.lock | 4 ++-- gemfiles/ruby_2.6_stripe_10.gemfile.lock | 4 ++-- gemfiles/ruby_2.6_stripe_11.gemfile.lock | 4 ++-- gemfiles/ruby_2.6_stripe_12.gemfile.lock | 4 ++-- gemfiles/ruby_2.6_stripe_7.gemfile.lock | 4 ++-- gemfiles/ruby_2.6_stripe_8.gemfile.lock | 4 ++-- gemfiles/ruby_2.6_stripe_9.gemfile.lock | 4 ++-- gemfiles/ruby_2.6_stripe_latest.gemfile.lock | 4 ++-- gemfiles/ruby_2.6_stripe_min.gemfile.lock | 4 ++-- gemfiles/ruby_2.7_activesupport.gemfile.lock | 4 ++-- gemfiles/ruby_2.7_aws.gemfile.lock | 4 ++-- gemfiles/ruby_2.7_contrib.gemfile.lock | 4 ++-- gemfiles/ruby_2.7_contrib_old.gemfile.lock | 4 ++-- gemfiles/ruby_2.7_core_old.gemfile.lock | 4 ++-- gemfiles/ruby_2.7_elasticsearch_7.gemfile.lock | 4 ++-- gemfiles/ruby_2.7_elasticsearch_8.gemfile.lock | 4 ++-- gemfiles/ruby_2.7_elasticsearch_latest.gemfile.lock | 4 ++-- gemfiles/ruby_2.7_graphql_1.13.gemfile.lock | 4 ++-- gemfiles/ruby_2.7_graphql_2.0.gemfile.lock | 4 ++-- gemfiles/ruby_2.7_graphql_2.1.gemfile.lock | 4 ++-- gemfiles/ruby_2.7_graphql_2.2.gemfile.lock | 4 ++-- gemfiles/ruby_2.7_graphql_2.3.gemfile.lock | 4 ++-- gemfiles/ruby_2.7_hanami_1.gemfile.lock | 4 ++-- gemfiles/ruby_2.7_http.gemfile.lock | 4 ++-- gemfiles/ruby_2.7_opensearch_2.gemfile.lock | 4 ++-- gemfiles/ruby_2.7_opensearch_3.gemfile.lock | 4 ++-- gemfiles/ruby_2.7_opensearch_latest.gemfile.lock | 4 ++-- gemfiles/ruby_2.7_opentelemetry.gemfile.lock | 4 ++-- gemfiles/ruby_2.7_opentelemetry_otlp.gemfile.lock | 4 ++-- gemfiles/ruby_2.7_rack_1.gemfile.lock | 4 ++-- gemfiles/ruby_2.7_rack_2.gemfile.lock | 4 ++-- gemfiles/ruby_2.7_rack_3.gemfile.lock | 4 ++-- gemfiles/ruby_2.7_rack_latest.gemfile.lock | 4 ++-- gemfiles/ruby_2.7_rails5_mysql2.gemfile.lock | 4 ++-- gemfiles/ruby_2.7_rails5_postgres.gemfile.lock | 4 ++-- gemfiles/ruby_2.7_rails5_postgres_redis.gemfile.lock | 4 ++-- .../ruby_2.7_rails5_postgres_redis_activesupport.gemfile.lock | 4 ++-- gemfiles/ruby_2.7_rails5_postgres_sidekiq.gemfile.lock | 4 ++-- gemfiles/ruby_2.7_rails5_semantic_logger.gemfile.lock | 4 ++-- gemfiles/ruby_2.7_rails61_mysql2.gemfile.lock | 4 ++-- gemfiles/ruby_2.7_rails61_postgres.gemfile.lock | 4 ++-- gemfiles/ruby_2.7_rails61_postgres_redis.gemfile.lock | 4 ++-- gemfiles/ruby_2.7_rails61_postgres_sidekiq.gemfile.lock | 4 ++-- gemfiles/ruby_2.7_rails61_semantic_logger.gemfile.lock | 4 ++-- gemfiles/ruby_2.7_rails6_mysql2.gemfile.lock | 4 ++-- gemfiles/ruby_2.7_rails6_postgres.gemfile.lock | 4 ++-- gemfiles/ruby_2.7_rails6_postgres_redis.gemfile.lock | 4 ++-- .../ruby_2.7_rails6_postgres_redis_activesupport.gemfile.lock | 4 ++-- gemfiles/ruby_2.7_rails6_postgres_sidekiq.gemfile.lock | 4 ++-- gemfiles/ruby_2.7_rails6_semantic_logger.gemfile.lock | 4 ++-- gemfiles/ruby_2.7_redis_3.gemfile.lock | 4 ++-- gemfiles/ruby_2.7_redis_4.gemfile.lock | 4 ++-- gemfiles/ruby_2.7_redis_5.gemfile.lock | 4 ++-- gemfiles/ruby_2.7_relational_db.gemfile.lock | 4 ++-- gemfiles/ruby_2.7_resque2_redis3.gemfile.lock | 4 ++-- gemfiles/ruby_2.7_resque2_redis4.gemfile.lock | 4 ++-- gemfiles/ruby_2.7_sinatra_2.gemfile.lock | 4 ++-- gemfiles/ruby_2.7_sinatra_3.gemfile.lock | 4 ++-- gemfiles/ruby_2.7_stripe_10.gemfile.lock | 4 ++-- gemfiles/ruby_2.7_stripe_11.gemfile.lock | 4 ++-- gemfiles/ruby_2.7_stripe_12.gemfile.lock | 4 ++-- gemfiles/ruby_2.7_stripe_7.gemfile.lock | 4 ++-- gemfiles/ruby_2.7_stripe_8.gemfile.lock | 4 ++-- gemfiles/ruby_2.7_stripe_9.gemfile.lock | 4 ++-- gemfiles/ruby_2.7_stripe_latest.gemfile.lock | 4 ++-- gemfiles/ruby_2.7_stripe_min.gemfile.lock | 4 ++-- gemfiles/ruby_3.0_activesupport.gemfile.lock | 4 ++-- gemfiles/ruby_3.0_aws.gemfile.lock | 4 ++-- gemfiles/ruby_3.0_contrib.gemfile.lock | 4 ++-- gemfiles/ruby_3.0_contrib_old.gemfile.lock | 4 ++-- gemfiles/ruby_3.0_core_old.gemfile.lock | 4 ++-- gemfiles/ruby_3.0_elasticsearch_7.gemfile.lock | 4 ++-- gemfiles/ruby_3.0_elasticsearch_8.gemfile.lock | 4 ++-- gemfiles/ruby_3.0_elasticsearch_latest.gemfile.lock | 4 ++-- gemfiles/ruby_3.0_graphql_1.13.gemfile.lock | 4 ++-- gemfiles/ruby_3.0_graphql_2.0.gemfile.lock | 4 ++-- gemfiles/ruby_3.0_graphql_2.1.gemfile.lock | 4 ++-- gemfiles/ruby_3.0_graphql_2.2.gemfile.lock | 4 ++-- gemfiles/ruby_3.0_graphql_2.3.gemfile.lock | 4 ++-- gemfiles/ruby_3.0_http.gemfile.lock | 4 ++-- gemfiles/ruby_3.0_opensearch_2.gemfile.lock | 4 ++-- gemfiles/ruby_3.0_opensearch_3.gemfile.lock | 4 ++-- gemfiles/ruby_3.0_opensearch_latest.gemfile.lock | 4 ++-- gemfiles/ruby_3.0_opentelemetry.gemfile.lock | 4 ++-- gemfiles/ruby_3.0_opentelemetry_otlp.gemfile.lock | 4 ++-- gemfiles/ruby_3.0_rack_1.gemfile.lock | 4 ++-- gemfiles/ruby_3.0_rack_2.gemfile.lock | 4 ++-- gemfiles/ruby_3.0_rack_3.gemfile.lock | 4 ++-- gemfiles/ruby_3.0_rack_latest.gemfile.lock | 4 ++-- gemfiles/ruby_3.0_rails61_mysql2.gemfile.lock | 4 ++-- gemfiles/ruby_3.0_rails61_postgres.gemfile.lock | 4 ++-- gemfiles/ruby_3.0_rails61_postgres_redis.gemfile.lock | 4 ++-- gemfiles/ruby_3.0_rails61_postgres_sidekiq.gemfile.lock | 4 ++-- gemfiles/ruby_3.0_rails61_semantic_logger.gemfile.lock | 4 ++-- gemfiles/ruby_3.0_rails61_trilogy.gemfile.lock | 4 ++-- gemfiles/ruby_3.0_rails7.gemfile.lock | 4 ++-- gemfiles/ruby_3.0_rails71.gemfile.lock | 4 ++-- gemfiles/ruby_3.0_redis_3.gemfile.lock | 4 ++-- gemfiles/ruby_3.0_redis_4.gemfile.lock | 4 ++-- gemfiles/ruby_3.0_redis_5.gemfile.lock | 4 ++-- gemfiles/ruby_3.0_relational_db.gemfile.lock | 4 ++-- gemfiles/ruby_3.0_resque2_redis3.gemfile.lock | 4 ++-- gemfiles/ruby_3.0_resque2_redis4.gemfile.lock | 4 ++-- gemfiles/ruby_3.0_sinatra_2.gemfile.lock | 4 ++-- gemfiles/ruby_3.0_sinatra_3.gemfile.lock | 4 ++-- gemfiles/ruby_3.0_sinatra_4.gemfile.lock | 4 ++-- gemfiles/ruby_3.0_stripe_10.gemfile.lock | 4 ++-- gemfiles/ruby_3.0_stripe_11.gemfile.lock | 4 ++-- gemfiles/ruby_3.0_stripe_12.gemfile.lock | 4 ++-- gemfiles/ruby_3.0_stripe_7.gemfile.lock | 4 ++-- gemfiles/ruby_3.0_stripe_8.gemfile.lock | 4 ++-- gemfiles/ruby_3.0_stripe_9.gemfile.lock | 4 ++-- gemfiles/ruby_3.0_stripe_latest.gemfile.lock | 4 ++-- gemfiles/ruby_3.0_stripe_min.gemfile.lock | 4 ++-- gemfiles/ruby_3.1_activesupport.gemfile.lock | 4 ++-- gemfiles/ruby_3.1_aws.gemfile.lock | 4 ++-- gemfiles/ruby_3.1_contrib.gemfile.lock | 4 ++-- gemfiles/ruby_3.1_contrib_old.gemfile.lock | 4 ++-- gemfiles/ruby_3.1_core_old.gemfile.lock | 4 ++-- gemfiles/ruby_3.1_elasticsearch_7.gemfile.lock | 4 ++-- gemfiles/ruby_3.1_elasticsearch_8.gemfile.lock | 4 ++-- gemfiles/ruby_3.1_elasticsearch_latest.gemfile.lock | 4 ++-- gemfiles/ruby_3.1_graphql_1.13.gemfile.lock | 4 ++-- gemfiles/ruby_3.1_graphql_2.0.gemfile.lock | 4 ++-- gemfiles/ruby_3.1_graphql_2.1.gemfile.lock | 4 ++-- gemfiles/ruby_3.1_graphql_2.2.gemfile.lock | 4 ++-- gemfiles/ruby_3.1_graphql_2.3.gemfile.lock | 4 ++-- gemfiles/ruby_3.1_http.gemfile.lock | 4 ++-- gemfiles/ruby_3.1_opensearch_2.gemfile.lock | 4 ++-- gemfiles/ruby_3.1_opensearch_3.gemfile.lock | 4 ++-- gemfiles/ruby_3.1_opensearch_latest.gemfile.lock | 4 ++-- gemfiles/ruby_3.1_opentelemetry.gemfile.lock | 4 ++-- gemfiles/ruby_3.1_opentelemetry_otlp.gemfile.lock | 4 ++-- gemfiles/ruby_3.1_rack_1.gemfile.lock | 4 ++-- gemfiles/ruby_3.1_rack_2.gemfile.lock | 4 ++-- gemfiles/ruby_3.1_rack_3.gemfile.lock | 4 ++-- gemfiles/ruby_3.1_rack_latest.gemfile.lock | 4 ++-- gemfiles/ruby_3.1_rails61_mysql2.gemfile.lock | 4 ++-- gemfiles/ruby_3.1_rails61_postgres.gemfile.lock | 4 ++-- gemfiles/ruby_3.1_rails61_postgres_redis.gemfile.lock | 4 ++-- gemfiles/ruby_3.1_rails61_postgres_sidekiq.gemfile.lock | 4 ++-- gemfiles/ruby_3.1_rails61_semantic_logger.gemfile.lock | 4 ++-- gemfiles/ruby_3.1_rails61_trilogy.gemfile.lock | 4 ++-- gemfiles/ruby_3.1_rails7.gemfile.lock | 4 ++-- gemfiles/ruby_3.1_rails71.gemfile.lock | 4 ++-- gemfiles/ruby_3.1_redis_3.gemfile.lock | 4 ++-- gemfiles/ruby_3.1_redis_4.gemfile.lock | 4 ++-- gemfiles/ruby_3.1_redis_5.gemfile.lock | 4 ++-- gemfiles/ruby_3.1_relational_db.gemfile.lock | 4 ++-- gemfiles/ruby_3.1_resque2_redis3.gemfile.lock | 4 ++-- gemfiles/ruby_3.1_resque2_redis4.gemfile.lock | 4 ++-- gemfiles/ruby_3.1_sinatra_2.gemfile.lock | 4 ++-- gemfiles/ruby_3.1_sinatra_3.gemfile.lock | 4 ++-- gemfiles/ruby_3.1_sinatra_4.gemfile.lock | 4 ++-- gemfiles/ruby_3.1_stripe_10.gemfile.lock | 4 ++-- gemfiles/ruby_3.1_stripe_11.gemfile.lock | 4 ++-- gemfiles/ruby_3.1_stripe_12.gemfile.lock | 4 ++-- gemfiles/ruby_3.1_stripe_7.gemfile.lock | 4 ++-- gemfiles/ruby_3.1_stripe_8.gemfile.lock | 4 ++-- gemfiles/ruby_3.1_stripe_9.gemfile.lock | 4 ++-- gemfiles/ruby_3.1_stripe_latest.gemfile.lock | 4 ++-- gemfiles/ruby_3.1_stripe_min.gemfile.lock | 4 ++-- gemfiles/ruby_3.2_activesupport.gemfile.lock | 4 ++-- gemfiles/ruby_3.2_aws.gemfile.lock | 4 ++-- gemfiles/ruby_3.2_contrib.gemfile.lock | 4 ++-- gemfiles/ruby_3.2_contrib_old.gemfile.lock | 4 ++-- gemfiles/ruby_3.2_core_old.gemfile.lock | 4 ++-- gemfiles/ruby_3.2_elasticsearch_7.gemfile.lock | 4 ++-- gemfiles/ruby_3.2_elasticsearch_8.gemfile.lock | 4 ++-- gemfiles/ruby_3.2_elasticsearch_latest.gemfile.lock | 4 ++-- gemfiles/ruby_3.2_graphql_1.13.gemfile.lock | 4 ++-- gemfiles/ruby_3.2_graphql_2.0.gemfile.lock | 4 ++-- gemfiles/ruby_3.2_graphql_2.1.gemfile.lock | 4 ++-- gemfiles/ruby_3.2_graphql_2.2.gemfile.lock | 4 ++-- gemfiles/ruby_3.2_graphql_2.3.gemfile.lock | 4 ++-- gemfiles/ruby_3.2_http.gemfile.lock | 4 ++-- gemfiles/ruby_3.2_opensearch_2.gemfile.lock | 4 ++-- gemfiles/ruby_3.2_opensearch_3.gemfile.lock | 4 ++-- gemfiles/ruby_3.2_opensearch_latest.gemfile.lock | 4 ++-- gemfiles/ruby_3.2_opentelemetry.gemfile.lock | 4 ++-- gemfiles/ruby_3.2_opentelemetry_otlp.gemfile.lock | 4 ++-- gemfiles/ruby_3.2_rack_1.gemfile.lock | 4 ++-- gemfiles/ruby_3.2_rack_2.gemfile.lock | 4 ++-- gemfiles/ruby_3.2_rack_3.gemfile.lock | 4 ++-- gemfiles/ruby_3.2_rack_latest.gemfile.lock | 4 ++-- gemfiles/ruby_3.2_rails61_mysql2.gemfile.lock | 4 ++-- gemfiles/ruby_3.2_rails61_postgres.gemfile.lock | 4 ++-- gemfiles/ruby_3.2_rails61_postgres_redis.gemfile.lock | 4 ++-- gemfiles/ruby_3.2_rails61_postgres_sidekiq.gemfile.lock | 4 ++-- gemfiles/ruby_3.2_rails61_semantic_logger.gemfile.lock | 4 ++-- gemfiles/ruby_3.2_rails61_trilogy.gemfile.lock | 4 ++-- gemfiles/ruby_3.2_rails7.gemfile.lock | 4 ++-- gemfiles/ruby_3.2_rails71.gemfile.lock | 4 ++-- gemfiles/ruby_3.2_redis_3.gemfile.lock | 4 ++-- gemfiles/ruby_3.2_redis_4.gemfile.lock | 4 ++-- gemfiles/ruby_3.2_redis_5.gemfile.lock | 4 ++-- gemfiles/ruby_3.2_relational_db.gemfile.lock | 4 ++-- gemfiles/ruby_3.2_resque2_redis3.gemfile.lock | 4 ++-- gemfiles/ruby_3.2_resque2_redis4.gemfile.lock | 4 ++-- gemfiles/ruby_3.2_sinatra_2.gemfile.lock | 4 ++-- gemfiles/ruby_3.2_sinatra_3.gemfile.lock | 4 ++-- gemfiles/ruby_3.2_sinatra_4.gemfile.lock | 4 ++-- gemfiles/ruby_3.2_stripe_10.gemfile.lock | 4 ++-- gemfiles/ruby_3.2_stripe_11.gemfile.lock | 4 ++-- gemfiles/ruby_3.2_stripe_12.gemfile.lock | 4 ++-- gemfiles/ruby_3.2_stripe_7.gemfile.lock | 4 ++-- gemfiles/ruby_3.2_stripe_8.gemfile.lock | 4 ++-- gemfiles/ruby_3.2_stripe_9.gemfile.lock | 4 ++-- gemfiles/ruby_3.2_stripe_latest.gemfile.lock | 4 ++-- gemfiles/ruby_3.2_stripe_min.gemfile.lock | 4 ++-- gemfiles/ruby_3.3_activesupport.gemfile.lock | 4 ++-- gemfiles/ruby_3.3_aws.gemfile.lock | 4 ++-- gemfiles/ruby_3.3_contrib.gemfile.lock | 4 ++-- gemfiles/ruby_3.3_contrib_old.gemfile.lock | 4 ++-- gemfiles/ruby_3.3_core_old.gemfile.lock | 4 ++-- gemfiles/ruby_3.3_elasticsearch_7.gemfile.lock | 4 ++-- gemfiles/ruby_3.3_elasticsearch_8.gemfile.lock | 4 ++-- gemfiles/ruby_3.3_elasticsearch_latest.gemfile.lock | 4 ++-- gemfiles/ruby_3.3_graphql_1.13.gemfile.lock | 4 ++-- gemfiles/ruby_3.3_graphql_2.0.gemfile.lock | 4 ++-- gemfiles/ruby_3.3_graphql_2.1.gemfile.lock | 4 ++-- gemfiles/ruby_3.3_graphql_2.2.gemfile.lock | 4 ++-- gemfiles/ruby_3.3_graphql_2.3.gemfile.lock | 4 ++-- gemfiles/ruby_3.3_http.gemfile.lock | 4 ++-- gemfiles/ruby_3.3_opensearch_2.gemfile.lock | 4 ++-- gemfiles/ruby_3.3_opensearch_3.gemfile.lock | 4 ++-- gemfiles/ruby_3.3_opensearch_latest.gemfile.lock | 4 ++-- gemfiles/ruby_3.3_opentelemetry.gemfile.lock | 4 ++-- gemfiles/ruby_3.3_opentelemetry_otlp.gemfile.lock | 4 ++-- gemfiles/ruby_3.3_rack_2.gemfile.lock | 4 ++-- gemfiles/ruby_3.3_rack_3.gemfile.lock | 4 ++-- gemfiles/ruby_3.3_rack_latest.gemfile.lock | 4 ++-- gemfiles/ruby_3.3_rails61_mysql2.gemfile.lock | 4 ++-- gemfiles/ruby_3.3_rails61_postgres.gemfile.lock | 4 ++-- gemfiles/ruby_3.3_rails61_postgres_redis.gemfile.lock | 4 ++-- gemfiles/ruby_3.3_rails61_postgres_sidekiq.gemfile.lock | 4 ++-- gemfiles/ruby_3.3_rails61_semantic_logger.gemfile.lock | 4 ++-- gemfiles/ruby_3.3_rails61_trilogy.gemfile.lock | 4 ++-- gemfiles/ruby_3.3_rails7.gemfile.lock | 4 ++-- gemfiles/ruby_3.3_rails71.gemfile.lock | 4 ++-- gemfiles/ruby_3.3_redis_3.gemfile.lock | 4 ++-- gemfiles/ruby_3.3_redis_4.gemfile.lock | 4 ++-- gemfiles/ruby_3.3_redis_5.gemfile.lock | 4 ++-- gemfiles/ruby_3.3_relational_db.gemfile.lock | 4 ++-- gemfiles/ruby_3.3_resque2_redis3.gemfile.lock | 4 ++-- gemfiles/ruby_3.3_resque2_redis4.gemfile.lock | 4 ++-- gemfiles/ruby_3.3_sinatra_2.gemfile.lock | 4 ++-- gemfiles/ruby_3.3_sinatra_3.gemfile.lock | 4 ++-- gemfiles/ruby_3.3_sinatra_4.gemfile.lock | 4 ++-- gemfiles/ruby_3.3_stripe_10.gemfile.lock | 4 ++-- gemfiles/ruby_3.3_stripe_11.gemfile.lock | 4 ++-- gemfiles/ruby_3.3_stripe_12.gemfile.lock | 4 ++-- gemfiles/ruby_3.3_stripe_7.gemfile.lock | 4 ++-- gemfiles/ruby_3.3_stripe_8.gemfile.lock | 4 ++-- gemfiles/ruby_3.3_stripe_9.gemfile.lock | 4 ++-- gemfiles/ruby_3.3_stripe_latest.gemfile.lock | 4 ++-- gemfiles/ruby_3.3_stripe_min.gemfile.lock | 4 ++-- gemfiles/ruby_3.4_activesupport.gemfile.lock | 4 ++-- gemfiles/ruby_3.4_aws.gemfile.lock | 4 ++-- gemfiles/ruby_3.4_contrib.gemfile.lock | 4 ++-- gemfiles/ruby_3.4_contrib_old.gemfile.lock | 4 ++-- gemfiles/ruby_3.4_core_old.gemfile.lock | 4 ++-- gemfiles/ruby_3.4_elasticsearch_7.gemfile.lock | 4 ++-- gemfiles/ruby_3.4_elasticsearch_8.gemfile.lock | 4 ++-- gemfiles/ruby_3.4_elasticsearch_latest.gemfile.lock | 4 ++-- gemfiles/ruby_3.4_graphql_1.13.gemfile.lock | 4 ++-- gemfiles/ruby_3.4_graphql_2.0.gemfile.lock | 4 ++-- gemfiles/ruby_3.4_graphql_2.1.gemfile.lock | 4 ++-- gemfiles/ruby_3.4_graphql_2.2.gemfile.lock | 4 ++-- gemfiles/ruby_3.4_graphql_2.3.gemfile.lock | 4 ++-- gemfiles/ruby_3.4_http.gemfile.lock | 4 ++-- gemfiles/ruby_3.4_opensearch_2.gemfile.lock | 4 ++-- gemfiles/ruby_3.4_opensearch_3.gemfile.lock | 4 ++-- gemfiles/ruby_3.4_opensearch_latest.gemfile.lock | 4 ++-- gemfiles/ruby_3.4_opentelemetry.gemfile.lock | 4 ++-- gemfiles/ruby_3.4_opentelemetry_otlp.gemfile.lock | 4 ++-- gemfiles/ruby_3.4_rack_2.gemfile.lock | 4 ++-- gemfiles/ruby_3.4_rack_3.gemfile.lock | 4 ++-- gemfiles/ruby_3.4_rack_latest.gemfile.lock | 4 ++-- gemfiles/ruby_3.4_rails61_mysql2.gemfile.lock | 4 ++-- gemfiles/ruby_3.4_rails61_postgres.gemfile.lock | 4 ++-- gemfiles/ruby_3.4_rails61_postgres_redis.gemfile.lock | 4 ++-- gemfiles/ruby_3.4_rails61_postgres_sidekiq.gemfile.lock | 4 ++-- gemfiles/ruby_3.4_rails61_semantic_logger.gemfile.lock | 4 ++-- gemfiles/ruby_3.4_rails61_trilogy.gemfile.lock | 4 ++-- gemfiles/ruby_3.4_rails7.gemfile.lock | 4 ++-- gemfiles/ruby_3.4_rails71.gemfile.lock | 4 ++-- gemfiles/ruby_3.4_redis_3.gemfile.lock | 4 ++-- gemfiles/ruby_3.4_redis_4.gemfile.lock | 4 ++-- gemfiles/ruby_3.4_redis_5.gemfile.lock | 4 ++-- gemfiles/ruby_3.4_relational_db.gemfile.lock | 4 ++-- gemfiles/ruby_3.4_resque2_redis3.gemfile.lock | 4 ++-- gemfiles/ruby_3.4_resque2_redis4.gemfile.lock | 4 ++-- gemfiles/ruby_3.4_sinatra_2.gemfile.lock | 4 ++-- gemfiles/ruby_3.4_sinatra_3.gemfile.lock | 4 ++-- gemfiles/ruby_3.4_sinatra_4.gemfile.lock | 4 ++-- gemfiles/ruby_3.4_stripe_10.gemfile.lock | 4 ++-- gemfiles/ruby_3.4_stripe_11.gemfile.lock | 4 ++-- gemfiles/ruby_3.4_stripe_12.gemfile.lock | 4 ++-- gemfiles/ruby_3.4_stripe_7.gemfile.lock | 4 ++-- gemfiles/ruby_3.4_stripe_8.gemfile.lock | 4 ++-- gemfiles/ruby_3.4_stripe_9.gemfile.lock | 4 ++-- gemfiles/ruby_3.4_stripe_latest.gemfile.lock | 4 ++-- gemfiles/ruby_3.4_stripe_min.gemfile.lock | 4 ++-- ruby-3.0.gemfile | 2 -- ruby-3.1.gemfile | 4 ++-- ruby-3.2.gemfile | 4 ++-- ruby-3.3.gemfile | 4 ++-- ruby-3.4.gemfile | 4 ++-- 552 files changed, 1102 insertions(+), 1104 deletions(-) diff --git a/gemfiles/jruby_9.2_activesupport.gemfile.lock b/gemfiles/jruby_9.2_activesupport.gemfile.lock index 9bf5e96f26a..58b4e61fc55 100644 --- a/gemfiles/jruby_9.2_activesupport.gemfile.lock +++ b/gemfiles/jruby_9.2_activesupport.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -58,7 +58,7 @@ GEM crack (0.4.5) rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) diff-lcs (1.5.0) digest-crc (0.6.5) rake (>= 12.0.0, < 14.0.0) diff --git a/gemfiles/jruby_9.2_aws.gemfile.lock b/gemfiles/jruby_9.2_aws.gemfile.lock index 79f9e967a6d..937464612a9 100644 --- a/gemfiles/jruby_9.2_aws.gemfile.lock +++ b/gemfiles/jruby_9.2_aws.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -1450,7 +1450,7 @@ GEM concurrent-ruby (1.2.2) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) diff-lcs (1.5.0) docile (1.4.0) dogstatsd-ruby (5.6.0) diff --git a/gemfiles/jruby_9.2_contrib.gemfile.lock b/gemfiles/jruby_9.2_contrib.gemfile.lock index 344707ccb8f..8f976ad5ed5 100644 --- a/gemfiles/jruby_9.2_contrib.gemfile.lock +++ b/gemfiles/jruby_9.2_contrib.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -36,7 +36,7 @@ GEM crack (0.4.5) rexml dalli (3.2.0) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) diff-lcs (1.5.0) docile (1.4.0) dogstatsd-ruby (5.6.0) diff --git a/gemfiles/jruby_9.2_contrib_old.gemfile.lock b/gemfiles/jruby_9.2_contrib_old.gemfile.lock index 5a71982e439..0e47d3a2342 100644 --- a/gemfiles/jruby_9.2_contrib_old.gemfile.lock +++ b/gemfiles/jruby_9.2_contrib_old.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -30,7 +30,7 @@ GEM crack (0.4.5) rexml dalli (2.7.11) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) diff-lcs (1.5.0) docile (1.4.0) dogstatsd-ruby (5.5.0) diff --git a/gemfiles/jruby_9.2_core_old.gemfile.lock b/gemfiles/jruby_9.2_core_old.gemfile.lock index c3a4f8b5b43..77a6aaf4457 100644 --- a/gemfiles/jruby_9.2_core_old.gemfile.lock +++ b/gemfiles/jruby_9.2_core_old.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -29,7 +29,7 @@ GEM concurrent-ruby (1.1.10) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) diff-lcs (1.5.0) docile (1.4.0) dogstatsd-ruby (4.8.3) diff --git a/gemfiles/jruby_9.2_elasticsearch_7.gemfile.lock b/gemfiles/jruby_9.2_elasticsearch_7.gemfile.lock index a17307ae52a..36fc02fbb05 100644 --- a/gemfiles/jruby_9.2_elasticsearch_7.gemfile.lock +++ b/gemfiles/jruby_9.2_elasticsearch_7.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -31,7 +31,7 @@ GEM concurrent-ruby (1.2.2) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) diff-lcs (1.5.0) docile (1.4.0) dogstatsd-ruby (5.6.1) diff --git a/gemfiles/jruby_9.2_elasticsearch_8.gemfile.lock b/gemfiles/jruby_9.2_elasticsearch_8.gemfile.lock index 91dc061385d..f81cb6e0c64 100644 --- a/gemfiles/jruby_9.2_elasticsearch_8.gemfile.lock +++ b/gemfiles/jruby_9.2_elasticsearch_8.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -30,7 +30,7 @@ GEM concurrent-ruby (1.2.2) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) diff-lcs (1.5.0) docile (1.4.0) dogstatsd-ruby (5.6.1) diff --git a/gemfiles/jruby_9.2_elasticsearch_latest.gemfile.lock b/gemfiles/jruby_9.2_elasticsearch_latest.gemfile.lock index a63ceba005e..5e50b504953 100644 --- a/gemfiles/jruby_9.2_elasticsearch_latest.gemfile.lock +++ b/gemfiles/jruby_9.2_elasticsearch_latest.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -32,7 +32,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) diff-lcs (1.5.1) docile (1.4.1) dogstatsd-ruby (5.6.1) diff --git a/gemfiles/jruby_9.2_graphql_2.0.gemfile.lock b/gemfiles/jruby_9.2_graphql_2.0.gemfile.lock index 155aecaf5f7..ba1d8859ffe 100644 --- a/gemfiles/jruby_9.2_graphql_2.0.gemfile.lock +++ b/gemfiles/jruby_9.2_graphql_2.0.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -92,7 +92,7 @@ GEM crack (0.4.5) rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) diff-lcs (1.5.0) digest (3.1.1-java) docile (1.4.0) diff --git a/gemfiles/jruby_9.2_http.gemfile.lock b/gemfiles/jruby_9.2_http.gemfile.lock index 8080591517a..eff1eb91e03 100644 --- a/gemfiles/jruby_9.2_http.gemfile.lock +++ b/gemfiles/jruby_9.2_http.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -29,7 +29,7 @@ GEM concurrent-ruby (1.2.2) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) diff-lcs (1.5.0) docile (1.4.0) dogstatsd-ruby (5.6.1) diff --git a/gemfiles/jruby_9.2_opensearch_2.gemfile.lock b/gemfiles/jruby_9.2_opensearch_2.gemfile.lock index f8cf89731b8..aeb13ed3efe 100644 --- a/gemfiles/jruby_9.2_opensearch_2.gemfile.lock +++ b/gemfiles/jruby_9.2_opensearch_2.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -30,7 +30,7 @@ GEM concurrent-ruby (1.2.2) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) diff-lcs (1.5.0) docile (1.4.0) dogstatsd-ruby (5.6.1) diff --git a/gemfiles/jruby_9.2_opensearch_3.gemfile.lock b/gemfiles/jruby_9.2_opensearch_3.gemfile.lock index 000200a3e97..8370df63724 100644 --- a/gemfiles/jruby_9.2_opensearch_3.gemfile.lock +++ b/gemfiles/jruby_9.2_opensearch_3.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -30,7 +30,7 @@ GEM concurrent-ruby (1.2.2) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) diff-lcs (1.5.0) docile (1.4.0) dogstatsd-ruby (5.6.1) diff --git a/gemfiles/jruby_9.2_opensearch_latest.gemfile.lock b/gemfiles/jruby_9.2_opensearch_latest.gemfile.lock index 38408593cf0..79e21f4af9e 100644 --- a/gemfiles/jruby_9.2_opensearch_latest.gemfile.lock +++ b/gemfiles/jruby_9.2_opensearch_latest.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -32,7 +32,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) diff-lcs (1.5.1) docile (1.4.1) dogstatsd-ruby (5.6.1) diff --git a/gemfiles/jruby_9.2_rack_1.gemfile.lock b/gemfiles/jruby_9.2_rack_1.gemfile.lock index 71c9b564830..7af13990074 100644 --- a/gemfiles/jruby_9.2_rack_1.gemfile.lock +++ b/gemfiles/jruby_9.2_rack_1.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -29,7 +29,7 @@ GEM concurrent-ruby (1.2.2) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) diff-lcs (1.5.0) docile (1.4.0) dogstatsd-ruby (5.6.1) diff --git a/gemfiles/jruby_9.2_rack_2.gemfile.lock b/gemfiles/jruby_9.2_rack_2.gemfile.lock index 7ff144c29b9..779b6b03302 100644 --- a/gemfiles/jruby_9.2_rack_2.gemfile.lock +++ b/gemfiles/jruby_9.2_rack_2.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -29,7 +29,7 @@ GEM concurrent-ruby (1.2.2) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) diff-lcs (1.5.0) docile (1.4.0) dogstatsd-ruby (5.6.1) diff --git a/gemfiles/jruby_9.2_rack_3.gemfile.lock b/gemfiles/jruby_9.2_rack_3.gemfile.lock index 986947cfc0f..2d2d880cf8b 100644 --- a/gemfiles/jruby_9.2_rack_3.gemfile.lock +++ b/gemfiles/jruby_9.2_rack_3.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -29,7 +29,7 @@ GEM concurrent-ruby (1.2.2) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) diff-lcs (1.5.0) docile (1.4.0) dogstatsd-ruby (5.6.1) diff --git a/gemfiles/jruby_9.2_rack_latest.gemfile.lock b/gemfiles/jruby_9.2_rack_latest.gemfile.lock index 2f9dfbf89ad..aef3569f16a 100644 --- a/gemfiles/jruby_9.2_rack_latest.gemfile.lock +++ b/gemfiles/jruby_9.2_rack_latest.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -32,7 +32,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) diff-lcs (1.5.1) docile (1.4.1) dogstatsd-ruby (5.6.2) diff --git a/gemfiles/jruby_9.2_rails5_mysql2.gemfile.lock b/gemfiles/jruby_9.2_rails5_mysql2.gemfile.lock index 5e23224efdc..98ef89a0d45 100644 --- a/gemfiles/jruby_9.2_rails5_mysql2.gemfile.lock +++ b/gemfiles/jruby_9.2_rails5_mysql2.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -78,7 +78,7 @@ GEM crack (0.4.5) rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) diff-lcs (1.5.0) docile (1.4.0) dogstatsd-ruby (5.5.0) diff --git a/gemfiles/jruby_9.2_rails5_postgres.gemfile.lock b/gemfiles/jruby_9.2_rails5_postgres.gemfile.lock index 30eedeeb02a..3a10aa9a428 100644 --- a/gemfiles/jruby_9.2_rails5_postgres.gemfile.lock +++ b/gemfiles/jruby_9.2_rails5_postgres.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -78,7 +78,7 @@ GEM crack (0.4.5) rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) diff-lcs (1.5.0) digest (3.1.1-java) docile (1.4.0) diff --git a/gemfiles/jruby_9.2_rails5_postgres_redis.gemfile.lock b/gemfiles/jruby_9.2_rails5_postgres_redis.gemfile.lock index 76a359e0d39..32c9bef65a8 100644 --- a/gemfiles/jruby_9.2_rails5_postgres_redis.gemfile.lock +++ b/gemfiles/jruby_9.2_rails5_postgres_redis.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -79,7 +79,7 @@ GEM crack (0.4.5) rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) diff-lcs (1.5.0) digest (3.1.1-java) docile (1.4.0) diff --git a/gemfiles/jruby_9.2_rails5_postgres_redis_activesupport.gemfile.lock b/gemfiles/jruby_9.2_rails5_postgres_redis_activesupport.gemfile.lock index a7420ab5818..ea2e232d083 100644 --- a/gemfiles/jruby_9.2_rails5_postgres_redis_activesupport.gemfile.lock +++ b/gemfiles/jruby_9.2_rails5_postgres_redis_activesupport.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -78,7 +78,7 @@ GEM crack (0.4.5) rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) diff-lcs (1.5.0) digest (3.1.1-java) docile (1.4.0) diff --git a/gemfiles/jruby_9.2_rails5_postgres_sidekiq.gemfile.lock b/gemfiles/jruby_9.2_rails5_postgres_sidekiq.gemfile.lock index f208b42d33d..685218def61 100644 --- a/gemfiles/jruby_9.2_rails5_postgres_sidekiq.gemfile.lock +++ b/gemfiles/jruby_9.2_rails5_postgres_sidekiq.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -79,7 +79,7 @@ GEM crack (0.4.5) rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) diff-lcs (1.5.0) digest (3.1.1-java) docile (1.4.0) diff --git a/gemfiles/jruby_9.2_rails5_semantic_logger.gemfile.lock b/gemfiles/jruby_9.2_rails5_semantic_logger.gemfile.lock index da049562388..52f1e112258 100644 --- a/gemfiles/jruby_9.2_rails5_semantic_logger.gemfile.lock +++ b/gemfiles/jruby_9.2_rails5_semantic_logger.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -78,7 +78,7 @@ GEM crack (0.4.5) rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) diff-lcs (1.5.0) digest (3.1.1-java) docile (1.4.0) diff --git a/gemfiles/jruby_9.2_rails61_mysql2.gemfile.lock b/gemfiles/jruby_9.2_rails61_mysql2.gemfile.lock index b6bf5a22cba..b29df7238ae 100644 --- a/gemfiles/jruby_9.2_rails61_mysql2.gemfile.lock +++ b/gemfiles/jruby_9.2_rails61_mysql2.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -95,7 +95,7 @@ GEM crack (0.4.5) rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) diff-lcs (1.5.0) docile (1.4.0) dogstatsd-ruby (5.5.0) diff --git a/gemfiles/jruby_9.2_rails61_postgres.gemfile.lock b/gemfiles/jruby_9.2_rails61_postgres.gemfile.lock index 3198ced226f..1fe92d98b46 100644 --- a/gemfiles/jruby_9.2_rails61_postgres.gemfile.lock +++ b/gemfiles/jruby_9.2_rails61_postgres.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -95,7 +95,7 @@ GEM crack (0.4.5) rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) diff-lcs (1.5.0) digest (3.1.1-java) docile (1.4.0) diff --git a/gemfiles/jruby_9.2_rails61_postgres_redis.gemfile.lock b/gemfiles/jruby_9.2_rails61_postgres_redis.gemfile.lock index 2c55cd1278c..842a72226b1 100644 --- a/gemfiles/jruby_9.2_rails61_postgres_redis.gemfile.lock +++ b/gemfiles/jruby_9.2_rails61_postgres_redis.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -96,7 +96,7 @@ GEM crack (0.4.5) rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) diff-lcs (1.5.0) digest (3.1.1-java) docile (1.4.0) diff --git a/gemfiles/jruby_9.2_rails61_postgres_sidekiq.gemfile.lock b/gemfiles/jruby_9.2_rails61_postgres_sidekiq.gemfile.lock index 492a6100a3b..7e77405d291 100644 --- a/gemfiles/jruby_9.2_rails61_postgres_sidekiq.gemfile.lock +++ b/gemfiles/jruby_9.2_rails61_postgres_sidekiq.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -96,7 +96,7 @@ GEM crack (0.4.5) rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) diff-lcs (1.5.0) digest (3.1.1-java) docile (1.4.0) diff --git a/gemfiles/jruby_9.2_rails61_semantic_logger.gemfile.lock b/gemfiles/jruby_9.2_rails61_semantic_logger.gemfile.lock index f76be545796..856960d2ed5 100644 --- a/gemfiles/jruby_9.2_rails61_semantic_logger.gemfile.lock +++ b/gemfiles/jruby_9.2_rails61_semantic_logger.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -95,7 +95,7 @@ GEM crack (0.4.5) rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) diff-lcs (1.5.0) digest (3.1.1-java) docile (1.4.0) diff --git a/gemfiles/jruby_9.2_rails6_mysql2.gemfile.lock b/gemfiles/jruby_9.2_rails6_mysql2.gemfile.lock index d7d37027e31..662bc2668cf 100644 --- a/gemfiles/jruby_9.2_rails6_mysql2.gemfile.lock +++ b/gemfiles/jruby_9.2_rails6_mysql2.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -91,7 +91,7 @@ GEM crack (0.4.5) rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) diff-lcs (1.5.0) docile (1.4.0) dogstatsd-ruby (5.5.0) diff --git a/gemfiles/jruby_9.2_rails6_postgres.gemfile.lock b/gemfiles/jruby_9.2_rails6_postgres.gemfile.lock index 14cf486f2d4..355bd0f8b27 100644 --- a/gemfiles/jruby_9.2_rails6_postgres.gemfile.lock +++ b/gemfiles/jruby_9.2_rails6_postgres.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -91,7 +91,7 @@ GEM crack (0.4.5) rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) diff-lcs (1.5.0) digest (3.1.1-java) docile (1.4.0) diff --git a/gemfiles/jruby_9.2_rails6_postgres_redis.gemfile.lock b/gemfiles/jruby_9.2_rails6_postgres_redis.gemfile.lock index 2ff6244cb52..eb87d641e37 100644 --- a/gemfiles/jruby_9.2_rails6_postgres_redis.gemfile.lock +++ b/gemfiles/jruby_9.2_rails6_postgres_redis.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -92,7 +92,7 @@ GEM crack (0.4.5) rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) diff-lcs (1.5.0) digest (3.1.1-java) docile (1.4.0) diff --git a/gemfiles/jruby_9.2_rails6_postgres_redis_activesupport.gemfile.lock b/gemfiles/jruby_9.2_rails6_postgres_redis_activesupport.gemfile.lock index 003ce24953d..9e3afb268d1 100644 --- a/gemfiles/jruby_9.2_rails6_postgres_redis_activesupport.gemfile.lock +++ b/gemfiles/jruby_9.2_rails6_postgres_redis_activesupport.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -91,7 +91,7 @@ GEM crack (0.4.5) rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) diff-lcs (1.5.0) digest (3.1.1-java) docile (1.4.0) diff --git a/gemfiles/jruby_9.2_rails6_postgres_sidekiq.gemfile.lock b/gemfiles/jruby_9.2_rails6_postgres_sidekiq.gemfile.lock index b3394a3dc50..cf6a10755d8 100644 --- a/gemfiles/jruby_9.2_rails6_postgres_sidekiq.gemfile.lock +++ b/gemfiles/jruby_9.2_rails6_postgres_sidekiq.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -92,7 +92,7 @@ GEM crack (0.4.5) rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) diff-lcs (1.5.0) digest (3.1.1-java) docile (1.4.0) diff --git a/gemfiles/jruby_9.2_rails6_semantic_logger.gemfile.lock b/gemfiles/jruby_9.2_rails6_semantic_logger.gemfile.lock index 8b23a06e260..a5a24948c6a 100644 --- a/gemfiles/jruby_9.2_rails6_semantic_logger.gemfile.lock +++ b/gemfiles/jruby_9.2_rails6_semantic_logger.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -91,7 +91,7 @@ GEM crack (0.4.5) rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) diff-lcs (1.5.0) digest (3.1.1-java) docile (1.4.0) diff --git a/gemfiles/jruby_9.2_redis_3.gemfile.lock b/gemfiles/jruby_9.2_redis_3.gemfile.lock index e1d6c6bdf31..f21beb9d170 100644 --- a/gemfiles/jruby_9.2_redis_3.gemfile.lock +++ b/gemfiles/jruby_9.2_redis_3.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -29,7 +29,7 @@ GEM concurrent-ruby (1.1.10) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) diff-lcs (1.5.0) docile (1.4.0) dogstatsd-ruby (5.5.0) diff --git a/gemfiles/jruby_9.2_redis_4.gemfile.lock b/gemfiles/jruby_9.2_redis_4.gemfile.lock index 0ada356b866..6bb2255d6d5 100644 --- a/gemfiles/jruby_9.2_redis_4.gemfile.lock +++ b/gemfiles/jruby_9.2_redis_4.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -29,7 +29,7 @@ GEM concurrent-ruby (1.1.10) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) diff-lcs (1.5.0) docile (1.4.0) dogstatsd-ruby (5.5.0) diff --git a/gemfiles/jruby_9.2_redis_5.gemfile.lock b/gemfiles/jruby_9.2_redis_5.gemfile.lock index 632e821be23..9af3293bb13 100644 --- a/gemfiles/jruby_9.2_redis_5.gemfile.lock +++ b/gemfiles/jruby_9.2_redis_5.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -30,7 +30,7 @@ GEM connection_pool (2.3.0) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) diff-lcs (1.5.0) docile (1.4.0) dogstatsd-ruby (5.5.0) diff --git a/gemfiles/jruby_9.2_relational_db.gemfile.lock b/gemfiles/jruby_9.2_relational_db.gemfile.lock index f7293d67cc6..d74e73cb59d 100644 --- a/gemfiles/jruby_9.2_relational_db.gemfile.lock +++ b/gemfiles/jruby_9.2_relational_db.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -53,7 +53,7 @@ GEM concurrent-ruby (1.2.2) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) delayed_job (4.1.11) activesupport (>= 3.0, < 8.0) delayed_job_active_record (4.1.7) diff --git a/gemfiles/jruby_9.2_resque2_redis3.gemfile.lock b/gemfiles/jruby_9.2_resque2_redis3.gemfile.lock index 5a8cc87429d..92dc61f86d0 100644 --- a/gemfiles/jruby_9.2_resque2_redis3.gemfile.lock +++ b/gemfiles/jruby_9.2_resque2_redis3.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -29,7 +29,7 @@ GEM concurrent-ruby (1.1.10) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) diff-lcs (1.5.0) docile (1.4.0) dogstatsd-ruby (5.5.0) diff --git a/gemfiles/jruby_9.2_resque2_redis4.gemfile.lock b/gemfiles/jruby_9.2_resque2_redis4.gemfile.lock index bc170977399..fc58622cecd 100644 --- a/gemfiles/jruby_9.2_resque2_redis4.gemfile.lock +++ b/gemfiles/jruby_9.2_resque2_redis4.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -30,7 +30,7 @@ GEM connection_pool (2.3.0) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) diff-lcs (1.5.0) docile (1.4.0) dogstatsd-ruby (5.5.0) diff --git a/gemfiles/jruby_9.2_sinatra_2.gemfile.lock b/gemfiles/jruby_9.2_sinatra_2.gemfile.lock index b281abe8ad7..cc994cfef6a 100644 --- a/gemfiles/jruby_9.2_sinatra_2.gemfile.lock +++ b/gemfiles/jruby_9.2_sinatra_2.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -32,7 +32,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) diff-lcs (1.5.1) docile (1.4.0) dogstatsd-ruby (5.6.1) diff --git a/gemfiles/jruby_9.2_stripe_10.gemfile.lock b/gemfiles/jruby_9.2_stripe_10.gemfile.lock index cdf0729b42c..2e6b817157b 100644 --- a/gemfiles/jruby_9.2_stripe_10.gemfile.lock +++ b/gemfiles/jruby_9.2_stripe_10.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -32,7 +32,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) diff-lcs (1.5.1) docile (1.4.1) dogstatsd-ruby (5.6.1) diff --git a/gemfiles/jruby_9.2_stripe_11.gemfile.lock b/gemfiles/jruby_9.2_stripe_11.gemfile.lock index 8500e81ceee..1450cec3a41 100644 --- a/gemfiles/jruby_9.2_stripe_11.gemfile.lock +++ b/gemfiles/jruby_9.2_stripe_11.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -32,7 +32,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) diff-lcs (1.5.1) docile (1.4.1) dogstatsd-ruby (5.6.1) diff --git a/gemfiles/jruby_9.2_stripe_12.gemfile.lock b/gemfiles/jruby_9.2_stripe_12.gemfile.lock index f2c0f6ba77c..c8bea428847 100644 --- a/gemfiles/jruby_9.2_stripe_12.gemfile.lock +++ b/gemfiles/jruby_9.2_stripe_12.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -32,7 +32,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) diff-lcs (1.5.1) docile (1.4.1) dogstatsd-ruby (5.6.1) diff --git a/gemfiles/jruby_9.2_stripe_7.gemfile.lock b/gemfiles/jruby_9.2_stripe_7.gemfile.lock index cb780e62139..21ca74a66f5 100644 --- a/gemfiles/jruby_9.2_stripe_7.gemfile.lock +++ b/gemfiles/jruby_9.2_stripe_7.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -32,7 +32,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) diff-lcs (1.5.1) docile (1.4.1) dogstatsd-ruby (5.6.1) diff --git a/gemfiles/jruby_9.2_stripe_8.gemfile.lock b/gemfiles/jruby_9.2_stripe_8.gemfile.lock index bf8429da671..668f99cef7c 100644 --- a/gemfiles/jruby_9.2_stripe_8.gemfile.lock +++ b/gemfiles/jruby_9.2_stripe_8.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -32,7 +32,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) diff-lcs (1.5.1) docile (1.4.1) dogstatsd-ruby (5.6.1) diff --git a/gemfiles/jruby_9.2_stripe_9.gemfile.lock b/gemfiles/jruby_9.2_stripe_9.gemfile.lock index e68002262b0..fc7ee6855eb 100644 --- a/gemfiles/jruby_9.2_stripe_9.gemfile.lock +++ b/gemfiles/jruby_9.2_stripe_9.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -32,7 +32,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) diff-lcs (1.5.1) docile (1.4.1) dogstatsd-ruby (5.6.1) diff --git a/gemfiles/jruby_9.2_stripe_latest.gemfile.lock b/gemfiles/jruby_9.2_stripe_latest.gemfile.lock index 578cc56ab3b..8ef169b22c1 100644 --- a/gemfiles/jruby_9.2_stripe_latest.gemfile.lock +++ b/gemfiles/jruby_9.2_stripe_latest.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -32,7 +32,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) diff-lcs (1.5.1) docile (1.4.1) dogstatsd-ruby (5.6.1) diff --git a/gemfiles/jruby_9.2_stripe_min.gemfile.lock b/gemfiles/jruby_9.2_stripe_min.gemfile.lock index 7e9ee8ebc27..7238383745a 100644 --- a/gemfiles/jruby_9.2_stripe_min.gemfile.lock +++ b/gemfiles/jruby_9.2_stripe_min.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -32,7 +32,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) diff-lcs (1.5.1) docile (1.4.1) dogstatsd-ruby (5.6.1) diff --git a/gemfiles/jruby_9.3_activesupport.gemfile.lock b/gemfiles/jruby_9.3_activesupport.gemfile.lock index 1bfe875613c..5fa2e50cea0 100644 --- a/gemfiles/jruby_9.3_activesupport.gemfile.lock +++ b/gemfiles/jruby_9.3_activesupport.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -60,7 +60,7 @@ GEM crack (0.4.5) rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) diff-lcs (1.5.0) digest-crc (0.6.5) rake (>= 12.0.0, < 14.0.0) diff --git a/gemfiles/jruby_9.3_aws.gemfile.lock b/gemfiles/jruby_9.3_aws.gemfile.lock index 934ca3d1324..3d60c08e571 100644 --- a/gemfiles/jruby_9.3_aws.gemfile.lock +++ b/gemfiles/jruby_9.3_aws.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -1451,7 +1451,7 @@ GEM concurrent-ruby (1.2.2) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) diff-lcs (1.5.0) docile (1.4.0) dogstatsd-ruby (5.6.0) diff --git a/gemfiles/jruby_9.3_contrib.gemfile.lock b/gemfiles/jruby_9.3_contrib.gemfile.lock index cb90b9ce044..c519b3f350d 100644 --- a/gemfiles/jruby_9.3_contrib.gemfile.lock +++ b/gemfiles/jruby_9.3_contrib.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -37,7 +37,7 @@ GEM crack (0.4.5) rexml dalli (3.2.3) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) diff-lcs (1.5.0) docile (1.4.0) dogstatsd-ruby (5.6.1) diff --git a/gemfiles/jruby_9.3_contrib_old.gemfile.lock b/gemfiles/jruby_9.3_contrib_old.gemfile.lock index e6617ee4af9..941ef597de2 100644 --- a/gemfiles/jruby_9.3_contrib_old.gemfile.lock +++ b/gemfiles/jruby_9.3_contrib_old.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -31,7 +31,7 @@ GEM crack (0.4.5) rexml dalli (2.7.11) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) diff-lcs (1.5.0) docile (1.4.0) dogstatsd-ruby (5.6.1) diff --git a/gemfiles/jruby_9.3_core_old.gemfile.lock b/gemfiles/jruby_9.3_core_old.gemfile.lock index 470db9b0443..684364abdbc 100644 --- a/gemfiles/jruby_9.3_core_old.gemfile.lock +++ b/gemfiles/jruby_9.3_core_old.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -30,7 +30,7 @@ GEM concurrent-ruby (1.2.2) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) diff-lcs (1.5.0) docile (1.4.0) dogstatsd-ruby (4.8.3) diff --git a/gemfiles/jruby_9.3_elasticsearch_7.gemfile.lock b/gemfiles/jruby_9.3_elasticsearch_7.gemfile.lock index 59925be7174..50c4c83f604 100644 --- a/gemfiles/jruby_9.3_elasticsearch_7.gemfile.lock +++ b/gemfiles/jruby_9.3_elasticsearch_7.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -32,7 +32,7 @@ GEM concurrent-ruby (1.2.2) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) diff-lcs (1.5.0) docile (1.4.0) dogstatsd-ruby (5.6.1) diff --git a/gemfiles/jruby_9.3_elasticsearch_8.gemfile.lock b/gemfiles/jruby_9.3_elasticsearch_8.gemfile.lock index 387f74aaf0b..41b0248490f 100644 --- a/gemfiles/jruby_9.3_elasticsearch_8.gemfile.lock +++ b/gemfiles/jruby_9.3_elasticsearch_8.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -32,7 +32,7 @@ GEM concurrent-ruby (1.2.2) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) diff-lcs (1.5.0) docile (1.4.0) dogstatsd-ruby (5.6.1) diff --git a/gemfiles/jruby_9.3_elasticsearch_latest.gemfile.lock b/gemfiles/jruby_9.3_elasticsearch_latest.gemfile.lock index e2ebf64a1b5..579f69b55fc 100644 --- a/gemfiles/jruby_9.3_elasticsearch_latest.gemfile.lock +++ b/gemfiles/jruby_9.3_elasticsearch_latest.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -34,7 +34,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) diff-lcs (1.5.1) docile (1.4.1) dogstatsd-ruby (5.6.1) diff --git a/gemfiles/jruby_9.3_graphql_1.13.gemfile.lock b/gemfiles/jruby_9.3_graphql_1.13.gemfile.lock index 097dfa8875f..f61df7ae3e2 100644 --- a/gemfiles/jruby_9.3_graphql_1.13.gemfile.lock +++ b/gemfiles/jruby_9.3_graphql_1.13.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -93,7 +93,7 @@ GEM crack (0.4.5) rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) date (3.3.4-java) diff-lcs (1.5.0) docile (1.4.0) diff --git a/gemfiles/jruby_9.3_graphql_2.0.gemfile.lock b/gemfiles/jruby_9.3_graphql_2.0.gemfile.lock index 767133fd046..86e2debca04 100644 --- a/gemfiles/jruby_9.3_graphql_2.0.gemfile.lock +++ b/gemfiles/jruby_9.3_graphql_2.0.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -93,7 +93,7 @@ GEM crack (0.4.5) rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) date (3.3.4-java) diff-lcs (1.5.0) docile (1.4.0) diff --git a/gemfiles/jruby_9.3_http.gemfile.lock b/gemfiles/jruby_9.3_http.gemfile.lock index 3d759bc90f2..faf21f0efaf 100644 --- a/gemfiles/jruby_9.3_http.gemfile.lock +++ b/gemfiles/jruby_9.3_http.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -30,7 +30,7 @@ GEM concurrent-ruby (1.2.2) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) diff-lcs (1.5.0) docile (1.4.0) dogstatsd-ruby (5.6.1) diff --git a/gemfiles/jruby_9.3_opensearch_2.gemfile.lock b/gemfiles/jruby_9.3_opensearch_2.gemfile.lock index cc0dabc2eba..d83a453e612 100644 --- a/gemfiles/jruby_9.3_opensearch_2.gemfile.lock +++ b/gemfiles/jruby_9.3_opensearch_2.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -32,7 +32,7 @@ GEM concurrent-ruby (1.2.2) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) diff-lcs (1.5.0) docile (1.4.0) dogstatsd-ruby (5.6.1) diff --git a/gemfiles/jruby_9.3_opensearch_3.gemfile.lock b/gemfiles/jruby_9.3_opensearch_3.gemfile.lock index 81ceb842e7b..7249358cb4d 100644 --- a/gemfiles/jruby_9.3_opensearch_3.gemfile.lock +++ b/gemfiles/jruby_9.3_opensearch_3.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -32,7 +32,7 @@ GEM concurrent-ruby (1.2.2) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) diff-lcs (1.5.0) docile (1.4.0) dogstatsd-ruby (5.6.1) diff --git a/gemfiles/jruby_9.3_opensearch_latest.gemfile.lock b/gemfiles/jruby_9.3_opensearch_latest.gemfile.lock index 5b3d0c6af63..16d22b48c0f 100644 --- a/gemfiles/jruby_9.3_opensearch_latest.gemfile.lock +++ b/gemfiles/jruby_9.3_opensearch_latest.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -34,7 +34,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) diff-lcs (1.5.1) docile (1.4.1) dogstatsd-ruby (5.6.1) diff --git a/gemfiles/jruby_9.3_rack_1.gemfile.lock b/gemfiles/jruby_9.3_rack_1.gemfile.lock index 5d13847e15b..d8c90f51ae8 100644 --- a/gemfiles/jruby_9.3_rack_1.gemfile.lock +++ b/gemfiles/jruby_9.3_rack_1.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -30,7 +30,7 @@ GEM concurrent-ruby (1.2.2) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) diff-lcs (1.5.0) docile (1.4.0) dogstatsd-ruby (5.6.1) diff --git a/gemfiles/jruby_9.3_rack_2.gemfile.lock b/gemfiles/jruby_9.3_rack_2.gemfile.lock index 90dd33aeac3..2b2bcfe16da 100644 --- a/gemfiles/jruby_9.3_rack_2.gemfile.lock +++ b/gemfiles/jruby_9.3_rack_2.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -30,7 +30,7 @@ GEM concurrent-ruby (1.2.2) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) diff-lcs (1.5.0) docile (1.4.0) dogstatsd-ruby (5.6.1) diff --git a/gemfiles/jruby_9.3_rack_3.gemfile.lock b/gemfiles/jruby_9.3_rack_3.gemfile.lock index 0cb98c5ca93..1a4b3c3ca98 100644 --- a/gemfiles/jruby_9.3_rack_3.gemfile.lock +++ b/gemfiles/jruby_9.3_rack_3.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -30,7 +30,7 @@ GEM concurrent-ruby (1.2.2) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) diff-lcs (1.5.0) docile (1.4.0) dogstatsd-ruby (5.6.1) diff --git a/gemfiles/jruby_9.3_rack_latest.gemfile.lock b/gemfiles/jruby_9.3_rack_latest.gemfile.lock index a32e2c86370..17f75b59b32 100644 --- a/gemfiles/jruby_9.3_rack_latest.gemfile.lock +++ b/gemfiles/jruby_9.3_rack_latest.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -33,7 +33,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) diff-lcs (1.5.1) docile (1.4.1) dogstatsd-ruby (5.6.2) diff --git a/gemfiles/jruby_9.3_rails5_mysql2.gemfile.lock b/gemfiles/jruby_9.3_rails5_mysql2.gemfile.lock index 4d0d03ecec9..01678e58ca8 100644 --- a/gemfiles/jruby_9.3_rails5_mysql2.gemfile.lock +++ b/gemfiles/jruby_9.3_rails5_mysql2.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -79,7 +79,7 @@ GEM crack (0.4.5) rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) date (3.3.3-java) diff-lcs (1.5.0) docile (1.4.0) diff --git a/gemfiles/jruby_9.3_rails5_postgres.gemfile.lock b/gemfiles/jruby_9.3_rails5_postgres.gemfile.lock index 065ff9b9437..e8e4e2a1512 100644 --- a/gemfiles/jruby_9.3_rails5_postgres.gemfile.lock +++ b/gemfiles/jruby_9.3_rails5_postgres.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -79,7 +79,7 @@ GEM crack (0.4.5) rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) date (3.3.3-java) diff-lcs (1.5.0) docile (1.4.0) diff --git a/gemfiles/jruby_9.3_rails5_postgres_redis.gemfile.lock b/gemfiles/jruby_9.3_rails5_postgres_redis.gemfile.lock index fb7e41b396d..1bb1004d4c5 100644 --- a/gemfiles/jruby_9.3_rails5_postgres_redis.gemfile.lock +++ b/gemfiles/jruby_9.3_rails5_postgres_redis.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -79,7 +79,7 @@ GEM crack (0.4.5) rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) date (3.3.3-java) diff-lcs (1.5.0) docile (1.4.0) diff --git a/gemfiles/jruby_9.3_rails5_postgres_redis_activesupport.gemfile.lock b/gemfiles/jruby_9.3_rails5_postgres_redis_activesupport.gemfile.lock index 733dfd4121b..3acbbec69d2 100644 --- a/gemfiles/jruby_9.3_rails5_postgres_redis_activesupport.gemfile.lock +++ b/gemfiles/jruby_9.3_rails5_postgres_redis_activesupport.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -79,7 +79,7 @@ GEM crack (0.4.5) rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) date (3.3.3-java) diff-lcs (1.5.0) docile (1.4.0) diff --git a/gemfiles/jruby_9.3_rails5_postgres_sidekiq.gemfile.lock b/gemfiles/jruby_9.3_rails5_postgres_sidekiq.gemfile.lock index c5abee2d4e7..dc4ec2a618e 100644 --- a/gemfiles/jruby_9.3_rails5_postgres_sidekiq.gemfile.lock +++ b/gemfiles/jruby_9.3_rails5_postgres_sidekiq.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -80,7 +80,7 @@ GEM crack (0.4.5) rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) date (3.3.3-java) diff-lcs (1.5.0) docile (1.4.0) diff --git a/gemfiles/jruby_9.3_rails5_semantic_logger.gemfile.lock b/gemfiles/jruby_9.3_rails5_semantic_logger.gemfile.lock index 6e83c77d067..5f750c6f292 100644 --- a/gemfiles/jruby_9.3_rails5_semantic_logger.gemfile.lock +++ b/gemfiles/jruby_9.3_rails5_semantic_logger.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -79,7 +79,7 @@ GEM crack (0.4.5) rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) date (3.3.3-java) diff-lcs (1.5.0) docile (1.4.0) diff --git a/gemfiles/jruby_9.3_rails61_mysql2.gemfile.lock b/gemfiles/jruby_9.3_rails61_mysql2.gemfile.lock index b648b29cd4b..adbf4b058aa 100644 --- a/gemfiles/jruby_9.3_rails61_mysql2.gemfile.lock +++ b/gemfiles/jruby_9.3_rails61_mysql2.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -96,7 +96,7 @@ GEM crack (0.4.5) rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) date (3.3.3-java) diff-lcs (1.5.0) docile (1.4.0) diff --git a/gemfiles/jruby_9.3_rails61_postgres.gemfile.lock b/gemfiles/jruby_9.3_rails61_postgres.gemfile.lock index 4b33f761a5a..e4d2a7990bf 100644 --- a/gemfiles/jruby_9.3_rails61_postgres.gemfile.lock +++ b/gemfiles/jruby_9.3_rails61_postgres.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -96,7 +96,7 @@ GEM crack (0.4.5) rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) date (3.3.3-java) diff-lcs (1.5.0) docile (1.4.0) diff --git a/gemfiles/jruby_9.3_rails61_postgres_redis.gemfile.lock b/gemfiles/jruby_9.3_rails61_postgres_redis.gemfile.lock index 42621403744..f7852b2be0c 100644 --- a/gemfiles/jruby_9.3_rails61_postgres_redis.gemfile.lock +++ b/gemfiles/jruby_9.3_rails61_postgres_redis.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -96,7 +96,7 @@ GEM crack (0.4.5) rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) date (3.3.3-java) diff-lcs (1.5.0) docile (1.4.0) diff --git a/gemfiles/jruby_9.3_rails61_postgres_sidekiq.gemfile.lock b/gemfiles/jruby_9.3_rails61_postgres_sidekiq.gemfile.lock index 62b72425c6b..f25eed0531a 100644 --- a/gemfiles/jruby_9.3_rails61_postgres_sidekiq.gemfile.lock +++ b/gemfiles/jruby_9.3_rails61_postgres_sidekiq.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -97,7 +97,7 @@ GEM crack (0.4.5) rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) date (3.3.3-java) diff-lcs (1.5.0) docile (1.4.0) diff --git a/gemfiles/jruby_9.3_rails61_semantic_logger.gemfile.lock b/gemfiles/jruby_9.3_rails61_semantic_logger.gemfile.lock index e03ea6088b8..40c1664c0ad 100644 --- a/gemfiles/jruby_9.3_rails61_semantic_logger.gemfile.lock +++ b/gemfiles/jruby_9.3_rails61_semantic_logger.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -96,7 +96,7 @@ GEM crack (0.4.5) rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) date (3.3.3-java) diff-lcs (1.5.0) docile (1.4.0) diff --git a/gemfiles/jruby_9.3_rails6_mysql2.gemfile.lock b/gemfiles/jruby_9.3_rails6_mysql2.gemfile.lock index 1022540390d..4a6c441a047 100644 --- a/gemfiles/jruby_9.3_rails6_mysql2.gemfile.lock +++ b/gemfiles/jruby_9.3_rails6_mysql2.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -92,7 +92,7 @@ GEM crack (0.4.5) rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) date (3.3.3-java) diff-lcs (1.5.0) docile (1.4.0) diff --git a/gemfiles/jruby_9.3_rails6_postgres.gemfile.lock b/gemfiles/jruby_9.3_rails6_postgres.gemfile.lock index 88b20a7403e..9fb2257d8b2 100644 --- a/gemfiles/jruby_9.3_rails6_postgres.gemfile.lock +++ b/gemfiles/jruby_9.3_rails6_postgres.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -92,7 +92,7 @@ GEM crack (0.4.5) rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) date (3.3.3-java) diff-lcs (1.5.0) docile (1.4.0) diff --git a/gemfiles/jruby_9.3_rails6_postgres_redis.gemfile.lock b/gemfiles/jruby_9.3_rails6_postgres_redis.gemfile.lock index 939f8b52af1..72832b02ad3 100644 --- a/gemfiles/jruby_9.3_rails6_postgres_redis.gemfile.lock +++ b/gemfiles/jruby_9.3_rails6_postgres_redis.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -92,7 +92,7 @@ GEM crack (0.4.5) rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) date (3.3.3-java) diff-lcs (1.5.0) docile (1.4.0) diff --git a/gemfiles/jruby_9.3_rails6_postgres_redis_activesupport.gemfile.lock b/gemfiles/jruby_9.3_rails6_postgres_redis_activesupport.gemfile.lock index 3ab26e70706..4f6a8d8b3ea 100644 --- a/gemfiles/jruby_9.3_rails6_postgres_redis_activesupport.gemfile.lock +++ b/gemfiles/jruby_9.3_rails6_postgres_redis_activesupport.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -92,7 +92,7 @@ GEM crack (0.4.5) rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) date (3.3.3-java) diff-lcs (1.5.0) docile (1.4.0) diff --git a/gemfiles/jruby_9.3_rails6_postgres_sidekiq.gemfile.lock b/gemfiles/jruby_9.3_rails6_postgres_sidekiq.gemfile.lock index a8b30e7a7f7..52553f8447a 100644 --- a/gemfiles/jruby_9.3_rails6_postgres_sidekiq.gemfile.lock +++ b/gemfiles/jruby_9.3_rails6_postgres_sidekiq.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -93,7 +93,7 @@ GEM crack (0.4.5) rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) date (3.3.3-java) diff-lcs (1.5.0) docile (1.4.0) diff --git a/gemfiles/jruby_9.3_rails6_semantic_logger.gemfile.lock b/gemfiles/jruby_9.3_rails6_semantic_logger.gemfile.lock index a49415b1f3d..8c9d96cd7dc 100644 --- a/gemfiles/jruby_9.3_rails6_semantic_logger.gemfile.lock +++ b/gemfiles/jruby_9.3_rails6_semantic_logger.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -92,7 +92,7 @@ GEM crack (0.4.5) rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) date (3.3.3-java) diff-lcs (1.5.0) docile (1.4.0) diff --git a/gemfiles/jruby_9.3_redis_3.gemfile.lock b/gemfiles/jruby_9.3_redis_3.gemfile.lock index 6afccc8a014..d19aea4bbea 100644 --- a/gemfiles/jruby_9.3_redis_3.gemfile.lock +++ b/gemfiles/jruby_9.3_redis_3.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -30,7 +30,7 @@ GEM concurrent-ruby (1.2.2) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) diff-lcs (1.5.0) docile (1.4.0) dogstatsd-ruby (5.6.1) diff --git a/gemfiles/jruby_9.3_redis_4.gemfile.lock b/gemfiles/jruby_9.3_redis_4.gemfile.lock index b2b7a352437..3b26f43fb54 100644 --- a/gemfiles/jruby_9.3_redis_4.gemfile.lock +++ b/gemfiles/jruby_9.3_redis_4.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -30,7 +30,7 @@ GEM concurrent-ruby (1.2.2) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) diff-lcs (1.5.0) docile (1.4.0) dogstatsd-ruby (5.6.1) diff --git a/gemfiles/jruby_9.3_redis_5.gemfile.lock b/gemfiles/jruby_9.3_redis_5.gemfile.lock index 5f8de24ebde..f8ecc10dc1b 100644 --- a/gemfiles/jruby_9.3_redis_5.gemfile.lock +++ b/gemfiles/jruby_9.3_redis_5.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -31,7 +31,7 @@ GEM connection_pool (2.3.0) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) diff-lcs (1.5.0) docile (1.4.0) dogstatsd-ruby (5.6.1) diff --git a/gemfiles/jruby_9.3_relational_db.gemfile.lock b/gemfiles/jruby_9.3_relational_db.gemfile.lock index 2edd2eaaea7..93358bcd8ee 100644 --- a/gemfiles/jruby_9.3_relational_db.gemfile.lock +++ b/gemfiles/jruby_9.3_relational_db.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -50,7 +50,7 @@ GEM concurrent-ruby (1.2.2) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) delayed_job (4.1.11) activesupport (>= 3.0, < 8.0) delayed_job_active_record (4.1.7) diff --git a/gemfiles/jruby_9.3_resque2_redis3.gemfile.lock b/gemfiles/jruby_9.3_resque2_redis3.gemfile.lock index f76cdb14ee2..431d7e58a57 100644 --- a/gemfiles/jruby_9.3_resque2_redis3.gemfile.lock +++ b/gemfiles/jruby_9.3_resque2_redis3.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -30,7 +30,7 @@ GEM concurrent-ruby (1.2.2) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) diff-lcs (1.5.0) docile (1.4.0) dogstatsd-ruby (5.6.1) diff --git a/gemfiles/jruby_9.3_resque2_redis4.gemfile.lock b/gemfiles/jruby_9.3_resque2_redis4.gemfile.lock index 5cc1e3d5398..61460b22f4a 100644 --- a/gemfiles/jruby_9.3_resque2_redis4.gemfile.lock +++ b/gemfiles/jruby_9.3_resque2_redis4.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -30,7 +30,7 @@ GEM concurrent-ruby (1.2.2) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) diff-lcs (1.5.0) docile (1.4.0) dogstatsd-ruby (5.6.1) diff --git a/gemfiles/jruby_9.3_sinatra_2.gemfile.lock b/gemfiles/jruby_9.3_sinatra_2.gemfile.lock index 895fa4c2ace..980f731092f 100644 --- a/gemfiles/jruby_9.3_sinatra_2.gemfile.lock +++ b/gemfiles/jruby_9.3_sinatra_2.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -33,7 +33,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) diff-lcs (1.5.1) docile (1.4.0) dogstatsd-ruby (5.6.1) diff --git a/gemfiles/jruby_9.3_sinatra_3.gemfile.lock b/gemfiles/jruby_9.3_sinatra_3.gemfile.lock index 6592eaf2421..2269fcf70bf 100644 --- a/gemfiles/jruby_9.3_sinatra_3.gemfile.lock +++ b/gemfiles/jruby_9.3_sinatra_3.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -34,7 +34,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) diff-lcs (1.5.1) docile (1.4.0) dogstatsd-ruby (5.6.1) diff --git a/gemfiles/jruby_9.3_stripe_10.gemfile.lock b/gemfiles/jruby_9.3_stripe_10.gemfile.lock index d0f97e2f978..42e23e9d0ef 100644 --- a/gemfiles/jruby_9.3_stripe_10.gemfile.lock +++ b/gemfiles/jruby_9.3_stripe_10.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -33,7 +33,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) diff-lcs (1.5.1) docile (1.4.1) dogstatsd-ruby (5.6.1) diff --git a/gemfiles/jruby_9.3_stripe_11.gemfile.lock b/gemfiles/jruby_9.3_stripe_11.gemfile.lock index 1010b039c2f..fd18eecd360 100644 --- a/gemfiles/jruby_9.3_stripe_11.gemfile.lock +++ b/gemfiles/jruby_9.3_stripe_11.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -33,7 +33,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) diff-lcs (1.5.1) docile (1.4.1) dogstatsd-ruby (5.6.1) diff --git a/gemfiles/jruby_9.3_stripe_12.gemfile.lock b/gemfiles/jruby_9.3_stripe_12.gemfile.lock index 3b76a6b0f69..8b53eadae51 100644 --- a/gemfiles/jruby_9.3_stripe_12.gemfile.lock +++ b/gemfiles/jruby_9.3_stripe_12.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -33,7 +33,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) diff-lcs (1.5.1) docile (1.4.1) dogstatsd-ruby (5.6.1) diff --git a/gemfiles/jruby_9.3_stripe_7.gemfile.lock b/gemfiles/jruby_9.3_stripe_7.gemfile.lock index 60f66a54588..13c29b36a9b 100644 --- a/gemfiles/jruby_9.3_stripe_7.gemfile.lock +++ b/gemfiles/jruby_9.3_stripe_7.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -33,7 +33,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) diff-lcs (1.5.1) docile (1.4.1) dogstatsd-ruby (5.6.1) diff --git a/gemfiles/jruby_9.3_stripe_8.gemfile.lock b/gemfiles/jruby_9.3_stripe_8.gemfile.lock index 7ffa57b3d01..6365dd9d59c 100644 --- a/gemfiles/jruby_9.3_stripe_8.gemfile.lock +++ b/gemfiles/jruby_9.3_stripe_8.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -33,7 +33,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) diff-lcs (1.5.1) docile (1.4.1) dogstatsd-ruby (5.6.1) diff --git a/gemfiles/jruby_9.3_stripe_9.gemfile.lock b/gemfiles/jruby_9.3_stripe_9.gemfile.lock index 2f862ad9f96..d7ea0681ecc 100644 --- a/gemfiles/jruby_9.3_stripe_9.gemfile.lock +++ b/gemfiles/jruby_9.3_stripe_9.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -33,7 +33,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) diff-lcs (1.5.1) docile (1.4.1) dogstatsd-ruby (5.6.1) diff --git a/gemfiles/jruby_9.3_stripe_latest.gemfile.lock b/gemfiles/jruby_9.3_stripe_latest.gemfile.lock index 6c0c1603e88..b419d95c301 100644 --- a/gemfiles/jruby_9.3_stripe_latest.gemfile.lock +++ b/gemfiles/jruby_9.3_stripe_latest.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -33,7 +33,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) diff-lcs (1.5.1) docile (1.4.1) dogstatsd-ruby (5.6.1) diff --git a/gemfiles/jruby_9.3_stripe_min.gemfile.lock b/gemfiles/jruby_9.3_stripe_min.gemfile.lock index 2e19d239663..fdaf74f4bb4 100644 --- a/gemfiles/jruby_9.3_stripe_min.gemfile.lock +++ b/gemfiles/jruby_9.3_stripe_min.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -33,7 +33,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) diff-lcs (1.5.1) docile (1.4.1) dogstatsd-ruby (5.6.1) diff --git a/gemfiles/jruby_9.4_activesupport.gemfile.lock b/gemfiles/jruby_9.4_activesupport.gemfile.lock index 5386c77ca59..08cb78a05f0 100644 --- a/gemfiles/jruby_9.4_activesupport.gemfile.lock +++ b/gemfiles/jruby_9.4_activesupport.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -59,7 +59,7 @@ GEM crack (0.4.5) rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) diff-lcs (1.5.0) digest-crc (0.6.5) rake (>= 12.0.0, < 14.0.0) diff --git a/gemfiles/jruby_9.4_aws.gemfile.lock b/gemfiles/jruby_9.4_aws.gemfile.lock index f5c4a76890a..bbe67eb7a19 100644 --- a/gemfiles/jruby_9.4_aws.gemfile.lock +++ b/gemfiles/jruby_9.4_aws.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -1451,7 +1451,7 @@ GEM concurrent-ruby (1.2.2) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) diff-lcs (1.5.0) docile (1.4.0) dogstatsd-ruby (5.6.0) diff --git a/gemfiles/jruby_9.4_contrib.gemfile.lock b/gemfiles/jruby_9.4_contrib.gemfile.lock index 28aaba0778a..dc8646b6ce0 100644 --- a/gemfiles/jruby_9.4_contrib.gemfile.lock +++ b/gemfiles/jruby_9.4_contrib.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -37,7 +37,7 @@ GEM crack (0.4.5) rexml dalli (3.2.3) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) diff-lcs (1.5.0) docile (1.4.0) dogstatsd-ruby (5.5.0) diff --git a/gemfiles/jruby_9.4_contrib_old.gemfile.lock b/gemfiles/jruby_9.4_contrib_old.gemfile.lock index 6e3b9614e34..53103290f21 100644 --- a/gemfiles/jruby_9.4_contrib_old.gemfile.lock +++ b/gemfiles/jruby_9.4_contrib_old.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -31,7 +31,7 @@ GEM crack (0.4.5) rexml dalli (2.7.11) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) diff-lcs (1.5.0) docile (1.4.0) dogstatsd-ruby (5.5.0) diff --git a/gemfiles/jruby_9.4_core_old.gemfile.lock b/gemfiles/jruby_9.4_core_old.gemfile.lock index b436fc94dfb..aa8a5f8d268 100644 --- a/gemfiles/jruby_9.4_core_old.gemfile.lock +++ b/gemfiles/jruby_9.4_core_old.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -30,7 +30,7 @@ GEM concurrent-ruby (1.1.10) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) diff-lcs (1.5.0) docile (1.4.0) dogstatsd-ruby (4.8.3) diff --git a/gemfiles/jruby_9.4_elasticsearch_7.gemfile.lock b/gemfiles/jruby_9.4_elasticsearch_7.gemfile.lock index 6dd71889373..1cadcdf0064 100644 --- a/gemfiles/jruby_9.4_elasticsearch_7.gemfile.lock +++ b/gemfiles/jruby_9.4_elasticsearch_7.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -32,7 +32,7 @@ GEM concurrent-ruby (1.2.2) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) diff-lcs (1.5.0) docile (1.4.0) dogstatsd-ruby (5.6.1) diff --git a/gemfiles/jruby_9.4_elasticsearch_8.gemfile.lock b/gemfiles/jruby_9.4_elasticsearch_8.gemfile.lock index f1ded272e52..37e369bfcdb 100644 --- a/gemfiles/jruby_9.4_elasticsearch_8.gemfile.lock +++ b/gemfiles/jruby_9.4_elasticsearch_8.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -31,7 +31,7 @@ GEM concurrent-ruby (1.2.2) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) diff-lcs (1.5.0) docile (1.4.0) dogstatsd-ruby (5.6.1) diff --git a/gemfiles/jruby_9.4_elasticsearch_latest.gemfile.lock b/gemfiles/jruby_9.4_elasticsearch_latest.gemfile.lock index ce0510eeb65..b9f454f99d5 100644 --- a/gemfiles/jruby_9.4_elasticsearch_latest.gemfile.lock +++ b/gemfiles/jruby_9.4_elasticsearch_latest.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -33,7 +33,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) diff-lcs (1.5.1) docile (1.4.1) dogstatsd-ruby (5.6.1) diff --git a/gemfiles/jruby_9.4_graphql_1.13.gemfile.lock b/gemfiles/jruby_9.4_graphql_1.13.gemfile.lock index c5234d478d8..bd8a4994d66 100644 --- a/gemfiles/jruby_9.4_graphql_1.13.gemfile.lock +++ b/gemfiles/jruby_9.4_graphql_1.13.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -93,7 +93,7 @@ GEM crack (0.4.5) rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) date (3.3.4-java) diff-lcs (1.5.0) docile (1.4.0) diff --git a/gemfiles/jruby_9.4_graphql_2.0.gemfile.lock b/gemfiles/jruby_9.4_graphql_2.0.gemfile.lock index 5b3777da2a9..5b723d46e57 100644 --- a/gemfiles/jruby_9.4_graphql_2.0.gemfile.lock +++ b/gemfiles/jruby_9.4_graphql_2.0.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -93,7 +93,7 @@ GEM crack (0.4.5) rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) date (3.3.4-java) diff-lcs (1.5.0) docile (1.4.0) diff --git a/gemfiles/jruby_9.4_graphql_2.1.gemfile.lock b/gemfiles/jruby_9.4_graphql_2.1.gemfile.lock index a3c8a4d4c4e..2be2e76fa4c 100644 --- a/gemfiles/jruby_9.4_graphql_2.1.gemfile.lock +++ b/gemfiles/jruby_9.4_graphql_2.1.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -93,7 +93,7 @@ GEM crack (0.4.5) rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) date (3.3.4-java) diff-lcs (1.5.0) docile (1.4.0) diff --git a/gemfiles/jruby_9.4_graphql_2.2.gemfile.lock b/gemfiles/jruby_9.4_graphql_2.2.gemfile.lock index 27b01a20cca..21c8de210ee 100644 --- a/gemfiles/jruby_9.4_graphql_2.2.gemfile.lock +++ b/gemfiles/jruby_9.4_graphql_2.2.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -93,7 +93,7 @@ GEM crack (0.4.5) rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) date (3.3.4-java) diff-lcs (1.5.0) docile (1.4.0) diff --git a/gemfiles/jruby_9.4_graphql_2.3.gemfile.lock b/gemfiles/jruby_9.4_graphql_2.3.gemfile.lock index dfd5cca4ff4..d4d82b927d6 100644 --- a/gemfiles/jruby_9.4_graphql_2.3.gemfile.lock +++ b/gemfiles/jruby_9.4_graphql_2.3.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -95,7 +95,7 @@ GEM bigdecimal rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) date (3.3.4-java) diff-lcs (1.5.1) docile (1.4.0) diff --git a/gemfiles/jruby_9.4_http.gemfile.lock b/gemfiles/jruby_9.4_http.gemfile.lock index e22941072c4..2918baf2ca5 100644 --- a/gemfiles/jruby_9.4_http.gemfile.lock +++ b/gemfiles/jruby_9.4_http.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -30,7 +30,7 @@ GEM concurrent-ruby (1.2.2) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) diff-lcs (1.5.0) docile (1.4.0) dogstatsd-ruby (5.6.1) diff --git a/gemfiles/jruby_9.4_opensearch_2.gemfile.lock b/gemfiles/jruby_9.4_opensearch_2.gemfile.lock index 84cb79302ca..21cc1a9afa7 100644 --- a/gemfiles/jruby_9.4_opensearch_2.gemfile.lock +++ b/gemfiles/jruby_9.4_opensearch_2.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -31,7 +31,7 @@ GEM concurrent-ruby (1.2.2) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) diff-lcs (1.5.0) docile (1.4.0) dogstatsd-ruby (5.6.1) diff --git a/gemfiles/jruby_9.4_opensearch_3.gemfile.lock b/gemfiles/jruby_9.4_opensearch_3.gemfile.lock index 5f378a33a3c..40b987b2e71 100644 --- a/gemfiles/jruby_9.4_opensearch_3.gemfile.lock +++ b/gemfiles/jruby_9.4_opensearch_3.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -31,7 +31,7 @@ GEM concurrent-ruby (1.2.2) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) diff-lcs (1.5.0) docile (1.4.0) dogstatsd-ruby (5.6.1) diff --git a/gemfiles/jruby_9.4_opensearch_latest.gemfile.lock b/gemfiles/jruby_9.4_opensearch_latest.gemfile.lock index c67fd9388a6..978e087574b 100644 --- a/gemfiles/jruby_9.4_opensearch_latest.gemfile.lock +++ b/gemfiles/jruby_9.4_opensearch_latest.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -33,7 +33,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) diff-lcs (1.5.1) docile (1.4.1) dogstatsd-ruby (5.6.1) diff --git a/gemfiles/jruby_9.4_rack_1.gemfile.lock b/gemfiles/jruby_9.4_rack_1.gemfile.lock index a962abee129..b9d2bc1576d 100644 --- a/gemfiles/jruby_9.4_rack_1.gemfile.lock +++ b/gemfiles/jruby_9.4_rack_1.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -30,7 +30,7 @@ GEM concurrent-ruby (1.2.2) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) diff-lcs (1.5.0) docile (1.4.0) dogstatsd-ruby (5.6.1) diff --git a/gemfiles/jruby_9.4_rack_2.gemfile.lock b/gemfiles/jruby_9.4_rack_2.gemfile.lock index 0d0f945ac96..096db7043f9 100644 --- a/gemfiles/jruby_9.4_rack_2.gemfile.lock +++ b/gemfiles/jruby_9.4_rack_2.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -30,7 +30,7 @@ GEM concurrent-ruby (1.2.2) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) diff-lcs (1.5.0) docile (1.4.0) dogstatsd-ruby (5.6.1) diff --git a/gemfiles/jruby_9.4_rack_3.gemfile.lock b/gemfiles/jruby_9.4_rack_3.gemfile.lock index 97c78c5a4fd..d99cc1cc4c4 100644 --- a/gemfiles/jruby_9.4_rack_3.gemfile.lock +++ b/gemfiles/jruby_9.4_rack_3.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -30,7 +30,7 @@ GEM concurrent-ruby (1.2.2) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) diff-lcs (1.5.0) docile (1.4.0) dogstatsd-ruby (5.6.1) diff --git a/gemfiles/jruby_9.4_rack_latest.gemfile.lock b/gemfiles/jruby_9.4_rack_latest.gemfile.lock index 02268386f80..c6580c46245 100644 --- a/gemfiles/jruby_9.4_rack_latest.gemfile.lock +++ b/gemfiles/jruby_9.4_rack_latest.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -33,7 +33,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) diff-lcs (1.5.1) docile (1.4.1) dogstatsd-ruby (5.6.2) diff --git a/gemfiles/jruby_9.4_rails61_mysql2.gemfile.lock b/gemfiles/jruby_9.4_rails61_mysql2.gemfile.lock index e7c92bb4d7f..49697317069 100644 --- a/gemfiles/jruby_9.4_rails61_mysql2.gemfile.lock +++ b/gemfiles/jruby_9.4_rails61_mysql2.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -100,7 +100,7 @@ GEM bigdecimal rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) date (3.3.4-java) diff-lcs (1.5.1) docile (1.4.0) diff --git a/gemfiles/jruby_9.4_rails61_postgres.gemfile.lock b/gemfiles/jruby_9.4_rails61_postgres.gemfile.lock index ce01db91320..eeb910a2a87 100644 --- a/gemfiles/jruby_9.4_rails61_postgres.gemfile.lock +++ b/gemfiles/jruby_9.4_rails61_postgres.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -96,7 +96,7 @@ GEM crack (0.4.5) rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) date (3.3.3-java) diff-lcs (1.5.0) docile (1.4.0) diff --git a/gemfiles/jruby_9.4_rails61_postgres_redis.gemfile.lock b/gemfiles/jruby_9.4_rails61_postgres_redis.gemfile.lock index 6075d38285d..7cf78615007 100644 --- a/gemfiles/jruby_9.4_rails61_postgres_redis.gemfile.lock +++ b/gemfiles/jruby_9.4_rails61_postgres_redis.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -96,7 +96,7 @@ GEM crack (0.4.5) rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) date (3.3.3-java) diff-lcs (1.5.0) docile (1.4.0) diff --git a/gemfiles/jruby_9.4_rails61_postgres_sidekiq.gemfile.lock b/gemfiles/jruby_9.4_rails61_postgres_sidekiq.gemfile.lock index f5694f8bfb3..2b81024c3d0 100644 --- a/gemfiles/jruby_9.4_rails61_postgres_sidekiq.gemfile.lock +++ b/gemfiles/jruby_9.4_rails61_postgres_sidekiq.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -97,7 +97,7 @@ GEM crack (0.4.5) rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) date (3.3.3-java) diff-lcs (1.5.0) docile (1.4.0) diff --git a/gemfiles/jruby_9.4_rails61_semantic_logger.gemfile.lock b/gemfiles/jruby_9.4_rails61_semantic_logger.gemfile.lock index 9a1b4fe1f5a..c0aa7acd502 100644 --- a/gemfiles/jruby_9.4_rails61_semantic_logger.gemfile.lock +++ b/gemfiles/jruby_9.4_rails61_semantic_logger.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -96,7 +96,7 @@ GEM crack (0.4.5) rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) date (3.3.3-java) diff-lcs (1.5.0) docile (1.4.0) diff --git a/gemfiles/jruby_9.4_redis_3.gemfile.lock b/gemfiles/jruby_9.4_redis_3.gemfile.lock index 2d56edea0c4..d876913455c 100644 --- a/gemfiles/jruby_9.4_redis_3.gemfile.lock +++ b/gemfiles/jruby_9.4_redis_3.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -30,7 +30,7 @@ GEM concurrent-ruby (1.1.10) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) diff-lcs (1.5.0) docile (1.4.0) dogstatsd-ruby (5.5.0) diff --git a/gemfiles/jruby_9.4_redis_4.gemfile.lock b/gemfiles/jruby_9.4_redis_4.gemfile.lock index 4dde71f800d..87299fe64f5 100644 --- a/gemfiles/jruby_9.4_redis_4.gemfile.lock +++ b/gemfiles/jruby_9.4_redis_4.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -30,7 +30,7 @@ GEM concurrent-ruby (1.1.10) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) diff-lcs (1.5.0) docile (1.4.0) dogstatsd-ruby (5.5.0) diff --git a/gemfiles/jruby_9.4_redis_5.gemfile.lock b/gemfiles/jruby_9.4_redis_5.gemfile.lock index 139681039e0..bfdf9b66e48 100644 --- a/gemfiles/jruby_9.4_redis_5.gemfile.lock +++ b/gemfiles/jruby_9.4_redis_5.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -31,7 +31,7 @@ GEM connection_pool (2.3.0) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) diff-lcs (1.5.0) docile (1.4.0) dogstatsd-ruby (5.5.0) diff --git a/gemfiles/jruby_9.4_relational_db.gemfile.lock b/gemfiles/jruby_9.4_relational_db.gemfile.lock index a17c2ae1c5d..e488b3fd28d 100644 --- a/gemfiles/jruby_9.4_relational_db.gemfile.lock +++ b/gemfiles/jruby_9.4_relational_db.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -52,7 +52,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) delayed_job (4.1.11) activesupport (>= 3.0, < 8.0) delayed_job_active_record (4.1.8) diff --git a/gemfiles/jruby_9.4_resque2_redis3.gemfile.lock b/gemfiles/jruby_9.4_resque2_redis3.gemfile.lock index 019801e8236..039d4fddade 100644 --- a/gemfiles/jruby_9.4_resque2_redis3.gemfile.lock +++ b/gemfiles/jruby_9.4_resque2_redis3.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -30,7 +30,7 @@ GEM concurrent-ruby (1.1.10) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) diff-lcs (1.5.0) docile (1.4.0) dogstatsd-ruby (5.5.0) diff --git a/gemfiles/jruby_9.4_resque2_redis4.gemfile.lock b/gemfiles/jruby_9.4_resque2_redis4.gemfile.lock index 579e03877e5..1521918dc59 100644 --- a/gemfiles/jruby_9.4_resque2_redis4.gemfile.lock +++ b/gemfiles/jruby_9.4_resque2_redis4.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -31,7 +31,7 @@ GEM connection_pool (2.3.0) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) diff-lcs (1.5.0) docile (1.4.0) dogstatsd-ruby (5.5.0) diff --git a/gemfiles/jruby_9.4_sinatra_2.gemfile.lock b/gemfiles/jruby_9.4_sinatra_2.gemfile.lock index a474aef6013..beb370fa1be 100644 --- a/gemfiles/jruby_9.4_sinatra_2.gemfile.lock +++ b/gemfiles/jruby_9.4_sinatra_2.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -33,7 +33,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) diff-lcs (1.5.1) docile (1.4.0) dogstatsd-ruby (5.6.1) diff --git a/gemfiles/jruby_9.4_sinatra_3.gemfile.lock b/gemfiles/jruby_9.4_sinatra_3.gemfile.lock index d2dce70e58b..80c3eecef35 100644 --- a/gemfiles/jruby_9.4_sinatra_3.gemfile.lock +++ b/gemfiles/jruby_9.4_sinatra_3.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -34,7 +34,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) diff-lcs (1.5.1) docile (1.4.0) dogstatsd-ruby (5.6.1) diff --git a/gemfiles/jruby_9.4_sinatra_4.gemfile.lock b/gemfiles/jruby_9.4_sinatra_4.gemfile.lock index d35ed99866e..516b0823a2a 100644 --- a/gemfiles/jruby_9.4_sinatra_4.gemfile.lock +++ b/gemfiles/jruby_9.4_sinatra_4.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -34,7 +34,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) diff-lcs (1.5.1) docile (1.4.0) dogstatsd-ruby (5.6.1) diff --git a/gemfiles/jruby_9.4_stripe_10.gemfile.lock b/gemfiles/jruby_9.4_stripe_10.gemfile.lock index 7c3aaa4606b..592a77c1106 100644 --- a/gemfiles/jruby_9.4_stripe_10.gemfile.lock +++ b/gemfiles/jruby_9.4_stripe_10.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -33,7 +33,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) diff-lcs (1.5.1) docile (1.4.1) dogstatsd-ruby (5.6.1) diff --git a/gemfiles/jruby_9.4_stripe_11.gemfile.lock b/gemfiles/jruby_9.4_stripe_11.gemfile.lock index 0dc6a82238d..b7484f30a47 100644 --- a/gemfiles/jruby_9.4_stripe_11.gemfile.lock +++ b/gemfiles/jruby_9.4_stripe_11.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -33,7 +33,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) diff-lcs (1.5.1) docile (1.4.1) dogstatsd-ruby (5.6.1) diff --git a/gemfiles/jruby_9.4_stripe_12.gemfile.lock b/gemfiles/jruby_9.4_stripe_12.gemfile.lock index 8adf4020322..03dbc37f525 100644 --- a/gemfiles/jruby_9.4_stripe_12.gemfile.lock +++ b/gemfiles/jruby_9.4_stripe_12.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -33,7 +33,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) diff-lcs (1.5.1) docile (1.4.1) dogstatsd-ruby (5.6.1) diff --git a/gemfiles/jruby_9.4_stripe_7.gemfile.lock b/gemfiles/jruby_9.4_stripe_7.gemfile.lock index 8f6e9d54c50..6e22f74ce14 100644 --- a/gemfiles/jruby_9.4_stripe_7.gemfile.lock +++ b/gemfiles/jruby_9.4_stripe_7.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -33,7 +33,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) diff-lcs (1.5.1) docile (1.4.1) dogstatsd-ruby (5.6.1) diff --git a/gemfiles/jruby_9.4_stripe_8.gemfile.lock b/gemfiles/jruby_9.4_stripe_8.gemfile.lock index d97feba5f49..99e76503e3c 100644 --- a/gemfiles/jruby_9.4_stripe_8.gemfile.lock +++ b/gemfiles/jruby_9.4_stripe_8.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -33,7 +33,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) diff-lcs (1.5.1) docile (1.4.1) dogstatsd-ruby (5.6.1) diff --git a/gemfiles/jruby_9.4_stripe_9.gemfile.lock b/gemfiles/jruby_9.4_stripe_9.gemfile.lock index 5ac27509ae3..3a792854210 100644 --- a/gemfiles/jruby_9.4_stripe_9.gemfile.lock +++ b/gemfiles/jruby_9.4_stripe_9.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -33,7 +33,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) diff-lcs (1.5.1) docile (1.4.1) dogstatsd-ruby (5.6.1) diff --git a/gemfiles/jruby_9.4_stripe_latest.gemfile.lock b/gemfiles/jruby_9.4_stripe_latest.gemfile.lock index f44944fe9cf..5d17b7942e0 100644 --- a/gemfiles/jruby_9.4_stripe_latest.gemfile.lock +++ b/gemfiles/jruby_9.4_stripe_latest.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -33,7 +33,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) diff-lcs (1.5.1) docile (1.4.1) dogstatsd-ruby (5.6.1) diff --git a/gemfiles/jruby_9.4_stripe_min.gemfile.lock b/gemfiles/jruby_9.4_stripe_min.gemfile.lock index f555360366c..22797727717 100644 --- a/gemfiles/jruby_9.4_stripe_min.gemfile.lock +++ b/gemfiles/jruby_9.4_stripe_min.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -33,7 +33,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) diff-lcs (1.5.1) docile (1.4.1) dogstatsd-ruby (5.6.1) diff --git a/gemfiles/ruby_2.5_activesupport.gemfile.lock b/gemfiles/ruby_2.5_activesupport.gemfile.lock index 8159994291d..bd904dd308c 100644 --- a/gemfiles/ruby_2.5_activesupport.gemfile.lock +++ b/gemfiles/ruby_2.5_activesupport.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -60,7 +60,7 @@ GEM crack (0.4.5) rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) digest-crc (0.6.5) diff --git a/gemfiles/ruby_2.5_aws.gemfile.lock b/gemfiles/ruby_2.5_aws.gemfile.lock index 7b92c93dd0a..7c8bfab3910 100644 --- a/gemfiles/ruby_2.5_aws.gemfile.lock +++ b/gemfiles/ruby_2.5_aws.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -1452,7 +1452,7 @@ GEM concurrent-ruby (1.2.2) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) docile (1.4.0) diff --git a/gemfiles/ruby_2.5_contrib.gemfile.lock b/gemfiles/ruby_2.5_contrib.gemfile.lock index 6039904ba6e..cbc1f70fb89 100644 --- a/gemfiles/ruby_2.5_contrib.gemfile.lock +++ b/gemfiles/ruby_2.5_contrib.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -38,7 +38,7 @@ GEM crack (0.4.5) rexml dalli (3.2.0) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) docile (1.4.0) diff --git a/gemfiles/ruby_2.5_contrib_old.gemfile.lock b/gemfiles/ruby_2.5_contrib_old.gemfile.lock index ec989f107c4..6ab8edac32d 100644 --- a/gemfiles/ruby_2.5_contrib_old.gemfile.lock +++ b/gemfiles/ruby_2.5_contrib_old.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -36,7 +36,7 @@ GEM rexml daemons (1.4.1) dalli (2.7.11) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) docile (1.4.0) diff --git a/gemfiles/ruby_2.5_core_old.gemfile.lock b/gemfiles/ruby_2.5_core_old.gemfile.lock index 9e7480a53b2..dee4f0cdeb5 100644 --- a/gemfiles/ruby_2.5_core_old.gemfile.lock +++ b/gemfiles/ruby_2.5_core_old.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -31,7 +31,7 @@ GEM concurrent-ruby (1.2.2) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) docile (1.4.0) diff --git a/gemfiles/ruby_2.5_elasticsearch_7.gemfile.lock b/gemfiles/ruby_2.5_elasticsearch_7.gemfile.lock index 6be75ac605b..5a30d602034 100644 --- a/gemfiles/ruby_2.5_elasticsearch_7.gemfile.lock +++ b/gemfiles/ruby_2.5_elasticsearch_7.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -33,7 +33,7 @@ GEM concurrent-ruby (1.2.2) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) docile (1.4.0) diff --git a/gemfiles/ruby_2.5_elasticsearch_8.gemfile.lock b/gemfiles/ruby_2.5_elasticsearch_8.gemfile.lock index 596827a7cf5..39182347aa0 100644 --- a/gemfiles/ruby_2.5_elasticsearch_8.gemfile.lock +++ b/gemfiles/ruby_2.5_elasticsearch_8.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -32,7 +32,7 @@ GEM concurrent-ruby (1.2.2) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) docile (1.4.0) diff --git a/gemfiles/ruby_2.5_elasticsearch_latest.gemfile.lock b/gemfiles/ruby_2.5_elasticsearch_latest.gemfile.lock index 3f17859abca..04c386a3d86 100644 --- a/gemfiles/ruby_2.5_elasticsearch_latest.gemfile.lock +++ b/gemfiles/ruby_2.5_elasticsearch_latest.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -34,7 +34,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) docile (1.4.1) diff --git a/gemfiles/ruby_2.5_graphql_2.0.gemfile.lock b/gemfiles/ruby_2.5_graphql_2.0.gemfile.lock index 41ca7a79da9..f3eccb99c53 100644 --- a/gemfiles/ruby_2.5_graphql_2.0.gemfile.lock +++ b/gemfiles/ruby_2.5_graphql_2.0.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -94,7 +94,7 @@ GEM crack (0.4.5) rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.0) digest (3.1.1) diff --git a/gemfiles/ruby_2.5_hanami_1.gemfile.lock b/gemfiles/ruby_2.5_hanami_1.gemfile.lock index 6f01e9aa51e..cefbba4f5ac 100644 --- a/gemfiles/ruby_2.5_hanami_1.gemfile.lock +++ b/gemfiles/ruby_2.5_hanami_1.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -31,7 +31,7 @@ GEM concurrent-ruby (1.2.2) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) digest (3.1.1) diff --git a/gemfiles/ruby_2.5_http.gemfile.lock b/gemfiles/ruby_2.5_http.gemfile.lock index 4f2c6143cee..faf1bb05c34 100644 --- a/gemfiles/ruby_2.5_http.gemfile.lock +++ b/gemfiles/ruby_2.5_http.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -31,7 +31,7 @@ GEM concurrent-ruby (1.2.2) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) docile (1.4.0) diff --git a/gemfiles/ruby_2.5_opensearch_2.gemfile.lock b/gemfiles/ruby_2.5_opensearch_2.gemfile.lock index e453295a2d6..de1d0e21eb4 100644 --- a/gemfiles/ruby_2.5_opensearch_2.gemfile.lock +++ b/gemfiles/ruby_2.5_opensearch_2.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -32,7 +32,7 @@ GEM concurrent-ruby (1.2.2) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) docile (1.4.0) diff --git a/gemfiles/ruby_2.5_opensearch_3.gemfile.lock b/gemfiles/ruby_2.5_opensearch_3.gemfile.lock index b78169010da..3adaf4b0b67 100644 --- a/gemfiles/ruby_2.5_opensearch_3.gemfile.lock +++ b/gemfiles/ruby_2.5_opensearch_3.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -32,7 +32,7 @@ GEM concurrent-ruby (1.2.2) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) docile (1.4.0) diff --git a/gemfiles/ruby_2.5_opensearch_latest.gemfile.lock b/gemfiles/ruby_2.5_opensearch_latest.gemfile.lock index e8c5cf944d9..2893ac69698 100644 --- a/gemfiles/ruby_2.5_opensearch_latest.gemfile.lock +++ b/gemfiles/ruby_2.5_opensearch_latest.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -34,7 +34,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) docile (1.4.1) diff --git a/gemfiles/ruby_2.5_rack_1.gemfile.lock b/gemfiles/ruby_2.5_rack_1.gemfile.lock index 78b32c4e3f9..9dc66f70083 100644 --- a/gemfiles/ruby_2.5_rack_1.gemfile.lock +++ b/gemfiles/ruby_2.5_rack_1.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -31,7 +31,7 @@ GEM concurrent-ruby (1.2.2) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) docile (1.4.0) diff --git a/gemfiles/ruby_2.5_rack_2.gemfile.lock b/gemfiles/ruby_2.5_rack_2.gemfile.lock index 07fffccbea2..1bee404aebd 100644 --- a/gemfiles/ruby_2.5_rack_2.gemfile.lock +++ b/gemfiles/ruby_2.5_rack_2.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -31,7 +31,7 @@ GEM concurrent-ruby (1.2.2) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) docile (1.4.0) diff --git a/gemfiles/ruby_2.5_rack_3.gemfile.lock b/gemfiles/ruby_2.5_rack_3.gemfile.lock index bc410bd0905..790f9756416 100644 --- a/gemfiles/ruby_2.5_rack_3.gemfile.lock +++ b/gemfiles/ruby_2.5_rack_3.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -31,7 +31,7 @@ GEM concurrent-ruby (1.2.2) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) docile (1.4.0) diff --git a/gemfiles/ruby_2.5_rack_latest.gemfile.lock b/gemfiles/ruby_2.5_rack_latest.gemfile.lock index 77138773195..4c20ea3d0ac 100644 --- a/gemfiles/ruby_2.5_rack_latest.gemfile.lock +++ b/gemfiles/ruby_2.5_rack_latest.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -34,7 +34,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) docile (1.4.1) diff --git a/gemfiles/ruby_2.5_rails4_mysql2.gemfile.lock b/gemfiles/ruby_2.5_rails4_mysql2.gemfile.lock index 4c37bf0149a..98d5b07ca25 100644 --- a/gemfiles/ruby_2.5_rails4_mysql2.gemfile.lock +++ b/gemfiles/ruby_2.5_rails4_mysql2.gemfile.lock @@ -68,7 +68,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -91,7 +91,7 @@ GEM crack (0.4.5) rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.0) digest (3.1.1) diff --git a/gemfiles/ruby_2.5_rails4_postgres.gemfile.lock b/gemfiles/ruby_2.5_rails4_postgres.gemfile.lock index 263ddc4e6a7..c3d1cb19542 100644 --- a/gemfiles/ruby_2.5_rails4_postgres.gemfile.lock +++ b/gemfiles/ruby_2.5_rails4_postgres.gemfile.lock @@ -68,7 +68,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -91,7 +91,7 @@ GEM crack (0.4.5) rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.0) digest (3.1.1) diff --git a/gemfiles/ruby_2.5_rails4_postgres_redis.gemfile.lock b/gemfiles/ruby_2.5_rails4_postgres_redis.gemfile.lock index fb158865162..3e7b46f77e6 100644 --- a/gemfiles/ruby_2.5_rails4_postgres_redis.gemfile.lock +++ b/gemfiles/ruby_2.5_rails4_postgres_redis.gemfile.lock @@ -68,7 +68,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -91,7 +91,7 @@ GEM crack (0.4.5) rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.0) digest (3.1.1) diff --git a/gemfiles/ruby_2.5_rails4_postgres_sidekiq.gemfile.lock b/gemfiles/ruby_2.5_rails4_postgres_sidekiq.gemfile.lock index e60d038cbb2..bf0ee719872 100644 --- a/gemfiles/ruby_2.5_rails4_postgres_sidekiq.gemfile.lock +++ b/gemfiles/ruby_2.5_rails4_postgres_sidekiq.gemfile.lock @@ -65,7 +65,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -92,7 +92,7 @@ GEM crack (0.4.5) rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.0) digest (3.1.1) diff --git a/gemfiles/ruby_2.5_rails4_semantic_logger.gemfile.lock b/gemfiles/ruby_2.5_rails4_semantic_logger.gemfile.lock index c0132e5678e..0cd7b760cf9 100644 --- a/gemfiles/ruby_2.5_rails4_semantic_logger.gemfile.lock +++ b/gemfiles/ruby_2.5_rails4_semantic_logger.gemfile.lock @@ -68,7 +68,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -91,7 +91,7 @@ GEM crack (0.4.5) rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.0) digest (3.1.1) diff --git a/gemfiles/ruby_2.5_rails5_mysql2.gemfile.lock b/gemfiles/ruby_2.5_rails5_mysql2.gemfile.lock index 5413a83123f..fa9a9ad4b41 100644 --- a/gemfiles/ruby_2.5_rails5_mysql2.gemfile.lock +++ b/gemfiles/ruby_2.5_rails5_mysql2.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -75,7 +75,7 @@ GEM crack (0.4.5) rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) docile (1.4.0) diff --git a/gemfiles/ruby_2.5_rails5_postgres.gemfile.lock b/gemfiles/ruby_2.5_rails5_postgres.gemfile.lock index 27a265786f3..9c3866006db 100644 --- a/gemfiles/ruby_2.5_rails5_postgres.gemfile.lock +++ b/gemfiles/ruby_2.5_rails5_postgres.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -75,7 +75,7 @@ GEM crack (0.4.5) rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) digest (3.1.1) diff --git a/gemfiles/ruby_2.5_rails5_postgres_redis.gemfile.lock b/gemfiles/ruby_2.5_rails5_postgres_redis.gemfile.lock index 98bf1da5162..6e16dbd9784 100644 --- a/gemfiles/ruby_2.5_rails5_postgres_redis.gemfile.lock +++ b/gemfiles/ruby_2.5_rails5_postgres_redis.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -76,7 +76,7 @@ GEM crack (0.4.5) rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) digest (3.1.1) diff --git a/gemfiles/ruby_2.5_rails5_postgres_redis_activesupport.gemfile.lock b/gemfiles/ruby_2.5_rails5_postgres_redis_activesupport.gemfile.lock index ff4bc48c711..d21cec0cbb6 100644 --- a/gemfiles/ruby_2.5_rails5_postgres_redis_activesupport.gemfile.lock +++ b/gemfiles/ruby_2.5_rails5_postgres_redis_activesupport.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -75,7 +75,7 @@ GEM crack (0.4.5) rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) digest (3.1.1) diff --git a/gemfiles/ruby_2.5_rails5_postgres_sidekiq.gemfile.lock b/gemfiles/ruby_2.5_rails5_postgres_sidekiq.gemfile.lock index e2b2939616e..e2190f3e66b 100644 --- a/gemfiles/ruby_2.5_rails5_postgres_sidekiq.gemfile.lock +++ b/gemfiles/ruby_2.5_rails5_postgres_sidekiq.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -76,7 +76,7 @@ GEM crack (0.4.5) rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) digest (3.1.1) diff --git a/gemfiles/ruby_2.5_rails5_semantic_logger.gemfile.lock b/gemfiles/ruby_2.5_rails5_semantic_logger.gemfile.lock index f3035de2a6e..7d2edd6c1eb 100644 --- a/gemfiles/ruby_2.5_rails5_semantic_logger.gemfile.lock +++ b/gemfiles/ruby_2.5_rails5_semantic_logger.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -75,7 +75,7 @@ GEM crack (0.4.5) rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) digest (3.1.1) diff --git a/gemfiles/ruby_2.5_rails61_mysql2.gemfile.lock b/gemfiles/ruby_2.5_rails61_mysql2.gemfile.lock index 79e3e3ee1c7..7c62661712b 100644 --- a/gemfiles/ruby_2.5_rails61_mysql2.gemfile.lock +++ b/gemfiles/ruby_2.5_rails61_mysql2.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -92,7 +92,7 @@ GEM crack (0.4.5) rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) docile (1.4.0) diff --git a/gemfiles/ruby_2.5_rails61_postgres.gemfile.lock b/gemfiles/ruby_2.5_rails61_postgres.gemfile.lock index 16199c952cb..e9cd62106e1 100644 --- a/gemfiles/ruby_2.5_rails61_postgres.gemfile.lock +++ b/gemfiles/ruby_2.5_rails61_postgres.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -92,7 +92,7 @@ GEM crack (0.4.5) rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) digest (3.1.1) diff --git a/gemfiles/ruby_2.5_rails61_postgres_redis.gemfile.lock b/gemfiles/ruby_2.5_rails61_postgres_redis.gemfile.lock index 80623706ec4..31b9f1af9a3 100644 --- a/gemfiles/ruby_2.5_rails61_postgres_redis.gemfile.lock +++ b/gemfiles/ruby_2.5_rails61_postgres_redis.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -93,7 +93,7 @@ GEM crack (0.4.5) rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) digest (3.1.1) diff --git a/gemfiles/ruby_2.5_rails61_postgres_sidekiq.gemfile.lock b/gemfiles/ruby_2.5_rails61_postgres_sidekiq.gemfile.lock index a8c7d893753..49c11dbbe5c 100644 --- a/gemfiles/ruby_2.5_rails61_postgres_sidekiq.gemfile.lock +++ b/gemfiles/ruby_2.5_rails61_postgres_sidekiq.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -93,7 +93,7 @@ GEM crack (0.4.5) rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) digest (3.1.1) diff --git a/gemfiles/ruby_2.5_rails61_semantic_logger.gemfile.lock b/gemfiles/ruby_2.5_rails61_semantic_logger.gemfile.lock index a89c76a5014..43b03c017a5 100644 --- a/gemfiles/ruby_2.5_rails61_semantic_logger.gemfile.lock +++ b/gemfiles/ruby_2.5_rails61_semantic_logger.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -92,7 +92,7 @@ GEM crack (0.4.5) rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) digest (3.1.1) diff --git a/gemfiles/ruby_2.5_rails6_mysql2.gemfile.lock b/gemfiles/ruby_2.5_rails6_mysql2.gemfile.lock index ce9c4887bbf..d3009f23132 100644 --- a/gemfiles/ruby_2.5_rails6_mysql2.gemfile.lock +++ b/gemfiles/ruby_2.5_rails6_mysql2.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -88,7 +88,7 @@ GEM crack (0.4.5) rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) docile (1.4.0) diff --git a/gemfiles/ruby_2.5_rails6_postgres.gemfile.lock b/gemfiles/ruby_2.5_rails6_postgres.gemfile.lock index de2f9ae702d..12267ed7939 100644 --- a/gemfiles/ruby_2.5_rails6_postgres.gemfile.lock +++ b/gemfiles/ruby_2.5_rails6_postgres.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -88,7 +88,7 @@ GEM crack (0.4.5) rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) digest (3.1.1) diff --git a/gemfiles/ruby_2.5_rails6_postgres_redis.gemfile.lock b/gemfiles/ruby_2.5_rails6_postgres_redis.gemfile.lock index 0d4f40ee175..4d882855ea2 100644 --- a/gemfiles/ruby_2.5_rails6_postgres_redis.gemfile.lock +++ b/gemfiles/ruby_2.5_rails6_postgres_redis.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -89,7 +89,7 @@ GEM crack (0.4.5) rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) digest (3.1.1) diff --git a/gemfiles/ruby_2.5_rails6_postgres_redis_activesupport.gemfile.lock b/gemfiles/ruby_2.5_rails6_postgres_redis_activesupport.gemfile.lock index 887c6e9dee0..a0f6b8886ba 100644 --- a/gemfiles/ruby_2.5_rails6_postgres_redis_activesupport.gemfile.lock +++ b/gemfiles/ruby_2.5_rails6_postgres_redis_activesupport.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -88,7 +88,7 @@ GEM crack (0.4.5) rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) digest (3.1.1) diff --git a/gemfiles/ruby_2.5_rails6_postgres_sidekiq.gemfile.lock b/gemfiles/ruby_2.5_rails6_postgres_sidekiq.gemfile.lock index dbdd89cf0dc..d01c1775f35 100644 --- a/gemfiles/ruby_2.5_rails6_postgres_sidekiq.gemfile.lock +++ b/gemfiles/ruby_2.5_rails6_postgres_sidekiq.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -89,7 +89,7 @@ GEM crack (0.4.5) rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) digest (3.1.1) diff --git a/gemfiles/ruby_2.5_rails6_semantic_logger.gemfile.lock b/gemfiles/ruby_2.5_rails6_semantic_logger.gemfile.lock index 5987b6305e0..e91f9b57ddb 100644 --- a/gemfiles/ruby_2.5_rails6_semantic_logger.gemfile.lock +++ b/gemfiles/ruby_2.5_rails6_semantic_logger.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -88,7 +88,7 @@ GEM crack (0.4.5) rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) digest (3.1.1) diff --git a/gemfiles/ruby_2.5_redis_3.gemfile.lock b/gemfiles/ruby_2.5_redis_3.gemfile.lock index 78ccb25dcba..f2f9106cad0 100644 --- a/gemfiles/ruby_2.5_redis_3.gemfile.lock +++ b/gemfiles/ruby_2.5_redis_3.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -31,7 +31,7 @@ GEM concurrent-ruby (1.2.2) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) docile (1.4.0) diff --git a/gemfiles/ruby_2.5_redis_4.gemfile.lock b/gemfiles/ruby_2.5_redis_4.gemfile.lock index a8e84021d7d..f4ffec0f566 100644 --- a/gemfiles/ruby_2.5_redis_4.gemfile.lock +++ b/gemfiles/ruby_2.5_redis_4.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -31,7 +31,7 @@ GEM concurrent-ruby (1.2.2) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) docile (1.4.0) diff --git a/gemfiles/ruby_2.5_redis_5.gemfile.lock b/gemfiles/ruby_2.5_redis_5.gemfile.lock index c05b0e08a72..e6b52817d30 100644 --- a/gemfiles/ruby_2.5_redis_5.gemfile.lock +++ b/gemfiles/ruby_2.5_redis_5.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -32,7 +32,7 @@ GEM connection_pool (2.3.0) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) docile (1.4.0) diff --git a/gemfiles/ruby_2.5_relational_db.gemfile.lock b/gemfiles/ruby_2.5_relational_db.gemfile.lock index cd0e5a25ea6..f41c1fe7b3c 100644 --- a/gemfiles/ruby_2.5_relational_db.gemfile.lock +++ b/gemfiles/ruby_2.5_relational_db.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -44,7 +44,7 @@ GEM concurrent-ruby (1.2.2) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) delayed_job (4.1.11) activesupport (>= 3.0, < 8.0) diff --git a/gemfiles/ruby_2.5_resque2_redis3.gemfile.lock b/gemfiles/ruby_2.5_resque2_redis3.gemfile.lock index 4c4969c8750..f92b0fa93ea 100644 --- a/gemfiles/ruby_2.5_resque2_redis3.gemfile.lock +++ b/gemfiles/ruby_2.5_resque2_redis3.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -31,7 +31,7 @@ GEM concurrent-ruby (1.2.2) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) docile (1.4.0) diff --git a/gemfiles/ruby_2.5_resque2_redis4.gemfile.lock b/gemfiles/ruby_2.5_resque2_redis4.gemfile.lock index 6d6aea9b4c7..b3843f0b5d6 100644 --- a/gemfiles/ruby_2.5_resque2_redis4.gemfile.lock +++ b/gemfiles/ruby_2.5_resque2_redis4.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -32,7 +32,7 @@ GEM connection_pool (2.3.0) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) docile (1.4.0) diff --git a/gemfiles/ruby_2.5_sinatra_2.gemfile.lock b/gemfiles/ruby_2.5_sinatra_2.gemfile.lock index 1361958a1a6..f6ac9af0873 100644 --- a/gemfiles/ruby_2.5_sinatra_2.gemfile.lock +++ b/gemfiles/ruby_2.5_sinatra_2.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -34,7 +34,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) docile (1.4.0) diff --git a/gemfiles/ruby_2.5_stripe_10.gemfile.lock b/gemfiles/ruby_2.5_stripe_10.gemfile.lock index 2eec271d89d..5f3e5df99e8 100644 --- a/gemfiles/ruby_2.5_stripe_10.gemfile.lock +++ b/gemfiles/ruby_2.5_stripe_10.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -34,7 +34,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) docile (1.4.1) diff --git a/gemfiles/ruby_2.5_stripe_11.gemfile.lock b/gemfiles/ruby_2.5_stripe_11.gemfile.lock index 104d135ad28..1b01f79eb74 100644 --- a/gemfiles/ruby_2.5_stripe_11.gemfile.lock +++ b/gemfiles/ruby_2.5_stripe_11.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -34,7 +34,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) docile (1.4.1) diff --git a/gemfiles/ruby_2.5_stripe_12.gemfile.lock b/gemfiles/ruby_2.5_stripe_12.gemfile.lock index 5d0524b5d7b..8d8f68c4ca5 100644 --- a/gemfiles/ruby_2.5_stripe_12.gemfile.lock +++ b/gemfiles/ruby_2.5_stripe_12.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -34,7 +34,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) docile (1.4.1) diff --git a/gemfiles/ruby_2.5_stripe_7.gemfile.lock b/gemfiles/ruby_2.5_stripe_7.gemfile.lock index 984329829c2..21d488d5ff7 100644 --- a/gemfiles/ruby_2.5_stripe_7.gemfile.lock +++ b/gemfiles/ruby_2.5_stripe_7.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -34,7 +34,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) docile (1.4.1) diff --git a/gemfiles/ruby_2.5_stripe_8.gemfile.lock b/gemfiles/ruby_2.5_stripe_8.gemfile.lock index 525c1f6bca0..e990b9f72d7 100644 --- a/gemfiles/ruby_2.5_stripe_8.gemfile.lock +++ b/gemfiles/ruby_2.5_stripe_8.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -34,7 +34,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) docile (1.4.1) diff --git a/gemfiles/ruby_2.5_stripe_9.gemfile.lock b/gemfiles/ruby_2.5_stripe_9.gemfile.lock index 0178e31590e..a9f4eeb3153 100644 --- a/gemfiles/ruby_2.5_stripe_9.gemfile.lock +++ b/gemfiles/ruby_2.5_stripe_9.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -34,7 +34,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) docile (1.4.1) diff --git a/gemfiles/ruby_2.5_stripe_latest.gemfile.lock b/gemfiles/ruby_2.5_stripe_latest.gemfile.lock index 12b8e16ab5a..83e8793fc5d 100644 --- a/gemfiles/ruby_2.5_stripe_latest.gemfile.lock +++ b/gemfiles/ruby_2.5_stripe_latest.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -34,7 +34,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) docile (1.4.1) diff --git a/gemfiles/ruby_2.5_stripe_min.gemfile.lock b/gemfiles/ruby_2.5_stripe_min.gemfile.lock index a5d56b04fb8..3ca5faa328c 100644 --- a/gemfiles/ruby_2.5_stripe_min.gemfile.lock +++ b/gemfiles/ruby_2.5_stripe_min.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -34,7 +34,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) docile (1.4.1) diff --git a/gemfiles/ruby_2.6_activesupport.gemfile.lock b/gemfiles/ruby_2.6_activesupport.gemfile.lock index c1d541bfaac..4d734fe6577 100644 --- a/gemfiles/ruby_2.6_activesupport.gemfile.lock +++ b/gemfiles/ruby_2.6_activesupport.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -63,7 +63,7 @@ GEM crack (0.4.5) rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) digest-crc (0.6.5) diff --git a/gemfiles/ruby_2.6_aws.gemfile.lock b/gemfiles/ruby_2.6_aws.gemfile.lock index 53140566503..c1128ef2a7f 100644 --- a/gemfiles/ruby_2.6_aws.gemfile.lock +++ b/gemfiles/ruby_2.6_aws.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -1454,7 +1454,7 @@ GEM concurrent-ruby (1.2.2) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) docile (1.4.0) diff --git a/gemfiles/ruby_2.6_contrib.gemfile.lock b/gemfiles/ruby_2.6_contrib.gemfile.lock index e15736f0358..9290fa6d458 100644 --- a/gemfiles/ruby_2.6_contrib.gemfile.lock +++ b/gemfiles/ruby_2.6_contrib.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -40,7 +40,7 @@ GEM crack (0.4.5) rexml dalli (3.2.4) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) docile (1.4.0) diff --git a/gemfiles/ruby_2.6_contrib_old.gemfile.lock b/gemfiles/ruby_2.6_contrib_old.gemfile.lock index e88f52aff99..ee3bb57e301 100644 --- a/gemfiles/ruby_2.6_contrib_old.gemfile.lock +++ b/gemfiles/ruby_2.6_contrib_old.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -38,7 +38,7 @@ GEM rexml daemons (1.4.1) dalli (2.7.11) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) docile (1.4.0) diff --git a/gemfiles/ruby_2.6_core_old.gemfile.lock b/gemfiles/ruby_2.6_core_old.gemfile.lock index 49fe7a9e983..9f852271ed1 100644 --- a/gemfiles/ruby_2.6_core_old.gemfile.lock +++ b/gemfiles/ruby_2.6_core_old.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -33,7 +33,7 @@ GEM concurrent-ruby (1.2.2) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) docile (1.4.0) diff --git a/gemfiles/ruby_2.6_elasticsearch_7.gemfile.lock b/gemfiles/ruby_2.6_elasticsearch_7.gemfile.lock index aed8606c6da..4cea30faa65 100644 --- a/gemfiles/ruby_2.6_elasticsearch_7.gemfile.lock +++ b/gemfiles/ruby_2.6_elasticsearch_7.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -35,7 +35,7 @@ GEM concurrent-ruby (1.2.2) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) docile (1.4.0) diff --git a/gemfiles/ruby_2.6_elasticsearch_8.gemfile.lock b/gemfiles/ruby_2.6_elasticsearch_8.gemfile.lock index 39997e6b489..453b543e584 100644 --- a/gemfiles/ruby_2.6_elasticsearch_8.gemfile.lock +++ b/gemfiles/ruby_2.6_elasticsearch_8.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -35,7 +35,7 @@ GEM concurrent-ruby (1.2.2) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) docile (1.4.0) diff --git a/gemfiles/ruby_2.6_elasticsearch_latest.gemfile.lock b/gemfiles/ruby_2.6_elasticsearch_latest.gemfile.lock index ddb371009db..e793083ecad 100644 --- a/gemfiles/ruby_2.6_elasticsearch_latest.gemfile.lock +++ b/gemfiles/ruby_2.6_elasticsearch_latest.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -37,7 +37,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) docile (1.4.1) diff --git a/gemfiles/ruby_2.6_graphql_1.13.gemfile.lock b/gemfiles/ruby_2.6_graphql_1.13.gemfile.lock index 1452f1772fc..27fe29f22ba 100644 --- a/gemfiles/ruby_2.6_graphql_1.13.gemfile.lock +++ b/gemfiles/ruby_2.6_graphql_1.13.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -96,7 +96,7 @@ GEM crack (0.4.5) rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) date (3.3.4) debug_inspector (1.2.0) diff-lcs (1.5.0) diff --git a/gemfiles/ruby_2.6_graphql_2.0.gemfile.lock b/gemfiles/ruby_2.6_graphql_2.0.gemfile.lock index 7e0f7fe35e1..396b6ab6381 100644 --- a/gemfiles/ruby_2.6_graphql_2.0.gemfile.lock +++ b/gemfiles/ruby_2.6_graphql_2.0.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -96,7 +96,7 @@ GEM crack (0.4.5) rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) date (3.3.4) debug_inspector (1.2.0) diff-lcs (1.5.0) diff --git a/gemfiles/ruby_2.6_hanami_1.gemfile.lock b/gemfiles/ruby_2.6_hanami_1.gemfile.lock index dedc5642433..5b3a2e1519f 100644 --- a/gemfiles/ruby_2.6_hanami_1.gemfile.lock +++ b/gemfiles/ruby_2.6_hanami_1.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -33,7 +33,7 @@ GEM concurrent-ruby (1.2.2) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) date (3.3.3) debug_inspector (1.1.0) diff-lcs (1.5.0) diff --git a/gemfiles/ruby_2.6_http.gemfile.lock b/gemfiles/ruby_2.6_http.gemfile.lock index 6df85a899cb..263581b8f2c 100644 --- a/gemfiles/ruby_2.6_http.gemfile.lock +++ b/gemfiles/ruby_2.6_http.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -33,7 +33,7 @@ GEM concurrent-ruby (1.2.2) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) docile (1.4.0) diff --git a/gemfiles/ruby_2.6_opensearch_2.gemfile.lock b/gemfiles/ruby_2.6_opensearch_2.gemfile.lock index 802e7a3766c..a2c93b728b0 100644 --- a/gemfiles/ruby_2.6_opensearch_2.gemfile.lock +++ b/gemfiles/ruby_2.6_opensearch_2.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -35,7 +35,7 @@ GEM concurrent-ruby (1.2.2) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) docile (1.4.0) diff --git a/gemfiles/ruby_2.6_opensearch_3.gemfile.lock b/gemfiles/ruby_2.6_opensearch_3.gemfile.lock index a14ba69ef0f..dfd124a3cbd 100644 --- a/gemfiles/ruby_2.6_opensearch_3.gemfile.lock +++ b/gemfiles/ruby_2.6_opensearch_3.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -35,7 +35,7 @@ GEM concurrent-ruby (1.2.2) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) docile (1.4.0) diff --git a/gemfiles/ruby_2.6_opensearch_latest.gemfile.lock b/gemfiles/ruby_2.6_opensearch_latest.gemfile.lock index bdfa45fa726..bf4ffc42c52 100644 --- a/gemfiles/ruby_2.6_opensearch_latest.gemfile.lock +++ b/gemfiles/ruby_2.6_opensearch_latest.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -37,7 +37,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) docile (1.4.1) diff --git a/gemfiles/ruby_2.6_opentelemetry.gemfile.lock b/gemfiles/ruby_2.6_opentelemetry.gemfile.lock index 78178910bcc..1040200aab6 100755 --- a/gemfiles/ruby_2.6_opentelemetry.gemfile.lock +++ b/gemfiles/ruby_2.6_opentelemetry.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -33,7 +33,7 @@ GEM concurrent-ruby (1.2.2) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) docile (1.4.0) diff --git a/gemfiles/ruby_2.6_opentelemetry_otlp.gemfile.lock b/gemfiles/ruby_2.6_opentelemetry_otlp.gemfile.lock index 06722001f16..7819077d47f 100644 --- a/gemfiles/ruby_2.6_opentelemetry_otlp.gemfile.lock +++ b/gemfiles/ruby_2.6_opentelemetry_otlp.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -36,7 +36,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) docile (1.4.0) diff --git a/gemfiles/ruby_2.6_rack_1.gemfile.lock b/gemfiles/ruby_2.6_rack_1.gemfile.lock index 4f46efd4e5d..c0c4f47cc89 100644 --- a/gemfiles/ruby_2.6_rack_1.gemfile.lock +++ b/gemfiles/ruby_2.6_rack_1.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -33,7 +33,7 @@ GEM concurrent-ruby (1.2.2) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) docile (1.4.0) diff --git a/gemfiles/ruby_2.6_rack_2.gemfile.lock b/gemfiles/ruby_2.6_rack_2.gemfile.lock index 84b4452c6b6..ed770a02bcc 100644 --- a/gemfiles/ruby_2.6_rack_2.gemfile.lock +++ b/gemfiles/ruby_2.6_rack_2.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -33,7 +33,7 @@ GEM concurrent-ruby (1.2.2) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) docile (1.4.0) diff --git a/gemfiles/ruby_2.6_rack_3.gemfile.lock b/gemfiles/ruby_2.6_rack_3.gemfile.lock index b634fbbbc25..0f1fdb86c11 100644 --- a/gemfiles/ruby_2.6_rack_3.gemfile.lock +++ b/gemfiles/ruby_2.6_rack_3.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -33,7 +33,7 @@ GEM concurrent-ruby (1.2.2) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) docile (1.4.0) diff --git a/gemfiles/ruby_2.6_rack_latest.gemfile.lock b/gemfiles/ruby_2.6_rack_latest.gemfile.lock index 71988c4dcaa..6891c1bd984 100644 --- a/gemfiles/ruby_2.6_rack_latest.gemfile.lock +++ b/gemfiles/ruby_2.6_rack_latest.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -36,7 +36,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) docile (1.4.1) diff --git a/gemfiles/ruby_2.6_rails5_mysql2.gemfile.lock b/gemfiles/ruby_2.6_rails5_mysql2.gemfile.lock index e668d8cdd1a..176418de4ae 100644 --- a/gemfiles/ruby_2.6_rails5_mysql2.gemfile.lock +++ b/gemfiles/ruby_2.6_rails5_mysql2.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -77,7 +77,7 @@ GEM crack (0.4.5) rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) date (3.3.3) debug_inspector (1.1.0) diff-lcs (1.5.0) diff --git a/gemfiles/ruby_2.6_rails5_postgres.gemfile.lock b/gemfiles/ruby_2.6_rails5_postgres.gemfile.lock index ffb91eb2473..84d937bee65 100644 --- a/gemfiles/ruby_2.6_rails5_postgres.gemfile.lock +++ b/gemfiles/ruby_2.6_rails5_postgres.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -77,7 +77,7 @@ GEM crack (0.4.5) rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) date (3.3.3) debug_inspector (1.1.0) diff-lcs (1.5.0) diff --git a/gemfiles/ruby_2.6_rails5_postgres_redis.gemfile.lock b/gemfiles/ruby_2.6_rails5_postgres_redis.gemfile.lock index 2af33cc8cef..23c18f51d01 100644 --- a/gemfiles/ruby_2.6_rails5_postgres_redis.gemfile.lock +++ b/gemfiles/ruby_2.6_rails5_postgres_redis.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -77,7 +77,7 @@ GEM crack (0.4.5) rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) date (3.3.3) debug_inspector (1.1.0) diff-lcs (1.5.0) diff --git a/gemfiles/ruby_2.6_rails5_postgres_redis_activesupport.gemfile.lock b/gemfiles/ruby_2.6_rails5_postgres_redis_activesupport.gemfile.lock index d9207a5021c..ba81191983f 100644 --- a/gemfiles/ruby_2.6_rails5_postgres_redis_activesupport.gemfile.lock +++ b/gemfiles/ruby_2.6_rails5_postgres_redis_activesupport.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -77,7 +77,7 @@ GEM crack (0.4.5) rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) date (3.3.3) debug_inspector (1.1.0) diff-lcs (1.5.0) diff --git a/gemfiles/ruby_2.6_rails5_postgres_sidekiq.gemfile.lock b/gemfiles/ruby_2.6_rails5_postgres_sidekiq.gemfile.lock index 0ba0d6526c3..5e2b43f592f 100644 --- a/gemfiles/ruby_2.6_rails5_postgres_sidekiq.gemfile.lock +++ b/gemfiles/ruby_2.6_rails5_postgres_sidekiq.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -78,7 +78,7 @@ GEM crack (0.4.5) rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) date (3.3.3) debug_inspector (1.1.0) diff-lcs (1.5.0) diff --git a/gemfiles/ruby_2.6_rails5_semantic_logger.gemfile.lock b/gemfiles/ruby_2.6_rails5_semantic_logger.gemfile.lock index 19d7285c5cd..ec24adf2eab 100644 --- a/gemfiles/ruby_2.6_rails5_semantic_logger.gemfile.lock +++ b/gemfiles/ruby_2.6_rails5_semantic_logger.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -77,7 +77,7 @@ GEM crack (0.4.5) rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) date (3.3.3) debug_inspector (1.1.0) diff-lcs (1.5.0) diff --git a/gemfiles/ruby_2.6_rails61_mysql2.gemfile.lock b/gemfiles/ruby_2.6_rails61_mysql2.gemfile.lock index 8b333fc3736..1147580099a 100644 --- a/gemfiles/ruby_2.6_rails61_mysql2.gemfile.lock +++ b/gemfiles/ruby_2.6_rails61_mysql2.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -94,7 +94,7 @@ GEM crack (0.4.5) rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) date (3.3.3) debug_inspector (1.1.0) diff-lcs (1.5.0) diff --git a/gemfiles/ruby_2.6_rails61_postgres.gemfile.lock b/gemfiles/ruby_2.6_rails61_postgres.gemfile.lock index b7a936f64b4..4b5972956f8 100644 --- a/gemfiles/ruby_2.6_rails61_postgres.gemfile.lock +++ b/gemfiles/ruby_2.6_rails61_postgres.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -94,7 +94,7 @@ GEM crack (0.4.5) rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) date (3.3.3) debug_inspector (1.1.0) diff-lcs (1.5.0) diff --git a/gemfiles/ruby_2.6_rails61_postgres_redis.gemfile.lock b/gemfiles/ruby_2.6_rails61_postgres_redis.gemfile.lock index 24f82360ae2..938b3444aa2 100644 --- a/gemfiles/ruby_2.6_rails61_postgres_redis.gemfile.lock +++ b/gemfiles/ruby_2.6_rails61_postgres_redis.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -94,7 +94,7 @@ GEM crack (0.4.5) rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) date (3.3.3) debug_inspector (1.1.0) diff-lcs (1.5.0) diff --git a/gemfiles/ruby_2.6_rails61_postgres_sidekiq.gemfile.lock b/gemfiles/ruby_2.6_rails61_postgres_sidekiq.gemfile.lock index f8490fc342d..ff3d9e1602f 100644 --- a/gemfiles/ruby_2.6_rails61_postgres_sidekiq.gemfile.lock +++ b/gemfiles/ruby_2.6_rails61_postgres_sidekiq.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -95,7 +95,7 @@ GEM crack (0.4.5) rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) date (3.3.3) debug_inspector (1.1.0) diff-lcs (1.5.0) diff --git a/gemfiles/ruby_2.6_rails61_semantic_logger.gemfile.lock b/gemfiles/ruby_2.6_rails61_semantic_logger.gemfile.lock index 3b0fa5ace0b..b0221015b7e 100644 --- a/gemfiles/ruby_2.6_rails61_semantic_logger.gemfile.lock +++ b/gemfiles/ruby_2.6_rails61_semantic_logger.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -94,7 +94,7 @@ GEM crack (0.4.5) rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) date (3.3.3) debug_inspector (1.1.0) diff-lcs (1.5.0) diff --git a/gemfiles/ruby_2.6_rails6_mysql2.gemfile.lock b/gemfiles/ruby_2.6_rails6_mysql2.gemfile.lock index be871912455..83b6198afd4 100644 --- a/gemfiles/ruby_2.6_rails6_mysql2.gemfile.lock +++ b/gemfiles/ruby_2.6_rails6_mysql2.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -90,7 +90,7 @@ GEM crack (0.4.5) rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) date (3.3.3) debug_inspector (1.1.0) diff-lcs (1.5.0) diff --git a/gemfiles/ruby_2.6_rails6_postgres.gemfile.lock b/gemfiles/ruby_2.6_rails6_postgres.gemfile.lock index e5069faab50..0319caa25a6 100644 --- a/gemfiles/ruby_2.6_rails6_postgres.gemfile.lock +++ b/gemfiles/ruby_2.6_rails6_postgres.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -90,7 +90,7 @@ GEM crack (0.4.5) rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) date (3.3.3) debug_inspector (1.1.0) diff-lcs (1.5.0) diff --git a/gemfiles/ruby_2.6_rails6_postgres_redis.gemfile.lock b/gemfiles/ruby_2.6_rails6_postgres_redis.gemfile.lock index 0c296b0a2dd..99b15756cf0 100644 --- a/gemfiles/ruby_2.6_rails6_postgres_redis.gemfile.lock +++ b/gemfiles/ruby_2.6_rails6_postgres_redis.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -90,7 +90,7 @@ GEM crack (0.4.5) rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) date (3.3.3) debug_inspector (1.1.0) diff-lcs (1.5.0) diff --git a/gemfiles/ruby_2.6_rails6_postgres_redis_activesupport.gemfile.lock b/gemfiles/ruby_2.6_rails6_postgres_redis_activesupport.gemfile.lock index cbc4e538597..606079fb6cc 100644 --- a/gemfiles/ruby_2.6_rails6_postgres_redis_activesupport.gemfile.lock +++ b/gemfiles/ruby_2.6_rails6_postgres_redis_activesupport.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -90,7 +90,7 @@ GEM crack (0.4.5) rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) date (3.3.3) debug_inspector (1.1.0) diff-lcs (1.5.0) diff --git a/gemfiles/ruby_2.6_rails6_postgres_sidekiq.gemfile.lock b/gemfiles/ruby_2.6_rails6_postgres_sidekiq.gemfile.lock index 5a2429f536d..861023349a3 100644 --- a/gemfiles/ruby_2.6_rails6_postgres_sidekiq.gemfile.lock +++ b/gemfiles/ruby_2.6_rails6_postgres_sidekiq.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -91,7 +91,7 @@ GEM crack (0.4.5) rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) date (3.3.3) debug_inspector (1.1.0) diff-lcs (1.5.0) diff --git a/gemfiles/ruby_2.6_rails6_semantic_logger.gemfile.lock b/gemfiles/ruby_2.6_rails6_semantic_logger.gemfile.lock index 5d5964eb621..40e0acf08a5 100644 --- a/gemfiles/ruby_2.6_rails6_semantic_logger.gemfile.lock +++ b/gemfiles/ruby_2.6_rails6_semantic_logger.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -90,7 +90,7 @@ GEM crack (0.4.5) rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) date (3.3.3) debug_inspector (1.1.0) diff-lcs (1.5.0) diff --git a/gemfiles/ruby_2.6_redis_3.gemfile.lock b/gemfiles/ruby_2.6_redis_3.gemfile.lock index 79b4935fac5..be17d708e7b 100644 --- a/gemfiles/ruby_2.6_redis_3.gemfile.lock +++ b/gemfiles/ruby_2.6_redis_3.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -33,7 +33,7 @@ GEM concurrent-ruby (1.2.2) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) docile (1.4.0) diff --git a/gemfiles/ruby_2.6_redis_4.gemfile.lock b/gemfiles/ruby_2.6_redis_4.gemfile.lock index 67921f0ae75..ea0f0ece6d9 100644 --- a/gemfiles/ruby_2.6_redis_4.gemfile.lock +++ b/gemfiles/ruby_2.6_redis_4.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -33,7 +33,7 @@ GEM concurrent-ruby (1.2.2) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) docile (1.4.0) diff --git a/gemfiles/ruby_2.6_redis_5.gemfile.lock b/gemfiles/ruby_2.6_redis_5.gemfile.lock index eabf984246e..0fd6f03857c 100644 --- a/gemfiles/ruby_2.6_redis_5.gemfile.lock +++ b/gemfiles/ruby_2.6_redis_5.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -34,7 +34,7 @@ GEM connection_pool (2.3.0) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) docile (1.4.0) diff --git a/gemfiles/ruby_2.6_relational_db.gemfile.lock b/gemfiles/ruby_2.6_relational_db.gemfile.lock index 9371a9061f0..0a020d6413a 100644 --- a/gemfiles/ruby_2.6_relational_db.gemfile.lock +++ b/gemfiles/ruby_2.6_relational_db.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -45,7 +45,7 @@ GEM concurrent-ruby (1.2.2) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) delayed_job (4.1.11) activesupport (>= 3.0, < 8.0) diff --git a/gemfiles/ruby_2.6_resque2_redis3.gemfile.lock b/gemfiles/ruby_2.6_resque2_redis3.gemfile.lock index d06fec706f5..719906750be 100644 --- a/gemfiles/ruby_2.6_resque2_redis3.gemfile.lock +++ b/gemfiles/ruby_2.6_resque2_redis3.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -33,7 +33,7 @@ GEM concurrent-ruby (1.2.2) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) docile (1.4.0) diff --git a/gemfiles/ruby_2.6_resque2_redis4.gemfile.lock b/gemfiles/ruby_2.6_resque2_redis4.gemfile.lock index 5f8a4199633..e807507d636 100644 --- a/gemfiles/ruby_2.6_resque2_redis4.gemfile.lock +++ b/gemfiles/ruby_2.6_resque2_redis4.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -33,7 +33,7 @@ GEM concurrent-ruby (1.2.2) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) docile (1.4.0) diff --git a/gemfiles/ruby_2.6_sinatra_2.gemfile.lock b/gemfiles/ruby_2.6_sinatra_2.gemfile.lock index 668e26983c7..5d701cdbb16 100644 --- a/gemfiles/ruby_2.6_sinatra_2.gemfile.lock +++ b/gemfiles/ruby_2.6_sinatra_2.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -36,7 +36,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) docile (1.4.0) diff --git a/gemfiles/ruby_2.6_sinatra_3.gemfile.lock b/gemfiles/ruby_2.6_sinatra_3.gemfile.lock index 9a8b1a90382..0ab33f08332 100644 --- a/gemfiles/ruby_2.6_sinatra_3.gemfile.lock +++ b/gemfiles/ruby_2.6_sinatra_3.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -37,7 +37,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) docile (1.4.0) diff --git a/gemfiles/ruby_2.6_stripe_10.gemfile.lock b/gemfiles/ruby_2.6_stripe_10.gemfile.lock index e80d519b717..ea517434080 100644 --- a/gemfiles/ruby_2.6_stripe_10.gemfile.lock +++ b/gemfiles/ruby_2.6_stripe_10.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -36,7 +36,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) docile (1.4.1) diff --git a/gemfiles/ruby_2.6_stripe_11.gemfile.lock b/gemfiles/ruby_2.6_stripe_11.gemfile.lock index af99903fdd1..446126637e1 100644 --- a/gemfiles/ruby_2.6_stripe_11.gemfile.lock +++ b/gemfiles/ruby_2.6_stripe_11.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -36,7 +36,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) docile (1.4.1) diff --git a/gemfiles/ruby_2.6_stripe_12.gemfile.lock b/gemfiles/ruby_2.6_stripe_12.gemfile.lock index 4ce12be9267..257bf0f004b 100644 --- a/gemfiles/ruby_2.6_stripe_12.gemfile.lock +++ b/gemfiles/ruby_2.6_stripe_12.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -36,7 +36,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) docile (1.4.1) diff --git a/gemfiles/ruby_2.6_stripe_7.gemfile.lock b/gemfiles/ruby_2.6_stripe_7.gemfile.lock index 4f12b8dcb6a..85c4b6e29f8 100644 --- a/gemfiles/ruby_2.6_stripe_7.gemfile.lock +++ b/gemfiles/ruby_2.6_stripe_7.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -36,7 +36,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) docile (1.4.1) diff --git a/gemfiles/ruby_2.6_stripe_8.gemfile.lock b/gemfiles/ruby_2.6_stripe_8.gemfile.lock index 2db4a71f9de..63919f732de 100644 --- a/gemfiles/ruby_2.6_stripe_8.gemfile.lock +++ b/gemfiles/ruby_2.6_stripe_8.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -36,7 +36,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) docile (1.4.1) diff --git a/gemfiles/ruby_2.6_stripe_9.gemfile.lock b/gemfiles/ruby_2.6_stripe_9.gemfile.lock index cc47edda218..882eb9c619c 100644 --- a/gemfiles/ruby_2.6_stripe_9.gemfile.lock +++ b/gemfiles/ruby_2.6_stripe_9.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -36,7 +36,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) docile (1.4.1) diff --git a/gemfiles/ruby_2.6_stripe_latest.gemfile.lock b/gemfiles/ruby_2.6_stripe_latest.gemfile.lock index e23b6597fdc..5a02efd9ce8 100644 --- a/gemfiles/ruby_2.6_stripe_latest.gemfile.lock +++ b/gemfiles/ruby_2.6_stripe_latest.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -36,7 +36,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) docile (1.4.1) diff --git a/gemfiles/ruby_2.6_stripe_min.gemfile.lock b/gemfiles/ruby_2.6_stripe_min.gemfile.lock index cdc2c637ea9..318740b202e 100644 --- a/gemfiles/ruby_2.6_stripe_min.gemfile.lock +++ b/gemfiles/ruby_2.6_stripe_min.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -36,7 +36,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) docile (1.4.1) diff --git a/gemfiles/ruby_2.7_activesupport.gemfile.lock b/gemfiles/ruby_2.7_activesupport.gemfile.lock index bc1e3765678..023a35bfef9 100644 --- a/gemfiles/ruby_2.7_activesupport.gemfile.lock +++ b/gemfiles/ruby_2.7_activesupport.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -63,7 +63,7 @@ GEM crack (0.4.5) rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) digest-crc (0.6.5) diff --git a/gemfiles/ruby_2.7_aws.gemfile.lock b/gemfiles/ruby_2.7_aws.gemfile.lock index 0ac539b7685..7b7589a5336 100644 --- a/gemfiles/ruby_2.7_aws.gemfile.lock +++ b/gemfiles/ruby_2.7_aws.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -1454,7 +1454,7 @@ GEM concurrent-ruby (1.2.2) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) docile (1.4.0) diff --git a/gemfiles/ruby_2.7_contrib.gemfile.lock b/gemfiles/ruby_2.7_contrib.gemfile.lock index 3d04ed0b39b..0e85f7b4491 100644 --- a/gemfiles/ruby_2.7_contrib.gemfile.lock +++ b/gemfiles/ruby_2.7_contrib.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -40,7 +40,7 @@ GEM crack (0.4.5) rexml dalli (3.2.4) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) docile (1.4.0) diff --git a/gemfiles/ruby_2.7_contrib_old.gemfile.lock b/gemfiles/ruby_2.7_contrib_old.gemfile.lock index 41d2f80ef8c..55982d3e455 100644 --- a/gemfiles/ruby_2.7_contrib_old.gemfile.lock +++ b/gemfiles/ruby_2.7_contrib_old.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -38,7 +38,7 @@ GEM rexml daemons (1.4.1) dalli (2.7.11) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) docile (1.4.0) diff --git a/gemfiles/ruby_2.7_core_old.gemfile.lock b/gemfiles/ruby_2.7_core_old.gemfile.lock index 547b3a83e40..ed802d9732e 100644 --- a/gemfiles/ruby_2.7_core_old.gemfile.lock +++ b/gemfiles/ruby_2.7_core_old.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -33,7 +33,7 @@ GEM concurrent-ruby (1.2.2) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) docile (1.4.0) diff --git a/gemfiles/ruby_2.7_elasticsearch_7.gemfile.lock b/gemfiles/ruby_2.7_elasticsearch_7.gemfile.lock index 2f56e49acb5..d22c7037269 100644 --- a/gemfiles/ruby_2.7_elasticsearch_7.gemfile.lock +++ b/gemfiles/ruby_2.7_elasticsearch_7.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -35,7 +35,7 @@ GEM concurrent-ruby (1.2.2) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) docile (1.4.0) diff --git a/gemfiles/ruby_2.7_elasticsearch_8.gemfile.lock b/gemfiles/ruby_2.7_elasticsearch_8.gemfile.lock index 707fc6e91b4..fafee914163 100644 --- a/gemfiles/ruby_2.7_elasticsearch_8.gemfile.lock +++ b/gemfiles/ruby_2.7_elasticsearch_8.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -35,7 +35,7 @@ GEM concurrent-ruby (1.2.2) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) docile (1.4.0) diff --git a/gemfiles/ruby_2.7_elasticsearch_latest.gemfile.lock b/gemfiles/ruby_2.7_elasticsearch_latest.gemfile.lock index aaa15644f0b..08f6cc10a6e 100644 --- a/gemfiles/ruby_2.7_elasticsearch_latest.gemfile.lock +++ b/gemfiles/ruby_2.7_elasticsearch_latest.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -37,7 +37,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) docile (1.4.1) diff --git a/gemfiles/ruby_2.7_graphql_1.13.gemfile.lock b/gemfiles/ruby_2.7_graphql_1.13.gemfile.lock index 1bb63d012bd..917866eae2c 100644 --- a/gemfiles/ruby_2.7_graphql_1.13.gemfile.lock +++ b/gemfiles/ruby_2.7_graphql_1.13.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -96,7 +96,7 @@ GEM crack (0.4.5) rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) date (3.3.4) debug_inspector (1.2.0) diff-lcs (1.5.0) diff --git a/gemfiles/ruby_2.7_graphql_2.0.gemfile.lock b/gemfiles/ruby_2.7_graphql_2.0.gemfile.lock index e4b5c28dc06..ac87a1dcaf9 100644 --- a/gemfiles/ruby_2.7_graphql_2.0.gemfile.lock +++ b/gemfiles/ruby_2.7_graphql_2.0.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -96,7 +96,7 @@ GEM crack (0.4.5) rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) date (3.3.4) debug_inspector (1.2.0) diff-lcs (1.5.0) diff --git a/gemfiles/ruby_2.7_graphql_2.1.gemfile.lock b/gemfiles/ruby_2.7_graphql_2.1.gemfile.lock index 2f4c0d227f2..23a664f5f3c 100644 --- a/gemfiles/ruby_2.7_graphql_2.1.gemfile.lock +++ b/gemfiles/ruby_2.7_graphql_2.1.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -96,7 +96,7 @@ GEM crack (0.4.5) rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) date (3.3.4) debug_inspector (1.2.0) diff-lcs (1.5.0) diff --git a/gemfiles/ruby_2.7_graphql_2.2.gemfile.lock b/gemfiles/ruby_2.7_graphql_2.2.gemfile.lock index 2abf65a72f5..75b9ebc0882 100644 --- a/gemfiles/ruby_2.7_graphql_2.2.gemfile.lock +++ b/gemfiles/ruby_2.7_graphql_2.2.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -96,7 +96,7 @@ GEM crack (0.4.5) rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) date (3.3.4) debug_inspector (1.2.0) diff-lcs (1.5.0) diff --git a/gemfiles/ruby_2.7_graphql_2.3.gemfile.lock b/gemfiles/ruby_2.7_graphql_2.3.gemfile.lock index 1afe7532c59..ad9e65e843b 100644 --- a/gemfiles/ruby_2.7_graphql_2.3.gemfile.lock +++ b/gemfiles/ruby_2.7_graphql_2.3.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -98,7 +98,7 @@ GEM bigdecimal rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) date (3.3.4) debug_inspector (1.2.0) diff-lcs (1.5.1) diff --git a/gemfiles/ruby_2.7_hanami_1.gemfile.lock b/gemfiles/ruby_2.7_hanami_1.gemfile.lock index 412cb6dd966..5a141a32aee 100644 --- a/gemfiles/ruby_2.7_hanami_1.gemfile.lock +++ b/gemfiles/ruby_2.7_hanami_1.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -33,7 +33,7 @@ GEM concurrent-ruby (1.2.2) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) date (3.3.3) debug_inspector (1.1.0) diff-lcs (1.5.0) diff --git a/gemfiles/ruby_2.7_http.gemfile.lock b/gemfiles/ruby_2.7_http.gemfile.lock index 59e38fbbe95..5970a3e2e24 100644 --- a/gemfiles/ruby_2.7_http.gemfile.lock +++ b/gemfiles/ruby_2.7_http.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -33,7 +33,7 @@ GEM concurrent-ruby (1.2.2) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) docile (1.4.0) diff --git a/gemfiles/ruby_2.7_opensearch_2.gemfile.lock b/gemfiles/ruby_2.7_opensearch_2.gemfile.lock index 9bfd335c84c..ef4e590bb08 100644 --- a/gemfiles/ruby_2.7_opensearch_2.gemfile.lock +++ b/gemfiles/ruby_2.7_opensearch_2.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -35,7 +35,7 @@ GEM concurrent-ruby (1.2.2) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) docile (1.4.0) diff --git a/gemfiles/ruby_2.7_opensearch_3.gemfile.lock b/gemfiles/ruby_2.7_opensearch_3.gemfile.lock index 8a1378e79ed..b4559509c3d 100644 --- a/gemfiles/ruby_2.7_opensearch_3.gemfile.lock +++ b/gemfiles/ruby_2.7_opensearch_3.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -35,7 +35,7 @@ GEM concurrent-ruby (1.2.2) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) docile (1.4.0) diff --git a/gemfiles/ruby_2.7_opensearch_latest.gemfile.lock b/gemfiles/ruby_2.7_opensearch_latest.gemfile.lock index 5a1a410d14e..a7df0f9e65f 100644 --- a/gemfiles/ruby_2.7_opensearch_latest.gemfile.lock +++ b/gemfiles/ruby_2.7_opensearch_latest.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -37,7 +37,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) docile (1.4.1) diff --git a/gemfiles/ruby_2.7_opentelemetry.gemfile.lock b/gemfiles/ruby_2.7_opentelemetry.gemfile.lock index b237b9791a4..523d02fc54c 100755 --- a/gemfiles/ruby_2.7_opentelemetry.gemfile.lock +++ b/gemfiles/ruby_2.7_opentelemetry.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -33,7 +33,7 @@ GEM concurrent-ruby (1.2.2) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) docile (1.4.0) diff --git a/gemfiles/ruby_2.7_opentelemetry_otlp.gemfile.lock b/gemfiles/ruby_2.7_opentelemetry_otlp.gemfile.lock index 952e99c37f0..070d22dad7d 100644 --- a/gemfiles/ruby_2.7_opentelemetry_otlp.gemfile.lock +++ b/gemfiles/ruby_2.7_opentelemetry_otlp.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -36,7 +36,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) docile (1.4.0) diff --git a/gemfiles/ruby_2.7_rack_1.gemfile.lock b/gemfiles/ruby_2.7_rack_1.gemfile.lock index 02f793f4fb0..9b8280ac4e7 100644 --- a/gemfiles/ruby_2.7_rack_1.gemfile.lock +++ b/gemfiles/ruby_2.7_rack_1.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -33,7 +33,7 @@ GEM concurrent-ruby (1.2.2) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) docile (1.4.0) diff --git a/gemfiles/ruby_2.7_rack_2.gemfile.lock b/gemfiles/ruby_2.7_rack_2.gemfile.lock index 2682d3bea22..0a312a9308c 100644 --- a/gemfiles/ruby_2.7_rack_2.gemfile.lock +++ b/gemfiles/ruby_2.7_rack_2.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -33,7 +33,7 @@ GEM concurrent-ruby (1.2.2) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) docile (1.4.0) diff --git a/gemfiles/ruby_2.7_rack_3.gemfile.lock b/gemfiles/ruby_2.7_rack_3.gemfile.lock index b1785819dfc..9dab83702c5 100644 --- a/gemfiles/ruby_2.7_rack_3.gemfile.lock +++ b/gemfiles/ruby_2.7_rack_3.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -33,7 +33,7 @@ GEM concurrent-ruby (1.2.2) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) docile (1.4.0) diff --git a/gemfiles/ruby_2.7_rack_latest.gemfile.lock b/gemfiles/ruby_2.7_rack_latest.gemfile.lock index 4c26f0a3e54..50fe15b0fa4 100644 --- a/gemfiles/ruby_2.7_rack_latest.gemfile.lock +++ b/gemfiles/ruby_2.7_rack_latest.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -36,7 +36,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) docile (1.4.1) diff --git a/gemfiles/ruby_2.7_rails5_mysql2.gemfile.lock b/gemfiles/ruby_2.7_rails5_mysql2.gemfile.lock index e9bd8a65a2c..b127f037bfc 100644 --- a/gemfiles/ruby_2.7_rails5_mysql2.gemfile.lock +++ b/gemfiles/ruby_2.7_rails5_mysql2.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -77,7 +77,7 @@ GEM crack (0.4.5) rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) date (3.3.3) debug_inspector (1.1.0) diff-lcs (1.5.0) diff --git a/gemfiles/ruby_2.7_rails5_postgres.gemfile.lock b/gemfiles/ruby_2.7_rails5_postgres.gemfile.lock index 72827cace49..a582c96a988 100644 --- a/gemfiles/ruby_2.7_rails5_postgres.gemfile.lock +++ b/gemfiles/ruby_2.7_rails5_postgres.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -77,7 +77,7 @@ GEM crack (0.4.5) rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) date (3.3.3) debug_inspector (1.1.0) diff-lcs (1.5.0) diff --git a/gemfiles/ruby_2.7_rails5_postgres_redis.gemfile.lock b/gemfiles/ruby_2.7_rails5_postgres_redis.gemfile.lock index 9068317e805..319541605f7 100644 --- a/gemfiles/ruby_2.7_rails5_postgres_redis.gemfile.lock +++ b/gemfiles/ruby_2.7_rails5_postgres_redis.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -77,7 +77,7 @@ GEM crack (0.4.5) rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) date (3.3.3) debug_inspector (1.1.0) diff-lcs (1.5.0) diff --git a/gemfiles/ruby_2.7_rails5_postgres_redis_activesupport.gemfile.lock b/gemfiles/ruby_2.7_rails5_postgres_redis_activesupport.gemfile.lock index 1cbdec8ede1..9c332cb3a5b 100644 --- a/gemfiles/ruby_2.7_rails5_postgres_redis_activesupport.gemfile.lock +++ b/gemfiles/ruby_2.7_rails5_postgres_redis_activesupport.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -77,7 +77,7 @@ GEM crack (0.4.5) rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) date (3.3.3) debug_inspector (1.1.0) diff-lcs (1.5.0) diff --git a/gemfiles/ruby_2.7_rails5_postgres_sidekiq.gemfile.lock b/gemfiles/ruby_2.7_rails5_postgres_sidekiq.gemfile.lock index 8a5174fcb7d..5f1c5046abe 100644 --- a/gemfiles/ruby_2.7_rails5_postgres_sidekiq.gemfile.lock +++ b/gemfiles/ruby_2.7_rails5_postgres_sidekiq.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -78,7 +78,7 @@ GEM crack (0.4.5) rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) date (3.3.3) debug_inspector (1.1.0) diff-lcs (1.5.0) diff --git a/gemfiles/ruby_2.7_rails5_semantic_logger.gemfile.lock b/gemfiles/ruby_2.7_rails5_semantic_logger.gemfile.lock index 801da5e0e25..6fdd5da849a 100644 --- a/gemfiles/ruby_2.7_rails5_semantic_logger.gemfile.lock +++ b/gemfiles/ruby_2.7_rails5_semantic_logger.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -77,7 +77,7 @@ GEM crack (0.4.5) rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) date (3.3.3) debug_inspector (1.1.0) diff-lcs (1.5.0) diff --git a/gemfiles/ruby_2.7_rails61_mysql2.gemfile.lock b/gemfiles/ruby_2.7_rails61_mysql2.gemfile.lock index 4b682a6fefc..8e63127b8f1 100644 --- a/gemfiles/ruby_2.7_rails61_mysql2.gemfile.lock +++ b/gemfiles/ruby_2.7_rails61_mysql2.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -94,7 +94,7 @@ GEM crack (0.4.5) rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) date (3.3.3) debug_inspector (1.1.0) diff-lcs (1.5.0) diff --git a/gemfiles/ruby_2.7_rails61_postgres.gemfile.lock b/gemfiles/ruby_2.7_rails61_postgres.gemfile.lock index 439294cca0a..720c2e4650b 100644 --- a/gemfiles/ruby_2.7_rails61_postgres.gemfile.lock +++ b/gemfiles/ruby_2.7_rails61_postgres.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -94,7 +94,7 @@ GEM crack (0.4.5) rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) date (3.3.3) debug_inspector (1.1.0) diff-lcs (1.5.0) diff --git a/gemfiles/ruby_2.7_rails61_postgres_redis.gemfile.lock b/gemfiles/ruby_2.7_rails61_postgres_redis.gemfile.lock index 09ba48a0b7c..9f2e183a422 100644 --- a/gemfiles/ruby_2.7_rails61_postgres_redis.gemfile.lock +++ b/gemfiles/ruby_2.7_rails61_postgres_redis.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -94,7 +94,7 @@ GEM crack (0.4.5) rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) date (3.3.3) debug_inspector (1.1.0) diff-lcs (1.5.0) diff --git a/gemfiles/ruby_2.7_rails61_postgres_sidekiq.gemfile.lock b/gemfiles/ruby_2.7_rails61_postgres_sidekiq.gemfile.lock index 672772bef2c..d20b386733f 100644 --- a/gemfiles/ruby_2.7_rails61_postgres_sidekiq.gemfile.lock +++ b/gemfiles/ruby_2.7_rails61_postgres_sidekiq.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -95,7 +95,7 @@ GEM crack (0.4.5) rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) date (3.3.3) debug_inspector (1.1.0) diff-lcs (1.5.0) diff --git a/gemfiles/ruby_2.7_rails61_semantic_logger.gemfile.lock b/gemfiles/ruby_2.7_rails61_semantic_logger.gemfile.lock index 0526fca22ef..0168bf020f1 100644 --- a/gemfiles/ruby_2.7_rails61_semantic_logger.gemfile.lock +++ b/gemfiles/ruby_2.7_rails61_semantic_logger.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -94,7 +94,7 @@ GEM crack (0.4.5) rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) date (3.3.3) debug_inspector (1.1.0) diff-lcs (1.5.0) diff --git a/gemfiles/ruby_2.7_rails6_mysql2.gemfile.lock b/gemfiles/ruby_2.7_rails6_mysql2.gemfile.lock index 74e2ae48420..abb77984b30 100644 --- a/gemfiles/ruby_2.7_rails6_mysql2.gemfile.lock +++ b/gemfiles/ruby_2.7_rails6_mysql2.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -90,7 +90,7 @@ GEM crack (0.4.5) rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) date (3.3.3) debug_inspector (1.1.0) diff-lcs (1.5.0) diff --git a/gemfiles/ruby_2.7_rails6_postgres.gemfile.lock b/gemfiles/ruby_2.7_rails6_postgres.gemfile.lock index 44b3f8dc13b..45f17b94b1c 100644 --- a/gemfiles/ruby_2.7_rails6_postgres.gemfile.lock +++ b/gemfiles/ruby_2.7_rails6_postgres.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -90,7 +90,7 @@ GEM crack (0.4.5) rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) date (3.3.3) debug_inspector (1.1.0) diff-lcs (1.5.0) diff --git a/gemfiles/ruby_2.7_rails6_postgres_redis.gemfile.lock b/gemfiles/ruby_2.7_rails6_postgres_redis.gemfile.lock index b414b713c38..8d20fa116e9 100644 --- a/gemfiles/ruby_2.7_rails6_postgres_redis.gemfile.lock +++ b/gemfiles/ruby_2.7_rails6_postgres_redis.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -90,7 +90,7 @@ GEM crack (0.4.5) rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) date (3.3.3) debug_inspector (1.1.0) diff-lcs (1.5.0) diff --git a/gemfiles/ruby_2.7_rails6_postgres_redis_activesupport.gemfile.lock b/gemfiles/ruby_2.7_rails6_postgres_redis_activesupport.gemfile.lock index 860843ba705..fd1fd20475e 100644 --- a/gemfiles/ruby_2.7_rails6_postgres_redis_activesupport.gemfile.lock +++ b/gemfiles/ruby_2.7_rails6_postgres_redis_activesupport.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -90,7 +90,7 @@ GEM crack (0.4.5) rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) date (3.3.3) debug_inspector (1.1.0) diff-lcs (1.5.0) diff --git a/gemfiles/ruby_2.7_rails6_postgres_sidekiq.gemfile.lock b/gemfiles/ruby_2.7_rails6_postgres_sidekiq.gemfile.lock index b7f187fc15c..21390c3506f 100644 --- a/gemfiles/ruby_2.7_rails6_postgres_sidekiq.gemfile.lock +++ b/gemfiles/ruby_2.7_rails6_postgres_sidekiq.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -91,7 +91,7 @@ GEM crack (0.4.5) rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) date (3.3.3) debug_inspector (1.1.0) diff-lcs (1.5.0) diff --git a/gemfiles/ruby_2.7_rails6_semantic_logger.gemfile.lock b/gemfiles/ruby_2.7_rails6_semantic_logger.gemfile.lock index e74738464b4..8721002e0cb 100644 --- a/gemfiles/ruby_2.7_rails6_semantic_logger.gemfile.lock +++ b/gemfiles/ruby_2.7_rails6_semantic_logger.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -90,7 +90,7 @@ GEM crack (0.4.5) rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) date (3.3.3) debug_inspector (1.1.0) diff-lcs (1.5.0) diff --git a/gemfiles/ruby_2.7_redis_3.gemfile.lock b/gemfiles/ruby_2.7_redis_3.gemfile.lock index bec9919c891..cbf3585a0cc 100644 --- a/gemfiles/ruby_2.7_redis_3.gemfile.lock +++ b/gemfiles/ruby_2.7_redis_3.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -33,7 +33,7 @@ GEM concurrent-ruby (1.2.2) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) docile (1.4.0) diff --git a/gemfiles/ruby_2.7_redis_4.gemfile.lock b/gemfiles/ruby_2.7_redis_4.gemfile.lock index d75c25a6a8b..e3578c70a73 100644 --- a/gemfiles/ruby_2.7_redis_4.gemfile.lock +++ b/gemfiles/ruby_2.7_redis_4.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -33,7 +33,7 @@ GEM concurrent-ruby (1.2.2) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) docile (1.4.0) diff --git a/gemfiles/ruby_2.7_redis_5.gemfile.lock b/gemfiles/ruby_2.7_redis_5.gemfile.lock index 4dcf340bd2f..b61588035c6 100644 --- a/gemfiles/ruby_2.7_redis_5.gemfile.lock +++ b/gemfiles/ruby_2.7_redis_5.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -34,7 +34,7 @@ GEM connection_pool (2.3.0) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) docile (1.4.0) diff --git a/gemfiles/ruby_2.7_relational_db.gemfile.lock b/gemfiles/ruby_2.7_relational_db.gemfile.lock index 45951fb9cc6..57b8d3f19c4 100644 --- a/gemfiles/ruby_2.7_relational_db.gemfile.lock +++ b/gemfiles/ruby_2.7_relational_db.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -45,7 +45,7 @@ GEM concurrent-ruby (1.2.2) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) delayed_job (4.1.11) activesupport (>= 3.0, < 8.0) diff --git a/gemfiles/ruby_2.7_resque2_redis3.gemfile.lock b/gemfiles/ruby_2.7_resque2_redis3.gemfile.lock index d80978073eb..64c50feb2bf 100644 --- a/gemfiles/ruby_2.7_resque2_redis3.gemfile.lock +++ b/gemfiles/ruby_2.7_resque2_redis3.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -33,7 +33,7 @@ GEM concurrent-ruby (1.2.2) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) docile (1.4.0) diff --git a/gemfiles/ruby_2.7_resque2_redis4.gemfile.lock b/gemfiles/ruby_2.7_resque2_redis4.gemfile.lock index 6e2dd71d055..4a39ffc7df4 100644 --- a/gemfiles/ruby_2.7_resque2_redis4.gemfile.lock +++ b/gemfiles/ruby_2.7_resque2_redis4.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -33,7 +33,7 @@ GEM concurrent-ruby (1.2.2) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) docile (1.4.0) diff --git a/gemfiles/ruby_2.7_sinatra_2.gemfile.lock b/gemfiles/ruby_2.7_sinatra_2.gemfile.lock index b269b1d2045..3af9f16032d 100644 --- a/gemfiles/ruby_2.7_sinatra_2.gemfile.lock +++ b/gemfiles/ruby_2.7_sinatra_2.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -36,7 +36,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) docile (1.4.0) diff --git a/gemfiles/ruby_2.7_sinatra_3.gemfile.lock b/gemfiles/ruby_2.7_sinatra_3.gemfile.lock index cf19f271115..91d13232b89 100644 --- a/gemfiles/ruby_2.7_sinatra_3.gemfile.lock +++ b/gemfiles/ruby_2.7_sinatra_3.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -37,7 +37,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) docile (1.4.0) diff --git a/gemfiles/ruby_2.7_stripe_10.gemfile.lock b/gemfiles/ruby_2.7_stripe_10.gemfile.lock index db5c2e1e0b8..f1c8288f646 100644 --- a/gemfiles/ruby_2.7_stripe_10.gemfile.lock +++ b/gemfiles/ruby_2.7_stripe_10.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -36,7 +36,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) docile (1.4.1) diff --git a/gemfiles/ruby_2.7_stripe_11.gemfile.lock b/gemfiles/ruby_2.7_stripe_11.gemfile.lock index 3237b0b04ed..597e53bf40c 100644 --- a/gemfiles/ruby_2.7_stripe_11.gemfile.lock +++ b/gemfiles/ruby_2.7_stripe_11.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -36,7 +36,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) docile (1.4.1) diff --git a/gemfiles/ruby_2.7_stripe_12.gemfile.lock b/gemfiles/ruby_2.7_stripe_12.gemfile.lock index b1fb3952da9..1f2628754d7 100644 --- a/gemfiles/ruby_2.7_stripe_12.gemfile.lock +++ b/gemfiles/ruby_2.7_stripe_12.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -36,7 +36,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) docile (1.4.1) diff --git a/gemfiles/ruby_2.7_stripe_7.gemfile.lock b/gemfiles/ruby_2.7_stripe_7.gemfile.lock index f6a96cc35dc..0e4f2bb5902 100644 --- a/gemfiles/ruby_2.7_stripe_7.gemfile.lock +++ b/gemfiles/ruby_2.7_stripe_7.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -36,7 +36,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) docile (1.4.1) diff --git a/gemfiles/ruby_2.7_stripe_8.gemfile.lock b/gemfiles/ruby_2.7_stripe_8.gemfile.lock index 93bf4c1263d..02bd976784a 100644 --- a/gemfiles/ruby_2.7_stripe_8.gemfile.lock +++ b/gemfiles/ruby_2.7_stripe_8.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -36,7 +36,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) docile (1.4.1) diff --git a/gemfiles/ruby_2.7_stripe_9.gemfile.lock b/gemfiles/ruby_2.7_stripe_9.gemfile.lock index 4e3625f8d94..b38a88c6580 100644 --- a/gemfiles/ruby_2.7_stripe_9.gemfile.lock +++ b/gemfiles/ruby_2.7_stripe_9.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -36,7 +36,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) docile (1.4.1) diff --git a/gemfiles/ruby_2.7_stripe_latest.gemfile.lock b/gemfiles/ruby_2.7_stripe_latest.gemfile.lock index 5c06b6da698..312e78df324 100644 --- a/gemfiles/ruby_2.7_stripe_latest.gemfile.lock +++ b/gemfiles/ruby_2.7_stripe_latest.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -36,7 +36,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) docile (1.4.1) diff --git a/gemfiles/ruby_2.7_stripe_min.gemfile.lock b/gemfiles/ruby_2.7_stripe_min.gemfile.lock index d777c1b5476..4a1554cb159 100644 --- a/gemfiles/ruby_2.7_stripe_min.gemfile.lock +++ b/gemfiles/ruby_2.7_stripe_min.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -36,7 +36,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) docile (1.4.1) diff --git a/gemfiles/ruby_3.0_activesupport.gemfile.lock b/gemfiles/ruby_3.0_activesupport.gemfile.lock index 7a540adaf03..f79e8db5bf0 100644 --- a/gemfiles/ruby_3.0_activesupport.gemfile.lock +++ b/gemfiles/ruby_3.0_activesupport.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -62,7 +62,7 @@ GEM crack (0.4.5) rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) digest-crc (0.6.5) diff --git a/gemfiles/ruby_3.0_aws.gemfile.lock b/gemfiles/ruby_3.0_aws.gemfile.lock index c8947e3ccfb..1074f886e6e 100644 --- a/gemfiles/ruby_3.0_aws.gemfile.lock +++ b/gemfiles/ruby_3.0_aws.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -1454,7 +1454,7 @@ GEM concurrent-ruby (1.2.2) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) docile (1.4.0) diff --git a/gemfiles/ruby_3.0_contrib.gemfile.lock b/gemfiles/ruby_3.0_contrib.gemfile.lock index c05a3dc6fa8..5313785d868 100644 --- a/gemfiles/ruby_3.0_contrib.gemfile.lock +++ b/gemfiles/ruby_3.0_contrib.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -40,7 +40,7 @@ GEM crack (0.4.5) rexml dalli (3.2.4) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) docile (1.4.0) diff --git a/gemfiles/ruby_3.0_contrib_old.gemfile.lock b/gemfiles/ruby_3.0_contrib_old.gemfile.lock index 62a28c9cfa7..2a36f11745e 100644 --- a/gemfiles/ruby_3.0_contrib_old.gemfile.lock +++ b/gemfiles/ruby_3.0_contrib_old.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -38,7 +38,7 @@ GEM rexml daemons (1.4.1) dalli (2.7.11) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) docile (1.4.0) diff --git a/gemfiles/ruby_3.0_core_old.gemfile.lock b/gemfiles/ruby_3.0_core_old.gemfile.lock index a673b3513ac..742a57d9e16 100644 --- a/gemfiles/ruby_3.0_core_old.gemfile.lock +++ b/gemfiles/ruby_3.0_core_old.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -33,7 +33,7 @@ GEM concurrent-ruby (1.2.2) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) docile (1.4.0) diff --git a/gemfiles/ruby_3.0_elasticsearch_7.gemfile.lock b/gemfiles/ruby_3.0_elasticsearch_7.gemfile.lock index 5dd36c80c58..178b8e8548e 100644 --- a/gemfiles/ruby_3.0_elasticsearch_7.gemfile.lock +++ b/gemfiles/ruby_3.0_elasticsearch_7.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -35,7 +35,7 @@ GEM concurrent-ruby (1.2.2) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) docile (1.4.0) diff --git a/gemfiles/ruby_3.0_elasticsearch_8.gemfile.lock b/gemfiles/ruby_3.0_elasticsearch_8.gemfile.lock index e13ba54b8ee..b3405b341f1 100644 --- a/gemfiles/ruby_3.0_elasticsearch_8.gemfile.lock +++ b/gemfiles/ruby_3.0_elasticsearch_8.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -34,7 +34,7 @@ GEM concurrent-ruby (1.2.2) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) docile (1.4.0) diff --git a/gemfiles/ruby_3.0_elasticsearch_latest.gemfile.lock b/gemfiles/ruby_3.0_elasticsearch_latest.gemfile.lock index 1c3a5cc7c4d..0590ab252cb 100644 --- a/gemfiles/ruby_3.0_elasticsearch_latest.gemfile.lock +++ b/gemfiles/ruby_3.0_elasticsearch_latest.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -36,7 +36,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) docile (1.4.1) diff --git a/gemfiles/ruby_3.0_graphql_1.13.gemfile.lock b/gemfiles/ruby_3.0_graphql_1.13.gemfile.lock index 6bb9ad8f88b..d63d86fa68d 100644 --- a/gemfiles/ruby_3.0_graphql_1.13.gemfile.lock +++ b/gemfiles/ruby_3.0_graphql_1.13.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -96,7 +96,7 @@ GEM crack (0.4.5) rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) date (3.3.4) debug_inspector (1.2.0) diff-lcs (1.5.0) diff --git a/gemfiles/ruby_3.0_graphql_2.0.gemfile.lock b/gemfiles/ruby_3.0_graphql_2.0.gemfile.lock index 2e3d0cb2b98..d6bb8ab28ce 100644 --- a/gemfiles/ruby_3.0_graphql_2.0.gemfile.lock +++ b/gemfiles/ruby_3.0_graphql_2.0.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -96,7 +96,7 @@ GEM crack (0.4.5) rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) date (3.3.4) debug_inspector (1.2.0) diff-lcs (1.5.0) diff --git a/gemfiles/ruby_3.0_graphql_2.1.gemfile.lock b/gemfiles/ruby_3.0_graphql_2.1.gemfile.lock index ab2f7c3a16a..a7b22ac00c1 100644 --- a/gemfiles/ruby_3.0_graphql_2.1.gemfile.lock +++ b/gemfiles/ruby_3.0_graphql_2.1.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -96,7 +96,7 @@ GEM crack (0.4.5) rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) date (3.3.4) debug_inspector (1.2.0) diff-lcs (1.5.0) diff --git a/gemfiles/ruby_3.0_graphql_2.2.gemfile.lock b/gemfiles/ruby_3.0_graphql_2.2.gemfile.lock index 3a2f2cde502..2c72a63deba 100644 --- a/gemfiles/ruby_3.0_graphql_2.2.gemfile.lock +++ b/gemfiles/ruby_3.0_graphql_2.2.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -96,7 +96,7 @@ GEM crack (0.4.5) rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) date (3.3.4) debug_inspector (1.2.0) diff-lcs (1.5.0) diff --git a/gemfiles/ruby_3.0_graphql_2.3.gemfile.lock b/gemfiles/ruby_3.0_graphql_2.3.gemfile.lock index 9125d50f37d..54d4bcca64b 100644 --- a/gemfiles/ruby_3.0_graphql_2.3.gemfile.lock +++ b/gemfiles/ruby_3.0_graphql_2.3.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -98,7 +98,7 @@ GEM bigdecimal rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) date (3.3.4) debug_inspector (1.2.0) diff-lcs (1.5.1) diff --git a/gemfiles/ruby_3.0_http.gemfile.lock b/gemfiles/ruby_3.0_http.gemfile.lock index 99792f58977..58176d6f9de 100644 --- a/gemfiles/ruby_3.0_http.gemfile.lock +++ b/gemfiles/ruby_3.0_http.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -33,7 +33,7 @@ GEM concurrent-ruby (1.2.2) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) docile (1.4.0) diff --git a/gemfiles/ruby_3.0_opensearch_2.gemfile.lock b/gemfiles/ruby_3.0_opensearch_2.gemfile.lock index d9fb329fdc0..a3a78ac3118 100644 --- a/gemfiles/ruby_3.0_opensearch_2.gemfile.lock +++ b/gemfiles/ruby_3.0_opensearch_2.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -34,7 +34,7 @@ GEM concurrent-ruby (1.2.2) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) docile (1.4.0) diff --git a/gemfiles/ruby_3.0_opensearch_3.gemfile.lock b/gemfiles/ruby_3.0_opensearch_3.gemfile.lock index 3140a31c431..a2b9840594a 100644 --- a/gemfiles/ruby_3.0_opensearch_3.gemfile.lock +++ b/gemfiles/ruby_3.0_opensearch_3.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -34,7 +34,7 @@ GEM concurrent-ruby (1.2.2) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) docile (1.4.0) diff --git a/gemfiles/ruby_3.0_opensearch_latest.gemfile.lock b/gemfiles/ruby_3.0_opensearch_latest.gemfile.lock index 49df06ea0c7..0e385a9c837 100644 --- a/gemfiles/ruby_3.0_opensearch_latest.gemfile.lock +++ b/gemfiles/ruby_3.0_opensearch_latest.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -36,7 +36,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) docile (1.4.1) diff --git a/gemfiles/ruby_3.0_opentelemetry.gemfile.lock b/gemfiles/ruby_3.0_opentelemetry.gemfile.lock index 2e7c25344a3..89352618097 100755 --- a/gemfiles/ruby_3.0_opentelemetry.gemfile.lock +++ b/gemfiles/ruby_3.0_opentelemetry.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -33,7 +33,7 @@ GEM concurrent-ruby (1.2.2) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) docile (1.4.0) diff --git a/gemfiles/ruby_3.0_opentelemetry_otlp.gemfile.lock b/gemfiles/ruby_3.0_opentelemetry_otlp.gemfile.lock index 7e88166b01e..79a81af1a3e 100644 --- a/gemfiles/ruby_3.0_opentelemetry_otlp.gemfile.lock +++ b/gemfiles/ruby_3.0_opentelemetry_otlp.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -36,7 +36,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) docile (1.4.0) diff --git a/gemfiles/ruby_3.0_rack_1.gemfile.lock b/gemfiles/ruby_3.0_rack_1.gemfile.lock index 5d0039091d8..43424cb158b 100644 --- a/gemfiles/ruby_3.0_rack_1.gemfile.lock +++ b/gemfiles/ruby_3.0_rack_1.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -33,7 +33,7 @@ GEM concurrent-ruby (1.2.2) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) docile (1.4.0) diff --git a/gemfiles/ruby_3.0_rack_2.gemfile.lock b/gemfiles/ruby_3.0_rack_2.gemfile.lock index cf2da39f450..67e01d8daf8 100644 --- a/gemfiles/ruby_3.0_rack_2.gemfile.lock +++ b/gemfiles/ruby_3.0_rack_2.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -33,7 +33,7 @@ GEM concurrent-ruby (1.2.2) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) docile (1.4.0) diff --git a/gemfiles/ruby_3.0_rack_3.gemfile.lock b/gemfiles/ruby_3.0_rack_3.gemfile.lock index d25ba9533bb..d98b6627e05 100644 --- a/gemfiles/ruby_3.0_rack_3.gemfile.lock +++ b/gemfiles/ruby_3.0_rack_3.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -33,7 +33,7 @@ GEM concurrent-ruby (1.2.2) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) docile (1.4.0) diff --git a/gemfiles/ruby_3.0_rack_latest.gemfile.lock b/gemfiles/ruby_3.0_rack_latest.gemfile.lock index 34584316ced..b992fbe17b8 100644 --- a/gemfiles/ruby_3.0_rack_latest.gemfile.lock +++ b/gemfiles/ruby_3.0_rack_latest.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -36,7 +36,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) docile (1.4.1) diff --git a/gemfiles/ruby_3.0_rails61_mysql2.gemfile.lock b/gemfiles/ruby_3.0_rails61_mysql2.gemfile.lock index 55a77259e1b..f488041f4b9 100644 --- a/gemfiles/ruby_3.0_rails61_mysql2.gemfile.lock +++ b/gemfiles/ruby_3.0_rails61_mysql2.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -94,7 +94,7 @@ GEM crack (0.4.5) rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) date (3.3.3) debug_inspector (1.1.0) diff-lcs (1.5.0) diff --git a/gemfiles/ruby_3.0_rails61_postgres.gemfile.lock b/gemfiles/ruby_3.0_rails61_postgres.gemfile.lock index dd609a4bf99..03e28dbcef3 100644 --- a/gemfiles/ruby_3.0_rails61_postgres.gemfile.lock +++ b/gemfiles/ruby_3.0_rails61_postgres.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -94,7 +94,7 @@ GEM crack (0.4.5) rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) date (3.3.3) debug_inspector (1.1.0) diff-lcs (1.5.0) diff --git a/gemfiles/ruby_3.0_rails61_postgres_redis.gemfile.lock b/gemfiles/ruby_3.0_rails61_postgres_redis.gemfile.lock index b9a723b57fb..6e5eb77a1da 100644 --- a/gemfiles/ruby_3.0_rails61_postgres_redis.gemfile.lock +++ b/gemfiles/ruby_3.0_rails61_postgres_redis.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -94,7 +94,7 @@ GEM crack (0.4.5) rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) date (3.3.3) debug_inspector (1.1.0) diff-lcs (1.5.0) diff --git a/gemfiles/ruby_3.0_rails61_postgres_sidekiq.gemfile.lock b/gemfiles/ruby_3.0_rails61_postgres_sidekiq.gemfile.lock index 5dc662d2df6..0d1be196484 100644 --- a/gemfiles/ruby_3.0_rails61_postgres_sidekiq.gemfile.lock +++ b/gemfiles/ruby_3.0_rails61_postgres_sidekiq.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -95,7 +95,7 @@ GEM crack (0.4.5) rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) date (3.3.3) debug_inspector (1.1.0) diff-lcs (1.5.0) diff --git a/gemfiles/ruby_3.0_rails61_semantic_logger.gemfile.lock b/gemfiles/ruby_3.0_rails61_semantic_logger.gemfile.lock index be4f1d7b082..0670f5d955c 100644 --- a/gemfiles/ruby_3.0_rails61_semantic_logger.gemfile.lock +++ b/gemfiles/ruby_3.0_rails61_semantic_logger.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -94,7 +94,7 @@ GEM crack (0.4.5) rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) date (3.3.3) debug_inspector (1.1.0) diff-lcs (1.5.0) diff --git a/gemfiles/ruby_3.0_rails61_trilogy.gemfile.lock b/gemfiles/ruby_3.0_rails61_trilogy.gemfile.lock index 7704593046a..112f0729181 100644 --- a/gemfiles/ruby_3.0_rails61_trilogy.gemfile.lock +++ b/gemfiles/ruby_3.0_rails61_trilogy.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -98,7 +98,7 @@ GEM crack (0.4.5) rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) date (3.3.4) debug_inspector (1.1.0) diff-lcs (1.5.0) diff --git a/gemfiles/ruby_3.0_rails7.gemfile.lock b/gemfiles/ruby_3.0_rails7.gemfile.lock index 3875a1f9953..d51ad375adc 100644 --- a/gemfiles/ruby_3.0_rails7.gemfile.lock +++ b/gemfiles/ruby_3.0_rails7.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -103,7 +103,7 @@ GEM bigdecimal rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) date (3.3.4) debug_inspector (1.2.0) diff-lcs (1.5.1) diff --git a/gemfiles/ruby_3.0_rails71.gemfile.lock b/gemfiles/ruby_3.0_rails71.gemfile.lock index 53d2f3232bd..2b3ca2cdf4d 100644 --- a/gemfiles/ruby_3.0_rails71.gemfile.lock +++ b/gemfiles/ruby_3.0_rails71.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -114,7 +114,7 @@ GEM bigdecimal rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) date (3.3.4) debug_inspector (1.2.0) diff-lcs (1.5.1) diff --git a/gemfiles/ruby_3.0_redis_3.gemfile.lock b/gemfiles/ruby_3.0_redis_3.gemfile.lock index d110fdf89db..3f033353302 100644 --- a/gemfiles/ruby_3.0_redis_3.gemfile.lock +++ b/gemfiles/ruby_3.0_redis_3.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -33,7 +33,7 @@ GEM concurrent-ruby (1.2.2) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) docile (1.4.0) diff --git a/gemfiles/ruby_3.0_redis_4.gemfile.lock b/gemfiles/ruby_3.0_redis_4.gemfile.lock index 10d8d5f099d..c53da1b3f76 100644 --- a/gemfiles/ruby_3.0_redis_4.gemfile.lock +++ b/gemfiles/ruby_3.0_redis_4.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -33,7 +33,7 @@ GEM concurrent-ruby (1.2.2) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) docile (1.4.0) diff --git a/gemfiles/ruby_3.0_redis_5.gemfile.lock b/gemfiles/ruby_3.0_redis_5.gemfile.lock index 6e02f4ec403..98fa43caded 100644 --- a/gemfiles/ruby_3.0_redis_5.gemfile.lock +++ b/gemfiles/ruby_3.0_redis_5.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -34,7 +34,7 @@ GEM connection_pool (2.3.0) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) docile (1.4.0) diff --git a/gemfiles/ruby_3.0_relational_db.gemfile.lock b/gemfiles/ruby_3.0_relational_db.gemfile.lock index a0c7095f061..9e155b687f1 100644 --- a/gemfiles/ruby_3.0_relational_db.gemfile.lock +++ b/gemfiles/ruby_3.0_relational_db.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -44,7 +44,7 @@ GEM concurrent-ruby (1.2.2) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) delayed_job (4.1.11) activesupport (>= 3.0, < 8.0) diff --git a/gemfiles/ruby_3.0_resque2_redis3.gemfile.lock b/gemfiles/ruby_3.0_resque2_redis3.gemfile.lock index da41e378e0e..53ce42c2b4f 100644 --- a/gemfiles/ruby_3.0_resque2_redis3.gemfile.lock +++ b/gemfiles/ruby_3.0_resque2_redis3.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -33,7 +33,7 @@ GEM concurrent-ruby (1.2.2) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) docile (1.4.0) diff --git a/gemfiles/ruby_3.0_resque2_redis4.gemfile.lock b/gemfiles/ruby_3.0_resque2_redis4.gemfile.lock index 0e7eee98c9e..a8af46d0c47 100644 --- a/gemfiles/ruby_3.0_resque2_redis4.gemfile.lock +++ b/gemfiles/ruby_3.0_resque2_redis4.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -34,7 +34,7 @@ GEM connection_pool (2.3.0) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) docile (1.4.0) diff --git a/gemfiles/ruby_3.0_sinatra_2.gemfile.lock b/gemfiles/ruby_3.0_sinatra_2.gemfile.lock index 3705c38684e..73a63eabcc9 100644 --- a/gemfiles/ruby_3.0_sinatra_2.gemfile.lock +++ b/gemfiles/ruby_3.0_sinatra_2.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -36,7 +36,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) docile (1.4.0) diff --git a/gemfiles/ruby_3.0_sinatra_3.gemfile.lock b/gemfiles/ruby_3.0_sinatra_3.gemfile.lock index 922d70da1b6..cf1ebc9fcde 100644 --- a/gemfiles/ruby_3.0_sinatra_3.gemfile.lock +++ b/gemfiles/ruby_3.0_sinatra_3.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -37,7 +37,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) docile (1.4.0) diff --git a/gemfiles/ruby_3.0_sinatra_4.gemfile.lock b/gemfiles/ruby_3.0_sinatra_4.gemfile.lock index 732e0ec7157..7d4fddd2599 100644 --- a/gemfiles/ruby_3.0_sinatra_4.gemfile.lock +++ b/gemfiles/ruby_3.0_sinatra_4.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -37,7 +37,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) docile (1.4.0) diff --git a/gemfiles/ruby_3.0_stripe_10.gemfile.lock b/gemfiles/ruby_3.0_stripe_10.gemfile.lock index 46c3e37baa0..cf93b688f26 100644 --- a/gemfiles/ruby_3.0_stripe_10.gemfile.lock +++ b/gemfiles/ruby_3.0_stripe_10.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -36,7 +36,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) docile (1.4.1) diff --git a/gemfiles/ruby_3.0_stripe_11.gemfile.lock b/gemfiles/ruby_3.0_stripe_11.gemfile.lock index 9a16f527654..4cb28e70b49 100644 --- a/gemfiles/ruby_3.0_stripe_11.gemfile.lock +++ b/gemfiles/ruby_3.0_stripe_11.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -36,7 +36,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) docile (1.4.1) diff --git a/gemfiles/ruby_3.0_stripe_12.gemfile.lock b/gemfiles/ruby_3.0_stripe_12.gemfile.lock index 9203d631052..0a5dfb38f09 100644 --- a/gemfiles/ruby_3.0_stripe_12.gemfile.lock +++ b/gemfiles/ruby_3.0_stripe_12.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -36,7 +36,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) docile (1.4.1) diff --git a/gemfiles/ruby_3.0_stripe_7.gemfile.lock b/gemfiles/ruby_3.0_stripe_7.gemfile.lock index a4e9c098bdf..dce2b4064ed 100644 --- a/gemfiles/ruby_3.0_stripe_7.gemfile.lock +++ b/gemfiles/ruby_3.0_stripe_7.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -36,7 +36,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) docile (1.4.1) diff --git a/gemfiles/ruby_3.0_stripe_8.gemfile.lock b/gemfiles/ruby_3.0_stripe_8.gemfile.lock index 70ec3448ade..d932b9484b0 100644 --- a/gemfiles/ruby_3.0_stripe_8.gemfile.lock +++ b/gemfiles/ruby_3.0_stripe_8.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -36,7 +36,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) docile (1.4.1) diff --git a/gemfiles/ruby_3.0_stripe_9.gemfile.lock b/gemfiles/ruby_3.0_stripe_9.gemfile.lock index 0b2fcabd90d..8771e44469b 100644 --- a/gemfiles/ruby_3.0_stripe_9.gemfile.lock +++ b/gemfiles/ruby_3.0_stripe_9.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -36,7 +36,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) docile (1.4.1) diff --git a/gemfiles/ruby_3.0_stripe_latest.gemfile.lock b/gemfiles/ruby_3.0_stripe_latest.gemfile.lock index fc2db6db7ed..c170bdfdb74 100644 --- a/gemfiles/ruby_3.0_stripe_latest.gemfile.lock +++ b/gemfiles/ruby_3.0_stripe_latest.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -36,7 +36,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) docile (1.4.1) diff --git a/gemfiles/ruby_3.0_stripe_min.gemfile.lock b/gemfiles/ruby_3.0_stripe_min.gemfile.lock index 5c48594238d..bd402f476cc 100644 --- a/gemfiles/ruby_3.0_stripe_min.gemfile.lock +++ b/gemfiles/ruby_3.0_stripe_min.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -36,7 +36,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) docile (1.4.1) diff --git a/gemfiles/ruby_3.1_activesupport.gemfile.lock b/gemfiles/ruby_3.1_activesupport.gemfile.lock index 7a540adaf03..f79e8db5bf0 100644 --- a/gemfiles/ruby_3.1_activesupport.gemfile.lock +++ b/gemfiles/ruby_3.1_activesupport.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -62,7 +62,7 @@ GEM crack (0.4.5) rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) digest-crc (0.6.5) diff --git a/gemfiles/ruby_3.1_aws.gemfile.lock b/gemfiles/ruby_3.1_aws.gemfile.lock index c8947e3ccfb..1074f886e6e 100644 --- a/gemfiles/ruby_3.1_aws.gemfile.lock +++ b/gemfiles/ruby_3.1_aws.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -1454,7 +1454,7 @@ GEM concurrent-ruby (1.2.2) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) docile (1.4.0) diff --git a/gemfiles/ruby_3.1_contrib.gemfile.lock b/gemfiles/ruby_3.1_contrib.gemfile.lock index c05a3dc6fa8..5313785d868 100644 --- a/gemfiles/ruby_3.1_contrib.gemfile.lock +++ b/gemfiles/ruby_3.1_contrib.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -40,7 +40,7 @@ GEM crack (0.4.5) rexml dalli (3.2.4) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) docile (1.4.0) diff --git a/gemfiles/ruby_3.1_contrib_old.gemfile.lock b/gemfiles/ruby_3.1_contrib_old.gemfile.lock index 62a28c9cfa7..2a36f11745e 100644 --- a/gemfiles/ruby_3.1_contrib_old.gemfile.lock +++ b/gemfiles/ruby_3.1_contrib_old.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -38,7 +38,7 @@ GEM rexml daemons (1.4.1) dalli (2.7.11) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) docile (1.4.0) diff --git a/gemfiles/ruby_3.1_core_old.gemfile.lock b/gemfiles/ruby_3.1_core_old.gemfile.lock index a673b3513ac..742a57d9e16 100644 --- a/gemfiles/ruby_3.1_core_old.gemfile.lock +++ b/gemfiles/ruby_3.1_core_old.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -33,7 +33,7 @@ GEM concurrent-ruby (1.2.2) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) docile (1.4.0) diff --git a/gemfiles/ruby_3.1_elasticsearch_7.gemfile.lock b/gemfiles/ruby_3.1_elasticsearch_7.gemfile.lock index 5dd36c80c58..178b8e8548e 100644 --- a/gemfiles/ruby_3.1_elasticsearch_7.gemfile.lock +++ b/gemfiles/ruby_3.1_elasticsearch_7.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -35,7 +35,7 @@ GEM concurrent-ruby (1.2.2) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) docile (1.4.0) diff --git a/gemfiles/ruby_3.1_elasticsearch_8.gemfile.lock b/gemfiles/ruby_3.1_elasticsearch_8.gemfile.lock index e13ba54b8ee..b3405b341f1 100644 --- a/gemfiles/ruby_3.1_elasticsearch_8.gemfile.lock +++ b/gemfiles/ruby_3.1_elasticsearch_8.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -34,7 +34,7 @@ GEM concurrent-ruby (1.2.2) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) docile (1.4.0) diff --git a/gemfiles/ruby_3.1_elasticsearch_latest.gemfile.lock b/gemfiles/ruby_3.1_elasticsearch_latest.gemfile.lock index 1c3a5cc7c4d..0590ab252cb 100644 --- a/gemfiles/ruby_3.1_elasticsearch_latest.gemfile.lock +++ b/gemfiles/ruby_3.1_elasticsearch_latest.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -36,7 +36,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) docile (1.4.1) diff --git a/gemfiles/ruby_3.1_graphql_1.13.gemfile.lock b/gemfiles/ruby_3.1_graphql_1.13.gemfile.lock index 6bb9ad8f88b..d63d86fa68d 100644 --- a/gemfiles/ruby_3.1_graphql_1.13.gemfile.lock +++ b/gemfiles/ruby_3.1_graphql_1.13.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -96,7 +96,7 @@ GEM crack (0.4.5) rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) date (3.3.4) debug_inspector (1.2.0) diff-lcs (1.5.0) diff --git a/gemfiles/ruby_3.1_graphql_2.0.gemfile.lock b/gemfiles/ruby_3.1_graphql_2.0.gemfile.lock index 2e3d0cb2b98..d6bb8ab28ce 100644 --- a/gemfiles/ruby_3.1_graphql_2.0.gemfile.lock +++ b/gemfiles/ruby_3.1_graphql_2.0.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -96,7 +96,7 @@ GEM crack (0.4.5) rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) date (3.3.4) debug_inspector (1.2.0) diff-lcs (1.5.0) diff --git a/gemfiles/ruby_3.1_graphql_2.1.gemfile.lock b/gemfiles/ruby_3.1_graphql_2.1.gemfile.lock index ab2f7c3a16a..a7b22ac00c1 100644 --- a/gemfiles/ruby_3.1_graphql_2.1.gemfile.lock +++ b/gemfiles/ruby_3.1_graphql_2.1.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -96,7 +96,7 @@ GEM crack (0.4.5) rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) date (3.3.4) debug_inspector (1.2.0) diff-lcs (1.5.0) diff --git a/gemfiles/ruby_3.1_graphql_2.2.gemfile.lock b/gemfiles/ruby_3.1_graphql_2.2.gemfile.lock index 3a2f2cde502..2c72a63deba 100644 --- a/gemfiles/ruby_3.1_graphql_2.2.gemfile.lock +++ b/gemfiles/ruby_3.1_graphql_2.2.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -96,7 +96,7 @@ GEM crack (0.4.5) rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) date (3.3.4) debug_inspector (1.2.0) diff-lcs (1.5.0) diff --git a/gemfiles/ruby_3.1_graphql_2.3.gemfile.lock b/gemfiles/ruby_3.1_graphql_2.3.gemfile.lock index 9125d50f37d..54d4bcca64b 100644 --- a/gemfiles/ruby_3.1_graphql_2.3.gemfile.lock +++ b/gemfiles/ruby_3.1_graphql_2.3.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -98,7 +98,7 @@ GEM bigdecimal rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) date (3.3.4) debug_inspector (1.2.0) diff-lcs (1.5.1) diff --git a/gemfiles/ruby_3.1_http.gemfile.lock b/gemfiles/ruby_3.1_http.gemfile.lock index 99792f58977..58176d6f9de 100644 --- a/gemfiles/ruby_3.1_http.gemfile.lock +++ b/gemfiles/ruby_3.1_http.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -33,7 +33,7 @@ GEM concurrent-ruby (1.2.2) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) docile (1.4.0) diff --git a/gemfiles/ruby_3.1_opensearch_2.gemfile.lock b/gemfiles/ruby_3.1_opensearch_2.gemfile.lock index d9fb329fdc0..a3a78ac3118 100644 --- a/gemfiles/ruby_3.1_opensearch_2.gemfile.lock +++ b/gemfiles/ruby_3.1_opensearch_2.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -34,7 +34,7 @@ GEM concurrent-ruby (1.2.2) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) docile (1.4.0) diff --git a/gemfiles/ruby_3.1_opensearch_3.gemfile.lock b/gemfiles/ruby_3.1_opensearch_3.gemfile.lock index 3140a31c431..a2b9840594a 100644 --- a/gemfiles/ruby_3.1_opensearch_3.gemfile.lock +++ b/gemfiles/ruby_3.1_opensearch_3.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -34,7 +34,7 @@ GEM concurrent-ruby (1.2.2) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) docile (1.4.0) diff --git a/gemfiles/ruby_3.1_opensearch_latest.gemfile.lock b/gemfiles/ruby_3.1_opensearch_latest.gemfile.lock index 49df06ea0c7..0e385a9c837 100644 --- a/gemfiles/ruby_3.1_opensearch_latest.gemfile.lock +++ b/gemfiles/ruby_3.1_opensearch_latest.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -36,7 +36,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) docile (1.4.1) diff --git a/gemfiles/ruby_3.1_opentelemetry.gemfile.lock b/gemfiles/ruby_3.1_opentelemetry.gemfile.lock index e5216727125..f4b5b5ba7d3 100644 --- a/gemfiles/ruby_3.1_opentelemetry.gemfile.lock +++ b/gemfiles/ruby_3.1_opentelemetry.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -33,7 +33,7 @@ GEM concurrent-ruby (1.2.2) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) docile (1.4.0) diff --git a/gemfiles/ruby_3.1_opentelemetry_otlp.gemfile.lock b/gemfiles/ruby_3.1_opentelemetry_otlp.gemfile.lock index 7e88166b01e..79a81af1a3e 100644 --- a/gemfiles/ruby_3.1_opentelemetry_otlp.gemfile.lock +++ b/gemfiles/ruby_3.1_opentelemetry_otlp.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -36,7 +36,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) docile (1.4.0) diff --git a/gemfiles/ruby_3.1_rack_1.gemfile.lock b/gemfiles/ruby_3.1_rack_1.gemfile.lock index 5d0039091d8..43424cb158b 100644 --- a/gemfiles/ruby_3.1_rack_1.gemfile.lock +++ b/gemfiles/ruby_3.1_rack_1.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -33,7 +33,7 @@ GEM concurrent-ruby (1.2.2) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) docile (1.4.0) diff --git a/gemfiles/ruby_3.1_rack_2.gemfile.lock b/gemfiles/ruby_3.1_rack_2.gemfile.lock index cf2da39f450..67e01d8daf8 100644 --- a/gemfiles/ruby_3.1_rack_2.gemfile.lock +++ b/gemfiles/ruby_3.1_rack_2.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -33,7 +33,7 @@ GEM concurrent-ruby (1.2.2) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) docile (1.4.0) diff --git a/gemfiles/ruby_3.1_rack_3.gemfile.lock b/gemfiles/ruby_3.1_rack_3.gemfile.lock index d25ba9533bb..d98b6627e05 100644 --- a/gemfiles/ruby_3.1_rack_3.gemfile.lock +++ b/gemfiles/ruby_3.1_rack_3.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -33,7 +33,7 @@ GEM concurrent-ruby (1.2.2) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) docile (1.4.0) diff --git a/gemfiles/ruby_3.1_rack_latest.gemfile.lock b/gemfiles/ruby_3.1_rack_latest.gemfile.lock index 34584316ced..b992fbe17b8 100644 --- a/gemfiles/ruby_3.1_rack_latest.gemfile.lock +++ b/gemfiles/ruby_3.1_rack_latest.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -36,7 +36,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) docile (1.4.1) diff --git a/gemfiles/ruby_3.1_rails61_mysql2.gemfile.lock b/gemfiles/ruby_3.1_rails61_mysql2.gemfile.lock index 55a77259e1b..f488041f4b9 100644 --- a/gemfiles/ruby_3.1_rails61_mysql2.gemfile.lock +++ b/gemfiles/ruby_3.1_rails61_mysql2.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -94,7 +94,7 @@ GEM crack (0.4.5) rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) date (3.3.3) debug_inspector (1.1.0) diff-lcs (1.5.0) diff --git a/gemfiles/ruby_3.1_rails61_postgres.gemfile.lock b/gemfiles/ruby_3.1_rails61_postgres.gemfile.lock index dd609a4bf99..03e28dbcef3 100644 --- a/gemfiles/ruby_3.1_rails61_postgres.gemfile.lock +++ b/gemfiles/ruby_3.1_rails61_postgres.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -94,7 +94,7 @@ GEM crack (0.4.5) rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) date (3.3.3) debug_inspector (1.1.0) diff-lcs (1.5.0) diff --git a/gemfiles/ruby_3.1_rails61_postgres_redis.gemfile.lock b/gemfiles/ruby_3.1_rails61_postgres_redis.gemfile.lock index b9a723b57fb..6e5eb77a1da 100644 --- a/gemfiles/ruby_3.1_rails61_postgres_redis.gemfile.lock +++ b/gemfiles/ruby_3.1_rails61_postgres_redis.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -94,7 +94,7 @@ GEM crack (0.4.5) rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) date (3.3.3) debug_inspector (1.1.0) diff-lcs (1.5.0) diff --git a/gemfiles/ruby_3.1_rails61_postgres_sidekiq.gemfile.lock b/gemfiles/ruby_3.1_rails61_postgres_sidekiq.gemfile.lock index 5dc662d2df6..0d1be196484 100644 --- a/gemfiles/ruby_3.1_rails61_postgres_sidekiq.gemfile.lock +++ b/gemfiles/ruby_3.1_rails61_postgres_sidekiq.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -95,7 +95,7 @@ GEM crack (0.4.5) rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) date (3.3.3) debug_inspector (1.1.0) diff-lcs (1.5.0) diff --git a/gemfiles/ruby_3.1_rails61_semantic_logger.gemfile.lock b/gemfiles/ruby_3.1_rails61_semantic_logger.gemfile.lock index be4f1d7b082..0670f5d955c 100644 --- a/gemfiles/ruby_3.1_rails61_semantic_logger.gemfile.lock +++ b/gemfiles/ruby_3.1_rails61_semantic_logger.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -94,7 +94,7 @@ GEM crack (0.4.5) rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) date (3.3.3) debug_inspector (1.1.0) diff-lcs (1.5.0) diff --git a/gemfiles/ruby_3.1_rails61_trilogy.gemfile.lock b/gemfiles/ruby_3.1_rails61_trilogy.gemfile.lock index 7704593046a..112f0729181 100644 --- a/gemfiles/ruby_3.1_rails61_trilogy.gemfile.lock +++ b/gemfiles/ruby_3.1_rails61_trilogy.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -98,7 +98,7 @@ GEM crack (0.4.5) rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) date (3.3.4) debug_inspector (1.1.0) diff-lcs (1.5.0) diff --git a/gemfiles/ruby_3.1_rails7.gemfile.lock b/gemfiles/ruby_3.1_rails7.gemfile.lock index 3875a1f9953..d51ad375adc 100644 --- a/gemfiles/ruby_3.1_rails7.gemfile.lock +++ b/gemfiles/ruby_3.1_rails7.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -103,7 +103,7 @@ GEM bigdecimal rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) date (3.3.4) debug_inspector (1.2.0) diff-lcs (1.5.1) diff --git a/gemfiles/ruby_3.1_rails71.gemfile.lock b/gemfiles/ruby_3.1_rails71.gemfile.lock index 53d2f3232bd..2b3ca2cdf4d 100644 --- a/gemfiles/ruby_3.1_rails71.gemfile.lock +++ b/gemfiles/ruby_3.1_rails71.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -114,7 +114,7 @@ GEM bigdecimal rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) date (3.3.4) debug_inspector (1.2.0) diff-lcs (1.5.1) diff --git a/gemfiles/ruby_3.1_redis_3.gemfile.lock b/gemfiles/ruby_3.1_redis_3.gemfile.lock index d110fdf89db..3f033353302 100644 --- a/gemfiles/ruby_3.1_redis_3.gemfile.lock +++ b/gemfiles/ruby_3.1_redis_3.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -33,7 +33,7 @@ GEM concurrent-ruby (1.2.2) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) docile (1.4.0) diff --git a/gemfiles/ruby_3.1_redis_4.gemfile.lock b/gemfiles/ruby_3.1_redis_4.gemfile.lock index 10d8d5f099d..c53da1b3f76 100644 --- a/gemfiles/ruby_3.1_redis_4.gemfile.lock +++ b/gemfiles/ruby_3.1_redis_4.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -33,7 +33,7 @@ GEM concurrent-ruby (1.2.2) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) docile (1.4.0) diff --git a/gemfiles/ruby_3.1_redis_5.gemfile.lock b/gemfiles/ruby_3.1_redis_5.gemfile.lock index 6e02f4ec403..98fa43caded 100644 --- a/gemfiles/ruby_3.1_redis_5.gemfile.lock +++ b/gemfiles/ruby_3.1_redis_5.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -34,7 +34,7 @@ GEM connection_pool (2.3.0) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) docile (1.4.0) diff --git a/gemfiles/ruby_3.1_relational_db.gemfile.lock b/gemfiles/ruby_3.1_relational_db.gemfile.lock index a0c7095f061..9e155b687f1 100644 --- a/gemfiles/ruby_3.1_relational_db.gemfile.lock +++ b/gemfiles/ruby_3.1_relational_db.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -44,7 +44,7 @@ GEM concurrent-ruby (1.2.2) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) delayed_job (4.1.11) activesupport (>= 3.0, < 8.0) diff --git a/gemfiles/ruby_3.1_resque2_redis3.gemfile.lock b/gemfiles/ruby_3.1_resque2_redis3.gemfile.lock index da41e378e0e..53ce42c2b4f 100644 --- a/gemfiles/ruby_3.1_resque2_redis3.gemfile.lock +++ b/gemfiles/ruby_3.1_resque2_redis3.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -33,7 +33,7 @@ GEM concurrent-ruby (1.2.2) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) docile (1.4.0) diff --git a/gemfiles/ruby_3.1_resque2_redis4.gemfile.lock b/gemfiles/ruby_3.1_resque2_redis4.gemfile.lock index 0e7eee98c9e..a8af46d0c47 100644 --- a/gemfiles/ruby_3.1_resque2_redis4.gemfile.lock +++ b/gemfiles/ruby_3.1_resque2_redis4.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -34,7 +34,7 @@ GEM connection_pool (2.3.0) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) docile (1.4.0) diff --git a/gemfiles/ruby_3.1_sinatra_2.gemfile.lock b/gemfiles/ruby_3.1_sinatra_2.gemfile.lock index 3705c38684e..73a63eabcc9 100644 --- a/gemfiles/ruby_3.1_sinatra_2.gemfile.lock +++ b/gemfiles/ruby_3.1_sinatra_2.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -36,7 +36,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) docile (1.4.0) diff --git a/gemfiles/ruby_3.1_sinatra_3.gemfile.lock b/gemfiles/ruby_3.1_sinatra_3.gemfile.lock index 922d70da1b6..cf1ebc9fcde 100644 --- a/gemfiles/ruby_3.1_sinatra_3.gemfile.lock +++ b/gemfiles/ruby_3.1_sinatra_3.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -37,7 +37,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) docile (1.4.0) diff --git a/gemfiles/ruby_3.1_sinatra_4.gemfile.lock b/gemfiles/ruby_3.1_sinatra_4.gemfile.lock index 732e0ec7157..7d4fddd2599 100644 --- a/gemfiles/ruby_3.1_sinatra_4.gemfile.lock +++ b/gemfiles/ruby_3.1_sinatra_4.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -37,7 +37,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) docile (1.4.0) diff --git a/gemfiles/ruby_3.1_stripe_10.gemfile.lock b/gemfiles/ruby_3.1_stripe_10.gemfile.lock index 46c3e37baa0..cf93b688f26 100644 --- a/gemfiles/ruby_3.1_stripe_10.gemfile.lock +++ b/gemfiles/ruby_3.1_stripe_10.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -36,7 +36,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) docile (1.4.1) diff --git a/gemfiles/ruby_3.1_stripe_11.gemfile.lock b/gemfiles/ruby_3.1_stripe_11.gemfile.lock index 9a16f527654..4cb28e70b49 100644 --- a/gemfiles/ruby_3.1_stripe_11.gemfile.lock +++ b/gemfiles/ruby_3.1_stripe_11.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -36,7 +36,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) docile (1.4.1) diff --git a/gemfiles/ruby_3.1_stripe_12.gemfile.lock b/gemfiles/ruby_3.1_stripe_12.gemfile.lock index 9203d631052..0a5dfb38f09 100644 --- a/gemfiles/ruby_3.1_stripe_12.gemfile.lock +++ b/gemfiles/ruby_3.1_stripe_12.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -36,7 +36,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) docile (1.4.1) diff --git a/gemfiles/ruby_3.1_stripe_7.gemfile.lock b/gemfiles/ruby_3.1_stripe_7.gemfile.lock index a4e9c098bdf..dce2b4064ed 100644 --- a/gemfiles/ruby_3.1_stripe_7.gemfile.lock +++ b/gemfiles/ruby_3.1_stripe_7.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -36,7 +36,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) docile (1.4.1) diff --git a/gemfiles/ruby_3.1_stripe_8.gemfile.lock b/gemfiles/ruby_3.1_stripe_8.gemfile.lock index 70ec3448ade..d932b9484b0 100644 --- a/gemfiles/ruby_3.1_stripe_8.gemfile.lock +++ b/gemfiles/ruby_3.1_stripe_8.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -36,7 +36,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) docile (1.4.1) diff --git a/gemfiles/ruby_3.1_stripe_9.gemfile.lock b/gemfiles/ruby_3.1_stripe_9.gemfile.lock index 0b2fcabd90d..8771e44469b 100644 --- a/gemfiles/ruby_3.1_stripe_9.gemfile.lock +++ b/gemfiles/ruby_3.1_stripe_9.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -36,7 +36,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) docile (1.4.1) diff --git a/gemfiles/ruby_3.1_stripe_latest.gemfile.lock b/gemfiles/ruby_3.1_stripe_latest.gemfile.lock index fc2db6db7ed..c170bdfdb74 100644 --- a/gemfiles/ruby_3.1_stripe_latest.gemfile.lock +++ b/gemfiles/ruby_3.1_stripe_latest.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -36,7 +36,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) docile (1.4.1) diff --git a/gemfiles/ruby_3.1_stripe_min.gemfile.lock b/gemfiles/ruby_3.1_stripe_min.gemfile.lock index 5c48594238d..bd402f476cc 100644 --- a/gemfiles/ruby_3.1_stripe_min.gemfile.lock +++ b/gemfiles/ruby_3.1_stripe_min.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -36,7 +36,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) docile (1.4.1) diff --git a/gemfiles/ruby_3.2_activesupport.gemfile.lock b/gemfiles/ruby_3.2_activesupport.gemfile.lock index 1981e05d87d..c8708b42387 100644 --- a/gemfiles/ruby_3.2_activesupport.gemfile.lock +++ b/gemfiles/ruby_3.2_activesupport.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -61,7 +61,7 @@ GEM crack (0.4.5) rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) digest-crc (0.6.5) diff --git a/gemfiles/ruby_3.2_aws.gemfile.lock b/gemfiles/ruby_3.2_aws.gemfile.lock index 27804b67ef7..d11a4e10919 100644 --- a/gemfiles/ruby_3.2_aws.gemfile.lock +++ b/gemfiles/ruby_3.2_aws.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -1453,7 +1453,7 @@ GEM concurrent-ruby (1.2.2) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) docile (1.4.0) diff --git a/gemfiles/ruby_3.2_contrib.gemfile.lock b/gemfiles/ruby_3.2_contrib.gemfile.lock index c1026f76e97..089477925ba 100644 --- a/gemfiles/ruby_3.2_contrib.gemfile.lock +++ b/gemfiles/ruby_3.2_contrib.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -39,7 +39,7 @@ GEM crack (0.4.5) rexml dalli (3.2.4) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) docile (1.4.0) diff --git a/gemfiles/ruby_3.2_contrib_old.gemfile.lock b/gemfiles/ruby_3.2_contrib_old.gemfile.lock index 08d5a4c6ee6..4e8c631330d 100644 --- a/gemfiles/ruby_3.2_contrib_old.gemfile.lock +++ b/gemfiles/ruby_3.2_contrib_old.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -37,7 +37,7 @@ GEM rexml daemons (1.4.1) dalli (2.7.11) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) docile (1.4.0) diff --git a/gemfiles/ruby_3.2_core_old.gemfile.lock b/gemfiles/ruby_3.2_core_old.gemfile.lock index dc1e7fa210c..f9b7bfdacf8 100644 --- a/gemfiles/ruby_3.2_core_old.gemfile.lock +++ b/gemfiles/ruby_3.2_core_old.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -32,7 +32,7 @@ GEM concurrent-ruby (1.2.2) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) docile (1.4.0) diff --git a/gemfiles/ruby_3.2_elasticsearch_7.gemfile.lock b/gemfiles/ruby_3.2_elasticsearch_7.gemfile.lock index 08f4dc773b3..5ca511d6ba4 100644 --- a/gemfiles/ruby_3.2_elasticsearch_7.gemfile.lock +++ b/gemfiles/ruby_3.2_elasticsearch_7.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -34,7 +34,7 @@ GEM concurrent-ruby (1.2.2) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) docile (1.4.0) diff --git a/gemfiles/ruby_3.2_elasticsearch_8.gemfile.lock b/gemfiles/ruby_3.2_elasticsearch_8.gemfile.lock index e2ec84ce2d2..7c8f594a851 100644 --- a/gemfiles/ruby_3.2_elasticsearch_8.gemfile.lock +++ b/gemfiles/ruby_3.2_elasticsearch_8.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -33,7 +33,7 @@ GEM concurrent-ruby (1.2.2) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) docile (1.4.0) diff --git a/gemfiles/ruby_3.2_elasticsearch_latest.gemfile.lock b/gemfiles/ruby_3.2_elasticsearch_latest.gemfile.lock index 3fc10091baf..5c04d100810 100644 --- a/gemfiles/ruby_3.2_elasticsearch_latest.gemfile.lock +++ b/gemfiles/ruby_3.2_elasticsearch_latest.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -35,7 +35,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) docile (1.4.1) diff --git a/gemfiles/ruby_3.2_graphql_1.13.gemfile.lock b/gemfiles/ruby_3.2_graphql_1.13.gemfile.lock index d1229f40c18..072f28ea3b7 100644 --- a/gemfiles/ruby_3.2_graphql_1.13.gemfile.lock +++ b/gemfiles/ruby_3.2_graphql_1.13.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -94,7 +94,7 @@ GEM crack (0.4.5) rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) date (3.3.4) debug_inspector (1.2.0) diff-lcs (1.5.0) diff --git a/gemfiles/ruby_3.2_graphql_2.0.gemfile.lock b/gemfiles/ruby_3.2_graphql_2.0.gemfile.lock index 2edabca7590..bde3a7df378 100644 --- a/gemfiles/ruby_3.2_graphql_2.0.gemfile.lock +++ b/gemfiles/ruby_3.2_graphql_2.0.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -94,7 +94,7 @@ GEM crack (0.4.5) rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) date (3.3.4) debug_inspector (1.2.0) diff-lcs (1.5.0) diff --git a/gemfiles/ruby_3.2_graphql_2.1.gemfile.lock b/gemfiles/ruby_3.2_graphql_2.1.gemfile.lock index e97bb88591f..0d9f9a33817 100644 --- a/gemfiles/ruby_3.2_graphql_2.1.gemfile.lock +++ b/gemfiles/ruby_3.2_graphql_2.1.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -94,7 +94,7 @@ GEM crack (0.4.5) rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) date (3.3.4) debug_inspector (1.2.0) diff-lcs (1.5.0) diff --git a/gemfiles/ruby_3.2_graphql_2.2.gemfile.lock b/gemfiles/ruby_3.2_graphql_2.2.gemfile.lock index 6da8e71a5f5..609cf1a3704 100644 --- a/gemfiles/ruby_3.2_graphql_2.2.gemfile.lock +++ b/gemfiles/ruby_3.2_graphql_2.2.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -94,7 +94,7 @@ GEM crack (0.4.5) rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) date (3.3.4) debug_inspector (1.2.0) diff-lcs (1.5.0) diff --git a/gemfiles/ruby_3.2_graphql_2.3.gemfile.lock b/gemfiles/ruby_3.2_graphql_2.3.gemfile.lock index e5e54f2a35e..1af7a475fc2 100644 --- a/gemfiles/ruby_3.2_graphql_2.3.gemfile.lock +++ b/gemfiles/ruby_3.2_graphql_2.3.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -97,7 +97,7 @@ GEM bigdecimal rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) date (3.3.4) debug_inspector (1.2.0) diff-lcs (1.5.1) diff --git a/gemfiles/ruby_3.2_http.gemfile.lock b/gemfiles/ruby_3.2_http.gemfile.lock index 534852e69aa..d475f2605a9 100644 --- a/gemfiles/ruby_3.2_http.gemfile.lock +++ b/gemfiles/ruby_3.2_http.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -32,7 +32,7 @@ GEM concurrent-ruby (1.2.2) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) docile (1.4.0) diff --git a/gemfiles/ruby_3.2_opensearch_2.gemfile.lock b/gemfiles/ruby_3.2_opensearch_2.gemfile.lock index b205a5efc85..c5d3a53678f 100644 --- a/gemfiles/ruby_3.2_opensearch_2.gemfile.lock +++ b/gemfiles/ruby_3.2_opensearch_2.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -33,7 +33,7 @@ GEM concurrent-ruby (1.2.2) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) docile (1.4.0) diff --git a/gemfiles/ruby_3.2_opensearch_3.gemfile.lock b/gemfiles/ruby_3.2_opensearch_3.gemfile.lock index 2633f94129e..82328650579 100644 --- a/gemfiles/ruby_3.2_opensearch_3.gemfile.lock +++ b/gemfiles/ruby_3.2_opensearch_3.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -33,7 +33,7 @@ GEM concurrent-ruby (1.2.2) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) docile (1.4.0) diff --git a/gemfiles/ruby_3.2_opensearch_latest.gemfile.lock b/gemfiles/ruby_3.2_opensearch_latest.gemfile.lock index 28454df0418..12ccbee1a8e 100644 --- a/gemfiles/ruby_3.2_opensearch_latest.gemfile.lock +++ b/gemfiles/ruby_3.2_opensearch_latest.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -35,7 +35,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) docile (1.4.1) diff --git a/gemfiles/ruby_3.2_opentelemetry.gemfile.lock b/gemfiles/ruby_3.2_opentelemetry.gemfile.lock index 602d1e0b1c7..3389026486e 100644 --- a/gemfiles/ruby_3.2_opentelemetry.gemfile.lock +++ b/gemfiles/ruby_3.2_opentelemetry.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -32,7 +32,7 @@ GEM concurrent-ruby (1.2.2) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) docile (1.4.0) diff --git a/gemfiles/ruby_3.2_opentelemetry_otlp.gemfile.lock b/gemfiles/ruby_3.2_opentelemetry_otlp.gemfile.lock index eb50a60a4d1..be128eb20d2 100644 --- a/gemfiles/ruby_3.2_opentelemetry_otlp.gemfile.lock +++ b/gemfiles/ruby_3.2_opentelemetry_otlp.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -35,7 +35,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) docile (1.4.0) diff --git a/gemfiles/ruby_3.2_rack_1.gemfile.lock b/gemfiles/ruby_3.2_rack_1.gemfile.lock index 83f96701b97..9d404eb3457 100644 --- a/gemfiles/ruby_3.2_rack_1.gemfile.lock +++ b/gemfiles/ruby_3.2_rack_1.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -32,7 +32,7 @@ GEM concurrent-ruby (1.2.2) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) docile (1.4.0) diff --git a/gemfiles/ruby_3.2_rack_2.gemfile.lock b/gemfiles/ruby_3.2_rack_2.gemfile.lock index a4586ae8285..b4bd478e79a 100644 --- a/gemfiles/ruby_3.2_rack_2.gemfile.lock +++ b/gemfiles/ruby_3.2_rack_2.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -32,7 +32,7 @@ GEM concurrent-ruby (1.2.2) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) docile (1.4.0) diff --git a/gemfiles/ruby_3.2_rack_3.gemfile.lock b/gemfiles/ruby_3.2_rack_3.gemfile.lock index 0f9645b7053..fa018713386 100644 --- a/gemfiles/ruby_3.2_rack_3.gemfile.lock +++ b/gemfiles/ruby_3.2_rack_3.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -32,7 +32,7 @@ GEM concurrent-ruby (1.2.2) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) docile (1.4.0) diff --git a/gemfiles/ruby_3.2_rack_latest.gemfile.lock b/gemfiles/ruby_3.2_rack_latest.gemfile.lock index 7ccaac04c5f..481b4fd483b 100644 --- a/gemfiles/ruby_3.2_rack_latest.gemfile.lock +++ b/gemfiles/ruby_3.2_rack_latest.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -35,7 +35,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) docile (1.4.1) diff --git a/gemfiles/ruby_3.2_rails61_mysql2.gemfile.lock b/gemfiles/ruby_3.2_rails61_mysql2.gemfile.lock index ba4c165c523..1e11a38a41c 100644 --- a/gemfiles/ruby_3.2_rails61_mysql2.gemfile.lock +++ b/gemfiles/ruby_3.2_rails61_mysql2.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -93,7 +93,7 @@ GEM crack (0.4.5) rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) date (3.3.3) debug_inspector (1.1.0) diff-lcs (1.5.0) diff --git a/gemfiles/ruby_3.2_rails61_postgres.gemfile.lock b/gemfiles/ruby_3.2_rails61_postgres.gemfile.lock index ef599294127..7b5c0017fe9 100644 --- a/gemfiles/ruby_3.2_rails61_postgres.gemfile.lock +++ b/gemfiles/ruby_3.2_rails61_postgres.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -93,7 +93,7 @@ GEM crack (0.4.5) rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) date (3.3.3) debug_inspector (1.1.0) diff-lcs (1.5.0) diff --git a/gemfiles/ruby_3.2_rails61_postgres_redis.gemfile.lock b/gemfiles/ruby_3.2_rails61_postgres_redis.gemfile.lock index 3b2841940f1..8cdea59f519 100644 --- a/gemfiles/ruby_3.2_rails61_postgres_redis.gemfile.lock +++ b/gemfiles/ruby_3.2_rails61_postgres_redis.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -93,7 +93,7 @@ GEM crack (0.4.5) rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) date (3.3.3) debug_inspector (1.1.0) diff-lcs (1.5.0) diff --git a/gemfiles/ruby_3.2_rails61_postgres_sidekiq.gemfile.lock b/gemfiles/ruby_3.2_rails61_postgres_sidekiq.gemfile.lock index 108158f2166..bc338cc7186 100644 --- a/gemfiles/ruby_3.2_rails61_postgres_sidekiq.gemfile.lock +++ b/gemfiles/ruby_3.2_rails61_postgres_sidekiq.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -94,7 +94,7 @@ GEM crack (0.4.5) rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) date (3.3.3) debug_inspector (1.1.0) diff-lcs (1.5.0) diff --git a/gemfiles/ruby_3.2_rails61_semantic_logger.gemfile.lock b/gemfiles/ruby_3.2_rails61_semantic_logger.gemfile.lock index 9fbf6d78af6..d84e4883104 100644 --- a/gemfiles/ruby_3.2_rails61_semantic_logger.gemfile.lock +++ b/gemfiles/ruby_3.2_rails61_semantic_logger.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -93,7 +93,7 @@ GEM crack (0.4.5) rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) date (3.3.3) debug_inspector (1.1.0) diff-lcs (1.5.0) diff --git a/gemfiles/ruby_3.2_rails61_trilogy.gemfile.lock b/gemfiles/ruby_3.2_rails61_trilogy.gemfile.lock index 616bdb32c14..3ea30f5304a 100644 --- a/gemfiles/ruby_3.2_rails61_trilogy.gemfile.lock +++ b/gemfiles/ruby_3.2_rails61_trilogy.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -97,7 +97,7 @@ GEM crack (0.4.5) rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) date (3.3.4) debug_inspector (1.1.0) diff-lcs (1.5.0) diff --git a/gemfiles/ruby_3.2_rails7.gemfile.lock b/gemfiles/ruby_3.2_rails7.gemfile.lock index acb7ef6e5f4..96a5323f62e 100644 --- a/gemfiles/ruby_3.2_rails7.gemfile.lock +++ b/gemfiles/ruby_3.2_rails7.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -102,7 +102,7 @@ GEM bigdecimal rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) date (3.3.4) debug_inspector (1.2.0) diff-lcs (1.5.1) diff --git a/gemfiles/ruby_3.2_rails71.gemfile.lock b/gemfiles/ruby_3.2_rails71.gemfile.lock index b3466eec5f9..1921bc6e914 100644 --- a/gemfiles/ruby_3.2_rails71.gemfile.lock +++ b/gemfiles/ruby_3.2_rails71.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -113,7 +113,7 @@ GEM bigdecimal rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) date (3.3.4) debug_inspector (1.2.0) diff-lcs (1.5.1) diff --git a/gemfiles/ruby_3.2_redis_3.gemfile.lock b/gemfiles/ruby_3.2_redis_3.gemfile.lock index 482b232ca95..95d354efe2e 100644 --- a/gemfiles/ruby_3.2_redis_3.gemfile.lock +++ b/gemfiles/ruby_3.2_redis_3.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -32,7 +32,7 @@ GEM concurrent-ruby (1.2.2) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) docile (1.4.0) diff --git a/gemfiles/ruby_3.2_redis_4.gemfile.lock b/gemfiles/ruby_3.2_redis_4.gemfile.lock index 8fc48470074..706b2482f6d 100644 --- a/gemfiles/ruby_3.2_redis_4.gemfile.lock +++ b/gemfiles/ruby_3.2_redis_4.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -32,7 +32,7 @@ GEM concurrent-ruby (1.2.2) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) docile (1.4.0) diff --git a/gemfiles/ruby_3.2_redis_5.gemfile.lock b/gemfiles/ruby_3.2_redis_5.gemfile.lock index 56c89546b49..99df2ae4129 100644 --- a/gemfiles/ruby_3.2_redis_5.gemfile.lock +++ b/gemfiles/ruby_3.2_redis_5.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -33,7 +33,7 @@ GEM connection_pool (2.3.0) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) docile (1.4.0) diff --git a/gemfiles/ruby_3.2_relational_db.gemfile.lock b/gemfiles/ruby_3.2_relational_db.gemfile.lock index 50f05614c3b..5119a42cc10 100644 --- a/gemfiles/ruby_3.2_relational_db.gemfile.lock +++ b/gemfiles/ruby_3.2_relational_db.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -43,7 +43,7 @@ GEM concurrent-ruby (1.2.2) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) delayed_job (4.1.11) activesupport (>= 3.0, < 8.0) diff --git a/gemfiles/ruby_3.2_resque2_redis3.gemfile.lock b/gemfiles/ruby_3.2_resque2_redis3.gemfile.lock index c64f9e6f508..152191842bb 100644 --- a/gemfiles/ruby_3.2_resque2_redis3.gemfile.lock +++ b/gemfiles/ruby_3.2_resque2_redis3.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -32,7 +32,7 @@ GEM concurrent-ruby (1.2.2) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) docile (1.4.0) diff --git a/gemfiles/ruby_3.2_resque2_redis4.gemfile.lock b/gemfiles/ruby_3.2_resque2_redis4.gemfile.lock index d633f835fb8..cadb5388f59 100644 --- a/gemfiles/ruby_3.2_resque2_redis4.gemfile.lock +++ b/gemfiles/ruby_3.2_resque2_redis4.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -33,7 +33,7 @@ GEM connection_pool (2.3.0) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) docile (1.4.0) diff --git a/gemfiles/ruby_3.2_sinatra_2.gemfile.lock b/gemfiles/ruby_3.2_sinatra_2.gemfile.lock index ad40af69824..b36a3eb5884 100644 --- a/gemfiles/ruby_3.2_sinatra_2.gemfile.lock +++ b/gemfiles/ruby_3.2_sinatra_2.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -35,7 +35,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) docile (1.4.0) diff --git a/gemfiles/ruby_3.2_sinatra_3.gemfile.lock b/gemfiles/ruby_3.2_sinatra_3.gemfile.lock index 0f02a837d3b..6f5645a41b1 100644 --- a/gemfiles/ruby_3.2_sinatra_3.gemfile.lock +++ b/gemfiles/ruby_3.2_sinatra_3.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -36,7 +36,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) docile (1.4.0) diff --git a/gemfiles/ruby_3.2_sinatra_4.gemfile.lock b/gemfiles/ruby_3.2_sinatra_4.gemfile.lock index 410abceaa61..703528887d0 100644 --- a/gemfiles/ruby_3.2_sinatra_4.gemfile.lock +++ b/gemfiles/ruby_3.2_sinatra_4.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -36,7 +36,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) docile (1.4.0) diff --git a/gemfiles/ruby_3.2_stripe_10.gemfile.lock b/gemfiles/ruby_3.2_stripe_10.gemfile.lock index 0f1f8988448..fb376f0740d 100644 --- a/gemfiles/ruby_3.2_stripe_10.gemfile.lock +++ b/gemfiles/ruby_3.2_stripe_10.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -35,7 +35,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) docile (1.4.1) diff --git a/gemfiles/ruby_3.2_stripe_11.gemfile.lock b/gemfiles/ruby_3.2_stripe_11.gemfile.lock index 54f74d2ab08..1e569f8d9ed 100644 --- a/gemfiles/ruby_3.2_stripe_11.gemfile.lock +++ b/gemfiles/ruby_3.2_stripe_11.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -35,7 +35,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) docile (1.4.1) diff --git a/gemfiles/ruby_3.2_stripe_12.gemfile.lock b/gemfiles/ruby_3.2_stripe_12.gemfile.lock index 59324f8fe9e..4e37685019b 100644 --- a/gemfiles/ruby_3.2_stripe_12.gemfile.lock +++ b/gemfiles/ruby_3.2_stripe_12.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -35,7 +35,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) docile (1.4.1) diff --git a/gemfiles/ruby_3.2_stripe_7.gemfile.lock b/gemfiles/ruby_3.2_stripe_7.gemfile.lock index fc491554bc8..43a4b14e842 100644 --- a/gemfiles/ruby_3.2_stripe_7.gemfile.lock +++ b/gemfiles/ruby_3.2_stripe_7.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -35,7 +35,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) docile (1.4.1) diff --git a/gemfiles/ruby_3.2_stripe_8.gemfile.lock b/gemfiles/ruby_3.2_stripe_8.gemfile.lock index fe48a21e601..8745811725f 100644 --- a/gemfiles/ruby_3.2_stripe_8.gemfile.lock +++ b/gemfiles/ruby_3.2_stripe_8.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -35,7 +35,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) docile (1.4.1) diff --git a/gemfiles/ruby_3.2_stripe_9.gemfile.lock b/gemfiles/ruby_3.2_stripe_9.gemfile.lock index 51400d22a20..68af5fbbf11 100644 --- a/gemfiles/ruby_3.2_stripe_9.gemfile.lock +++ b/gemfiles/ruby_3.2_stripe_9.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -35,7 +35,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) docile (1.4.1) diff --git a/gemfiles/ruby_3.2_stripe_latest.gemfile.lock b/gemfiles/ruby_3.2_stripe_latest.gemfile.lock index 1938b78a9ee..6c6ba3d7569 100644 --- a/gemfiles/ruby_3.2_stripe_latest.gemfile.lock +++ b/gemfiles/ruby_3.2_stripe_latest.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -35,7 +35,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) docile (1.4.1) diff --git a/gemfiles/ruby_3.2_stripe_min.gemfile.lock b/gemfiles/ruby_3.2_stripe_min.gemfile.lock index 5295c8474e3..fccd509980f 100644 --- a/gemfiles/ruby_3.2_stripe_min.gemfile.lock +++ b/gemfiles/ruby_3.2_stripe_min.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -35,7 +35,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) docile (1.4.1) diff --git a/gemfiles/ruby_3.3_activesupport.gemfile.lock b/gemfiles/ruby_3.3_activesupport.gemfile.lock index f47879ad3de..5b18691d7a6 100644 --- a/gemfiles/ruby_3.3_activesupport.gemfile.lock +++ b/gemfiles/ruby_3.3_activesupport.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -61,7 +61,7 @@ GEM crack (0.4.5) rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) digest-crc (0.6.5) diff --git a/gemfiles/ruby_3.3_aws.gemfile.lock b/gemfiles/ruby_3.3_aws.gemfile.lock index 50ec3351dee..47eb6ef2eb6 100644 --- a/gemfiles/ruby_3.3_aws.gemfile.lock +++ b/gemfiles/ruby_3.3_aws.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -1453,7 +1453,7 @@ GEM concurrent-ruby (1.2.2) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) docile (1.4.0) diff --git a/gemfiles/ruby_3.3_contrib.gemfile.lock b/gemfiles/ruby_3.3_contrib.gemfile.lock index cd732a3316d..584e5bbb826 100644 --- a/gemfiles/ruby_3.3_contrib.gemfile.lock +++ b/gemfiles/ruby_3.3_contrib.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -39,7 +39,7 @@ GEM crack (0.4.5) rexml dalli (3.2.4) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) docile (1.4.0) diff --git a/gemfiles/ruby_3.3_contrib_old.gemfile.lock b/gemfiles/ruby_3.3_contrib_old.gemfile.lock index d3a5f150788..7ca64ec33a0 100644 --- a/gemfiles/ruby_3.3_contrib_old.gemfile.lock +++ b/gemfiles/ruby_3.3_contrib_old.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -37,7 +37,7 @@ GEM rexml daemons (1.4.1) dalli (2.7.11) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) docile (1.4.0) diff --git a/gemfiles/ruby_3.3_core_old.gemfile.lock b/gemfiles/ruby_3.3_core_old.gemfile.lock index d0322674de9..f6c72cba67a 100644 --- a/gemfiles/ruby_3.3_core_old.gemfile.lock +++ b/gemfiles/ruby_3.3_core_old.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -32,7 +32,7 @@ GEM concurrent-ruby (1.2.2) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) docile (1.4.0) diff --git a/gemfiles/ruby_3.3_elasticsearch_7.gemfile.lock b/gemfiles/ruby_3.3_elasticsearch_7.gemfile.lock index 7eb225de5e7..f663a007ff7 100644 --- a/gemfiles/ruby_3.3_elasticsearch_7.gemfile.lock +++ b/gemfiles/ruby_3.3_elasticsearch_7.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -34,7 +34,7 @@ GEM concurrent-ruby (1.2.2) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) docile (1.4.0) diff --git a/gemfiles/ruby_3.3_elasticsearch_8.gemfile.lock b/gemfiles/ruby_3.3_elasticsearch_8.gemfile.lock index 05696eade1f..fe257f87701 100644 --- a/gemfiles/ruby_3.3_elasticsearch_8.gemfile.lock +++ b/gemfiles/ruby_3.3_elasticsearch_8.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -33,7 +33,7 @@ GEM concurrent-ruby (1.2.2) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) docile (1.4.0) diff --git a/gemfiles/ruby_3.3_elasticsearch_latest.gemfile.lock b/gemfiles/ruby_3.3_elasticsearch_latest.gemfile.lock index 3fc10091baf..5c04d100810 100644 --- a/gemfiles/ruby_3.3_elasticsearch_latest.gemfile.lock +++ b/gemfiles/ruby_3.3_elasticsearch_latest.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -35,7 +35,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) docile (1.4.1) diff --git a/gemfiles/ruby_3.3_graphql_1.13.gemfile.lock b/gemfiles/ruby_3.3_graphql_1.13.gemfile.lock index d63abd741e7..0046116d95c 100644 --- a/gemfiles/ruby_3.3_graphql_1.13.gemfile.lock +++ b/gemfiles/ruby_3.3_graphql_1.13.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -95,7 +95,7 @@ GEM crack (0.4.5) rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) date (3.3.4) debug_inspector (1.2.0) diff-lcs (1.5.0) diff --git a/gemfiles/ruby_3.3_graphql_2.0.gemfile.lock b/gemfiles/ruby_3.3_graphql_2.0.gemfile.lock index 2e07bc16a7e..f85ce27a55f 100644 --- a/gemfiles/ruby_3.3_graphql_2.0.gemfile.lock +++ b/gemfiles/ruby_3.3_graphql_2.0.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -95,7 +95,7 @@ GEM crack (0.4.5) rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) date (3.3.4) debug_inspector (1.2.0) diff-lcs (1.5.0) diff --git a/gemfiles/ruby_3.3_graphql_2.1.gemfile.lock b/gemfiles/ruby_3.3_graphql_2.1.gemfile.lock index 96dce2cac3f..47543a59e9e 100644 --- a/gemfiles/ruby_3.3_graphql_2.1.gemfile.lock +++ b/gemfiles/ruby_3.3_graphql_2.1.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -95,7 +95,7 @@ GEM crack (0.4.5) rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) date (3.3.4) debug_inspector (1.2.0) diff-lcs (1.5.0) diff --git a/gemfiles/ruby_3.3_graphql_2.2.gemfile.lock b/gemfiles/ruby_3.3_graphql_2.2.gemfile.lock index 341bfdcda99..d93e7442cdc 100644 --- a/gemfiles/ruby_3.3_graphql_2.2.gemfile.lock +++ b/gemfiles/ruby_3.3_graphql_2.2.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -95,7 +95,7 @@ GEM crack (0.4.5) rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) date (3.3.4) debug_inspector (1.2.0) diff-lcs (1.5.0) diff --git a/gemfiles/ruby_3.3_graphql_2.3.gemfile.lock b/gemfiles/ruby_3.3_graphql_2.3.gemfile.lock index e5e54f2a35e..1af7a475fc2 100644 --- a/gemfiles/ruby_3.3_graphql_2.3.gemfile.lock +++ b/gemfiles/ruby_3.3_graphql_2.3.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -97,7 +97,7 @@ GEM bigdecimal rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) date (3.3.4) debug_inspector (1.2.0) diff-lcs (1.5.1) diff --git a/gemfiles/ruby_3.3_http.gemfile.lock b/gemfiles/ruby_3.3_http.gemfile.lock index a20e9af67eb..611dfb014e5 100644 --- a/gemfiles/ruby_3.3_http.gemfile.lock +++ b/gemfiles/ruby_3.3_http.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -32,7 +32,7 @@ GEM concurrent-ruby (1.2.2) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) docile (1.4.0) diff --git a/gemfiles/ruby_3.3_opensearch_2.gemfile.lock b/gemfiles/ruby_3.3_opensearch_2.gemfile.lock index 74243f25c2d..d2a569d2a0f 100644 --- a/gemfiles/ruby_3.3_opensearch_2.gemfile.lock +++ b/gemfiles/ruby_3.3_opensearch_2.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -33,7 +33,7 @@ GEM concurrent-ruby (1.2.2) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) docile (1.4.0) diff --git a/gemfiles/ruby_3.3_opensearch_3.gemfile.lock b/gemfiles/ruby_3.3_opensearch_3.gemfile.lock index dda7aa3baf8..e8dc68a0736 100644 --- a/gemfiles/ruby_3.3_opensearch_3.gemfile.lock +++ b/gemfiles/ruby_3.3_opensearch_3.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -33,7 +33,7 @@ GEM concurrent-ruby (1.2.2) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) docile (1.4.0) diff --git a/gemfiles/ruby_3.3_opensearch_latest.gemfile.lock b/gemfiles/ruby_3.3_opensearch_latest.gemfile.lock index 28454df0418..12ccbee1a8e 100644 --- a/gemfiles/ruby_3.3_opensearch_latest.gemfile.lock +++ b/gemfiles/ruby_3.3_opensearch_latest.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -35,7 +35,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) docile (1.4.1) diff --git a/gemfiles/ruby_3.3_opentelemetry.gemfile.lock b/gemfiles/ruby_3.3_opentelemetry.gemfile.lock index 7e69eb878a2..c18f307a5fe 100644 --- a/gemfiles/ruby_3.3_opentelemetry.gemfile.lock +++ b/gemfiles/ruby_3.3_opentelemetry.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -32,7 +32,7 @@ GEM concurrent-ruby (1.2.2) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) docile (1.4.0) diff --git a/gemfiles/ruby_3.3_opentelemetry_otlp.gemfile.lock b/gemfiles/ruby_3.3_opentelemetry_otlp.gemfile.lock index eb50a60a4d1..be128eb20d2 100644 --- a/gemfiles/ruby_3.3_opentelemetry_otlp.gemfile.lock +++ b/gemfiles/ruby_3.3_opentelemetry_otlp.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -35,7 +35,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) docile (1.4.0) diff --git a/gemfiles/ruby_3.3_rack_2.gemfile.lock b/gemfiles/ruby_3.3_rack_2.gemfile.lock index fcc06b5a10e..384f80aed37 100644 --- a/gemfiles/ruby_3.3_rack_2.gemfile.lock +++ b/gemfiles/ruby_3.3_rack_2.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -32,7 +32,7 @@ GEM concurrent-ruby (1.2.2) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) docile (1.4.0) diff --git a/gemfiles/ruby_3.3_rack_3.gemfile.lock b/gemfiles/ruby_3.3_rack_3.gemfile.lock index a9e47bc0483..44e4864c588 100644 --- a/gemfiles/ruby_3.3_rack_3.gemfile.lock +++ b/gemfiles/ruby_3.3_rack_3.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -32,7 +32,7 @@ GEM concurrent-ruby (1.2.2) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) docile (1.4.0) diff --git a/gemfiles/ruby_3.3_rack_latest.gemfile.lock b/gemfiles/ruby_3.3_rack_latest.gemfile.lock index 7ccaac04c5f..481b4fd483b 100644 --- a/gemfiles/ruby_3.3_rack_latest.gemfile.lock +++ b/gemfiles/ruby_3.3_rack_latest.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -35,7 +35,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) docile (1.4.1) diff --git a/gemfiles/ruby_3.3_rails61_mysql2.gemfile.lock b/gemfiles/ruby_3.3_rails61_mysql2.gemfile.lock index 7e3608aaade..af848e391d7 100644 --- a/gemfiles/ruby_3.3_rails61_mysql2.gemfile.lock +++ b/gemfiles/ruby_3.3_rails61_mysql2.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -93,7 +93,7 @@ GEM crack (0.4.5) rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) date (3.3.3) debug_inspector (1.1.0) diff-lcs (1.5.0) diff --git a/gemfiles/ruby_3.3_rails61_postgres.gemfile.lock b/gemfiles/ruby_3.3_rails61_postgres.gemfile.lock index 1da571d4c44..1e2bd0f65ab 100644 --- a/gemfiles/ruby_3.3_rails61_postgres.gemfile.lock +++ b/gemfiles/ruby_3.3_rails61_postgres.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -93,7 +93,7 @@ GEM crack (0.4.5) rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) date (3.3.3) debug_inspector (1.1.0) diff-lcs (1.5.0) diff --git a/gemfiles/ruby_3.3_rails61_postgres_redis.gemfile.lock b/gemfiles/ruby_3.3_rails61_postgres_redis.gemfile.lock index cea69c15cf7..28d7c7a83ca 100644 --- a/gemfiles/ruby_3.3_rails61_postgres_redis.gemfile.lock +++ b/gemfiles/ruby_3.3_rails61_postgres_redis.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -93,7 +93,7 @@ GEM crack (0.4.5) rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) date (3.3.3) debug_inspector (1.1.0) diff-lcs (1.5.0) diff --git a/gemfiles/ruby_3.3_rails61_postgres_sidekiq.gemfile.lock b/gemfiles/ruby_3.3_rails61_postgres_sidekiq.gemfile.lock index b24c647071b..e61e95cdd34 100644 --- a/gemfiles/ruby_3.3_rails61_postgres_sidekiq.gemfile.lock +++ b/gemfiles/ruby_3.3_rails61_postgres_sidekiq.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -94,7 +94,7 @@ GEM crack (0.4.5) rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) date (3.3.3) debug_inspector (1.1.0) diff-lcs (1.5.0) diff --git a/gemfiles/ruby_3.3_rails61_semantic_logger.gemfile.lock b/gemfiles/ruby_3.3_rails61_semantic_logger.gemfile.lock index eb9a7d36762..f7427098c44 100644 --- a/gemfiles/ruby_3.3_rails61_semantic_logger.gemfile.lock +++ b/gemfiles/ruby_3.3_rails61_semantic_logger.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -93,7 +93,7 @@ GEM crack (0.4.5) rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) date (3.3.3) debug_inspector (1.1.0) diff-lcs (1.5.0) diff --git a/gemfiles/ruby_3.3_rails61_trilogy.gemfile.lock b/gemfiles/ruby_3.3_rails61_trilogy.gemfile.lock index dd88deb65c5..90576186023 100644 --- a/gemfiles/ruby_3.3_rails61_trilogy.gemfile.lock +++ b/gemfiles/ruby_3.3_rails61_trilogy.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -97,7 +97,7 @@ GEM crack (0.4.5) rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) date (3.3.4) debug_inspector (1.1.0) diff-lcs (1.5.0) diff --git a/gemfiles/ruby_3.3_rails7.gemfile.lock b/gemfiles/ruby_3.3_rails7.gemfile.lock index acb7ef6e5f4..96a5323f62e 100644 --- a/gemfiles/ruby_3.3_rails7.gemfile.lock +++ b/gemfiles/ruby_3.3_rails7.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -102,7 +102,7 @@ GEM bigdecimal rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) date (3.3.4) debug_inspector (1.2.0) diff-lcs (1.5.1) diff --git a/gemfiles/ruby_3.3_rails71.gemfile.lock b/gemfiles/ruby_3.3_rails71.gemfile.lock index b3466eec5f9..1921bc6e914 100644 --- a/gemfiles/ruby_3.3_rails71.gemfile.lock +++ b/gemfiles/ruby_3.3_rails71.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -113,7 +113,7 @@ GEM bigdecimal rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) date (3.3.4) debug_inspector (1.2.0) diff-lcs (1.5.1) diff --git a/gemfiles/ruby_3.3_redis_3.gemfile.lock b/gemfiles/ruby_3.3_redis_3.gemfile.lock index 4a5bba8c338..0a8c3b6a01d 100644 --- a/gemfiles/ruby_3.3_redis_3.gemfile.lock +++ b/gemfiles/ruby_3.3_redis_3.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -32,7 +32,7 @@ GEM concurrent-ruby (1.2.2) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) docile (1.4.0) diff --git a/gemfiles/ruby_3.3_redis_4.gemfile.lock b/gemfiles/ruby_3.3_redis_4.gemfile.lock index 9a97ca1ad25..0b4cd72910d 100644 --- a/gemfiles/ruby_3.3_redis_4.gemfile.lock +++ b/gemfiles/ruby_3.3_redis_4.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -32,7 +32,7 @@ GEM concurrent-ruby (1.2.2) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) docile (1.4.0) diff --git a/gemfiles/ruby_3.3_redis_5.gemfile.lock b/gemfiles/ruby_3.3_redis_5.gemfile.lock index 0331256cd15..d97e5742910 100644 --- a/gemfiles/ruby_3.3_redis_5.gemfile.lock +++ b/gemfiles/ruby_3.3_redis_5.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -33,7 +33,7 @@ GEM connection_pool (2.4.0) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) docile (1.4.0) diff --git a/gemfiles/ruby_3.3_relational_db.gemfile.lock b/gemfiles/ruby_3.3_relational_db.gemfile.lock index feb1ed242ae..eb2e94bf519 100644 --- a/gemfiles/ruby_3.3_relational_db.gemfile.lock +++ b/gemfiles/ruby_3.3_relational_db.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -43,7 +43,7 @@ GEM concurrent-ruby (1.2.2) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) delayed_job (4.1.11) activesupport (>= 3.0, < 8.0) diff --git a/gemfiles/ruby_3.3_resque2_redis3.gemfile.lock b/gemfiles/ruby_3.3_resque2_redis3.gemfile.lock index 1459ab854c3..68ebe3db28c 100644 --- a/gemfiles/ruby_3.3_resque2_redis3.gemfile.lock +++ b/gemfiles/ruby_3.3_resque2_redis3.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -32,7 +32,7 @@ GEM concurrent-ruby (1.2.2) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) docile (1.4.0) diff --git a/gemfiles/ruby_3.3_resque2_redis4.gemfile.lock b/gemfiles/ruby_3.3_resque2_redis4.gemfile.lock index dcf559dd749..c29ee7751f6 100644 --- a/gemfiles/ruby_3.3_resque2_redis4.gemfile.lock +++ b/gemfiles/ruby_3.3_resque2_redis4.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -33,7 +33,7 @@ GEM connection_pool (2.4.0) crack (0.4.5) rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) docile (1.4.0) diff --git a/gemfiles/ruby_3.3_sinatra_2.gemfile.lock b/gemfiles/ruby_3.3_sinatra_2.gemfile.lock index ad40af69824..b36a3eb5884 100644 --- a/gemfiles/ruby_3.3_sinatra_2.gemfile.lock +++ b/gemfiles/ruby_3.3_sinatra_2.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -35,7 +35,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) docile (1.4.0) diff --git a/gemfiles/ruby_3.3_sinatra_3.gemfile.lock b/gemfiles/ruby_3.3_sinatra_3.gemfile.lock index 0f02a837d3b..6f5645a41b1 100644 --- a/gemfiles/ruby_3.3_sinatra_3.gemfile.lock +++ b/gemfiles/ruby_3.3_sinatra_3.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -36,7 +36,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) docile (1.4.0) diff --git a/gemfiles/ruby_3.3_sinatra_4.gemfile.lock b/gemfiles/ruby_3.3_sinatra_4.gemfile.lock index 410abceaa61..703528887d0 100644 --- a/gemfiles/ruby_3.3_sinatra_4.gemfile.lock +++ b/gemfiles/ruby_3.3_sinatra_4.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -36,7 +36,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) docile (1.4.0) diff --git a/gemfiles/ruby_3.3_stripe_10.gemfile.lock b/gemfiles/ruby_3.3_stripe_10.gemfile.lock index 0f1f8988448..fb376f0740d 100644 --- a/gemfiles/ruby_3.3_stripe_10.gemfile.lock +++ b/gemfiles/ruby_3.3_stripe_10.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -35,7 +35,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) docile (1.4.1) diff --git a/gemfiles/ruby_3.3_stripe_11.gemfile.lock b/gemfiles/ruby_3.3_stripe_11.gemfile.lock index 54f74d2ab08..1e569f8d9ed 100644 --- a/gemfiles/ruby_3.3_stripe_11.gemfile.lock +++ b/gemfiles/ruby_3.3_stripe_11.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -35,7 +35,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) docile (1.4.1) diff --git a/gemfiles/ruby_3.3_stripe_12.gemfile.lock b/gemfiles/ruby_3.3_stripe_12.gemfile.lock index 59324f8fe9e..4e37685019b 100644 --- a/gemfiles/ruby_3.3_stripe_12.gemfile.lock +++ b/gemfiles/ruby_3.3_stripe_12.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -35,7 +35,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) docile (1.4.1) diff --git a/gemfiles/ruby_3.3_stripe_7.gemfile.lock b/gemfiles/ruby_3.3_stripe_7.gemfile.lock index fc491554bc8..43a4b14e842 100644 --- a/gemfiles/ruby_3.3_stripe_7.gemfile.lock +++ b/gemfiles/ruby_3.3_stripe_7.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -35,7 +35,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) docile (1.4.1) diff --git a/gemfiles/ruby_3.3_stripe_8.gemfile.lock b/gemfiles/ruby_3.3_stripe_8.gemfile.lock index fe48a21e601..8745811725f 100644 --- a/gemfiles/ruby_3.3_stripe_8.gemfile.lock +++ b/gemfiles/ruby_3.3_stripe_8.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -35,7 +35,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) docile (1.4.1) diff --git a/gemfiles/ruby_3.3_stripe_9.gemfile.lock b/gemfiles/ruby_3.3_stripe_9.gemfile.lock index 51400d22a20..68af5fbbf11 100644 --- a/gemfiles/ruby_3.3_stripe_9.gemfile.lock +++ b/gemfiles/ruby_3.3_stripe_9.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -35,7 +35,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) docile (1.4.1) diff --git a/gemfiles/ruby_3.3_stripe_latest.gemfile.lock b/gemfiles/ruby_3.3_stripe_latest.gemfile.lock index 1938b78a9ee..6c6ba3d7569 100644 --- a/gemfiles/ruby_3.3_stripe_latest.gemfile.lock +++ b/gemfiles/ruby_3.3_stripe_latest.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -35,7 +35,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) docile (1.4.1) diff --git a/gemfiles/ruby_3.3_stripe_min.gemfile.lock b/gemfiles/ruby_3.3_stripe_min.gemfile.lock index 5295c8474e3..fccd509980f 100644 --- a/gemfiles/ruby_3.3_stripe_min.gemfile.lock +++ b/gemfiles/ruby_3.3_stripe_min.gemfile.lock @@ -12,7 +12,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -35,7 +35,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) docile (1.4.1) diff --git a/gemfiles/ruby_3.4_activesupport.gemfile.lock b/gemfiles/ruby_3.4_activesupport.gemfile.lock index c76d26fbfcc..c93111f5ec2 100644 --- a/gemfiles/ruby_3.4_activesupport.gemfile.lock +++ b/gemfiles/ruby_3.4_activesupport.gemfile.lock @@ -19,7 +19,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -81,7 +81,7 @@ GEM bigdecimal rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) digest-crc (0.6.5) diff --git a/gemfiles/ruby_3.4_aws.gemfile.lock b/gemfiles/ruby_3.4_aws.gemfile.lock index e6aeed42990..c651a539845 100644 --- a/gemfiles/ruby_3.4_aws.gemfile.lock +++ b/gemfiles/ruby_3.4_aws.gemfile.lock @@ -19,7 +19,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -1591,7 +1591,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) docile (1.4.0) diff --git a/gemfiles/ruby_3.4_contrib.gemfile.lock b/gemfiles/ruby_3.4_contrib.gemfile.lock index 96268b00443..94793d838e6 100644 --- a/gemfiles/ruby_3.4_contrib.gemfile.lock +++ b/gemfiles/ruby_3.4_contrib.gemfile.lock @@ -19,7 +19,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -50,7 +50,7 @@ GEM bigdecimal rexml dalli (3.2.8) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) docile (1.4.0) diff --git a/gemfiles/ruby_3.4_contrib_old.gemfile.lock b/gemfiles/ruby_3.4_contrib_old.gemfile.lock index 0019d54cd85..79aaafe972f 100644 --- a/gemfiles/ruby_3.4_contrib_old.gemfile.lock +++ b/gemfiles/ruby_3.4_contrib_old.gemfile.lock @@ -19,7 +19,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -48,7 +48,7 @@ GEM rexml daemons (1.4.1) dalli (2.7.11) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) docile (1.4.0) diff --git a/gemfiles/ruby_3.4_core_old.gemfile.lock b/gemfiles/ruby_3.4_core_old.gemfile.lock index 28c47d52ba0..9b0963022f9 100644 --- a/gemfiles/ruby_3.4_core_old.gemfile.lock +++ b/gemfiles/ruby_3.4_core_old.gemfile.lock @@ -19,7 +19,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -43,7 +43,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) docile (1.4.0) diff --git a/gemfiles/ruby_3.4_elasticsearch_7.gemfile.lock b/gemfiles/ruby_3.4_elasticsearch_7.gemfile.lock index 210980e39b8..ec7a180f57a 100644 --- a/gemfiles/ruby_3.4_elasticsearch_7.gemfile.lock +++ b/gemfiles/ruby_3.4_elasticsearch_7.gemfile.lock @@ -19,7 +19,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -43,7 +43,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) docile (1.4.0) diff --git a/gemfiles/ruby_3.4_elasticsearch_8.gemfile.lock b/gemfiles/ruby_3.4_elasticsearch_8.gemfile.lock index 8066fa9fa4a..c2ab47d2bf0 100644 --- a/gemfiles/ruby_3.4_elasticsearch_8.gemfile.lock +++ b/gemfiles/ruby_3.4_elasticsearch_8.gemfile.lock @@ -19,7 +19,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -43,7 +43,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) docile (1.4.0) diff --git a/gemfiles/ruby_3.4_elasticsearch_latest.gemfile.lock b/gemfiles/ruby_3.4_elasticsearch_latest.gemfile.lock index 3fed44778ad..13b09675a46 100644 --- a/gemfiles/ruby_3.4_elasticsearch_latest.gemfile.lock +++ b/gemfiles/ruby_3.4_elasticsearch_latest.gemfile.lock @@ -19,7 +19,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -43,7 +43,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) docile (1.4.1) diff --git a/gemfiles/ruby_3.4_graphql_1.13.gemfile.lock b/gemfiles/ruby_3.4_graphql_1.13.gemfile.lock index 07e496a7e86..59529d9c968 100644 --- a/gemfiles/ruby_3.4_graphql_1.13.gemfile.lock +++ b/gemfiles/ruby_3.4_graphql_1.13.gemfile.lock @@ -19,7 +19,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -104,7 +104,7 @@ GEM bigdecimal rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) date (3.3.4) debug_inspector (1.2.0) diff-lcs (1.5.1) diff --git a/gemfiles/ruby_3.4_graphql_2.0.gemfile.lock b/gemfiles/ruby_3.4_graphql_2.0.gemfile.lock index e310d378032..6292fc3244c 100644 --- a/gemfiles/ruby_3.4_graphql_2.0.gemfile.lock +++ b/gemfiles/ruby_3.4_graphql_2.0.gemfile.lock @@ -19,7 +19,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -104,7 +104,7 @@ GEM bigdecimal rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) date (3.3.4) debug_inspector (1.2.0) diff-lcs (1.5.1) diff --git a/gemfiles/ruby_3.4_graphql_2.1.gemfile.lock b/gemfiles/ruby_3.4_graphql_2.1.gemfile.lock index 52211277567..5b7705eefdd 100644 --- a/gemfiles/ruby_3.4_graphql_2.1.gemfile.lock +++ b/gemfiles/ruby_3.4_graphql_2.1.gemfile.lock @@ -19,7 +19,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -104,7 +104,7 @@ GEM bigdecimal rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) date (3.3.4) debug_inspector (1.2.0) diff-lcs (1.5.1) diff --git a/gemfiles/ruby_3.4_graphql_2.2.gemfile.lock b/gemfiles/ruby_3.4_graphql_2.2.gemfile.lock index 14ed264980e..fba40f152eb 100644 --- a/gemfiles/ruby_3.4_graphql_2.2.gemfile.lock +++ b/gemfiles/ruby_3.4_graphql_2.2.gemfile.lock @@ -19,7 +19,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -104,7 +104,7 @@ GEM bigdecimal rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) date (3.3.4) debug_inspector (1.2.0) diff-lcs (1.5.1) diff --git a/gemfiles/ruby_3.4_graphql_2.3.gemfile.lock b/gemfiles/ruby_3.4_graphql_2.3.gemfile.lock index d13ab189fb0..ab9dd543d85 100644 --- a/gemfiles/ruby_3.4_graphql_2.3.gemfile.lock +++ b/gemfiles/ruby_3.4_graphql_2.3.gemfile.lock @@ -19,7 +19,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -104,7 +104,7 @@ GEM bigdecimal rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) date (3.3.4) debug_inspector (1.2.0) diff-lcs (1.5.1) diff --git a/gemfiles/ruby_3.4_http.gemfile.lock b/gemfiles/ruby_3.4_http.gemfile.lock index ab3f34ae4c1..fb8a0aef4cc 100644 --- a/gemfiles/ruby_3.4_http.gemfile.lock +++ b/gemfiles/ruby_3.4_http.gemfile.lock @@ -19,7 +19,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -43,7 +43,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) docile (1.4.0) diff --git a/gemfiles/ruby_3.4_opensearch_2.gemfile.lock b/gemfiles/ruby_3.4_opensearch_2.gemfile.lock index 3ac828d5569..645a89f9dd0 100644 --- a/gemfiles/ruby_3.4_opensearch_2.gemfile.lock +++ b/gemfiles/ruby_3.4_opensearch_2.gemfile.lock @@ -19,7 +19,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -43,7 +43,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) docile (1.4.0) diff --git a/gemfiles/ruby_3.4_opensearch_3.gemfile.lock b/gemfiles/ruby_3.4_opensearch_3.gemfile.lock index f44f391d09e..a4980f955bd 100644 --- a/gemfiles/ruby_3.4_opensearch_3.gemfile.lock +++ b/gemfiles/ruby_3.4_opensearch_3.gemfile.lock @@ -19,7 +19,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -43,7 +43,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) docile (1.4.0) diff --git a/gemfiles/ruby_3.4_opensearch_latest.gemfile.lock b/gemfiles/ruby_3.4_opensearch_latest.gemfile.lock index 2b8c4e95cdc..a4ab79a92af 100644 --- a/gemfiles/ruby_3.4_opensearch_latest.gemfile.lock +++ b/gemfiles/ruby_3.4_opensearch_latest.gemfile.lock @@ -19,7 +19,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -43,7 +43,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) docile (1.4.1) diff --git a/gemfiles/ruby_3.4_opentelemetry.gemfile.lock b/gemfiles/ruby_3.4_opentelemetry.gemfile.lock index de77a4bf0d6..b3ab9d1ec70 100644 --- a/gemfiles/ruby_3.4_opentelemetry.gemfile.lock +++ b/gemfiles/ruby_3.4_opentelemetry.gemfile.lock @@ -19,7 +19,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -43,7 +43,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) docile (1.4.0) diff --git a/gemfiles/ruby_3.4_opentelemetry_otlp.gemfile.lock b/gemfiles/ruby_3.4_opentelemetry_otlp.gemfile.lock index 83c45e87e99..ffabe185890 100644 --- a/gemfiles/ruby_3.4_opentelemetry_otlp.gemfile.lock +++ b/gemfiles/ruby_3.4_opentelemetry_otlp.gemfile.lock @@ -19,7 +19,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -43,7 +43,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) docile (1.4.1) diff --git a/gemfiles/ruby_3.4_rack_2.gemfile.lock b/gemfiles/ruby_3.4_rack_2.gemfile.lock index 65af4fe3106..7418d027cce 100644 --- a/gemfiles/ruby_3.4_rack_2.gemfile.lock +++ b/gemfiles/ruby_3.4_rack_2.gemfile.lock @@ -19,7 +19,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -43,7 +43,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) docile (1.4.0) diff --git a/gemfiles/ruby_3.4_rack_3.gemfile.lock b/gemfiles/ruby_3.4_rack_3.gemfile.lock index fb9aa79988a..56041730327 100644 --- a/gemfiles/ruby_3.4_rack_3.gemfile.lock +++ b/gemfiles/ruby_3.4_rack_3.gemfile.lock @@ -19,7 +19,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -43,7 +43,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) docile (1.4.0) diff --git a/gemfiles/ruby_3.4_rack_latest.gemfile.lock b/gemfiles/ruby_3.4_rack_latest.gemfile.lock index d4cb684c5d4..4ff59f8edd1 100644 --- a/gemfiles/ruby_3.4_rack_latest.gemfile.lock +++ b/gemfiles/ruby_3.4_rack_latest.gemfile.lock @@ -19,7 +19,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -43,7 +43,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) docile (1.4.1) diff --git a/gemfiles/ruby_3.4_rails61_mysql2.gemfile.lock b/gemfiles/ruby_3.4_rails61_mysql2.gemfile.lock index 1102b7614d1..a2c1144b087 100644 --- a/gemfiles/ruby_3.4_rails61_mysql2.gemfile.lock +++ b/gemfiles/ruby_3.4_rails61_mysql2.gemfile.lock @@ -19,7 +19,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -104,7 +104,7 @@ GEM bigdecimal rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) date (3.3.4) debug_inspector (1.2.0) diff-lcs (1.5.1) diff --git a/gemfiles/ruby_3.4_rails61_postgres.gemfile.lock b/gemfiles/ruby_3.4_rails61_postgres.gemfile.lock index 6ad2cec4425..9e54602c501 100644 --- a/gemfiles/ruby_3.4_rails61_postgres.gemfile.lock +++ b/gemfiles/ruby_3.4_rails61_postgres.gemfile.lock @@ -19,7 +19,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -104,7 +104,7 @@ GEM bigdecimal rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) date (3.3.4) debug_inspector (1.2.0) diff-lcs (1.5.1) diff --git a/gemfiles/ruby_3.4_rails61_postgres_redis.gemfile.lock b/gemfiles/ruby_3.4_rails61_postgres_redis.gemfile.lock index 98f35298a9b..fa5d9163b5a 100644 --- a/gemfiles/ruby_3.4_rails61_postgres_redis.gemfile.lock +++ b/gemfiles/ruby_3.4_rails61_postgres_redis.gemfile.lock @@ -19,7 +19,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -104,7 +104,7 @@ GEM bigdecimal rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) date (3.3.4) debug_inspector (1.2.0) diff-lcs (1.5.1) diff --git a/gemfiles/ruby_3.4_rails61_postgres_sidekiq.gemfile.lock b/gemfiles/ruby_3.4_rails61_postgres_sidekiq.gemfile.lock index 3f6ebd7e900..083f02824e6 100644 --- a/gemfiles/ruby_3.4_rails61_postgres_sidekiq.gemfile.lock +++ b/gemfiles/ruby_3.4_rails61_postgres_sidekiq.gemfile.lock @@ -19,7 +19,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -105,7 +105,7 @@ GEM bigdecimal rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) date (3.3.4) debug_inspector (1.2.0) diff-lcs (1.5.1) diff --git a/gemfiles/ruby_3.4_rails61_semantic_logger.gemfile.lock b/gemfiles/ruby_3.4_rails61_semantic_logger.gemfile.lock index 1656369aacf..739d739d381 100644 --- a/gemfiles/ruby_3.4_rails61_semantic_logger.gemfile.lock +++ b/gemfiles/ruby_3.4_rails61_semantic_logger.gemfile.lock @@ -19,7 +19,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -104,7 +104,7 @@ GEM bigdecimal rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) date (3.3.4) debug_inspector (1.2.0) diff-lcs (1.5.1) diff --git a/gemfiles/ruby_3.4_rails61_trilogy.gemfile.lock b/gemfiles/ruby_3.4_rails61_trilogy.gemfile.lock index 48858f87995..0f3d03e4eb8 100644 --- a/gemfiles/ruby_3.4_rails61_trilogy.gemfile.lock +++ b/gemfiles/ruby_3.4_rails61_trilogy.gemfile.lock @@ -19,7 +19,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -107,7 +107,7 @@ GEM bigdecimal rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) date (3.3.4) debug_inspector (1.2.0) diff-lcs (1.5.1) diff --git a/gemfiles/ruby_3.4_rails7.gemfile.lock b/gemfiles/ruby_3.4_rails7.gemfile.lock index 2a8713e0b61..cadeb0f339a 100644 --- a/gemfiles/ruby_3.4_rails7.gemfile.lock +++ b/gemfiles/ruby_3.4_rails7.gemfile.lock @@ -19,7 +19,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -110,7 +110,7 @@ GEM bigdecimal rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) date (3.3.4) debug_inspector (1.2.0) diff-lcs (1.5.1) diff --git a/gemfiles/ruby_3.4_rails71.gemfile.lock b/gemfiles/ruby_3.4_rails71.gemfile.lock index ab1a9b772c7..1176a752d43 100644 --- a/gemfiles/ruby_3.4_rails71.gemfile.lock +++ b/gemfiles/ruby_3.4_rails71.gemfile.lock @@ -19,7 +19,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -120,7 +120,7 @@ GEM bigdecimal rexml crass (1.0.6) - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) date (3.3.4) debug_inspector (1.2.0) diff-lcs (1.5.1) diff --git a/gemfiles/ruby_3.4_redis_3.gemfile.lock b/gemfiles/ruby_3.4_redis_3.gemfile.lock index 30ae2cc31ee..a3996881bdc 100644 --- a/gemfiles/ruby_3.4_redis_3.gemfile.lock +++ b/gemfiles/ruby_3.4_redis_3.gemfile.lock @@ -19,7 +19,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -43,7 +43,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) docile (1.4.0) diff --git a/gemfiles/ruby_3.4_redis_4.gemfile.lock b/gemfiles/ruby_3.4_redis_4.gemfile.lock index 2e93d91b897..e64ed262a78 100644 --- a/gemfiles/ruby_3.4_redis_4.gemfile.lock +++ b/gemfiles/ruby_3.4_redis_4.gemfile.lock @@ -19,7 +19,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -43,7 +43,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) docile (1.4.0) diff --git a/gemfiles/ruby_3.4_redis_5.gemfile.lock b/gemfiles/ruby_3.4_redis_5.gemfile.lock index b1b6fa6608f..e372400cdf2 100644 --- a/gemfiles/ruby_3.4_redis_5.gemfile.lock +++ b/gemfiles/ruby_3.4_redis_5.gemfile.lock @@ -19,7 +19,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -44,7 +44,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) docile (1.4.0) diff --git a/gemfiles/ruby_3.4_relational_db.gemfile.lock b/gemfiles/ruby_3.4_relational_db.gemfile.lock index 58a066380e2..3afe5e5e690 100644 --- a/gemfiles/ruby_3.4_relational_db.gemfile.lock +++ b/gemfiles/ruby_3.4_relational_db.gemfile.lock @@ -19,7 +19,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -53,7 +53,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) delayed_job (4.1.13) activesupport (>= 3.0, < 9.0) diff --git a/gemfiles/ruby_3.4_resque2_redis3.gemfile.lock b/gemfiles/ruby_3.4_resque2_redis3.gemfile.lock index e0b9a15da75..fa349354fab 100644 --- a/gemfiles/ruby_3.4_resque2_redis3.gemfile.lock +++ b/gemfiles/ruby_3.4_resque2_redis3.gemfile.lock @@ -19,7 +19,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -43,7 +43,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) docile (1.4.0) diff --git a/gemfiles/ruby_3.4_resque2_redis4.gemfile.lock b/gemfiles/ruby_3.4_resque2_redis4.gemfile.lock index e8e8ff3b9d4..8a64dc9b6e4 100644 --- a/gemfiles/ruby_3.4_resque2_redis4.gemfile.lock +++ b/gemfiles/ruby_3.4_resque2_redis4.gemfile.lock @@ -19,7 +19,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -44,7 +44,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) docile (1.4.0) diff --git a/gemfiles/ruby_3.4_sinatra_2.gemfile.lock b/gemfiles/ruby_3.4_sinatra_2.gemfile.lock index 285300f05aa..0ae275e47d7 100644 --- a/gemfiles/ruby_3.4_sinatra_2.gemfile.lock +++ b/gemfiles/ruby_3.4_sinatra_2.gemfile.lock @@ -19,7 +19,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -43,7 +43,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) docile (1.4.0) diff --git a/gemfiles/ruby_3.4_sinatra_3.gemfile.lock b/gemfiles/ruby_3.4_sinatra_3.gemfile.lock index 289faf54852..5ac70a1ed5b 100644 --- a/gemfiles/ruby_3.4_sinatra_3.gemfile.lock +++ b/gemfiles/ruby_3.4_sinatra_3.gemfile.lock @@ -19,7 +19,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -43,7 +43,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) docile (1.4.0) diff --git a/gemfiles/ruby_3.4_sinatra_4.gemfile.lock b/gemfiles/ruby_3.4_sinatra_4.gemfile.lock index b53d014ad00..aa6745e09aa 100644 --- a/gemfiles/ruby_3.4_sinatra_4.gemfile.lock +++ b/gemfiles/ruby_3.4_sinatra_4.gemfile.lock @@ -19,7 +19,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -43,7 +43,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) docile (1.4.0) diff --git a/gemfiles/ruby_3.4_stripe_10.gemfile.lock b/gemfiles/ruby_3.4_stripe_10.gemfile.lock index 30b51bccb00..1152fca6317 100644 --- a/gemfiles/ruby_3.4_stripe_10.gemfile.lock +++ b/gemfiles/ruby_3.4_stripe_10.gemfile.lock @@ -19,7 +19,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -43,7 +43,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) docile (1.4.1) diff --git a/gemfiles/ruby_3.4_stripe_11.gemfile.lock b/gemfiles/ruby_3.4_stripe_11.gemfile.lock index fb2fafa6b8e..9a6bdc16caf 100644 --- a/gemfiles/ruby_3.4_stripe_11.gemfile.lock +++ b/gemfiles/ruby_3.4_stripe_11.gemfile.lock @@ -19,7 +19,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -43,7 +43,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) docile (1.4.1) diff --git a/gemfiles/ruby_3.4_stripe_12.gemfile.lock b/gemfiles/ruby_3.4_stripe_12.gemfile.lock index 2b3077b2221..511dde8abf7 100644 --- a/gemfiles/ruby_3.4_stripe_12.gemfile.lock +++ b/gemfiles/ruby_3.4_stripe_12.gemfile.lock @@ -19,7 +19,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -43,7 +43,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) docile (1.4.1) diff --git a/gemfiles/ruby_3.4_stripe_7.gemfile.lock b/gemfiles/ruby_3.4_stripe_7.gemfile.lock index c9a57ef172b..8bf4aaf86fd 100644 --- a/gemfiles/ruby_3.4_stripe_7.gemfile.lock +++ b/gemfiles/ruby_3.4_stripe_7.gemfile.lock @@ -19,7 +19,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -43,7 +43,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) docile (1.4.1) diff --git a/gemfiles/ruby_3.4_stripe_8.gemfile.lock b/gemfiles/ruby_3.4_stripe_8.gemfile.lock index a04543835b7..acd8dd37ed8 100644 --- a/gemfiles/ruby_3.4_stripe_8.gemfile.lock +++ b/gemfiles/ruby_3.4_stripe_8.gemfile.lock @@ -19,7 +19,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -43,7 +43,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) docile (1.4.1) diff --git a/gemfiles/ruby_3.4_stripe_9.gemfile.lock b/gemfiles/ruby_3.4_stripe_9.gemfile.lock index d352e1d332b..9e3ec1b1f0f 100644 --- a/gemfiles/ruby_3.4_stripe_9.gemfile.lock +++ b/gemfiles/ruby_3.4_stripe_9.gemfile.lock @@ -19,7 +19,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -43,7 +43,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) docile (1.4.1) diff --git a/gemfiles/ruby_3.4_stripe_latest.gemfile.lock b/gemfiles/ruby_3.4_stripe_latest.gemfile.lock index c335ded8dec..8673ec338da 100644 --- a/gemfiles/ruby_3.4_stripe_latest.gemfile.lock +++ b/gemfiles/ruby_3.4_stripe_latest.gemfile.lock @@ -19,7 +19,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -43,7 +43,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) docile (1.4.1) diff --git a/gemfiles/ruby_3.4_stripe_min.gemfile.lock b/gemfiles/ruby_3.4_stripe_min.gemfile.lock index 057b271b349..e3c6d1caa72 100644 --- a/gemfiles/ruby_3.4_stripe_min.gemfile.lock +++ b/gemfiles/ruby_3.4_stripe_min.gemfile.lock @@ -19,7 +19,7 @@ PATH remote: .. specs: datadog (2.8.0) - datadog-ruby_core_source (~> 3.3) + datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) msgpack @@ -43,7 +43,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog-ruby_core_source (3.3.6) + datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) docile (1.4.1) diff --git a/ruby-3.0.gemfile b/ruby-3.0.gemfile index dd924ae91b5..946917b6546 100644 --- a/ruby-3.0.gemfile +++ b/ruby-3.0.gemfile @@ -53,8 +53,6 @@ gem 'webmock', '>= 3.10.0' gem 'webrick', '>= 1.7.0' group :check do - gem 'rbs', '>= 3.6.1', require: false - gem 'steep', '~> 1', '>= 1.7.1', require: false gem 'standard', require: false end diff --git a/ruby-3.1.gemfile b/ruby-3.1.gemfile index dd924ae91b5..38f9dcc1980 100644 --- a/ruby-3.1.gemfile +++ b/ruby-3.1.gemfile @@ -53,8 +53,8 @@ gem 'webmock', '>= 3.10.0' gem 'webrick', '>= 1.7.0' group :check do - gem 'rbs', '>= 3.6.1', require: false - gem 'steep', '~> 1', '>= 1.7.1', require: false + gem 'rbs', '~> 3.7', require: false + gem 'steep', '~> 1', '>= 1.9.1', require: false gem 'standard', require: false end diff --git a/ruby-3.2.gemfile b/ruby-3.2.gemfile index 8d496c0a1f3..af84881914e 100644 --- a/ruby-3.2.gemfile +++ b/ruby-3.2.gemfile @@ -52,8 +52,8 @@ gem 'webmock', '>= 3.10.0' gem 'webrick', '>= 1.7.0' group :check do - gem 'rbs', '>= 3.6.1', require: false - gem 'steep', '~> 1', '>= 1.7.1', require: false + gem 'rbs', '~> 3.7', require: false + gem 'steep', '~> 1', '>= 1.9.1', require: false gem 'standard', require: false end diff --git a/ruby-3.3.gemfile b/ruby-3.3.gemfile index 8d496c0a1f3..af84881914e 100644 --- a/ruby-3.3.gemfile +++ b/ruby-3.3.gemfile @@ -52,8 +52,8 @@ gem 'webmock', '>= 3.10.0' gem 'webrick', '>= 1.7.0' group :check do - gem 'rbs', '>= 3.6.1', require: false - gem 'steep', '~> 1', '>= 1.7.1', require: false + gem 'rbs', '~> 3.7', require: false + gem 'steep', '~> 1', '>= 1.9.1', require: false gem 'standard', require: false end diff --git a/ruby-3.4.gemfile b/ruby-3.4.gemfile index f65ed3f600e..73960422f46 100644 --- a/ruby-3.4.gemfile +++ b/ruby-3.4.gemfile @@ -63,8 +63,8 @@ gem 'webmock', '>= 3.10.0' gem 'webrick', '>= 1.8.2' group :check do - gem 'rbs', '>= 3.6.1', require: false - gem 'steep', '~> 1', '>= 1.7.1', require: false + gem 'rbs', '~> 3.7', require: false + gem 'steep', '~> 1', '>= 1.9.1', require: false gem 'ruby_memcheck', '>= 3' gem 'standard', require: false end From c116d75f4d564bf04af86866907b2596a95d32e3 Mon Sep 17 00:00:00 2001 From: Oleg Pudeyev <156273877+p-datadog@users.noreply.github.com> Date: Thu, 19 Dec 2024 18:02:59 -0500 Subject: [PATCH 085/161] APMLP-350 fix crash in crashtracker when agent url is an ipv6 address (#4237) --- ext/libdatadog_api/crashtracker.c | 3 ++ .../core/crashtracking/agent_base_url.rb | 9 +++++- .../core/crashtracking/agent_base_url.rbs | 1 + .../core/crashtracking/agent_base_url_spec.rb | 32 +++++++++++++++++++ .../core/crashtracking/component_spec.rb | 21 ++++++++++++ 5 files changed, 65 insertions(+), 1 deletion(-) diff --git a/ext/libdatadog_api/crashtracker.c b/ext/libdatadog_api/crashtracker.c index cffee2768ec..7633d1af40b 100644 --- a/ext/libdatadog_api/crashtracker.c +++ b/ext/libdatadog_api/crashtracker.c @@ -54,6 +54,9 @@ static VALUE _native_start_or_update_on_fork(int argc, VALUE *argv, DDTRACE_UNUS // Tags and endpoint are heap-allocated, so after here we can't raise exceptions otherwise we'll leak this memory // Start of exception-free zone to prevent leaks {{ ddog_Endpoint *endpoint = ddog_endpoint_from_url(char_slice_from_ruby_string(agent_base_url)); + if (endpoint == NULL) { + rb_raise(rb_eRuntimeError, "Failed to create endpoint from agent_base_url: %"PRIsVALUE, agent_base_url); + } ddog_Vec_Tag tags = convert_tags(tags_as_array); ddog_crasht_Config config = { diff --git a/lib/datadog/core/crashtracking/agent_base_url.rb b/lib/datadog/core/crashtracking/agent_base_url.rb index 0a1a95ac605..74b59a1cda5 100644 --- a/lib/datadog/core/crashtracking/agent_base_url.rb +++ b/lib/datadog/core/crashtracking/agent_base_url.rb @@ -7,10 +7,17 @@ module Core module Crashtracking # This module provides a method to resolve the base URL of the agent module AgentBaseUrl + # IPv6 regular expression from + # https://stackoverflow.com/questions/53497/regular-expression-that-matches-valid-ipv6-addresses + # Does not match IPv4 addresses. + IPV6_REGEXP = /\A(([0-9a-fA-F]{1,4}:){7,7}[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,7}:|([0-9a-fA-F]{1,4}:){1,6}:[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,5}(:[0-9a-fA-F]{1,4}){1,2}|([0-9a-fA-F]{1,4}:){1,4}(:[0-9a-fA-F]{1,4}){1,3}|([0-9a-fA-F]{1,4}:){1,3}(:[0-9a-fA-F]{1,4}){1,4}|([0-9a-fA-F]{1,4}:){1,2}(:[0-9a-fA-F]{1,4}){1,5}|[0-9a-fA-F]{1,4}:((:[0-9a-fA-F]{1,4}){1,6})|:((:[0-9a-fA-F]{1,4}){1,7}|:)|fe80:(:[0-9a-fA-F]{0,4}){0,4}%[0-9a-zA-Z]{1,}|::(ffff(:0{1,4}){0,1}:){0,1}((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\.){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])|([0-9a-fA-F]{1,4}:){1,4}:((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\.){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\z)/.freeze # rubocop:disable Layout/LineLength + def self.resolve(agent_settings) case agent_settings.adapter when Datadog::Core::Configuration::Ext::Agent::HTTP::ADAPTER - "#{agent_settings.ssl ? 'https' : 'http'}://#{agent_settings.hostname}:#{agent_settings.port}/" + hostname = agent_settings.hostname + hostname = "[#{hostname}]" if hostname =~ IPV6_REGEXP + "#{agent_settings.ssl ? 'https' : 'http'}://#{hostname}:#{agent_settings.port}/" when Datadog::Core::Configuration::Ext::Agent::UnixSocket::ADAPTER "unix://#{agent_settings.uds_path}" end diff --git a/sig/datadog/core/crashtracking/agent_base_url.rbs b/sig/datadog/core/crashtracking/agent_base_url.rbs index 2bdf7f07259..3a2c77f8e85 100644 --- a/sig/datadog/core/crashtracking/agent_base_url.rbs +++ b/sig/datadog/core/crashtracking/agent_base_url.rbs @@ -2,6 +2,7 @@ module Datadog module Core module Crashtracking module AgentBaseUrl + IPV6_REGEXP: Regexp def self.resolve: (Datadog::Core::Configuration::AgentSettingsResolver::AgentSettings) -> ::String? end end diff --git a/spec/datadog/core/crashtracking/agent_base_url_spec.rb b/spec/datadog/core/crashtracking/agent_base_url_spec.rb index 86163c035fd..407b74daf26 100644 --- a/spec/datadog/core/crashtracking/agent_base_url_spec.rb +++ b/spec/datadog/core/crashtracking/agent_base_url_spec.rb @@ -37,6 +37,38 @@ expect(described_class.resolve(agent_settings)).to eq('http://example.com:8080/') end end + + context 'when hostname is an IPv4 address' do + let(:agent_settings) do + instance_double( + Datadog::Core::Configuration::AgentSettingsResolver::AgentSettings, + adapter: Datadog::Core::Configuration::Ext::Agent::HTTP::ADAPTER, + ssl: false, + hostname: '1.2.3.4', + port: 8080 + ) + end + + it 'returns the correct base URL' do + expect(described_class.resolve(agent_settings)).to eq('http://1.2.3.4:8080/') + end + end + + context 'when hostname is an IPv6 address' do + let(:agent_settings) do + instance_double( + Datadog::Core::Configuration::AgentSettingsResolver::AgentSettings, + adapter: Datadog::Core::Configuration::Ext::Agent::HTTP::ADAPTER, + ssl: false, + hostname: '1234:1234::1', + port: 8080 + ) + end + + it 'returns the correct base URL' do + expect(described_class.resolve(agent_settings)).to eq('http://[1234:1234::1]:8080/') + end + end end context 'when using UnixSocket adapter' do diff --git a/spec/datadog/core/crashtracking/component_spec.rb b/spec/datadog/core/crashtracking/component_spec.rb index f05d803c1d8..034bd5f441e 100644 --- a/spec/datadog/core/crashtracking/component_spec.rb +++ b/spec/datadog/core/crashtracking/component_spec.rb @@ -95,6 +95,27 @@ expect(described_class.build(settings, agent_settings, logger: logger)).to be_nil end end + + context 'when agent_base_url is invalid (e.g. hostname is an IPv6 address)' do + let(:agent_base_url) { 'http://1234:1234::1/' } + + it 'returns an instance of Component that failed to start' do + expect(Datadog::Core::Crashtracking::TagBuilder).to receive(:call).with(settings) + .and_return(tags) + expect(Datadog::Core::Crashtracking::AgentBaseUrl).to receive(:resolve).with(agent_settings) + .and_return(agent_base_url) + expect(::Libdatadog).to receive(:ld_library_path) + .and_return(ld_library_path) + expect(::Libdatadog).to receive(:path_to_crashtracking_receiver_binary) + .and_return(path_to_crashtracking_receiver_binary) + + # Diagnostics is only provided via the error report to logger, + # there is no indication in the object state that it failed to start. + expect(logger).to receive(:error).with(/Failed to start crash tracking/) + + expect(described_class.build(settings, agent_settings, logger: logger)).to be_a(described_class) + end + end end context 'instance methods' do From 44f36d3eefb41f38ca46a756d9fae1f5d2de681a Mon Sep 17 00:00:00 2001 From: Thomas Hunter II Date: Mon, 23 Dec 2024 13:09:40 -0800 Subject: [PATCH 086/161] repo: mandatory issue templates (AIDM-426) (#4235) * repo: mandatory issue templates * Update .github/ISSUE_TEMPLATE/config.yml Co-authored-by: Marco Costa * Update .github/ISSUE_TEMPLATE/config.yml Co-authored-by: Marco Costa * prompt for library name and version --------- Co-authored-by: Marco Costa --- .github/ISSUE_TEMPLATE/bug_report.md | 31 --------- .github/ISSUE_TEMPLATE/bug_report.yaml | 71 +++++++++++++++++++++ .github/ISSUE_TEMPLATE/config.yml | 11 ++-- .github/ISSUE_TEMPLATE/feature_request.md | 23 ------- .github/ISSUE_TEMPLATE/feature_request.yaml | 50 +++++++++++++++ SECURITY.md | 15 +++++ spec/datadog/release_gem_spec.rb | 1 + 7 files changed, 144 insertions(+), 58 deletions(-) delete mode 100644 .github/ISSUE_TEMPLATE/bug_report.md create mode 100644 .github/ISSUE_TEMPLATE/bug_report.yaml delete mode 100644 .github/ISSUE_TEMPLATE/feature_request.md create mode 100644 .github/ISSUE_TEMPLATE/feature_request.yaml create mode 100644 SECURITY.md diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md deleted file mode 100644 index 4402e592e4e..00000000000 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ /dev/null @@ -1,31 +0,0 @@ ---- -name: 🐛 Bug report -about: File a bug report -title: '' -labels: community, bug -assignees: '' - ---- - -**Current behaviour** - - -**Expected behaviour** - - -**Steps to reproduce** - - -**How does `datadog` help you?** - - -**Environment** - -* **datadog version:** -* **Configuration block (`Datadog.configure ...`):** -* **Ruby version:** -* **Operating system:** -* **Relevant library versions:** diff --git a/.github/ISSUE_TEMPLATE/bug_report.yaml b/.github/ISSUE_TEMPLATE/bug_report.yaml new file mode 100644 index 00000000000..d7a5eb59de8 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.yaml @@ -0,0 +1,71 @@ +name: "Bug Report (Low Priority)" +description: "Create a public Bug Report. Note that these may not be addressed as quickly as the helpdesk and that looking up account information will be difficult." +title: "[BUG]: " +labels: community, bug +body: + - type: input + attributes: + label: Tracer Version(s) + description: "Version(s) of the tracer affected by this bug" + placeholder: "1.23.4, 2.8.0" + validations: + required: true + + - type: input + attributes: + label: Ruby Version(s) + description: "Version(s) of Ruby (`ruby --version`) that you've encountered this bug with" + placeholder: "ruby 2.7.5p203 (2021-11-24 revision f69aeb8314) [arm64-darwin21]" + validations: + required: true + + - type: input + attributes: + label: Relevent Library and Version(s) + description: "The name of a library and version(s) that you've encountered this bug with" + placeholder: "mysql 2.9.1" + validations: + required: false + + - type: textarea + attributes: + label: Bug Report + description: Please add a clear and concise description of the bug here + validations: + required: true + + - type: textarea + attributes: + label: Reproduction Code + description: Please add code here to help us reproduce the problem + validations: + required: false + + - type: textarea + attributes: + label: Configuration Block + description: How is your tracer configured, e.g. `Datadog.configure ...` + validations: + required: false + + - type: textarea + attributes: + label: Error Logs + description: "Please provide any error logs from the tracer (`DD_TRACE_DEBUG=true` can help)" + validations: + required: false + + - type: input + attributes: + label: Operating System + description: "Provide your operating system and version (e.g. `uname -a`)" + placeholder: Darwin Kernel Version 23.6.0 + validations: + required: false + + - type: textarea + attributes: + label: How does Datadog Help You + description: "Optionally, tell us why and how you're using datadog, and what your overall experience with it is!" + validations: + required: false diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml index 4b9879c5d0a..e669d6019cd 100644 --- a/.github/ISSUE_TEMPLATE/config.yml +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -1,5 +1,8 @@ -blank_issues_enabled: true +blank_issues_enabled: false contact_links: - - name: ℹ️ Datadog Support - url: https://www.datadoghq.com/support/ - about: Get help from the Datadog support team + - name: Bug Report (High Priority) + url: https://help.datadoghq.com/hc/en-us/requests/new?tf_1260824651490=pt_product_type:apm&tf_1900004146284=pt_apm_language:ruby + about: Create an expedited Bug Report via the helpdesk (no login required). This will allow us to look up your account and allows you to provide additional information in private. + - name: Feature Request (High Priority) + url: https://help.datadoghq.com/hc/en-us/requests/new?tf_1260824651490=pt_product_type:apm&tf_1900004146284=pt_apm_language:ruby&tf_1260825272270=pt_apm_category_feature_request + about: Create an expedited Feature Request via the helpdesk (no login required). This helps with prioritization and allows you to provide additional information in private. diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md deleted file mode 100644 index 6c8802683b0..00000000000 --- a/.github/ISSUE_TEMPLATE/feature_request.md +++ /dev/null @@ -1,23 +0,0 @@ ---- -name: 💡 Feature request -about: Suggest an idea for this project -title: '' -labels: community, feature-request -assignees: '' - ---- - -**Is your feature request related to a problem? Please describe.** - - -**Describe the goal of the feature** - - -**Describe alternatives you've considered** - - -**Additional context** - - -**How does `datadog` help you?** - diff --git a/.github/ISSUE_TEMPLATE/feature_request.yaml b/.github/ISSUE_TEMPLATE/feature_request.yaml new file mode 100644 index 00000000000..e04d76f7fb7 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.yaml @@ -0,0 +1,50 @@ +name: Feature Request (Low Priority) +description: Create a public Feature Request. Note that these may not be addressed as quickly as the helpdesk and that looking up account information will be difficult. +title: "[FEATURE]: " +labels: community, feature-request +body: + - type: input + attributes: + label: Gem Name + description: "If your feature request is to add instrumentation support for a Ruby gem please provide the gem name here" + placeholder: mysql + validations: + required: false + + - type: input + attributes: + label: Gem Version(s) + description: "Please provide the version of the above gem here" + placeholder: 2.9.1 + validations: + required: false + + - type: textarea + attributes: + label: Describe the goal of the feature + description: A clear and concise goal of what you want to happen. + validations: + required: true + + - type: textarea + attributes: + label: Is your feature request related to a problem? + description: | + Please add a clear and concise description of your problem. + E.g. I'm unable to instrument my database queries... + validations: + required: false + + - type: textarea + attributes: + label: Describe alternatives you've considered + description: A clear and concise description of any alternative solutions or features you've considered + validations: + required: false + + - type: textarea + attributes: + label: Additional context + description: Add any other context or screenshots about the feature request here + validations: + required: false diff --git a/SECURITY.md b/SECURITY.md new file mode 100644 index 00000000000..9d59e4df672 --- /dev/null +++ b/SECURITY.md @@ -0,0 +1,15 @@ +# Security Policy + +This document outlines the security policy for the Datadog Ruby client library (aka Ruby tracer) and what to do if you discover a security vulnerability in the project. +Most notably, please do not share the details in a public forum (such as in a discussion, issue, or pull request) but instead reach out to us with the details. +This gives us an opportunity to release a fix for others to benefit from by the time details are made public. + +## Supported Versions + +We accept vulnerability submissions for the [currently maintained releases](https://github.com/DataDog/dd-trace-rb/releases). + +## Reporting a Vulnerability + +If you discover a vulnerability in the Datadog Ruby client library (or any Datadog product for that matter) please submit details to the following email address: + +* [security@datadoghq.com](mailto:security@datadoghq.com) diff --git a/spec/datadog/release_gem_spec.rb b/spec/datadog/release_gem_spec.rb index 24f9b022184..58e954a7ca4 100644 --- a/spec/datadog/release_gem_spec.rb +++ b/spec/datadog/release_gem_spec.rb @@ -27,6 +27,7 @@ |ext/.*/.clang-format |Appraisals |CONTRIBUTING.md + |SECURITY.md |Gemfile |(ruby|jruby)-\d+.\d+.gemfile |Rakefile From 1ac11463ac853b6744b060efb20601670f63a235 Mon Sep 17 00:00:00 2001 From: TonyCTHsu <16049123+TonyCTHsu@users.noreply.github.com> Date: Sun, 29 Dec 2024 00:16:30 +0000 Subject: [PATCH 087/161] =?UTF-8?q?[=F0=9F=A4=96]=20Update=20Latest=20Depe?= =?UTF-8?q?ndency:=20https://github.com/DataDog/dd-trace-rb/actions/runs/1?= =?UTF-8?q?2530758499?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- gemfiles/jruby_9.2_elasticsearch_7.gemfile.lock | 4 ++-- gemfiles/jruby_9.2_elasticsearch_8.gemfile.lock | 4 ++-- gemfiles/jruby_9.2_elasticsearch_latest.gemfile.lock | 4 ++-- gemfiles/jruby_9.2_opensearch_2.gemfile.lock | 4 ++-- gemfiles/jruby_9.2_opensearch_3.gemfile.lock | 4 ++-- gemfiles/jruby_9.2_opensearch_latest.gemfile.lock | 4 ++-- gemfiles/jruby_9.2_stripe_latest.gemfile.lock | 2 +- gemfiles/jruby_9.3_stripe_latest.gemfile.lock | 2 +- gemfiles/jruby_9.4_elasticsearch_7.gemfile.lock | 4 ++-- gemfiles/jruby_9.4_elasticsearch_8.gemfile.lock | 4 ++-- gemfiles/jruby_9.4_elasticsearch_latest.gemfile.lock | 4 ++-- gemfiles/jruby_9.4_opensearch_2.gemfile.lock | 4 ++-- gemfiles/jruby_9.4_opensearch_3.gemfile.lock | 4 ++-- gemfiles/jruby_9.4_opensearch_latest.gemfile.lock | 4 ++-- gemfiles/jruby_9.4_stripe_latest.gemfile.lock | 2 +- gemfiles/ruby_2.5_elasticsearch_7.gemfile.lock | 4 ++-- gemfiles/ruby_2.5_elasticsearch_8.gemfile.lock | 4 ++-- gemfiles/ruby_2.5_elasticsearch_latest.gemfile.lock | 4 ++-- gemfiles/ruby_2.5_opensearch_2.gemfile.lock | 4 ++-- gemfiles/ruby_2.5_opensearch_3.gemfile.lock | 4 ++-- gemfiles/ruby_2.5_opensearch_latest.gemfile.lock | 4 ++-- gemfiles/ruby_2.5_stripe_latest.gemfile.lock | 2 +- gemfiles/ruby_2.6_stripe_latest.gemfile.lock | 2 +- gemfiles/ruby_2.7_stripe_latest.gemfile.lock | 2 +- gemfiles/ruby_3.0_elasticsearch_7.gemfile.lock | 4 ++-- gemfiles/ruby_3.0_elasticsearch_8.gemfile.lock | 4 ++-- gemfiles/ruby_3.0_elasticsearch_latest.gemfile.lock | 4 ++-- gemfiles/ruby_3.0_opensearch_2.gemfile.lock | 4 ++-- gemfiles/ruby_3.0_opensearch_3.gemfile.lock | 4 ++-- gemfiles/ruby_3.0_opensearch_latest.gemfile.lock | 4 ++-- gemfiles/ruby_3.0_stripe_latest.gemfile.lock | 2 +- gemfiles/ruby_3.1_elasticsearch_7.gemfile.lock | 4 ++-- gemfiles/ruby_3.1_elasticsearch_8.gemfile.lock | 4 ++-- gemfiles/ruby_3.1_elasticsearch_latest.gemfile.lock | 4 ++-- gemfiles/ruby_3.1_opensearch_2.gemfile.lock | 4 ++-- gemfiles/ruby_3.1_opensearch_3.gemfile.lock | 4 ++-- gemfiles/ruby_3.1_opensearch_latest.gemfile.lock | 4 ++-- gemfiles/ruby_3.1_stripe_latest.gemfile.lock | 2 +- gemfiles/ruby_3.2_elasticsearch_7.gemfile.lock | 4 ++-- gemfiles/ruby_3.2_elasticsearch_8.gemfile.lock | 4 ++-- gemfiles/ruby_3.2_elasticsearch_latest.gemfile.lock | 4 ++-- gemfiles/ruby_3.2_opensearch_2.gemfile.lock | 4 ++-- gemfiles/ruby_3.2_opensearch_3.gemfile.lock | 4 ++-- gemfiles/ruby_3.2_opensearch_latest.gemfile.lock | 4 ++-- gemfiles/ruby_3.2_stripe_latest.gemfile.lock | 2 +- gemfiles/ruby_3.3_elasticsearch_7.gemfile.lock | 4 ++-- gemfiles/ruby_3.3_elasticsearch_8.gemfile.lock | 4 ++-- gemfiles/ruby_3.3_elasticsearch_latest.gemfile.lock | 4 ++-- gemfiles/ruby_3.3_opensearch_2.gemfile.lock | 4 ++-- gemfiles/ruby_3.3_opensearch_3.gemfile.lock | 4 ++-- gemfiles/ruby_3.3_opensearch_latest.gemfile.lock | 4 ++-- gemfiles/ruby_3.3_stripe_latest.gemfile.lock | 2 +- gemfiles/ruby_3.4_elasticsearch_7.gemfile.lock | 4 ++-- gemfiles/ruby_3.4_elasticsearch_8.gemfile.lock | 4 ++-- gemfiles/ruby_3.4_elasticsearch_latest.gemfile.lock | 4 ++-- gemfiles/ruby_3.4_opensearch_2.gemfile.lock | 4 ++-- gemfiles/ruby_3.4_opensearch_3.gemfile.lock | 4 ++-- gemfiles/ruby_3.4_opensearch_latest.gemfile.lock | 4 ++-- gemfiles/ruby_3.4_stripe_latest.gemfile.lock | 2 +- 59 files changed, 107 insertions(+), 107 deletions(-) diff --git a/gemfiles/jruby_9.2_elasticsearch_7.gemfile.lock b/gemfiles/jruby_9.2_elasticsearch_7.gemfile.lock index 36fc02fbb05..5bb58b57c32 100644 --- a/gemfiles/jruby_9.2_elasticsearch_7.gemfile.lock +++ b/gemfiles/jruby_9.2_elasticsearch_7.gemfile.lock @@ -60,8 +60,8 @@ GEM faraday-em_synchrony (1.0.0) faraday-excon (1.1.0) faraday-httpclient (1.0.1) - faraday-multipart (1.0.4) - multipart-post (~> 2) + faraday-multipart (1.1.0) + multipart-post (~> 2.0) faraday-net_http (1.0.2) faraday-net_http_persistent (1.2.0) faraday-patron (1.0.0) diff --git a/gemfiles/jruby_9.2_elasticsearch_8.gemfile.lock b/gemfiles/jruby_9.2_elasticsearch_8.gemfile.lock index f81cb6e0c64..85899ece000 100644 --- a/gemfiles/jruby_9.2_elasticsearch_8.gemfile.lock +++ b/gemfiles/jruby_9.2_elasticsearch_8.gemfile.lock @@ -58,8 +58,8 @@ GEM faraday-em_synchrony (1.0.0) faraday-excon (1.1.0) faraday-httpclient (1.0.1) - faraday-multipart (1.0.4) - multipart-post (~> 2) + faraday-multipart (1.1.0) + multipart-post (~> 2.0) faraday-net_http (1.0.2) faraday-net_http_persistent (1.2.0) faraday-patron (1.0.0) diff --git a/gemfiles/jruby_9.2_elasticsearch_latest.gemfile.lock b/gemfiles/jruby_9.2_elasticsearch_latest.gemfile.lock index 5e50b504953..c36be87792e 100644 --- a/gemfiles/jruby_9.2_elasticsearch_latest.gemfile.lock +++ b/gemfiles/jruby_9.2_elasticsearch_latest.gemfile.lock @@ -60,8 +60,8 @@ GEM faraday-em_synchrony (1.0.0) faraday-excon (1.1.0) faraday-httpclient (1.0.1) - faraday-multipart (1.0.4) - multipart-post (~> 2) + faraday-multipart (1.1.0) + multipart-post (~> 2.0) faraday-net_http (1.0.2) faraday-net_http_persistent (1.2.0) faraday-patron (1.0.0) diff --git a/gemfiles/jruby_9.2_opensearch_2.gemfile.lock b/gemfiles/jruby_9.2_opensearch_2.gemfile.lock index aeb13ed3efe..2b780aa3b94 100644 --- a/gemfiles/jruby_9.2_opensearch_2.gemfile.lock +++ b/gemfiles/jruby_9.2_opensearch_2.gemfile.lock @@ -50,8 +50,8 @@ GEM faraday-em_synchrony (1.0.0) faraday-excon (1.1.0) faraday-httpclient (1.0.1) - faraday-multipart (1.0.4) - multipart-post (~> 2) + faraday-multipart (1.1.0) + multipart-post (~> 2.0) faraday-net_http (1.0.2) faraday-net_http_persistent (1.2.0) faraday-patron (1.0.0) diff --git a/gemfiles/jruby_9.2_opensearch_3.gemfile.lock b/gemfiles/jruby_9.2_opensearch_3.gemfile.lock index 8370df63724..e96582e849c 100644 --- a/gemfiles/jruby_9.2_opensearch_3.gemfile.lock +++ b/gemfiles/jruby_9.2_opensearch_3.gemfile.lock @@ -50,8 +50,8 @@ GEM faraday-em_synchrony (1.0.0) faraday-excon (1.1.0) faraday-httpclient (1.0.1) - faraday-multipart (1.0.4) - multipart-post (~> 2) + faraday-multipart (1.1.0) + multipart-post (~> 2.0) faraday-net_http (1.0.2) faraday-net_http_persistent (1.2.0) faraday-patron (1.0.0) diff --git a/gemfiles/jruby_9.2_opensearch_latest.gemfile.lock b/gemfiles/jruby_9.2_opensearch_latest.gemfile.lock index 79e21f4af9e..c3ed52188b3 100644 --- a/gemfiles/jruby_9.2_opensearch_latest.gemfile.lock +++ b/gemfiles/jruby_9.2_opensearch_latest.gemfile.lock @@ -52,8 +52,8 @@ GEM faraday-em_synchrony (1.0.0) faraday-excon (1.1.0) faraday-httpclient (1.0.1) - faraday-multipart (1.0.4) - multipart-post (~> 2) + faraday-multipart (1.1.0) + multipart-post (~> 2.0) faraday-net_http (1.0.2) faraday-net_http_persistent (1.2.0) faraday-patron (1.0.0) diff --git a/gemfiles/jruby_9.2_stripe_latest.gemfile.lock b/gemfiles/jruby_9.2_stripe_latest.gemfile.lock index 8ef169b22c1..b6802cce920 100644 --- a/gemfiles/jruby_9.2_stripe_latest.gemfile.lock +++ b/gemfiles/jruby_9.2_stripe_latest.gemfile.lock @@ -87,7 +87,7 @@ GEM simplecov_json_formatter (0.1.4) spoon (0.0.6) ffi - stripe (13.2.0) + stripe (13.3.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) diff --git a/gemfiles/jruby_9.3_stripe_latest.gemfile.lock b/gemfiles/jruby_9.3_stripe_latest.gemfile.lock index b419d95c301..be48d6015ac 100644 --- a/gemfiles/jruby_9.3_stripe_latest.gemfile.lock +++ b/gemfiles/jruby_9.3_stripe_latest.gemfile.lock @@ -119,7 +119,7 @@ GEM simplecov_json_formatter (0.1.4) spoon (0.0.6) ffi - stripe (13.2.0) + stripe (13.3.0) unicode-display_width (2.6.0) warning (1.4.0) webmock (3.23.1) diff --git a/gemfiles/jruby_9.4_elasticsearch_7.gemfile.lock b/gemfiles/jruby_9.4_elasticsearch_7.gemfile.lock index 1cadcdf0064..d3da187035b 100644 --- a/gemfiles/jruby_9.4_elasticsearch_7.gemfile.lock +++ b/gemfiles/jruby_9.4_elasticsearch_7.gemfile.lock @@ -53,13 +53,13 @@ GEM net-http (>= 0.5.0) ffi (1.17.0-java) hashdiff (1.0.1) - json (2.9.0-java) + json (2.9.1-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) libddwaf (1.18.0.0.0-java) ffi (~> 1.0) - logger (1.6.3) + logger (1.6.4) memory_profiler (0.9.14) method_source (1.0.0) msgpack (1.7.5-java) diff --git a/gemfiles/jruby_9.4_elasticsearch_8.gemfile.lock b/gemfiles/jruby_9.4_elasticsearch_8.gemfile.lock index 37e369bfcdb..99944c060cc 100644 --- a/gemfiles/jruby_9.4_elasticsearch_8.gemfile.lock +++ b/gemfiles/jruby_9.4_elasticsearch_8.gemfile.lock @@ -51,13 +51,13 @@ GEM net-http (>= 0.5.0) ffi (1.17.0-java) hashdiff (1.0.1) - json (2.9.0-java) + json (2.9.1-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) libddwaf (1.18.0.0.0-java) ffi (~> 1.0) - logger (1.6.3) + logger (1.6.4) memory_profiler (0.9.14) method_source (1.0.0) msgpack (1.7.5-java) diff --git a/gemfiles/jruby_9.4_elasticsearch_latest.gemfile.lock b/gemfiles/jruby_9.4_elasticsearch_latest.gemfile.lock index b9f454f99d5..2523b28c887 100644 --- a/gemfiles/jruby_9.4_elasticsearch_latest.gemfile.lock +++ b/gemfiles/jruby_9.4_elasticsearch_latest.gemfile.lock @@ -53,13 +53,13 @@ GEM net-http (>= 0.5.0) ffi (1.17.0-java) hashdiff (1.1.1) - json (2.9.0-java) + json (2.9.1-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) libddwaf (1.18.0.0.0-java) ffi (~> 1.0) - logger (1.6.3) + logger (1.6.4) memory_profiler (0.9.14) method_source (1.1.0) msgpack (1.7.5-java) diff --git a/gemfiles/jruby_9.4_opensearch_2.gemfile.lock b/gemfiles/jruby_9.4_opensearch_2.gemfile.lock index 21cc1a9afa7..dab25836ebc 100644 --- a/gemfiles/jruby_9.4_opensearch_2.gemfile.lock +++ b/gemfiles/jruby_9.4_opensearch_2.gemfile.lock @@ -43,13 +43,13 @@ GEM net-http (>= 0.5.0) ffi (1.17.0-java) hashdiff (1.0.1) - json (2.9.0-java) + json (2.9.1-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) libddwaf (1.18.0.0.0-java) ffi (~> 1.0) - logger (1.6.3) + logger (1.6.4) memory_profiler (0.9.14) method_source (1.0.0) msgpack (1.7.5-java) diff --git a/gemfiles/jruby_9.4_opensearch_3.gemfile.lock b/gemfiles/jruby_9.4_opensearch_3.gemfile.lock index 40b987b2e71..aee58dbad8f 100644 --- a/gemfiles/jruby_9.4_opensearch_3.gemfile.lock +++ b/gemfiles/jruby_9.4_opensearch_3.gemfile.lock @@ -43,13 +43,13 @@ GEM net-http (>= 0.5.0) ffi (1.17.0-java) hashdiff (1.0.1) - json (2.9.0-java) + json (2.9.1-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) libddwaf (1.18.0.0.0-java) ffi (~> 1.0) - logger (1.6.3) + logger (1.6.4) memory_profiler (0.9.14) method_source (1.0.0) msgpack (1.7.5-java) diff --git a/gemfiles/jruby_9.4_opensearch_latest.gemfile.lock b/gemfiles/jruby_9.4_opensearch_latest.gemfile.lock index 978e087574b..baa665b1de5 100644 --- a/gemfiles/jruby_9.4_opensearch_latest.gemfile.lock +++ b/gemfiles/jruby_9.4_opensearch_latest.gemfile.lock @@ -45,13 +45,13 @@ GEM net-http (>= 0.5.0) ffi (1.17.0-java) hashdiff (1.1.1) - json (2.9.0-java) + json (2.9.1-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) libddwaf (1.18.0.0.0-java) ffi (~> 1.0) - logger (1.6.3) + logger (1.6.4) memory_profiler (0.9.14) method_source (1.1.0) msgpack (1.7.5-java) diff --git a/gemfiles/jruby_9.4_stripe_latest.gemfile.lock b/gemfiles/jruby_9.4_stripe_latest.gemfile.lock index 5d17b7942e0..2f28c1ff44e 100644 --- a/gemfiles/jruby_9.4_stripe_latest.gemfile.lock +++ b/gemfiles/jruby_9.4_stripe_latest.gemfile.lock @@ -119,7 +119,7 @@ GEM simplecov_json_formatter (0.1.4) spoon (0.0.6) ffi - stripe (13.2.0) + stripe (13.3.0) unicode-display_width (2.6.0) warning (1.4.0) webmock (3.23.1) diff --git a/gemfiles/ruby_2.5_elasticsearch_7.gemfile.lock b/gemfiles/ruby_2.5_elasticsearch_7.gemfile.lock index 5a30d602034..1dcdb60f488 100644 --- a/gemfiles/ruby_2.5_elasticsearch_7.gemfile.lock +++ b/gemfiles/ruby_2.5_elasticsearch_7.gemfile.lock @@ -64,8 +64,8 @@ GEM faraday-em_synchrony (1.0.0) faraday-excon (1.1.0) faraday-httpclient (1.0.1) - faraday-multipart (1.0.4) - multipart-post (~> 2) + faraday-multipart (1.1.0) + multipart-post (~> 2.0) faraday-net_http (1.0.2) faraday-net_http_persistent (1.2.0) faraday-patron (1.0.0) diff --git a/gemfiles/ruby_2.5_elasticsearch_8.gemfile.lock b/gemfiles/ruby_2.5_elasticsearch_8.gemfile.lock index 39182347aa0..33dfdea8b25 100644 --- a/gemfiles/ruby_2.5_elasticsearch_8.gemfile.lock +++ b/gemfiles/ruby_2.5_elasticsearch_8.gemfile.lock @@ -62,8 +62,8 @@ GEM faraday-em_synchrony (1.0.0) faraday-excon (1.1.0) faraday-httpclient (1.0.1) - faraday-multipart (1.0.4) - multipart-post (~> 2) + faraday-multipart (1.1.0) + multipart-post (~> 2.0) faraday-net_http (1.0.2) faraday-net_http_persistent (1.2.0) faraday-patron (1.0.0) diff --git a/gemfiles/ruby_2.5_elasticsearch_latest.gemfile.lock b/gemfiles/ruby_2.5_elasticsearch_latest.gemfile.lock index 04c386a3d86..c712643c1a1 100644 --- a/gemfiles/ruby_2.5_elasticsearch_latest.gemfile.lock +++ b/gemfiles/ruby_2.5_elasticsearch_latest.gemfile.lock @@ -64,8 +64,8 @@ GEM faraday-em_synchrony (1.0.0) faraday-excon (1.1.0) faraday-httpclient (1.0.1) - faraday-multipart (1.0.4) - multipart-post (~> 2) + faraday-multipart (1.1.0) + multipart-post (~> 2.0) faraday-net_http (1.0.2) faraday-net_http_persistent (1.2.0) faraday-patron (1.0.0) diff --git a/gemfiles/ruby_2.5_opensearch_2.gemfile.lock b/gemfiles/ruby_2.5_opensearch_2.gemfile.lock index de1d0e21eb4..faf171fa0ed 100644 --- a/gemfiles/ruby_2.5_opensearch_2.gemfile.lock +++ b/gemfiles/ruby_2.5_opensearch_2.gemfile.lock @@ -54,8 +54,8 @@ GEM faraday-em_synchrony (1.0.0) faraday-excon (1.1.0) faraday-httpclient (1.0.1) - faraday-multipart (1.0.4) - multipart-post (~> 2) + faraday-multipart (1.1.0) + multipart-post (~> 2.0) faraday-net_http (1.0.2) faraday-net_http_persistent (1.2.0) faraday-patron (1.0.0) diff --git a/gemfiles/ruby_2.5_opensearch_3.gemfile.lock b/gemfiles/ruby_2.5_opensearch_3.gemfile.lock index 3adaf4b0b67..536089c8374 100644 --- a/gemfiles/ruby_2.5_opensearch_3.gemfile.lock +++ b/gemfiles/ruby_2.5_opensearch_3.gemfile.lock @@ -54,8 +54,8 @@ GEM faraday-em_synchrony (1.0.0) faraday-excon (1.1.0) faraday-httpclient (1.0.1) - faraday-multipart (1.0.4) - multipart-post (~> 2) + faraday-multipart (1.1.0) + multipart-post (~> 2.0) faraday-net_http (1.0.2) faraday-net_http_persistent (1.2.0) faraday-patron (1.0.0) diff --git a/gemfiles/ruby_2.5_opensearch_latest.gemfile.lock b/gemfiles/ruby_2.5_opensearch_latest.gemfile.lock index 2893ac69698..da610b4504b 100644 --- a/gemfiles/ruby_2.5_opensearch_latest.gemfile.lock +++ b/gemfiles/ruby_2.5_opensearch_latest.gemfile.lock @@ -56,8 +56,8 @@ GEM faraday-em_synchrony (1.0.0) faraday-excon (1.1.0) faraday-httpclient (1.0.1) - faraday-multipart (1.0.4) - multipart-post (~> 2) + faraday-multipart (1.1.0) + multipart-post (~> 2.0) faraday-net_http (1.0.2) faraday-net_http_persistent (1.2.0) faraday-patron (1.0.0) diff --git a/gemfiles/ruby_2.5_stripe_latest.gemfile.lock b/gemfiles/ruby_2.5_stripe_latest.gemfile.lock index 83e8793fc5d..a7beba6ef22 100644 --- a/gemfiles/ruby_2.5_stripe_latest.gemfile.lock +++ b/gemfiles/ruby_2.5_stripe_latest.gemfile.lock @@ -95,7 +95,7 @@ GEM simplecov (~> 0.19) simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) - stripe (13.2.0) + stripe (13.3.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) diff --git a/gemfiles/ruby_2.6_stripe_latest.gemfile.lock b/gemfiles/ruby_2.6_stripe_latest.gemfile.lock index 5a02efd9ce8..129e917d21e 100644 --- a/gemfiles/ruby_2.6_stripe_latest.gemfile.lock +++ b/gemfiles/ruby_2.6_stripe_latest.gemfile.lock @@ -129,7 +129,7 @@ GEM simplecov (~> 0.19) simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) - stripe (13.2.0) + stripe (13.3.0) unicode-display_width (2.6.0) warning (1.4.0) webmock (3.23.1) diff --git a/gemfiles/ruby_2.7_stripe_latest.gemfile.lock b/gemfiles/ruby_2.7_stripe_latest.gemfile.lock index 312e78df324..83c9c3305ed 100644 --- a/gemfiles/ruby_2.7_stripe_latest.gemfile.lock +++ b/gemfiles/ruby_2.7_stripe_latest.gemfile.lock @@ -128,7 +128,7 @@ GEM simplecov (~> 0.19) simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) - stripe (13.2.0) + stripe (13.3.0) unicode-display_width (2.6.0) warning (1.4.0) webmock (3.23.1) diff --git a/gemfiles/ruby_3.0_elasticsearch_7.gemfile.lock b/gemfiles/ruby_3.0_elasticsearch_7.gemfile.lock index 178b8e8548e..c30113156d8 100644 --- a/gemfiles/ruby_3.0_elasticsearch_7.gemfile.lock +++ b/gemfiles/ruby_3.0_elasticsearch_7.gemfile.lock @@ -61,7 +61,7 @@ GEM google-protobuf (3.24.4-aarch64-linux) google-protobuf (3.24.4-x86_64-linux) hashdiff (1.0.1) - json (2.9.0) + json (2.9.1) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -70,7 +70,7 @@ GEM ffi (~> 1.0) libddwaf (1.18.0.0.0-x86_64-linux) ffi (~> 1.0) - logger (1.6.3) + logger (1.6.4) memory_profiler (0.9.14) method_source (1.0.0) msgpack (1.7.5) diff --git a/gemfiles/ruby_3.0_elasticsearch_8.gemfile.lock b/gemfiles/ruby_3.0_elasticsearch_8.gemfile.lock index b3405b341f1..99690f81464 100644 --- a/gemfiles/ruby_3.0_elasticsearch_8.gemfile.lock +++ b/gemfiles/ruby_3.0_elasticsearch_8.gemfile.lock @@ -59,7 +59,7 @@ GEM google-protobuf (3.24.4-aarch64-linux) google-protobuf (3.24.4-x86_64-linux) hashdiff (1.0.1) - json (2.9.0) + json (2.9.1) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -68,7 +68,7 @@ GEM ffi (~> 1.0) libddwaf (1.18.0.0.0-x86_64-linux) ffi (~> 1.0) - logger (1.6.3) + logger (1.6.4) memory_profiler (0.9.14) method_source (1.0.0) msgpack (1.7.5) diff --git a/gemfiles/ruby_3.0_elasticsearch_latest.gemfile.lock b/gemfiles/ruby_3.0_elasticsearch_latest.gemfile.lock index 0590ab252cb..8bf6fb97f7b 100644 --- a/gemfiles/ruby_3.0_elasticsearch_latest.gemfile.lock +++ b/gemfiles/ruby_3.0_elasticsearch_latest.gemfile.lock @@ -61,7 +61,7 @@ GEM google-protobuf (3.25.4-aarch64-linux) google-protobuf (3.25.4-x86_64-linux) hashdiff (1.1.1) - json (2.9.0) + json (2.9.1) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -70,7 +70,7 @@ GEM ffi (~> 1.0) libddwaf (1.18.0.0.0-x86_64-linux) ffi (~> 1.0) - logger (1.6.3) + logger (1.6.4) memory_profiler (0.9.14) method_source (1.1.0) msgpack (1.7.5) diff --git a/gemfiles/ruby_3.0_opensearch_2.gemfile.lock b/gemfiles/ruby_3.0_opensearch_2.gemfile.lock index a3a78ac3118..ee84248d798 100644 --- a/gemfiles/ruby_3.0_opensearch_2.gemfile.lock +++ b/gemfiles/ruby_3.0_opensearch_2.gemfile.lock @@ -51,7 +51,7 @@ GEM google-protobuf (3.24.4-aarch64-linux) google-protobuf (3.24.4-x86_64-linux) hashdiff (1.0.1) - json (2.9.0) + json (2.9.1) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -60,7 +60,7 @@ GEM ffi (~> 1.0) libddwaf (1.18.0.0.0-x86_64-linux) ffi (~> 1.0) - logger (1.6.3) + logger (1.6.4) memory_profiler (0.9.14) method_source (1.0.0) msgpack (1.7.5) diff --git a/gemfiles/ruby_3.0_opensearch_3.gemfile.lock b/gemfiles/ruby_3.0_opensearch_3.gemfile.lock index a2b9840594a..b73385f5a00 100644 --- a/gemfiles/ruby_3.0_opensearch_3.gemfile.lock +++ b/gemfiles/ruby_3.0_opensearch_3.gemfile.lock @@ -51,7 +51,7 @@ GEM google-protobuf (3.24.4-aarch64-linux) google-protobuf (3.24.4-x86_64-linux) hashdiff (1.0.1) - json (2.9.0) + json (2.9.1) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -60,7 +60,7 @@ GEM ffi (~> 1.0) libddwaf (1.18.0.0.0-x86_64-linux) ffi (~> 1.0) - logger (1.6.3) + logger (1.6.4) memory_profiler (0.9.14) method_source (1.0.0) msgpack (1.7.5) diff --git a/gemfiles/ruby_3.0_opensearch_latest.gemfile.lock b/gemfiles/ruby_3.0_opensearch_latest.gemfile.lock index 0e385a9c837..e8582b89645 100644 --- a/gemfiles/ruby_3.0_opensearch_latest.gemfile.lock +++ b/gemfiles/ruby_3.0_opensearch_latest.gemfile.lock @@ -53,7 +53,7 @@ GEM google-protobuf (3.25.4-aarch64-linux) google-protobuf (3.25.4-x86_64-linux) hashdiff (1.1.1) - json (2.9.0) + json (2.9.1) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -62,7 +62,7 @@ GEM ffi (~> 1.0) libddwaf (1.18.0.0.0-x86_64-linux) ffi (~> 1.0) - logger (1.6.3) + logger (1.6.4) memory_profiler (0.9.14) method_source (1.1.0) msgpack (1.7.5) diff --git a/gemfiles/ruby_3.0_stripe_latest.gemfile.lock b/gemfiles/ruby_3.0_stripe_latest.gemfile.lock index c170bdfdb74..bd9ce9f0f2e 100644 --- a/gemfiles/ruby_3.0_stripe_latest.gemfile.lock +++ b/gemfiles/ruby_3.0_stripe_latest.gemfile.lock @@ -129,7 +129,7 @@ GEM simplecov (~> 0.19) simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) - stripe (13.2.0) + stripe (13.3.0) unicode-display_width (2.6.0) warning (1.4.0) webmock (3.23.1) diff --git a/gemfiles/ruby_3.1_elasticsearch_7.gemfile.lock b/gemfiles/ruby_3.1_elasticsearch_7.gemfile.lock index 178b8e8548e..c30113156d8 100644 --- a/gemfiles/ruby_3.1_elasticsearch_7.gemfile.lock +++ b/gemfiles/ruby_3.1_elasticsearch_7.gemfile.lock @@ -61,7 +61,7 @@ GEM google-protobuf (3.24.4-aarch64-linux) google-protobuf (3.24.4-x86_64-linux) hashdiff (1.0.1) - json (2.9.0) + json (2.9.1) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -70,7 +70,7 @@ GEM ffi (~> 1.0) libddwaf (1.18.0.0.0-x86_64-linux) ffi (~> 1.0) - logger (1.6.3) + logger (1.6.4) memory_profiler (0.9.14) method_source (1.0.0) msgpack (1.7.5) diff --git a/gemfiles/ruby_3.1_elasticsearch_8.gemfile.lock b/gemfiles/ruby_3.1_elasticsearch_8.gemfile.lock index b3405b341f1..99690f81464 100644 --- a/gemfiles/ruby_3.1_elasticsearch_8.gemfile.lock +++ b/gemfiles/ruby_3.1_elasticsearch_8.gemfile.lock @@ -59,7 +59,7 @@ GEM google-protobuf (3.24.4-aarch64-linux) google-protobuf (3.24.4-x86_64-linux) hashdiff (1.0.1) - json (2.9.0) + json (2.9.1) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -68,7 +68,7 @@ GEM ffi (~> 1.0) libddwaf (1.18.0.0.0-x86_64-linux) ffi (~> 1.0) - logger (1.6.3) + logger (1.6.4) memory_profiler (0.9.14) method_source (1.0.0) msgpack (1.7.5) diff --git a/gemfiles/ruby_3.1_elasticsearch_latest.gemfile.lock b/gemfiles/ruby_3.1_elasticsearch_latest.gemfile.lock index 0590ab252cb..8bf6fb97f7b 100644 --- a/gemfiles/ruby_3.1_elasticsearch_latest.gemfile.lock +++ b/gemfiles/ruby_3.1_elasticsearch_latest.gemfile.lock @@ -61,7 +61,7 @@ GEM google-protobuf (3.25.4-aarch64-linux) google-protobuf (3.25.4-x86_64-linux) hashdiff (1.1.1) - json (2.9.0) + json (2.9.1) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -70,7 +70,7 @@ GEM ffi (~> 1.0) libddwaf (1.18.0.0.0-x86_64-linux) ffi (~> 1.0) - logger (1.6.3) + logger (1.6.4) memory_profiler (0.9.14) method_source (1.1.0) msgpack (1.7.5) diff --git a/gemfiles/ruby_3.1_opensearch_2.gemfile.lock b/gemfiles/ruby_3.1_opensearch_2.gemfile.lock index a3a78ac3118..ee84248d798 100644 --- a/gemfiles/ruby_3.1_opensearch_2.gemfile.lock +++ b/gemfiles/ruby_3.1_opensearch_2.gemfile.lock @@ -51,7 +51,7 @@ GEM google-protobuf (3.24.4-aarch64-linux) google-protobuf (3.24.4-x86_64-linux) hashdiff (1.0.1) - json (2.9.0) + json (2.9.1) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -60,7 +60,7 @@ GEM ffi (~> 1.0) libddwaf (1.18.0.0.0-x86_64-linux) ffi (~> 1.0) - logger (1.6.3) + logger (1.6.4) memory_profiler (0.9.14) method_source (1.0.0) msgpack (1.7.5) diff --git a/gemfiles/ruby_3.1_opensearch_3.gemfile.lock b/gemfiles/ruby_3.1_opensearch_3.gemfile.lock index a2b9840594a..b73385f5a00 100644 --- a/gemfiles/ruby_3.1_opensearch_3.gemfile.lock +++ b/gemfiles/ruby_3.1_opensearch_3.gemfile.lock @@ -51,7 +51,7 @@ GEM google-protobuf (3.24.4-aarch64-linux) google-protobuf (3.24.4-x86_64-linux) hashdiff (1.0.1) - json (2.9.0) + json (2.9.1) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -60,7 +60,7 @@ GEM ffi (~> 1.0) libddwaf (1.18.0.0.0-x86_64-linux) ffi (~> 1.0) - logger (1.6.3) + logger (1.6.4) memory_profiler (0.9.14) method_source (1.0.0) msgpack (1.7.5) diff --git a/gemfiles/ruby_3.1_opensearch_latest.gemfile.lock b/gemfiles/ruby_3.1_opensearch_latest.gemfile.lock index 0e385a9c837..e8582b89645 100644 --- a/gemfiles/ruby_3.1_opensearch_latest.gemfile.lock +++ b/gemfiles/ruby_3.1_opensearch_latest.gemfile.lock @@ -53,7 +53,7 @@ GEM google-protobuf (3.25.4-aarch64-linux) google-protobuf (3.25.4-x86_64-linux) hashdiff (1.1.1) - json (2.9.0) + json (2.9.1) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -62,7 +62,7 @@ GEM ffi (~> 1.0) libddwaf (1.18.0.0.0-x86_64-linux) ffi (~> 1.0) - logger (1.6.3) + logger (1.6.4) memory_profiler (0.9.14) method_source (1.1.0) msgpack (1.7.5) diff --git a/gemfiles/ruby_3.1_stripe_latest.gemfile.lock b/gemfiles/ruby_3.1_stripe_latest.gemfile.lock index c170bdfdb74..bd9ce9f0f2e 100644 --- a/gemfiles/ruby_3.1_stripe_latest.gemfile.lock +++ b/gemfiles/ruby_3.1_stripe_latest.gemfile.lock @@ -129,7 +129,7 @@ GEM simplecov (~> 0.19) simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) - stripe (13.2.0) + stripe (13.3.0) unicode-display_width (2.6.0) warning (1.4.0) webmock (3.23.1) diff --git a/gemfiles/ruby_3.2_elasticsearch_7.gemfile.lock b/gemfiles/ruby_3.2_elasticsearch_7.gemfile.lock index 5ca511d6ba4..a001fb09347 100644 --- a/gemfiles/ruby_3.2_elasticsearch_7.gemfile.lock +++ b/gemfiles/ruby_3.2_elasticsearch_7.gemfile.lock @@ -60,7 +60,7 @@ GEM google-protobuf (3.24.4-aarch64-linux) google-protobuf (3.24.4-x86_64-linux) hashdiff (1.0.1) - json (2.9.0) + json (2.9.1) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -69,7 +69,7 @@ GEM ffi (~> 1.0) libddwaf (1.18.0.0.0-x86_64-linux) ffi (~> 1.0) - logger (1.6.3) + logger (1.6.4) memory_profiler (0.9.14) method_source (1.0.0) msgpack (1.7.5) diff --git a/gemfiles/ruby_3.2_elasticsearch_8.gemfile.lock b/gemfiles/ruby_3.2_elasticsearch_8.gemfile.lock index 7c8f594a851..9c75f510fce 100644 --- a/gemfiles/ruby_3.2_elasticsearch_8.gemfile.lock +++ b/gemfiles/ruby_3.2_elasticsearch_8.gemfile.lock @@ -58,7 +58,7 @@ GEM google-protobuf (3.24.4-aarch64-linux) google-protobuf (3.24.4-x86_64-linux) hashdiff (1.0.1) - json (2.9.0) + json (2.9.1) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -67,7 +67,7 @@ GEM ffi (~> 1.0) libddwaf (1.18.0.0.0-x86_64-linux) ffi (~> 1.0) - logger (1.6.3) + logger (1.6.4) memory_profiler (0.9.14) method_source (1.0.0) msgpack (1.7.5) diff --git a/gemfiles/ruby_3.2_elasticsearch_latest.gemfile.lock b/gemfiles/ruby_3.2_elasticsearch_latest.gemfile.lock index 5c04d100810..cf64d7f6180 100644 --- a/gemfiles/ruby_3.2_elasticsearch_latest.gemfile.lock +++ b/gemfiles/ruby_3.2_elasticsearch_latest.gemfile.lock @@ -60,7 +60,7 @@ GEM google-protobuf (3.25.4-aarch64-linux) google-protobuf (3.25.4-x86_64-linux) hashdiff (1.1.1) - json (2.9.0) + json (2.9.1) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -69,7 +69,7 @@ GEM ffi (~> 1.0) libddwaf (1.18.0.0.0-x86_64-linux) ffi (~> 1.0) - logger (1.6.3) + logger (1.6.4) memory_profiler (0.9.14) method_source (1.1.0) msgpack (1.7.5) diff --git a/gemfiles/ruby_3.2_opensearch_2.gemfile.lock b/gemfiles/ruby_3.2_opensearch_2.gemfile.lock index c5d3a53678f..d7d755b15a2 100644 --- a/gemfiles/ruby_3.2_opensearch_2.gemfile.lock +++ b/gemfiles/ruby_3.2_opensearch_2.gemfile.lock @@ -50,7 +50,7 @@ GEM google-protobuf (3.24.4-aarch64-linux) google-protobuf (3.24.4-x86_64-linux) hashdiff (1.0.1) - json (2.9.0) + json (2.9.1) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -59,7 +59,7 @@ GEM ffi (~> 1.0) libddwaf (1.18.0.0.0-x86_64-linux) ffi (~> 1.0) - logger (1.6.3) + logger (1.6.4) memory_profiler (0.9.14) method_source (1.0.0) msgpack (1.7.5) diff --git a/gemfiles/ruby_3.2_opensearch_3.gemfile.lock b/gemfiles/ruby_3.2_opensearch_3.gemfile.lock index 82328650579..9eb57c54a8c 100644 --- a/gemfiles/ruby_3.2_opensearch_3.gemfile.lock +++ b/gemfiles/ruby_3.2_opensearch_3.gemfile.lock @@ -50,7 +50,7 @@ GEM google-protobuf (3.24.4-aarch64-linux) google-protobuf (3.24.4-x86_64-linux) hashdiff (1.0.1) - json (2.9.0) + json (2.9.1) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -59,7 +59,7 @@ GEM ffi (~> 1.0) libddwaf (1.18.0.0.0-x86_64-linux) ffi (~> 1.0) - logger (1.6.3) + logger (1.6.4) memory_profiler (0.9.14) method_source (1.0.0) msgpack (1.7.5) diff --git a/gemfiles/ruby_3.2_opensearch_latest.gemfile.lock b/gemfiles/ruby_3.2_opensearch_latest.gemfile.lock index 12ccbee1a8e..d2bb8cf8d5f 100644 --- a/gemfiles/ruby_3.2_opensearch_latest.gemfile.lock +++ b/gemfiles/ruby_3.2_opensearch_latest.gemfile.lock @@ -52,7 +52,7 @@ GEM google-protobuf (3.25.4-aarch64-linux) google-protobuf (3.25.4-x86_64-linux) hashdiff (1.1.1) - json (2.9.0) + json (2.9.1) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -61,7 +61,7 @@ GEM ffi (~> 1.0) libddwaf (1.18.0.0.0-x86_64-linux) ffi (~> 1.0) - logger (1.6.3) + logger (1.6.4) memory_profiler (0.9.14) method_source (1.1.0) msgpack (1.7.5) diff --git a/gemfiles/ruby_3.2_stripe_latest.gemfile.lock b/gemfiles/ruby_3.2_stripe_latest.gemfile.lock index 6c6ba3d7569..e236ddad855 100644 --- a/gemfiles/ruby_3.2_stripe_latest.gemfile.lock +++ b/gemfiles/ruby_3.2_stripe_latest.gemfile.lock @@ -125,7 +125,7 @@ GEM simplecov (~> 0.19) simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) - stripe (13.2.0) + stripe (13.3.0) unicode-display_width (2.6.0) warning (1.4.0) webmock (3.23.1) diff --git a/gemfiles/ruby_3.3_elasticsearch_7.gemfile.lock b/gemfiles/ruby_3.3_elasticsearch_7.gemfile.lock index f663a007ff7..86429ca171f 100644 --- a/gemfiles/ruby_3.3_elasticsearch_7.gemfile.lock +++ b/gemfiles/ruby_3.3_elasticsearch_7.gemfile.lock @@ -59,7 +59,7 @@ GEM ffi (1.17.0-x86_64-linux-gnu) google-protobuf (3.24.4) hashdiff (1.0.1) - json (2.9.0) + json (2.9.1) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -68,7 +68,7 @@ GEM ffi (~> 1.0) libddwaf (1.18.0.0.0-x86_64-linux) ffi (~> 1.0) - logger (1.6.3) + logger (1.6.4) memory_profiler (0.9.14) method_source (1.0.0) msgpack (1.7.5) diff --git a/gemfiles/ruby_3.3_elasticsearch_8.gemfile.lock b/gemfiles/ruby_3.3_elasticsearch_8.gemfile.lock index fe257f87701..fdd54302dc4 100644 --- a/gemfiles/ruby_3.3_elasticsearch_8.gemfile.lock +++ b/gemfiles/ruby_3.3_elasticsearch_8.gemfile.lock @@ -57,7 +57,7 @@ GEM ffi (1.17.0-x86_64-linux-gnu) google-protobuf (3.24.4) hashdiff (1.0.1) - json (2.9.0) + json (2.9.1) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -66,7 +66,7 @@ GEM ffi (~> 1.0) libddwaf (1.18.0.0.0-x86_64-linux) ffi (~> 1.0) - logger (1.6.3) + logger (1.6.4) memory_profiler (0.9.14) method_source (1.0.0) msgpack (1.7.5) diff --git a/gemfiles/ruby_3.3_elasticsearch_latest.gemfile.lock b/gemfiles/ruby_3.3_elasticsearch_latest.gemfile.lock index 5c04d100810..cf64d7f6180 100644 --- a/gemfiles/ruby_3.3_elasticsearch_latest.gemfile.lock +++ b/gemfiles/ruby_3.3_elasticsearch_latest.gemfile.lock @@ -60,7 +60,7 @@ GEM google-protobuf (3.25.4-aarch64-linux) google-protobuf (3.25.4-x86_64-linux) hashdiff (1.1.1) - json (2.9.0) + json (2.9.1) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -69,7 +69,7 @@ GEM ffi (~> 1.0) libddwaf (1.18.0.0.0-x86_64-linux) ffi (~> 1.0) - logger (1.6.3) + logger (1.6.4) memory_profiler (0.9.14) method_source (1.1.0) msgpack (1.7.5) diff --git a/gemfiles/ruby_3.3_opensearch_2.gemfile.lock b/gemfiles/ruby_3.3_opensearch_2.gemfile.lock index d2a569d2a0f..e8b86074744 100644 --- a/gemfiles/ruby_3.3_opensearch_2.gemfile.lock +++ b/gemfiles/ruby_3.3_opensearch_2.gemfile.lock @@ -49,7 +49,7 @@ GEM ffi (1.17.0-x86_64-linux-gnu) google-protobuf (3.24.4) hashdiff (1.0.1) - json (2.9.0) + json (2.9.1) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -58,7 +58,7 @@ GEM ffi (~> 1.0) libddwaf (1.18.0.0.0-x86_64-linux) ffi (~> 1.0) - logger (1.6.3) + logger (1.6.4) memory_profiler (0.9.14) method_source (1.0.0) msgpack (1.7.5) diff --git a/gemfiles/ruby_3.3_opensearch_3.gemfile.lock b/gemfiles/ruby_3.3_opensearch_3.gemfile.lock index e8dc68a0736..4ea021ef1d3 100644 --- a/gemfiles/ruby_3.3_opensearch_3.gemfile.lock +++ b/gemfiles/ruby_3.3_opensearch_3.gemfile.lock @@ -49,7 +49,7 @@ GEM ffi (1.17.0-x86_64-linux-gnu) google-protobuf (3.24.4) hashdiff (1.0.1) - json (2.9.0) + json (2.9.1) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -58,7 +58,7 @@ GEM ffi (~> 1.0) libddwaf (1.18.0.0.0-x86_64-linux) ffi (~> 1.0) - logger (1.6.3) + logger (1.6.4) memory_profiler (0.9.14) method_source (1.0.0) msgpack (1.7.5) diff --git a/gemfiles/ruby_3.3_opensearch_latest.gemfile.lock b/gemfiles/ruby_3.3_opensearch_latest.gemfile.lock index 12ccbee1a8e..d2bb8cf8d5f 100644 --- a/gemfiles/ruby_3.3_opensearch_latest.gemfile.lock +++ b/gemfiles/ruby_3.3_opensearch_latest.gemfile.lock @@ -52,7 +52,7 @@ GEM google-protobuf (3.25.4-aarch64-linux) google-protobuf (3.25.4-x86_64-linux) hashdiff (1.1.1) - json (2.9.0) + json (2.9.1) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -61,7 +61,7 @@ GEM ffi (~> 1.0) libddwaf (1.18.0.0.0-x86_64-linux) ffi (~> 1.0) - logger (1.6.3) + logger (1.6.4) memory_profiler (0.9.14) method_source (1.1.0) msgpack (1.7.5) diff --git a/gemfiles/ruby_3.3_stripe_latest.gemfile.lock b/gemfiles/ruby_3.3_stripe_latest.gemfile.lock index 6c6ba3d7569..e236ddad855 100644 --- a/gemfiles/ruby_3.3_stripe_latest.gemfile.lock +++ b/gemfiles/ruby_3.3_stripe_latest.gemfile.lock @@ -125,7 +125,7 @@ GEM simplecov (~> 0.19) simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) - stripe (13.2.0) + stripe (13.3.0) unicode-display_width (2.6.0) warning (1.4.0) webmock (3.23.1) diff --git a/gemfiles/ruby_3.4_elasticsearch_7.gemfile.lock b/gemfiles/ruby_3.4_elasticsearch_7.gemfile.lock index ec7a180f57a..60fe66892ac 100644 --- a/gemfiles/ruby_3.4_elasticsearch_7.gemfile.lock +++ b/gemfiles/ruby_3.4_elasticsearch_7.gemfile.lock @@ -67,7 +67,7 @@ GEM ffi (1.17.0) google-protobuf (3.25.3) hashdiff (1.1.0) - json (2.9.0) + json (2.9.1) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -76,7 +76,7 @@ GEM ffi (~> 1.0) libddwaf (1.18.0.0.0-x86_64-linux) ffi (~> 1.0) - logger (1.6.3) + logger (1.6.4) memory_profiler (0.9.14) method_source (1.1.0) msgpack (1.7.5) diff --git a/gemfiles/ruby_3.4_elasticsearch_8.gemfile.lock b/gemfiles/ruby_3.4_elasticsearch_8.gemfile.lock index c2ab47d2bf0..5d6d0fc82f2 100644 --- a/gemfiles/ruby_3.4_elasticsearch_8.gemfile.lock +++ b/gemfiles/ruby_3.4_elasticsearch_8.gemfile.lock @@ -66,7 +66,7 @@ GEM ffi (1.17.0) google-protobuf (3.25.3) hashdiff (1.1.0) - json (2.9.0) + json (2.9.1) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -75,7 +75,7 @@ GEM ffi (~> 1.0) libddwaf (1.18.0.0.0-x86_64-linux) ffi (~> 1.0) - logger (1.6.3) + logger (1.6.4) memory_profiler (0.9.14) method_source (1.1.0) msgpack (1.7.5) diff --git a/gemfiles/ruby_3.4_elasticsearch_latest.gemfile.lock b/gemfiles/ruby_3.4_elasticsearch_latest.gemfile.lock index 13b09675a46..3fbae0ceaf6 100644 --- a/gemfiles/ruby_3.4_elasticsearch_latest.gemfile.lock +++ b/gemfiles/ruby_3.4_elasticsearch_latest.gemfile.lock @@ -66,7 +66,7 @@ GEM ffi (1.17.0) google-protobuf (3.25.4) hashdiff (1.1.1) - json (2.9.0) + json (2.9.1) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -75,7 +75,7 @@ GEM ffi (~> 1.0) libddwaf (1.18.0.0.0-x86_64-linux) ffi (~> 1.0) - logger (1.6.3) + logger (1.6.4) memory_profiler (0.9.14) method_source (1.1.0) msgpack (1.7.5) diff --git a/gemfiles/ruby_3.4_opensearch_2.gemfile.lock b/gemfiles/ruby_3.4_opensearch_2.gemfile.lock index 645a89f9dd0..54ade015841 100644 --- a/gemfiles/ruby_3.4_opensearch_2.gemfile.lock +++ b/gemfiles/ruby_3.4_opensearch_2.gemfile.lock @@ -58,7 +58,7 @@ GEM ffi (1.17.0) google-protobuf (3.25.3) hashdiff (1.1.0) - json (2.9.0) + json (2.9.1) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -67,7 +67,7 @@ GEM ffi (~> 1.0) libddwaf (1.18.0.0.0-x86_64-linux) ffi (~> 1.0) - logger (1.6.3) + logger (1.6.4) memory_profiler (0.9.14) method_source (1.1.0) msgpack (1.7.5) diff --git a/gemfiles/ruby_3.4_opensearch_3.gemfile.lock b/gemfiles/ruby_3.4_opensearch_3.gemfile.lock index a4980f955bd..8475eadd9b9 100644 --- a/gemfiles/ruby_3.4_opensearch_3.gemfile.lock +++ b/gemfiles/ruby_3.4_opensearch_3.gemfile.lock @@ -58,7 +58,7 @@ GEM ffi (1.17.0) google-protobuf (3.25.3) hashdiff (1.1.0) - json (2.9.0) + json (2.9.1) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -67,7 +67,7 @@ GEM ffi (~> 1.0) libddwaf (1.18.0.0.0-x86_64-linux) ffi (~> 1.0) - logger (1.6.3) + logger (1.6.4) memory_profiler (0.9.14) method_source (1.1.0) msgpack (1.7.5) diff --git a/gemfiles/ruby_3.4_opensearch_latest.gemfile.lock b/gemfiles/ruby_3.4_opensearch_latest.gemfile.lock index a4ab79a92af..dd0d9e7320d 100644 --- a/gemfiles/ruby_3.4_opensearch_latest.gemfile.lock +++ b/gemfiles/ruby_3.4_opensearch_latest.gemfile.lock @@ -58,7 +58,7 @@ GEM ffi (1.17.0) google-protobuf (3.25.4) hashdiff (1.1.1) - json (2.9.0) + json (2.9.1) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -67,7 +67,7 @@ GEM ffi (~> 1.0) libddwaf (1.18.0.0.0-x86_64-linux) ffi (~> 1.0) - logger (1.6.3) + logger (1.6.4) memory_profiler (0.9.14) method_source (1.1.0) msgpack (1.7.5) diff --git a/gemfiles/ruby_3.4_stripe_latest.gemfile.lock b/gemfiles/ruby_3.4_stripe_latest.gemfile.lock index 8673ec338da..db77568274b 100644 --- a/gemfiles/ruby_3.4_stripe_latest.gemfile.lock +++ b/gemfiles/ruby_3.4_stripe_latest.gemfile.lock @@ -132,7 +132,7 @@ GEM simplecov (~> 0.19) simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) - stripe (13.2.0) + stripe (13.3.0) unicode-display_width (2.6.0) warning (1.4.0) webmock (3.23.1) From e2f791eb6118f35ffc49d39f33f3d6d673cb6f15 Mon Sep 17 00:00:00 2001 From: Bradley Schaefer Date: Mon, 30 Dec 2024 12:38:27 -0500 Subject: [PATCH 088/161] Combine duplicate option table rows The documentation for instrumenting rake had two rows for the same option key. This consolidates those entries into a single row. --- docs/GettingStarted.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/docs/GettingStarted.md b/docs/GettingStarted.md index 894903047bd..9262b29bcb4 100644 --- a/docs/GettingStarted.md +++ b/docs/GettingStarted.md @@ -1547,11 +1547,10 @@ Rake::Task['my_task'].invoke | Key | Env Var| Type | Description | Default | | -------------- | - | ------- | -------------------------------------------------------------------------------------------------------- | -------- | -| `enabled` | | `Bool` | Defines whether Rake tasks should be traced. Useful for temporarily disabling tracing. `true` or `false` | `true` | +| `enabled` | `DD_TRACE_RAKE_ENABLED` | `Bool` | Defines whether Rake tasks should be traced. Useful for temporarily disabling tracing. `true` or `false` | `true` | | `quantize` | | `Hash` | Hash containing options for quantization of task arguments. See below for more details and examples. | `{}` | | `service_name` | | `String` | Service name used for `rake` instrumentation | `'rake'` | | `tasks` | | `Array` | Names of the Rake tasks to instrument | `[]` | -| `enabled` | `DD_TRACE_RAKE_ENABLED` | `Bool` | Whether the integration should create spans. | `true` | **Configuring task quantization behavior** From 6fac7c0ed8ac7070268badea7d94bf6a18d0db44 Mon Sep 17 00:00:00 2001 From: Andrey Marchenko Date: Thu, 2 Jan 2025 12:07:29 +0100 Subject: [PATCH 089/161] use Ruby 3.4.1 for test-memcheck GHA --- .github/workflows/test-memory-leaks.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test-memory-leaks.yaml b/.github/workflows/test-memory-leaks.yaml index e1842cb38b6..44d7cb094bf 100644 --- a/.github/workflows/test-memory-leaks.yaml +++ b/.github/workflows/test-memory-leaks.yaml @@ -7,10 +7,10 @@ jobs: - uses: actions/checkout@v4 - uses: ruby/setup-ruby@v1 with: - ruby-version: 3.4.0-preview2 # TODO: Use stable version once 3.4 is out + ruby-version: 3.4.1 bundler-cache: true # runs 'bundle install' and caches installed gems automatically bundler: latest - cache-version: v1 # bump this to invalidate cache + cache-version: v2 # bump this to invalidate cache - run: sudo apt-get update && (sudo apt-get install -y valgrind || sleep 5 && sudo apt-get install -y valgrind) && valgrind --version - run: gem update --system 3.5.23 # TODO: This is a workaround for a buggy rubygems in 3.4.0-preview2; remove once stable version 3.4 is out - run: bundle exec rake compile spec:profiling:memcheck From f30168183204a7dc37f6a608ca1d18973dbd79c0 Mon Sep 17 00:00:00 2001 From: Ivo Anjo Date: Thu, 2 Jan 2025 11:24:52 +0000 Subject: [PATCH 090/161] Update exceptions file with another variant of thread creation memory leak Since our exceptions match on the stack, they are affected by internal naming changes, and it looks like a new `ruby_xcalloc_body` function is now showing up in the stack. --- suppressions/ruby-3.4.supp | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/suppressions/ruby-3.4.supp b/suppressions/ruby-3.4.supp index 646151fa9fb..71af0c40baa 100644 --- a/suppressions/ruby-3.4.supp +++ b/suppressions/ruby-3.4.supp @@ -77,3 +77,19 @@ obj:/usr/bin/tr ... } + +# When a Ruby process forks, it looks like Ruby doesn't clean up the memory of old threads? +{ + ruby-native-thread-memory-4 + Memcheck:Leak + fun:calloc + fun:calloc1 + fun:rb_gc_impl_calloc + fun:ruby_xcalloc_body + fun:ruby_xcalloc + fun:native_thread_alloc + fun:native_thread_create_dedicated + fun:native_thread_create + fun:thread_create_core + ... +} From 849a3221a5d248237a8f5034ff09fa1fdcb78a4d Mon Sep 17 00:00:00 2001 From: Ivo Anjo Date: Thu, 2 Jan 2025 11:33:06 +0000 Subject: [PATCH 091/161] Introduce Ruby 3.5 gemfile variant for testing with dev builds This is waaay incomplete in terms of adding support for Ruby 3.5 but should get us going for ASAN testing for now. --- ruby-3.5.gemfile | 75 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 75 insertions(+) create mode 100644 ruby-3.5.gemfile diff --git a/ruby-3.5.gemfile b/ruby-3.5.gemfile new file mode 100644 index 00000000000..73960422f46 --- /dev/null +++ b/ruby-3.5.gemfile @@ -0,0 +1,75 @@ +source 'https://rubygems.org' + +gemspec + +gem 'base64' +gem 'benchmark-ips', '~> 2.8' +gem 'benchmark-memory', '< 0.2' # V0.2 only works with 2.5+ +gem 'bigdecimal' +gem 'climate_control', '~> 0.2.0' +gem 'concurrent-ruby' + +# Optional extensions +# TODO: Move this to Appraisals? +# dogstatsd v5, but lower than 5.2, has possible memory leak with datadog. +# @see https://github.com/DataDog/dogstatsd-ruby/issues/182 +gem 'dogstatsd-ruby', '>= 3.3.0', '!= 5.0.0', '!= 5.0.1', '!= 5.1.0' + +gem 'extlz4', '~> 0.3', '>= 0.3.3' + +# Profiler testing dependencies +# NOTE: We're excluding versions 3.7.0 and 3.7.1 for the reasons documented in #1424. +# Since most of our customers won't have BUNDLE_FORCE_RUBY_PLATFORM=true, it's not something we want to add +# to our CI, so we just shortcut and exclude specific versions that were affecting our CI. +gem 'google-protobuf', ['~> 3.0', '!= 3.7.0', '!= 3.7.1'] + +gem 'json-schema', '< 3' # V3 only works with 2.5+ +gem 'memory_profiler', '~> 0.9' +gem 'mutex_m' +gem 'os', '~> 1.1' +gem 'pimpmychangelog', '>= 0.1.2' +gem 'pry' +gem 'pry-stack_explorer' +gem 'rake', '>= 10.5' +gem 'rake-compiler', '~> 1.1', '>= 1.1.1' # To compile native extensions +gem 'rspec', '~> 3.13' +gem 'rspec-collection_matchers', '~> 1.1' +gem 'rspec-wait', '~> 0' +gem 'rspec_junit_formatter', '>= 0.5.1' + +# 1.50 is the last version to support Ruby 2.6 +gem 'rubocop', '~> 1.50.0', require: false +gem 'rubocop-packaging', '~> 0.5.2', require: false +gem 'rubocop-performance', '~> 1.9', require: false +# 2.20 is the last version to support Ruby 2.6 +gem 'rubocop-rspec', ['~> 2.20', '< 2.21'], require: false + +# Merging branch coverage results does not work for old, unsupported rubies and JRuby +# We have a fix up for review, https://github.com/simplecov-ruby/simplecov/pull/972, +# but given it only affects unsupported version of Ruby, it might not get merged. +gem 'simplecov', git: 'https://github.com/DataDog/simplecov', ref: '3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db' +gem 'simplecov-cobertura', '~> 2.1.0' # Used by codecov + +# Ruby 3.4 should be supported by strscan v3.1.1. However, the latest release of strscan is v3.1.0. +# Pin strscan to the latest commit sha. +# +# TODO: Remove once v3.1.1 is released. +gem 'strscan', + git: 'https://github.com/ruby/strscan', + ref: '041b15df4ccc067deabd85fd489b2c15961d0e2f' + +gem 'warning', '~> 1' # NOTE: Used in spec_helper.rb +gem 'webmock', '>= 3.10.0' +gem 'webrick', '>= 1.8.2' + +group :check do + gem 'rbs', '~> 3.7', require: false + gem 'steep', '~> 1', '>= 1.9.1', require: false + gem 'ruby_memcheck', '>= 3' + gem 'standard', require: false +end + +group :dev do + gem 'ruby-lsp', require: false + gem 'appraisal', '~> 2.4.0', require: false +end From 381f6ad6960b66bbc1b878b22c50930f8924685c Mon Sep 17 00:00:00 2001 From: Ivo Anjo Date: Thu, 2 Jan 2025 12:13:07 +0000 Subject: [PATCH 092/161] Update list of files used to compute cache checksum In practice this shouldn't make a difference, since the final lockfiles are supposed to be a superset of the root-level gemfile BUT the `Appraisals` file no longer exists anyway and "just in case" let's have it anyway as it seems more correct. --- .circleci/config.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index ed9caf20e38..6aabbeeb7f8 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -65,7 +65,7 @@ save_bundle_checksum: &save_bundle_checksum command: | if [ "$CI_BUNDLE_CACHE_HIT" != 1 ]; then # Recompute gemfiles/*.lock checksum, as those files might have changed - cat Gemfile Gemfile.lock Appraisals gemfiles/*.gemfile gemfiles/*.gemfile.lock | md5sum > .circleci/bundle_checksum + cat Gemfile Gemfile.lock ruby-*.gemfile gemfiles/*.gemfile gemfiles/*.gemfile.lock | md5sum > .circleci/bundle_checksum fi cp .circleci/bundle_checksum /usr/local/bundle/bundle_checksum step_bundle_install: &step_bundle_install @@ -96,7 +96,7 @@ step_compute_bundle_checksum: &step_compute_bundle_checksum # updating the gemset lock files produces extremely large commits. command: | bundle lock # Create Gemfile.lock - cat Gemfile Gemfile.lock Appraisals gemfiles/*.gemfile gemfiles/*.gemfile.lock | md5sum > .circleci/bundle_checksum + cat Gemfile Gemfile.lock ruby-*.gemfile gemfiles/*.gemfile gemfiles/*.gemfile.lock | md5sum > .circleci/bundle_checksum step_get_test_agent_trace_check_results: &step_get_test_agent_trace_check_results run: name: Get APM Test Agent Trace Check Results From 8ca9ba5ce3ae71db87a4eacb120e3a8562234c74 Mon Sep 17 00:00:00 2001 From: Ivo Anjo Date: Thu, 2 Jan 2025 12:58:17 +0000 Subject: [PATCH 093/161] Bump Ruby 3.4 integration image to stable version --- integration/images/ruby/3.4/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integration/images/ruby/3.4/Dockerfile b/integration/images/ruby/3.4/Dockerfile index 3cc6648d99f..96500f1c668 100644 --- a/integration/images/ruby/3.4/Dockerfile +++ b/integration/images/ruby/3.4/Dockerfile @@ -1,4 +1,4 @@ -FROM ruby:3.4.0-preview2 +FROM ruby:3.4 ENV DEBIAN_FRONTEND=noninteractive From 63adad9470cdd7f1ed81f33222f5c945ab196186 Mon Sep 17 00:00:00 2001 From: Sarah Chen Date: Thu, 2 Jan 2025 09:30:37 -0600 Subject: [PATCH 094/161] Add 3.4 support --- docs/Compatibility.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/Compatibility.md b/docs/Compatibility.md index 7334f2254a9..6dbcf8e5e12 100644 --- a/docs/Compatibility.md +++ b/docs/Compatibility.md @@ -9,7 +9,8 @@ The Ruby Datadog Trace library is open source. See the [dd-trace-rb][1] GitHub r | Type | Documentation | Version | Support type | Gem version support | |-------|----------------------------|-----------|---------------------------|---------------------| -| MRI | https://www.ruby-lang.org/ | 3.3 | [latest](#support-latest) | Latest | +| MRI | https://www.ruby-lang.org/ | 3.4 | [latest](#support-latest) | Latest | +| | | 3.3 | [latest](#support-latest) | Latest | | | | 3.2 | [latest](#support-latest) | Latest | | | | 3.1 | [latest](#support-latest) | Latest | | | | 3.0 | [latest](#support-latest) | Latest | From a3bec688346b98bd202ad16f9429cfc838622bee Mon Sep 17 00:00:00 2001 From: Sarah Chen Date: Thu, 2 Jan 2025 09:40:45 -0600 Subject: [PATCH 095/161] Update DevelopmentGuide --- docs/DevelopmentGuide.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/DevelopmentGuide.md b/docs/DevelopmentGuide.md index adf99bc3e7d..087695e1e30 100644 --- a/docs/DevelopmentGuide.md +++ b/docs/DevelopmentGuide.md @@ -65,9 +65,9 @@ All tests should run in CI. When adding new `_spec.rb` files, you may need to ad { 'foo' => { # With default dependencies for each Ruby runtime - '' => '✅ 2.1 / ✅ 2.2 / ✅ 2.3 / ✅ 2.4 / ✅ 2.5 / ✅ 2.6 / ✅ 2.7 / ✅ 3.0 / ✅ 3.1 / ✅ 3.2 / ✅ 3.3 / ✅ jruby', + '' => '✅ 2.1 / ✅ 2.2 / ✅ 2.3 / ✅ 2.4 / ✅ 2.5 / ✅ 2.6 / ✅ 2.7 / ✅ 3.0 / ✅ 3.1 / ✅ 3.2 / ✅ 3.3 / ✅ 3.4 / ✅ jruby', # or with dependency group definition `foo-on-rails`, that includes additional gems - 'foo-on-rails' => '✅ 2.1 / ✅ 2.2 / ✅ 2.3 / ✅ 2.4 / ✅ 2.5 / ✅ 2.6 / ✅ 2.7 / ✅ 3.0 / ✅ 3.1 / ✅ 3.2 / ✅ 3.3 / ✅ jruby' + 'foo-on-rails' => '✅ 2.1 / ✅ 2.2 / ✅ 2.3 / ✅ 2.4 / ✅ 2.5 / ✅ 2.6 / ✅ 2.7 / ✅ 3.0 / ✅ 3.1 / ✅ 3.2 / ✅ 3.3 / ✅ 3.4 / ✅ jruby' }, } ``` @@ -98,9 +98,9 @@ Take `bundle exec rake test:redis` as example, multiple versions of `redis` from ```ruby { 'redis' => { - 'redis-3' => '✅ 2.1 / ✅ 2.2 / ✅ 2.3 / ✅ 2.4 / ✅ 2.5 / ✅ 2.6 / ✅ 2.7 / ✅ 3.0 / ✅ 3.1 / ✅ 3.2 / ✅ 3.3 / ✅ jruby', - 'redis-4' => '❌ 2.1 / ❌ 2.2 / ❌ 2.3 / ✅ 2.4 / ✅ 2.5 / ✅ 2.6 / ✅ 2.7 / ✅ 3.0 / ✅ 3.1 / ✅ 3.2 / ✅ 3.3 / ✅ jruby', - 'redis-5' => '❌ 2.1 / ❌ 2.2 / ❌ 2.3 / ❌ 2.4 / ✅ 2.5 / ✅ 2.6 / ✅ 2.7 / ✅ 3.0 / ✅ 3.1 / ✅ 3.2 / ✅ 3.3 / ✅ jruby' + 'redis-3' => '✅ 2.5 / ✅ 2.6 / ✅ 2.7 / ✅ 3.0 / ✅ 3.1 / ✅ 3.2 / ✅ 3.3 / ✅ 3.4 / ✅ jruby', + 'redis-4' => '✅ 2.5 / ✅ 2.6 / ✅ 2.7 / ✅ 3.0 / ✅ 3.1 / ✅ 3.2 / ✅ 3.3 / ✅ 3.4 / ✅ jruby', + 'redis-5' => '✅ 2.5 / ✅ 2.6 / ✅ 2.7 / ✅ 3.0 / ✅ 3.1 / ✅ 3.2 / ✅ 3.3 / ✅ 3.4 / ✅ jruby' } } ``` From 19ece841240e2027c2d832afa682366ce8ee2e4c Mon Sep 17 00:00:00 2001 From: Sarah Chen Date: Thu, 2 Jan 2025 09:52:40 -0600 Subject: [PATCH 096/161] Remove strscan specification in 3.4 gemfile --- ruby-3.4.gemfile | 9 --------- 1 file changed, 9 deletions(-) diff --git a/ruby-3.4.gemfile b/ruby-3.4.gemfile index 73960422f46..29e8b57e240 100644 --- a/ruby-3.4.gemfile +++ b/ruby-3.4.gemfile @@ -49,15 +49,6 @@ gem 'rubocop-rspec', ['~> 2.20', '< 2.21'], require: false # but given it only affects unsupported version of Ruby, it might not get merged. gem 'simplecov', git: 'https://github.com/DataDog/simplecov', ref: '3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db' gem 'simplecov-cobertura', '~> 2.1.0' # Used by codecov - -# Ruby 3.4 should be supported by strscan v3.1.1. However, the latest release of strscan is v3.1.0. -# Pin strscan to the latest commit sha. -# -# TODO: Remove once v3.1.1 is released. -gem 'strscan', - git: 'https://github.com/ruby/strscan', - ref: '041b15df4ccc067deabd85fd489b2c15961d0e2f' - gem 'warning', '~> 1' # NOTE: Used in spec_helper.rb gem 'webmock', '>= 3.10.0' gem 'webrick', '>= 1.8.2' From 44d1b548b698ee33633dde0e6e5c11eae4746682 Mon Sep 17 00:00:00 2001 From: Sarah Chen Date: Thu, 2 Jan 2025 09:57:41 -0600 Subject: [PATCH 097/161] Remove `racc` gem from 3.3 and 3.4 appraisal files --- appraisal/ruby-3.3.rb | 2 -- appraisal/ruby-3.4.rb | 2 -- 2 files changed, 4 deletions(-) diff --git a/appraisal/ruby-3.3.rb b/appraisal/ruby-3.3.rb index d361fcd68a7..c7fffc3b558 100644 --- a/appraisal/ruby-3.3.rb +++ b/appraisal/ruby-3.3.rb @@ -180,8 +180,6 @@ gem 'dalli', '< 3.0.0' gem 'presto-client', '>= 0.5.14' # Renamed to trino-client in >= 1.0 gem 'qless', '0.12.0' - - gem 'racc' # Remove this once graphql resolves issue for ruby 3.3 preview. https://github.com/rmosolgo/graphql-ruby/issues/4650 end appraise 'core-old' do diff --git a/appraisal/ruby-3.4.rb b/appraisal/ruby-3.4.rb index e83945820bc..17a81807b66 100644 --- a/appraisal/ruby-3.4.rb +++ b/appraisal/ruby-3.4.rb @@ -191,8 +191,6 @@ gem 'dalli', '< 3.0.0' gem 'presto-client', '>= 0.5.14' # Renamed to trino-client in >= 1.0 gem 'qless', '0.12.0' - - gem 'racc' # Remove this once graphql resolves issue for ruby 3.3 preview. https://github.com/rmosolgo/graphql-ruby/issues/4650 end appraise 'core-old' do From b595d4177973583aa2f11ad9689d6147efeb2248 Mon Sep 17 00:00:00 2001 From: Ivo Anjo Date: Thu, 2 Jan 2025 16:15:19 +0000 Subject: [PATCH 098/161] Enable type checking for AgentSettingsResolver/AgentSettings Steep doesn't seem to be a big fan of Structs so I just went ahead and turned the `AgentSettings` into a regular class that's equivalent to the struct we had before. (In particular, I decided to still keep every field as optional). Ideally this would be a `Data` class, but we're far from dropping support for Rubies that don't have it. --- Steepfile | 1 - .../configuration/agent_settings_resolver.rb | 22 ++++----- .../configuration/agent_settings_resolver.rbs | 46 +++++++++++++------ sig/datadog/core/configuration/ext.rbs | 1 + 4 files changed, 44 insertions(+), 26 deletions(-) diff --git a/Steepfile b/Steepfile index 24d49808692..d2cce9c3ef6 100644 --- a/Steepfile +++ b/Steepfile @@ -80,7 +80,6 @@ target :datadog do ignore 'lib/datadog/core/buffer/thread_safe.rb' ignore 'lib/datadog/core/chunker.rb' ignore 'lib/datadog/core/configuration.rb' - ignore 'lib/datadog/core/configuration/agent_settings_resolver.rb' ignore 'lib/datadog/core/configuration/base.rb' ignore 'lib/datadog/core/configuration/components.rb' ignore 'lib/datadog/core/configuration/dependency_resolver.rb' diff --git a/lib/datadog/core/configuration/agent_settings_resolver.rb b/lib/datadog/core/configuration/agent_settings_resolver.rb index 7d7c048f553..3d407ce1afb 100644 --- a/lib/datadog/core/configuration/agent_settings_resolver.rb +++ b/lib/datadog/core/configuration/agent_settings_resolver.rb @@ -19,17 +19,17 @@ module Configuration # Whenever there is a conflict (different configurations are provided in different orders), it MUST warn the users # about it and pick a value based on the following priority: code > environment variable > defaults. class AgentSettingsResolver - AgentSettings = Struct.new( - :adapter, - :ssl, - :hostname, - :port, - :uds_path, - :timeout_seconds, - keyword_init: true - ) do - def initialize(*) - super + # Immutable container for the resulting settings + class AgentSettings + attr_reader :adapter, :ssl, :hostname, :port, :uds_path, :timeout_seconds + + def initialize(adapter: nil, ssl: nil, hostname: nil, port: nil, uds_path: nil, timeout_seconds: nil) + @adapter = adapter + @ssl = ssl + @hostname = hostname + @port = port + @uds_path = uds_path + @timeout_seconds = timeout_seconds freeze end end diff --git a/sig/datadog/core/configuration/agent_settings_resolver.rbs b/sig/datadog/core/configuration/agent_settings_resolver.rbs index 040a9aa960a..a4ea2830ddb 100644 --- a/sig/datadog/core/configuration/agent_settings_resolver.rbs +++ b/sig/datadog/core/configuration/agent_settings_resolver.rbs @@ -2,9 +2,8 @@ module Datadog module Core module Configuration class AgentSettingsResolver - class AgentSettings < ::Struct[untyped] + class AgentSettings def initialize: (adapter: untyped, ssl: untyped, hostname: untyped, port: untyped, uds_path: untyped, timeout_seconds: untyped) -> void - def merge: (**::Hash[untyped, untyped] member_values) -> AgentSettingsResolver attr_reader adapter: untyped attr_reader ssl: untyped @@ -14,6 +13,17 @@ module Datadog attr_reader timeout_seconds: untyped end + @settings: untyped + @logger: untyped + @configured_hostname: untyped + @configured_port: untyped + @configured_ssl: untyped + @configured_timeout_seconds: untyped + @configured_uds_path: untyped + @uds_fallback: untyped + @mixed_http_and_uds: untyped + @parsed_url: untyped + def self.call: (untyped settings, ?logger: untyped) -> untyped private @@ -38,33 +48,31 @@ module Datadog def configured_uds_path: () -> untyped - def try_parsing_as_integer: (value: untyped, friendly_name: untyped) -> untyped + def parsed_url_ssl?: () -> (nil | untyped) - def try_parsing_as_boolean: (value: untyped, friendly_name: untyped) -> untyped + def try_parsing_as_integer: (value: untyped, friendly_name: untyped) -> untyped - def ssl?: () -> bool + def ssl?: () -> (false | untyped) def hostname: () -> untyped def port: () -> untyped - def uds_path: () -> untyped - def timeout_seconds: () -> untyped - def uds_fallback: () -> untyped + def parsed_url_uds_path: () -> (nil | untyped) - def should_use_uds_fallback?: () -> untyped + def uds_path: () -> (nil | untyped) - def should_use_uds?: () -> bool + def uds_fallback: () -> untyped - def can_use_uds?: () -> bool + def should_use_uds?: () -> untyped - def parsed_url: () -> untyped + def mixed_http_and_uds: () -> untyped - def parsed_url_ssl?: () -> untyped + def can_use_uds?: () -> untyped - def parsed_url_uds_path: () -> untyped + def parsed_url: () -> untyped def pick_from: (*untyped configurations_in_priority_order) -> untyped @@ -72,7 +80,17 @@ module Datadog def log_warning: (untyped message) -> (untyped | nil) + def http_scheme?: (untyped uri) -> untyped + + def parsed_http_url: () -> (untyped | nil) + + def unix_scheme?: (untyped uri) -> untyped + class DetectedConfiguration + @friendly_name: untyped + + @value: untyped + attr_reader friendly_name: untyped attr_reader value: untyped diff --git a/sig/datadog/core/configuration/ext.rbs b/sig/datadog/core/configuration/ext.rbs index 71b7acc0951..77f9eae8265 100644 --- a/sig/datadog/core/configuration/ext.rbs +++ b/sig/datadog/core/configuration/ext.rbs @@ -15,6 +15,7 @@ module Datadog end module Agent + ENV_DEFAULT_HOST: 'DD_AGENT_HOST' ENV_DEFAULT_PORT: 'DD_TRACE_AGENT_PORT' ENV_DEFAULT_URL: 'DD_TRACE_AGENT_URL' ENV_DEFAULT_TIMEOUT_SECONDS: 'DD_TRACE_AGENT_TIMEOUT_SECONDS' From f88e1c1e6f51a5e41cbf47c21f9e59b6585ef1eb Mon Sep 17 00:00:00 2001 From: Ivo Anjo Date: Thu, 2 Jan 2025 16:19:26 +0000 Subject: [PATCH 099/161] Remove workaround for strscan issue This is not expected to be an issue in 3.5 (and is probably fixed for 3.4 as well, but I'll leave that for a separate PR to not affect the appraisals). --- ruby-3.5.gemfile | 8 -------- 1 file changed, 8 deletions(-) diff --git a/ruby-3.5.gemfile b/ruby-3.5.gemfile index 73960422f46..ce83d653fc6 100644 --- a/ruby-3.5.gemfile +++ b/ruby-3.5.gemfile @@ -50,14 +50,6 @@ gem 'rubocop-rspec', ['~> 2.20', '< 2.21'], require: false gem 'simplecov', git: 'https://github.com/DataDog/simplecov', ref: '3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db' gem 'simplecov-cobertura', '~> 2.1.0' # Used by codecov -# Ruby 3.4 should be supported by strscan v3.1.1. However, the latest release of strscan is v3.1.0. -# Pin strscan to the latest commit sha. -# -# TODO: Remove once v3.1.1 is released. -gem 'strscan', - git: 'https://github.com/ruby/strscan', - ref: '041b15df4ccc067deabd85fd489b2c15961d0e2f' - gem 'warning', '~> 1' # NOTE: Used in spec_helper.rb gem 'webmock', '>= 3.10.0' gem 'webrick', '>= 1.8.2' From 6ada623a264d8556414b496050983cf2a286ab4b Mon Sep 17 00:00:00 2001 From: Ivo Anjo Date: Thu, 2 Jan 2025 16:23:53 +0000 Subject: [PATCH 100/161] Move url building behavior from `AgentBaseUrl` to `AgentSettings` This is preparation to also share this behavior with profiling. --- .../configuration/agent_settings_resolver.rb | 18 ++++++ .../core/crashtracking/agent_base_url.rb | 14 +---- .../configuration/agent_settings_resolver.rbs | 7 +++ .../agent_settings_resolver_spec.rb | 57 +++++++++++++++++++ .../core/crashtracking/agent_base_url_spec.rb | 25 ++------ 5 files changed, 88 insertions(+), 33 deletions(-) diff --git a/lib/datadog/core/configuration/agent_settings_resolver.rb b/lib/datadog/core/configuration/agent_settings_resolver.rb index 3d407ce1afb..424f47c331e 100644 --- a/lib/datadog/core/configuration/agent_settings_resolver.rb +++ b/lib/datadog/core/configuration/agent_settings_resolver.rb @@ -32,8 +32,26 @@ def initialize(adapter: nil, ssl: nil, hostname: nil, port: nil, uds_path: nil, @timeout_seconds = timeout_seconds freeze end + + def url + case adapter + when Datadog::Core::Configuration::Ext::Agent::HTTP::ADAPTER + hostname = self.hostname + hostname = "[#{hostname}]" if hostname =~ IPV6_REGEXP + "#{ssl ? 'https' : 'http'}://#{hostname}:#{port}/" + when Datadog::Core::Configuration::Ext::Agent::UnixSocket::ADAPTER + "unix://#{uds_path}" + else + raise ArgumentError, "Unexpected adapter: #{adapter}" + end + end end + # IPv6 regular expression from + # https://stackoverflow.com/questions/53497/regular-expression-that-matches-valid-ipv6-addresses + # Does not match IPv4 addresses. + IPV6_REGEXP = /\A(([0-9a-fA-F]{1,4}:){7,7}[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,7}:|([0-9a-fA-F]{1,4}:){1,6}:[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,5}(:[0-9a-fA-F]{1,4}){1,2}|([0-9a-fA-F]{1,4}:){1,4}(:[0-9a-fA-F]{1,4}){1,3}|([0-9a-fA-F]{1,4}:){1,3}(:[0-9a-fA-F]{1,4}){1,4}|([0-9a-fA-F]{1,4}:){1,2}(:[0-9a-fA-F]{1,4}){1,5}|[0-9a-fA-F]{1,4}:((:[0-9a-fA-F]{1,4}){1,6})|:((:[0-9a-fA-F]{1,4}){1,7}|:)|fe80:(:[0-9a-fA-F]{0,4}){0,4}%[0-9a-zA-Z]{1,}|::(ffff(:0{1,4}){0,1}:){0,1}((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\.){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])|([0-9a-fA-F]{1,4}:){1,4}:((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\.){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\z)/.freeze # rubocop:disable Layout/LineLength + def self.call(settings, logger: Datadog.logger) new(settings, logger: logger).send(:call) end diff --git a/lib/datadog/core/crashtracking/agent_base_url.rb b/lib/datadog/core/crashtracking/agent_base_url.rb index 74b59a1cda5..20a9a55129b 100644 --- a/lib/datadog/core/crashtracking/agent_base_url.rb +++ b/lib/datadog/core/crashtracking/agent_base_url.rb @@ -7,20 +7,8 @@ module Core module Crashtracking # This module provides a method to resolve the base URL of the agent module AgentBaseUrl - # IPv6 regular expression from - # https://stackoverflow.com/questions/53497/regular-expression-that-matches-valid-ipv6-addresses - # Does not match IPv4 addresses. - IPV6_REGEXP = /\A(([0-9a-fA-F]{1,4}:){7,7}[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,7}:|([0-9a-fA-F]{1,4}:){1,6}:[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,5}(:[0-9a-fA-F]{1,4}){1,2}|([0-9a-fA-F]{1,4}:){1,4}(:[0-9a-fA-F]{1,4}){1,3}|([0-9a-fA-F]{1,4}:){1,3}(:[0-9a-fA-F]{1,4}){1,4}|([0-9a-fA-F]{1,4}:){1,2}(:[0-9a-fA-F]{1,4}){1,5}|[0-9a-fA-F]{1,4}:((:[0-9a-fA-F]{1,4}){1,6})|:((:[0-9a-fA-F]{1,4}){1,7}|:)|fe80:(:[0-9a-fA-F]{0,4}){0,4}%[0-9a-zA-Z]{1,}|::(ffff(:0{1,4}){0,1}:){0,1}((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\.){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])|([0-9a-fA-F]{1,4}:){1,4}:((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\.){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\z)/.freeze # rubocop:disable Layout/LineLength - def self.resolve(agent_settings) - case agent_settings.adapter - when Datadog::Core::Configuration::Ext::Agent::HTTP::ADAPTER - hostname = agent_settings.hostname - hostname = "[#{hostname}]" if hostname =~ IPV6_REGEXP - "#{agent_settings.ssl ? 'https' : 'http'}://#{hostname}:#{agent_settings.port}/" - when Datadog::Core::Configuration::Ext::Agent::UnixSocket::ADAPTER - "unix://#{agent_settings.uds_path}" - end + agent_settings.url end end end diff --git a/sig/datadog/core/configuration/agent_settings_resolver.rbs b/sig/datadog/core/configuration/agent_settings_resolver.rbs index a4ea2830ddb..e3a2472abf4 100644 --- a/sig/datadog/core/configuration/agent_settings_resolver.rbs +++ b/sig/datadog/core/configuration/agent_settings_resolver.rbs @@ -11,6 +11,8 @@ module Datadog attr_reader port: untyped attr_reader uds_path: untyped attr_reader timeout_seconds: untyped + + def url: () -> ::String end @settings: untyped @@ -24,6 +26,11 @@ module Datadog @mixed_http_and_uds: untyped @parsed_url: untyped + # IPv6 regular expression from + # https://stackoverflow.com/questions/53497/regular-expression-that-matches-valid-ipv6-addresses + # Does not match IPv4 addresses. + IPV6_REGEXP: ::Regexp + def self.call: (untyped settings, ?logger: untyped) -> untyped private diff --git a/spec/datadog/core/configuration/agent_settings_resolver_spec.rb b/spec/datadog/core/configuration/agent_settings_resolver_spec.rb index ef2a6766ea1..c057e520739 100644 --- a/spec/datadog/core/configuration/agent_settings_resolver_spec.rb +++ b/spec/datadog/core/configuration/agent_settings_resolver_spec.rb @@ -803,4 +803,61 @@ end end end + + describe 'url' do + context 'when using HTTP adapter' do + before do + datadog_settings.agent.host = 'example.com' + datadog_settings.agent.port = 8080 + end + + context 'when SSL is enabled' do + before { datadog_settings.agent.use_ssl = true } + + it 'returns the correct base URL' do + expect(resolver.url).to eq('https://example.com:8080/') + end + end + + context 'when SSL is disabled' do + before { datadog_settings.agent.use_ssl = false } + + it 'returns the correct base URL' do + expect(resolver.url).to eq('http://example.com:8080/') + end + end + + context 'when hostname is an IPv4 address' do + before { datadog_settings.agent.host = '1.2.3.4' } + + it 'returns the correct base URL' do + expect(resolver.url).to eq('http://1.2.3.4:8080/') + end + end + + context 'when hostname is an IPv6 address' do + before { datadog_settings.agent.host = '1234:1234::1' } + + it 'returns the correct base URL' do + expect(resolver.url).to eq('http://[1234:1234::1]:8080/') + end + end + end + + context 'when using UnixSocket adapter' do + before { datadog_settings.agent.uds_path = '/var/run/datadog.sock' } + + it 'returns the correct base URL' do + expect(resolver.url).to eq('unix:///var/run/datadog.sock') + end + end + + context 'when using an unknown adapter' do + it 'raises an exception' do + agent_settings = Datadog::Core::Configuration::AgentSettingsResolver::AgentSettings.new(adapter: :unknown) + + expect { agent_settings.url }.to raise_error(ArgumentError, /Unexpected adapter/) + end + end + end end diff --git a/spec/datadog/core/crashtracking/agent_base_url_spec.rb b/spec/datadog/core/crashtracking/agent_base_url_spec.rb index 407b74daf26..4a8145208cf 100644 --- a/spec/datadog/core/crashtracking/agent_base_url_spec.rb +++ b/spec/datadog/core/crashtracking/agent_base_url_spec.rb @@ -8,8 +8,7 @@ context 'when using HTTP adapter' do context 'when SSL is enabled' do let(:agent_settings) do - instance_double( - Datadog::Core::Configuration::AgentSettingsResolver::AgentSettings, + Datadog::Core::Configuration::AgentSettingsResolver::AgentSettings.new( adapter: Datadog::Core::Configuration::Ext::Agent::HTTP::ADAPTER, ssl: true, hostname: 'example.com', @@ -24,8 +23,7 @@ context 'when SSL is disabled' do let(:agent_settings) do - instance_double( - Datadog::Core::Configuration::AgentSettingsResolver::AgentSettings, + Datadog::Core::Configuration::AgentSettingsResolver::AgentSettings.new( adapter: Datadog::Core::Configuration::Ext::Agent::HTTP::ADAPTER, ssl: false, hostname: 'example.com', @@ -40,8 +38,7 @@ context 'when hostname is an IPv4 address' do let(:agent_settings) do - instance_double( - Datadog::Core::Configuration::AgentSettingsResolver::AgentSettings, + Datadog::Core::Configuration::AgentSettingsResolver::AgentSettings.new( adapter: Datadog::Core::Configuration::Ext::Agent::HTTP::ADAPTER, ssl: false, hostname: '1.2.3.4', @@ -56,8 +53,7 @@ context 'when hostname is an IPv6 address' do let(:agent_settings) do - instance_double( - Datadog::Core::Configuration::AgentSettingsResolver::AgentSettings, + Datadog::Core::Configuration::AgentSettingsResolver::AgentSettings.new( adapter: Datadog::Core::Configuration::Ext::Agent::HTTP::ADAPTER, ssl: false, hostname: '1234:1234::1', @@ -73,8 +69,7 @@ context 'when using UnixSocket adapter' do let(:agent_settings) do - instance_double( - Datadog::Core::Configuration::AgentSettingsResolver::AgentSettings, + Datadog::Core::Configuration::AgentSettingsResolver::AgentSettings.new( adapter: Datadog::Core::Configuration::Ext::Agent::UnixSocket::ADAPTER, uds_path: '/var/run/datadog.sock' ) @@ -84,15 +79,5 @@ expect(described_class.resolve(agent_settings)).to eq('unix:///var/run/datadog.sock') end end - - context 'when using unknownm adapter' do - let(:agent_settings) do - instance_double(Datadog::Core::Configuration::AgentSettingsResolver::AgentSettings, adapter: 'unknown') - end - - it 'returns nil' do - expect(described_class.resolve(agent_settings)).to be_nil - end - end end end From 65c92d284f8eb34039d515746c9894c21a403f76 Mon Sep 17 00:00:00 2001 From: Ivo Anjo Date: Thu, 2 Jan 2025 17:28:45 +0000 Subject: [PATCH 101/161] Refactor crashtracking to use `AgentSettings#url` The behavior from the old `AgentBaseUrl` is now contained in `AgentSettings` so we can clean up the extra logic. --- .../core/crashtracking/agent_base_url.rb | 16 ---- lib/datadog/core/crashtracking/component.rb | 4 +- .../core/crashtracking/agent_base_url.rbs | 10 --- .../core/crashtracking/agent_base_url_spec.rb | 83 ------------------- .../core/crashtracking/component_spec.rb | 34 ++------ 5 files changed, 8 insertions(+), 139 deletions(-) delete mode 100644 lib/datadog/core/crashtracking/agent_base_url.rb delete mode 100644 sig/datadog/core/crashtracking/agent_base_url.rbs delete mode 100644 spec/datadog/core/crashtracking/agent_base_url_spec.rb diff --git a/lib/datadog/core/crashtracking/agent_base_url.rb b/lib/datadog/core/crashtracking/agent_base_url.rb deleted file mode 100644 index 20a9a55129b..00000000000 --- a/lib/datadog/core/crashtracking/agent_base_url.rb +++ /dev/null @@ -1,16 +0,0 @@ -# frozen_string_literal: true - -require_relative '../configuration/ext' - -module Datadog - module Core - module Crashtracking - # This module provides a method to resolve the base URL of the agent - module AgentBaseUrl - def self.resolve(agent_settings) - agent_settings.url - end - end - end - end -end diff --git a/lib/datadog/core/crashtracking/component.rb b/lib/datadog/core/crashtracking/component.rb index ee04e1c5cc8..460a7974bc5 100644 --- a/lib/datadog/core/crashtracking/component.rb +++ b/lib/datadog/core/crashtracking/component.rb @@ -3,7 +3,6 @@ require 'libdatadog' require_relative 'tag_builder' -require_relative 'agent_base_url' require_relative '../utils/only_once' require_relative '../utils/at_fork_monkey_patch' @@ -31,8 +30,7 @@ class Component def self.build(settings, agent_settings, logger:) tags = TagBuilder.call(settings) - agent_base_url = AgentBaseUrl.resolve(agent_settings) - logger.warn('Missing agent base URL; cannot enable crash tracking') unless agent_base_url + agent_base_url = agent_settings.url ld_library_path = ::Libdatadog.ld_library_path logger.warn('Missing ld_library_path; cannot enable crash tracking') unless ld_library_path diff --git a/sig/datadog/core/crashtracking/agent_base_url.rbs b/sig/datadog/core/crashtracking/agent_base_url.rbs deleted file mode 100644 index 3a2c77f8e85..00000000000 --- a/sig/datadog/core/crashtracking/agent_base_url.rbs +++ /dev/null @@ -1,10 +0,0 @@ -module Datadog - module Core - module Crashtracking - module AgentBaseUrl - IPV6_REGEXP: Regexp - def self.resolve: (Datadog::Core::Configuration::AgentSettingsResolver::AgentSettings) -> ::String? - end - end - end -end diff --git a/spec/datadog/core/crashtracking/agent_base_url_spec.rb b/spec/datadog/core/crashtracking/agent_base_url_spec.rb deleted file mode 100644 index 4a8145208cf..00000000000 --- a/spec/datadog/core/crashtracking/agent_base_url_spec.rb +++ /dev/null @@ -1,83 +0,0 @@ -# frozen_string_literal: true - -require 'spec_helper' -require 'datadog/core/crashtracking/agent_base_url' - -RSpec.describe Datadog::Core::Crashtracking::AgentBaseUrl do - describe '.resolve' do - context 'when using HTTP adapter' do - context 'when SSL is enabled' do - let(:agent_settings) do - Datadog::Core::Configuration::AgentSettingsResolver::AgentSettings.new( - adapter: Datadog::Core::Configuration::Ext::Agent::HTTP::ADAPTER, - ssl: true, - hostname: 'example.com', - port: 8080 - ) - end - - it 'returns the correct base URL' do - expect(described_class.resolve(agent_settings)).to eq('https://example.com:8080/') - end - end - - context 'when SSL is disabled' do - let(:agent_settings) do - Datadog::Core::Configuration::AgentSettingsResolver::AgentSettings.new( - adapter: Datadog::Core::Configuration::Ext::Agent::HTTP::ADAPTER, - ssl: false, - hostname: 'example.com', - port: 8080 - ) - end - - it 'returns the correct base URL' do - expect(described_class.resolve(agent_settings)).to eq('http://example.com:8080/') - end - end - - context 'when hostname is an IPv4 address' do - let(:agent_settings) do - Datadog::Core::Configuration::AgentSettingsResolver::AgentSettings.new( - adapter: Datadog::Core::Configuration::Ext::Agent::HTTP::ADAPTER, - ssl: false, - hostname: '1.2.3.4', - port: 8080 - ) - end - - it 'returns the correct base URL' do - expect(described_class.resolve(agent_settings)).to eq('http://1.2.3.4:8080/') - end - end - - context 'when hostname is an IPv6 address' do - let(:agent_settings) do - Datadog::Core::Configuration::AgentSettingsResolver::AgentSettings.new( - adapter: Datadog::Core::Configuration::Ext::Agent::HTTP::ADAPTER, - ssl: false, - hostname: '1234:1234::1', - port: 8080 - ) - end - - it 'returns the correct base URL' do - expect(described_class.resolve(agent_settings)).to eq('http://[1234:1234::1]:8080/') - end - end - end - - context 'when using UnixSocket adapter' do - let(:agent_settings) do - Datadog::Core::Configuration::AgentSettingsResolver::AgentSettings.new( - adapter: Datadog::Core::Configuration::Ext::Agent::UnixSocket::ADAPTER, - uds_path: '/var/run/datadog.sock' - ) - end - - it 'returns the correct base URL' do - expect(described_class.resolve(agent_settings)).to eq('unix:///var/run/datadog.sock') - end - end - end -end diff --git a/spec/datadog/core/crashtracking/component_spec.rb b/spec/datadog/core/crashtracking/component_spec.rb index 034bd5f441e..fcbef942d43 100644 --- a/spec/datadog/core/crashtracking/component_spec.rb +++ b/spec/datadog/core/crashtracking/component_spec.rb @@ -9,7 +9,9 @@ describe '.build' do let(:settings) { Datadog::Core::Configuration::Settings.new } - let(:agent_settings) { double('agent_settings') } + let(:agent_settings) do + instance_double(Datadog::Core::Configuration::AgentSettingsResolver::AgentSettings) + end let(:tags) { { 'tag1' => 'value1' } } let(:agent_base_url) { 'agent_base_url' } let(:ld_library_path) { 'ld_library_path' } @@ -19,8 +21,7 @@ it 'creates a new instance of Component and starts it' do expect(Datadog::Core::Crashtracking::TagBuilder).to receive(:call).with(settings) .and_return(tags) - expect(Datadog::Core::Crashtracking::AgentBaseUrl).to receive(:resolve).with(agent_settings) - .and_return(agent_base_url) + expect(agent_settings).to receive(:url).and_return(agent_base_url) expect(::Libdatadog).to receive(:ld_library_path) .and_return(ld_library_path) expect(::Libdatadog).to receive(:path_to_crashtracking_receiver_binary) @@ -42,32 +43,13 @@ end end - context 'when missing `agent_base_url`' do - let(:agent_base_url) { nil } - - it 'returns nil' do - expect(Datadog::Core::Crashtracking::TagBuilder).to receive(:call).with(settings) - .and_return(tags) - expect(Datadog::Core::Crashtracking::AgentBaseUrl).to receive(:resolve).with(agent_settings) - .and_return(agent_base_url) - expect(::Libdatadog).to receive(:ld_library_path) - .and_return(ld_library_path) - expect(::Libdatadog).to receive(:path_to_crashtracking_receiver_binary) - .and_return(path_to_crashtracking_receiver_binary) - expect(logger).to receive(:warn).with(/cannot enable crash tracking/) - - expect(described_class.build(settings, agent_settings, logger: logger)).to be_nil - end - end - context 'when missing `ld_library_path`' do let(:ld_library_path) { nil } it 'returns nil' do expect(Datadog::Core::Crashtracking::TagBuilder).to receive(:call).with(settings) .and_return(tags) - expect(Datadog::Core::Crashtracking::AgentBaseUrl).to receive(:resolve).with(agent_settings) - .and_return(agent_base_url) + expect(agent_settings).to receive(:url).and_return(agent_base_url) expect(::Libdatadog).to receive(:ld_library_path) .and_return(ld_library_path) expect(::Libdatadog).to receive(:path_to_crashtracking_receiver_binary) @@ -84,8 +66,7 @@ it 'returns nil' do expect(Datadog::Core::Crashtracking::TagBuilder).to receive(:call).with(settings) .and_return(tags) - expect(Datadog::Core::Crashtracking::AgentBaseUrl).to receive(:resolve).with(agent_settings) - .and_return(agent_base_url) + expect(agent_settings).to receive(:url).and_return(agent_base_url) expect(::Libdatadog).to receive(:ld_library_path) .and_return(ld_library_path) expect(::Libdatadog).to receive(:path_to_crashtracking_receiver_binary) @@ -102,8 +83,7 @@ it 'returns an instance of Component that failed to start' do expect(Datadog::Core::Crashtracking::TagBuilder).to receive(:call).with(settings) .and_return(tags) - expect(Datadog::Core::Crashtracking::AgentBaseUrl).to receive(:resolve).with(agent_settings) - .and_return(agent_base_url) + expect(agent_settings).to receive(:url).and_return(agent_base_url) expect(::Libdatadog).to receive(:ld_library_path) .and_return(ld_library_path) expect(::Libdatadog).to receive(:path_to_crashtracking_receiver_binary) From e4f5e19d9007907c3c17e6f2c5bb871a950e6288 Mon Sep 17 00:00:00 2001 From: Ivo Anjo Date: Thu, 2 Jan 2025 17:32:49 +0000 Subject: [PATCH 102/161] [PROF-11078] Fix profiling exception when agent url is an ipv6 address **What does this PR do?** This PR builds atop #4237 and fixes a similar-ish issue in the profiler caused by the same mishandling of ipv6 addresses. In particular, when provided with an ipv6 address in the agent url, the profiler would fail with an exception: ``` $ env DD_AGENT_HOST=2001:db8:1::2 DD_PROFILING_ENABLED=true \ bundle exec ddprofrb exec ruby -e "sleep 2" dd-trace-rb/lib/datadog/profiling/http_transport.rb:27:in `initialize': Failed to initialize transport: invalid authority (ArgumentError) ``` **Motivation:** Luckily we didn't have any customers using this, as it fails immediately and loudly, but it's still a bug on a configuration that should be supported. **Additional Notes:** Since we had similar buggy logic copy-pasted in crashtracking and profiling (crashtracking had been fixed in #4237) I chose to extract out the relevant logic into the `AgentSettings` class, so that both can reuse it. **How to test the change?** I've added unit test coverage for this issue to profiling, and the snippet above can be used to end-to-end test it's working fine. Here's how it looks on my machine now: ``` E, [2025-01-02T17:32:32.398756 #359317] ERROR -- datadog: [datadog] (dd-trace-rb/lib/datadog/profiling/http_transport.rb:68:in `export') Failed to report profiling data (agent: http://[2001:db8:1::2]:8126/): failed ddog_prof_Exporter_send: error trying to connect: tcp connect error: Network is unreachable (os error 101): tcp connect error: Network is unreachable (os error 101): Network is unreachable (os error 101) ``` E.g. we correctly try to connect to the dummy address, and fail :) (Note: The error message is a bit ugly AND repeats itself a bit. That's being tracked separately in https://github.com/DataDog/libdatadog/issues/283 ) --- lib/datadog/profiling/http_transport.rb | 27 +------------------ sig/datadog/profiling/http_transport.rbs | 4 --- spec/datadog/profiling/http_transport_spec.rb | 13 +++++++++ 3 files changed, 14 insertions(+), 30 deletions(-) diff --git a/lib/datadog/profiling/http_transport.rb b/lib/datadog/profiling/http_transport.rb index 2c89c6548b7..9de76899494 100644 --- a/lib/datadog/profiling/http_transport.rb +++ b/lib/datadog/profiling/http_transport.rb @@ -13,13 +13,11 @@ class HttpTransport def initialize(agent_settings:, site:, api_key:, upload_timeout_seconds:) @upload_timeout_milliseconds = (upload_timeout_seconds * 1_000).to_i - validate_agent_settings(agent_settings) - @exporter_configuration = if agentless?(site, api_key) [:agentless, site, api_key].freeze else - [:agent, base_url_from(agent_settings)].freeze + [:agent, agent_settings.url].freeze end status, result = validate_exporter(exporter_configuration) @@ -75,29 +73,6 @@ def export(flush) private - def base_url_from(agent_settings) - case agent_settings.adapter - when Datadog::Core::Configuration::Ext::Agent::HTTP::ADAPTER - "#{agent_settings.ssl ? "https" : "http"}://#{agent_settings.hostname}:#{agent_settings.port}/" - when Datadog::Core::Configuration::Ext::Agent::UnixSocket::ADAPTER - "unix://#{agent_settings.uds_path}" - else - raise ArgumentError, "Unexpected adapter: #{agent_settings.adapter}" - end - end - - def validate_agent_settings(agent_settings) - supported_adapters = [ - Datadog::Core::Configuration::Ext::Agent::UnixSocket::ADAPTER, - Datadog::Core::Configuration::Ext::Agent::HTTP::ADAPTER - ] - unless supported_adapters.include?(agent_settings.adapter) - raise ArgumentError, - "Unsupported transport configuration for profiling: Adapter #{agent_settings.adapter} " \ - " is not supported" - end - end - def agentless?(site, api_key) site && api_key && Core::Environment::VariableHelpers.env_to_bool(Profiling::Ext::ENV_AGENTLESS, false) end diff --git a/sig/datadog/profiling/http_transport.rbs b/sig/datadog/profiling/http_transport.rbs index 8c58ea8180e..af663a225b7 100644 --- a/sig/datadog/profiling/http_transport.rbs +++ b/sig/datadog/profiling/http_transport.rbs @@ -19,10 +19,6 @@ module Datadog private - def base_url_from: (Datadog::Core::Configuration::AgentSettingsResolver::AgentSettings agent_settings) -> ::String - - def validate_agent_settings: (Datadog::Core::Configuration::AgentSettingsResolver::AgentSettings agent_settings) -> void - def agentless?: (::String? site, ::String? api_key) -> bool def validate_exporter: (exporter_configuration_array exporter_configuration) -> [:ok | :error, ::String?] diff --git a/spec/datadog/profiling/http_transport_spec.rb b/spec/datadog/profiling/http_transport_spec.rb index 44423984fab..0cd98ba09e3 100644 --- a/spec/datadog/profiling/http_transport_spec.rb +++ b/spec/datadog/profiling/http_transport_spec.rb @@ -127,6 +127,19 @@ http_transport end end + + context "when hostname is an ipv6 address" do + let(:hostname) { "1234:1234::1" } + + it "provides the correct ipv6 address-safe url to the exporter" do + expect(described_class) + .to receive(:_native_validate_exporter) + .with([:agent, "http://[1234:1234::1]:12345/"]) + .and_return([:ok, nil]) + + http_transport + end + end end context "when additionally site and api_key are provided" do From 8aba599f784aefd64a1a7bfbec3d315820bbe285 Mon Sep 17 00:00:00 2001 From: Ivo Anjo Date: Thu, 2 Jan 2025 17:56:59 +0000 Subject: [PATCH 103/161] Implement `==` for new `AgentSettings` class Forgot this one, some of our tests relied on it! --- .../core/configuration/agent_settings_resolver.rb | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/lib/datadog/core/configuration/agent_settings_resolver.rb b/lib/datadog/core/configuration/agent_settings_resolver.rb index 424f47c331e..5ced057274a 100644 --- a/lib/datadog/core/configuration/agent_settings_resolver.rb +++ b/lib/datadog/core/configuration/agent_settings_resolver.rb @@ -45,6 +45,16 @@ def url raise ArgumentError, "Unexpected adapter: #{adapter}" end end + + def ==(other) + self.class == other.class && + adapter == other.adapter && + ssl == other.ssl && + hostname == other.hostname && + port == other.port && + uds_path == other.uds_path && + timeout_seconds == other.timeout_seconds + end end # IPv6 regular expression from From 2049745a9ccb87d858d50a657262738ed3f97da1 Mon Sep 17 00:00:00 2001 From: ivoanjo Date: Fri, 3 Jan 2025 10:07:24 +0000 Subject: [PATCH 104/161] =?UTF-8?q?[=F0=9F=A4=96]=20Lock=20Dependency:=20h?= =?UTF-8?q?ttps://github.com/DataDog/dd-trace-rb/actions/runs/12595964519?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- gemfiles/ruby_3.3_contrib_old.gemfile | 1 - gemfiles/ruby_3.3_contrib_old.gemfile.lock | 2 -- gemfiles/ruby_3.4_contrib_old.gemfile | 1 - gemfiles/ruby_3.4_contrib_old.gemfile.lock | 1 - 4 files changed, 5 deletions(-) diff --git a/gemfiles/ruby_3.3_contrib_old.gemfile b/gemfiles/ruby_3.3_contrib_old.gemfile index 69c05bfa60b..2caa7bfff9a 100644 --- a/gemfiles/ruby_3.3_contrib_old.gemfile +++ b/gemfiles/ruby_3.3_contrib_old.gemfile @@ -33,7 +33,6 @@ gem "webrick", ">= 1.7.0" gem "dalli", "< 3.0.0" gem "presto-client", ">= 0.5.14" gem "qless", "0.12.0" -gem "racc" group :check do diff --git a/gemfiles/ruby_3.3_contrib_old.gemfile.lock b/gemfiles/ruby_3.3_contrib_old.gemfile.lock index 7ca64ec33a0..2b8fcbe894f 100644 --- a/gemfiles/ruby_3.3_contrib_old.gemfile.lock +++ b/gemfiles/ruby_3.3_contrib_old.gemfile.lock @@ -97,7 +97,6 @@ GEM thin (~> 1.6) thor (~> 0.19.1) vegas (~> 0.1.11) - racc (1.7.1) rack (2.2.7) rack-protection (2.0.8.1) rack @@ -205,7 +204,6 @@ DEPENDENCIES pry pry-stack_explorer qless (= 0.12.0) - racc rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rspec (~> 3.13) diff --git a/gemfiles/ruby_3.4_contrib_old.gemfile b/gemfiles/ruby_3.4_contrib_old.gemfile index 21050379892..e9ec700e6c5 100644 --- a/gemfiles/ruby_3.4_contrib_old.gemfile +++ b/gemfiles/ruby_3.4_contrib_old.gemfile @@ -37,7 +37,6 @@ gem "webrick", ">= 1.8.2" gem "dalli", "< 3.0.0" gem "presto-client", ">= 0.5.14" gem "qless", "0.12.0" -gem "racc" group :check do diff --git a/gemfiles/ruby_3.4_contrib_old.gemfile.lock b/gemfiles/ruby_3.4_contrib_old.gemfile.lock index 79aaafe972f..0f84dba9508 100644 --- a/gemfiles/ruby_3.4_contrib_old.gemfile.lock +++ b/gemfiles/ruby_3.4_contrib_old.gemfile.lock @@ -220,7 +220,6 @@ DEPENDENCIES pry pry-stack_explorer qless (= 0.12.0) - racc rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rspec (~> 3.13) From bd77c351a734fdbfd4ea4c05585be36b4ec2d955 Mon Sep 17 00:00:00 2001 From: ivoanjo Date: Fri, 3 Jan 2025 10:07:28 +0000 Subject: [PATCH 105/161] =?UTF-8?q?[=F0=9F=A4=96]=20Lock=20Dependency:=20h?= =?UTF-8?q?ttps://github.com/DataDog/dd-trace-rb/actions/runs/12595969993?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- gemfiles/ruby_3.4_activesupport.gemfile | 1 - gemfiles/ruby_3.4_activesupport.gemfile.lock | 9 +-------- gemfiles/ruby_3.4_aws.gemfile | 1 - gemfiles/ruby_3.4_aws.gemfile.lock | 9 +-------- gemfiles/ruby_3.4_contrib.gemfile | 1 - gemfiles/ruby_3.4_contrib.gemfile.lock | 9 +-------- gemfiles/ruby_3.4_contrib_old.gemfile | 1 - gemfiles/ruby_3.4_contrib_old.gemfile.lock | 9 +-------- gemfiles/ruby_3.4_core_old.gemfile | 1 - gemfiles/ruby_3.4_core_old.gemfile.lock | 9 +-------- gemfiles/ruby_3.4_elasticsearch_7.gemfile | 1 - gemfiles/ruby_3.4_elasticsearch_7.gemfile.lock | 9 +-------- gemfiles/ruby_3.4_elasticsearch_8.gemfile | 1 - gemfiles/ruby_3.4_elasticsearch_8.gemfile.lock | 9 +-------- gemfiles/ruby_3.4_elasticsearch_latest.gemfile | 1 - gemfiles/ruby_3.4_elasticsearch_latest.gemfile.lock | 8 -------- gemfiles/ruby_3.4_graphql_1.13.gemfile | 1 - gemfiles/ruby_3.4_graphql_1.13.gemfile.lock | 9 +-------- gemfiles/ruby_3.4_graphql_2.0.gemfile | 1 - gemfiles/ruby_3.4_graphql_2.0.gemfile.lock | 9 +-------- gemfiles/ruby_3.4_graphql_2.1.gemfile | 1 - gemfiles/ruby_3.4_graphql_2.1.gemfile.lock | 9 +-------- gemfiles/ruby_3.4_graphql_2.2.gemfile | 1 - gemfiles/ruby_3.4_graphql_2.2.gemfile.lock | 9 +-------- gemfiles/ruby_3.4_graphql_2.3.gemfile | 1 - gemfiles/ruby_3.4_graphql_2.3.gemfile.lock | 9 +-------- gemfiles/ruby_3.4_http.gemfile | 1 - gemfiles/ruby_3.4_http.gemfile.lock | 9 +-------- gemfiles/ruby_3.4_opensearch_2.gemfile | 1 - gemfiles/ruby_3.4_opensearch_2.gemfile.lock | 9 +-------- gemfiles/ruby_3.4_opensearch_3.gemfile | 1 - gemfiles/ruby_3.4_opensearch_3.gemfile.lock | 9 +-------- gemfiles/ruby_3.4_opensearch_latest.gemfile | 1 - gemfiles/ruby_3.4_opensearch_latest.gemfile.lock | 8 -------- gemfiles/ruby_3.4_opentelemetry.gemfile | 1 - gemfiles/ruby_3.4_opentelemetry.gemfile.lock | 9 +-------- gemfiles/ruby_3.4_opentelemetry_otlp.gemfile | 1 - gemfiles/ruby_3.4_opentelemetry_otlp.gemfile.lock | 8 -------- gemfiles/ruby_3.4_rack_2.gemfile | 1 - gemfiles/ruby_3.4_rack_2.gemfile.lock | 9 +-------- gemfiles/ruby_3.4_rack_3.gemfile | 1 - gemfiles/ruby_3.4_rack_3.gemfile.lock | 9 +-------- gemfiles/ruby_3.4_rack_latest.gemfile | 1 - gemfiles/ruby_3.4_rack_latest.gemfile.lock | 8 -------- gemfiles/ruby_3.4_rails61_mysql2.gemfile | 1 - gemfiles/ruby_3.4_rails61_mysql2.gemfile.lock | 9 +-------- gemfiles/ruby_3.4_rails61_postgres.gemfile | 1 - gemfiles/ruby_3.4_rails61_postgres.gemfile.lock | 9 +-------- gemfiles/ruby_3.4_rails61_postgres_redis.gemfile | 1 - gemfiles/ruby_3.4_rails61_postgres_redis.gemfile.lock | 9 +-------- gemfiles/ruby_3.4_rails61_postgres_sidekiq.gemfile | 1 - gemfiles/ruby_3.4_rails61_postgres_sidekiq.gemfile.lock | 9 +-------- gemfiles/ruby_3.4_rails61_semantic_logger.gemfile | 1 - gemfiles/ruby_3.4_rails61_semantic_logger.gemfile.lock | 9 +-------- gemfiles/ruby_3.4_rails61_trilogy.gemfile | 1 - gemfiles/ruby_3.4_rails61_trilogy.gemfile.lock | 9 +-------- gemfiles/ruby_3.4_rails7.gemfile | 1 - gemfiles/ruby_3.4_rails7.gemfile.lock | 9 +-------- gemfiles/ruby_3.4_rails71.gemfile | 1 - gemfiles/ruby_3.4_rails71.gemfile.lock | 9 +-------- gemfiles/ruby_3.4_rails_old_redis.gemfile | 1 - gemfiles/ruby_3.4_redis_3.gemfile | 1 - gemfiles/ruby_3.4_redis_3.gemfile.lock | 9 +-------- gemfiles/ruby_3.4_redis_4.gemfile | 1 - gemfiles/ruby_3.4_redis_4.gemfile.lock | 9 +-------- gemfiles/ruby_3.4_redis_5.gemfile | 1 - gemfiles/ruby_3.4_redis_5.gemfile.lock | 9 +-------- gemfiles/ruby_3.4_relational_db.gemfile | 1 - gemfiles/ruby_3.4_relational_db.gemfile.lock | 8 -------- gemfiles/ruby_3.4_resque2_redis3.gemfile | 1 - gemfiles/ruby_3.4_resque2_redis3.gemfile.lock | 9 +-------- gemfiles/ruby_3.4_resque2_redis4.gemfile | 1 - gemfiles/ruby_3.4_resque2_redis4.gemfile.lock | 9 +-------- gemfiles/ruby_3.4_sinatra_2.gemfile | 1 - gemfiles/ruby_3.4_sinatra_2.gemfile.lock | 9 +-------- gemfiles/ruby_3.4_sinatra_3.gemfile | 1 - gemfiles/ruby_3.4_sinatra_3.gemfile.lock | 9 +-------- gemfiles/ruby_3.4_sinatra_4.gemfile | 1 - gemfiles/ruby_3.4_sinatra_4.gemfile.lock | 9 +-------- gemfiles/ruby_3.4_stripe_10.gemfile | 1 - gemfiles/ruby_3.4_stripe_10.gemfile.lock | 9 +-------- gemfiles/ruby_3.4_stripe_11.gemfile | 1 - gemfiles/ruby_3.4_stripe_11.gemfile.lock | 9 +-------- gemfiles/ruby_3.4_stripe_12.gemfile | 1 - gemfiles/ruby_3.4_stripe_12.gemfile.lock | 9 +-------- gemfiles/ruby_3.4_stripe_7.gemfile | 1 - gemfiles/ruby_3.4_stripe_7.gemfile.lock | 9 +-------- gemfiles/ruby_3.4_stripe_8.gemfile | 1 - gemfiles/ruby_3.4_stripe_8.gemfile.lock | 9 +-------- gemfiles/ruby_3.4_stripe_9.gemfile | 1 - gemfiles/ruby_3.4_stripe_9.gemfile.lock | 9 +-------- gemfiles/ruby_3.4_stripe_latest.gemfile | 1 - gemfiles/ruby_3.4_stripe_latest.gemfile.lock | 8 -------- gemfiles/ruby_3.4_stripe_min.gemfile | 1 - gemfiles/ruby_3.4_stripe_min.gemfile.lock | 8 -------- 95 files changed, 40 insertions(+), 424 deletions(-) diff --git a/gemfiles/ruby_3.4_activesupport.gemfile b/gemfiles/ruby_3.4_activesupport.gemfile index 9c6d7cf607d..b9efe74db8f 100644 --- a/gemfiles/ruby_3.4_activesupport.gemfile +++ b/gemfiles/ruby_3.4_activesupport.gemfile @@ -30,7 +30,6 @@ gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" -gem "strscan", git: "https://github.com/ruby/strscan", ref: "041b15df4ccc067deabd85fd489b2c15961d0e2f" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.8.2" diff --git a/gemfiles/ruby_3.4_activesupport.gemfile.lock b/gemfiles/ruby_3.4_activesupport.gemfile.lock index c93111f5ec2..c4a46291810 100644 --- a/gemfiles/ruby_3.4_activesupport.gemfile.lock +++ b/gemfiles/ruby_3.4_activesupport.gemfile.lock @@ -8,13 +8,6 @@ GIT simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) -GIT - remote: https://github.com/ruby/strscan - revision: 041b15df4ccc067deabd85fd489b2c15961d0e2f - ref: 041b15df4ccc067deabd85fd489b2c15961d0e2f - specs: - strscan (3.1.1) - PATH remote: .. specs: @@ -263,6 +256,7 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) stringio (3.1.1) + strscan (3.1.1) thor (1.3.1) tzinfo (2.0.6) concurrent-ruby (~> 1.0) @@ -317,7 +311,6 @@ DEPENDENCIES ruby-kafka (>= 0.7.10) simplecov! simplecov-cobertura (~> 2.1.0) - strscan! warning (~> 1) webmock (>= 3.10.0) webrick (>= 1.8.2) diff --git a/gemfiles/ruby_3.4_aws.gemfile b/gemfiles/ruby_3.4_aws.gemfile index 1d0ffa5ece1..85239ef89ed 100644 --- a/gemfiles/ruby_3.4_aws.gemfile +++ b/gemfiles/ruby_3.4_aws.gemfile @@ -30,7 +30,6 @@ gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" -gem "strscan", git: "https://github.com/ruby/strscan", ref: "041b15df4ccc067deabd85fd489b2c15961d0e2f" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.8.2" diff --git a/gemfiles/ruby_3.4_aws.gemfile.lock b/gemfiles/ruby_3.4_aws.gemfile.lock index c651a539845..1a68c8be039 100644 --- a/gemfiles/ruby_3.4_aws.gemfile.lock +++ b/gemfiles/ruby_3.4_aws.gemfile.lock @@ -8,13 +8,6 @@ GIT simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) -GIT - remote: https://github.com/ruby/strscan - revision: 041b15df4ccc067deabd85fd489b2c15961d0e2f - ref: 041b15df4ccc067deabd85fd489b2c15961d0e2f - specs: - strscan (3.1.1) - PATH remote: .. specs: @@ -1686,6 +1679,7 @@ GEM simplecov (~> 0.19) simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) + strscan (3.1.1) thor (1.3.1) unicode-display_width (2.5.0) warning (1.4.0) @@ -1731,7 +1725,6 @@ DEPENDENCIES shoryuken simplecov! simplecov-cobertura (~> 2.1.0) - strscan! warning (~> 1) webmock (>= 3.10.0) webrick (>= 1.8.2) diff --git a/gemfiles/ruby_3.4_contrib.gemfile b/gemfiles/ruby_3.4_contrib.gemfile index 6b918e37619..4d6897b4608 100644 --- a/gemfiles/ruby_3.4_contrib.gemfile +++ b/gemfiles/ruby_3.4_contrib.gemfile @@ -30,7 +30,6 @@ gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" -gem "strscan", git: "https://github.com/ruby/strscan", ref: "041b15df4ccc067deabd85fd489b2c15961d0e2f" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.8.2" diff --git a/gemfiles/ruby_3.4_contrib.gemfile.lock b/gemfiles/ruby_3.4_contrib.gemfile.lock index 94793d838e6..df998e8e4bf 100644 --- a/gemfiles/ruby_3.4_contrib.gemfile.lock +++ b/gemfiles/ruby_3.4_contrib.gemfile.lock @@ -8,13 +8,6 @@ GIT simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) -GIT - remote: https://github.com/ruby/strscan - revision: 041b15df4ccc067deabd85fd489b2c15961d0e2f - ref: 041b15df4ccc067deabd85fd489b2c15961d0e2f - specs: - strscan (3.1.1) - PATH remote: .. specs: @@ -203,6 +196,7 @@ GEM sorted_set (1.0.3) rbtree set (~> 1.0) + strscan (3.1.1) sucker_punch (3.2.0) concurrent-ruby (~> 1.0) thor (1.3.1) @@ -260,7 +254,6 @@ DEPENDENCIES simplecov! simplecov-cobertura (~> 2.1.0) sneakers (>= 2.12.0) - strscan! sucker_punch warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.4_contrib_old.gemfile b/gemfiles/ruby_3.4_contrib_old.gemfile index 21050379892..fab77db9e1e 100644 --- a/gemfiles/ruby_3.4_contrib_old.gemfile +++ b/gemfiles/ruby_3.4_contrib_old.gemfile @@ -30,7 +30,6 @@ gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" -gem "strscan", git: "https://github.com/ruby/strscan", ref: "041b15df4ccc067deabd85fd489b2c15961d0e2f" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.8.2" diff --git a/gemfiles/ruby_3.4_contrib_old.gemfile.lock b/gemfiles/ruby_3.4_contrib_old.gemfile.lock index 79aaafe972f..5d2dbade5b2 100644 --- a/gemfiles/ruby_3.4_contrib_old.gemfile.lock +++ b/gemfiles/ruby_3.4_contrib_old.gemfile.lock @@ -8,13 +8,6 @@ GIT simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) -GIT - remote: https://github.com/ruby/strscan - revision: 041b15df4ccc067deabd85fd489b2c15961d0e2f - ref: 041b15df4ccc067deabd85fd489b2c15961d0e2f - specs: - strscan (3.1.1) - PATH remote: .. specs: @@ -179,6 +172,7 @@ GEM rack-protection (= 2.0.8.1) tilt (~> 2.0) statsd-ruby (1.5.0) + strscan (3.1.1) thin (1.8.2) daemons (~> 1.0, >= 1.0.9) eventmachine (~> 1.0, >= 1.0.4) @@ -233,7 +227,6 @@ DEPENDENCIES rubocop-rspec (~> 2.20, < 2.21) simplecov! simplecov-cobertura (~> 2.1.0) - strscan! warning (~> 1) webmock (>= 3.10.0) webrick (>= 1.8.2) diff --git a/gemfiles/ruby_3.4_core_old.gemfile b/gemfiles/ruby_3.4_core_old.gemfile index 547f67430e4..7212c4c6b31 100644 --- a/gemfiles/ruby_3.4_core_old.gemfile +++ b/gemfiles/ruby_3.4_core_old.gemfile @@ -30,7 +30,6 @@ gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" -gem "strscan", git: "https://github.com/ruby/strscan", ref: "041b15df4ccc067deabd85fd489b2c15961d0e2f" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.8.2" diff --git a/gemfiles/ruby_3.4_core_old.gemfile.lock b/gemfiles/ruby_3.4_core_old.gemfile.lock index 9b0963022f9..84b9fb016eb 100644 --- a/gemfiles/ruby_3.4_core_old.gemfile.lock +++ b/gemfiles/ruby_3.4_core_old.gemfile.lock @@ -8,13 +8,6 @@ GIT simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) -GIT - remote: https://github.com/ruby/strscan - revision: 041b15df4ccc067deabd85fd489b2c15961d0e2f - ref: 041b15df4ccc067deabd85fd489b2c15961d0e2f - specs: - strscan (3.1.1) - PATH remote: .. specs: @@ -133,6 +126,7 @@ GEM simplecov (~> 0.19) simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) + strscan (3.1.1) unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) @@ -175,7 +169,6 @@ DEPENDENCIES rubocop-rspec (~> 2.20, < 2.21) simplecov! simplecov-cobertura (~> 2.1.0) - strscan! warning (~> 1) webmock (>= 3.10.0) webrick (>= 1.8.2) diff --git a/gemfiles/ruby_3.4_elasticsearch_7.gemfile b/gemfiles/ruby_3.4_elasticsearch_7.gemfile index ca0a57a3b86..0daf60388b5 100644 --- a/gemfiles/ruby_3.4_elasticsearch_7.gemfile +++ b/gemfiles/ruby_3.4_elasticsearch_7.gemfile @@ -30,7 +30,6 @@ gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" -gem "strscan", git: "https://github.com/ruby/strscan", ref: "041b15df4ccc067deabd85fd489b2c15961d0e2f" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.8.2" diff --git a/gemfiles/ruby_3.4_elasticsearch_7.gemfile.lock b/gemfiles/ruby_3.4_elasticsearch_7.gemfile.lock index 60fe66892ac..518ba2bd4ea 100644 --- a/gemfiles/ruby_3.4_elasticsearch_7.gemfile.lock +++ b/gemfiles/ruby_3.4_elasticsearch_7.gemfile.lock @@ -8,13 +8,6 @@ GIT simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) -GIT - remote: https://github.com/ruby/strscan - revision: 041b15df4ccc067deabd85fd489b2c15961d0e2f - ref: 041b15df4ccc067deabd85fd489b2c15961d0e2f - specs: - strscan (3.1.1) - PATH remote: .. specs: @@ -152,6 +145,7 @@ GEM simplecov (~> 0.19) simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) + strscan (3.1.1) unicode-display_width (2.5.0) uri (1.0.2) warning (1.4.0) @@ -196,7 +190,6 @@ DEPENDENCIES rubocop-rspec (~> 2.20, < 2.21) simplecov! simplecov-cobertura (~> 2.1.0) - strscan! warning (~> 1) webmock (>= 3.10.0) webrick (>= 1.8.2) diff --git a/gemfiles/ruby_3.4_elasticsearch_8.gemfile b/gemfiles/ruby_3.4_elasticsearch_8.gemfile index e206077209e..c72e5234d71 100644 --- a/gemfiles/ruby_3.4_elasticsearch_8.gemfile +++ b/gemfiles/ruby_3.4_elasticsearch_8.gemfile @@ -30,7 +30,6 @@ gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" -gem "strscan", git: "https://github.com/ruby/strscan", ref: "041b15df4ccc067deabd85fd489b2c15961d0e2f" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.8.2" diff --git a/gemfiles/ruby_3.4_elasticsearch_8.gemfile.lock b/gemfiles/ruby_3.4_elasticsearch_8.gemfile.lock index 5d6d0fc82f2..dd39d2036fb 100644 --- a/gemfiles/ruby_3.4_elasticsearch_8.gemfile.lock +++ b/gemfiles/ruby_3.4_elasticsearch_8.gemfile.lock @@ -8,13 +8,6 @@ GIT simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) -GIT - remote: https://github.com/ruby/strscan - revision: 041b15df4ccc067deabd85fd489b2c15961d0e2f - ref: 041b15df4ccc067deabd85fd489b2c15961d0e2f - specs: - strscan (3.1.1) - PATH remote: .. specs: @@ -151,6 +144,7 @@ GEM simplecov (~> 0.19) simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) + strscan (3.1.1) unicode-display_width (2.5.0) uri (1.0.2) warning (1.4.0) @@ -195,7 +189,6 @@ DEPENDENCIES rubocop-rspec (~> 2.20, < 2.21) simplecov! simplecov-cobertura (~> 2.1.0) - strscan! warning (~> 1) webmock (>= 3.10.0) webrick (>= 1.8.2) diff --git a/gemfiles/ruby_3.4_elasticsearch_latest.gemfile b/gemfiles/ruby_3.4_elasticsearch_latest.gemfile index 617eece269d..9ef8143ea77 100644 --- a/gemfiles/ruby_3.4_elasticsearch_latest.gemfile +++ b/gemfiles/ruby_3.4_elasticsearch_latest.gemfile @@ -30,7 +30,6 @@ gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" -gem "strscan", git: "https://github.com/ruby/strscan", ref: "041b15df4ccc067deabd85fd489b2c15961d0e2f" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.8.2" diff --git a/gemfiles/ruby_3.4_elasticsearch_latest.gemfile.lock b/gemfiles/ruby_3.4_elasticsearch_latest.gemfile.lock index 3fbae0ceaf6..a8efec5d19c 100644 --- a/gemfiles/ruby_3.4_elasticsearch_latest.gemfile.lock +++ b/gemfiles/ruby_3.4_elasticsearch_latest.gemfile.lock @@ -8,13 +8,6 @@ GIT simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) -GIT - remote: https://github.com/ruby/strscan - revision: 041b15df4ccc067deabd85fd489b2c15961d0e2f - ref: 041b15df4ccc067deabd85fd489b2c15961d0e2f - specs: - strscan (3.1.1) - PATH remote: .. specs: @@ -194,7 +187,6 @@ DEPENDENCIES rubocop-rspec (~> 2.20, < 2.21) simplecov! simplecov-cobertura (~> 2.1.0) - strscan! warning (~> 1) webmock (>= 3.10.0) webrick (>= 1.8.2) diff --git a/gemfiles/ruby_3.4_graphql_1.13.gemfile b/gemfiles/ruby_3.4_graphql_1.13.gemfile index bed7165479a..bfd55a09fa2 100644 --- a/gemfiles/ruby_3.4_graphql_1.13.gemfile +++ b/gemfiles/ruby_3.4_graphql_1.13.gemfile @@ -30,7 +30,6 @@ gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" -gem "strscan", git: "https://github.com/ruby/strscan", ref: "041b15df4ccc067deabd85fd489b2c15961d0e2f" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.8.2" diff --git a/gemfiles/ruby_3.4_graphql_1.13.gemfile.lock b/gemfiles/ruby_3.4_graphql_1.13.gemfile.lock index 59529d9c968..41bc5e725dc 100644 --- a/gemfiles/ruby_3.4_graphql_1.13.gemfile.lock +++ b/gemfiles/ruby_3.4_graphql_1.13.gemfile.lock @@ -8,13 +8,6 @@ GIT simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) -GIT - remote: https://github.com/ruby/strscan - revision: 041b15df4ccc067deabd85fd489b2c15961d0e2f - ref: 041b15df4ccc067deabd85fd489b2c15961d0e2f - specs: - strscan (3.1.1) - PATH remote: .. specs: @@ -272,6 +265,7 @@ GEM actionpack (>= 6.1) activesupport (>= 6.1) sprockets (>= 3.0.0) + strscan (3.1.1) thor (1.3.1) timeout (0.4.1) tzinfo (2.0.6) @@ -326,7 +320,6 @@ DEPENDENCIES simplecov! simplecov-cobertura (~> 2.1.0) sprockets (< 4) - strscan! warning (~> 1) webmock (>= 3.10.0) webrick (>= 1.8.2) diff --git a/gemfiles/ruby_3.4_graphql_2.0.gemfile b/gemfiles/ruby_3.4_graphql_2.0.gemfile index 86a7af994d9..fc6b049dd44 100644 --- a/gemfiles/ruby_3.4_graphql_2.0.gemfile +++ b/gemfiles/ruby_3.4_graphql_2.0.gemfile @@ -30,7 +30,6 @@ gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" -gem "strscan", git: "https://github.com/ruby/strscan", ref: "041b15df4ccc067deabd85fd489b2c15961d0e2f" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.8.2" diff --git a/gemfiles/ruby_3.4_graphql_2.0.gemfile.lock b/gemfiles/ruby_3.4_graphql_2.0.gemfile.lock index 6292fc3244c..ab0390ad394 100644 --- a/gemfiles/ruby_3.4_graphql_2.0.gemfile.lock +++ b/gemfiles/ruby_3.4_graphql_2.0.gemfile.lock @@ -8,13 +8,6 @@ GIT simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) -GIT - remote: https://github.com/ruby/strscan - revision: 041b15df4ccc067deabd85fd489b2c15961d0e2f - ref: 041b15df4ccc067deabd85fd489b2c15961d0e2f - specs: - strscan (3.1.1) - PATH remote: .. specs: @@ -272,6 +265,7 @@ GEM actionpack (>= 6.1) activesupport (>= 6.1) sprockets (>= 3.0.0) + strscan (3.1.1) thor (1.3.1) timeout (0.4.1) tzinfo (2.0.6) @@ -326,7 +320,6 @@ DEPENDENCIES simplecov! simplecov-cobertura (~> 2.1.0) sprockets (< 4) - strscan! warning (~> 1) webmock (>= 3.10.0) webrick (>= 1.8.2) diff --git a/gemfiles/ruby_3.4_graphql_2.1.gemfile b/gemfiles/ruby_3.4_graphql_2.1.gemfile index 7910e1feec2..f5fe40a7add 100644 --- a/gemfiles/ruby_3.4_graphql_2.1.gemfile +++ b/gemfiles/ruby_3.4_graphql_2.1.gemfile @@ -30,7 +30,6 @@ gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" -gem "strscan", git: "https://github.com/ruby/strscan", ref: "041b15df4ccc067deabd85fd489b2c15961d0e2f" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.8.2" diff --git a/gemfiles/ruby_3.4_graphql_2.1.gemfile.lock b/gemfiles/ruby_3.4_graphql_2.1.gemfile.lock index 5b7705eefdd..954ed12a904 100644 --- a/gemfiles/ruby_3.4_graphql_2.1.gemfile.lock +++ b/gemfiles/ruby_3.4_graphql_2.1.gemfile.lock @@ -8,13 +8,6 @@ GIT simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) -GIT - remote: https://github.com/ruby/strscan - revision: 041b15df4ccc067deabd85fd489b2c15961d0e2f - ref: 041b15df4ccc067deabd85fd489b2c15961d0e2f - specs: - strscan (3.1.1) - PATH remote: .. specs: @@ -272,6 +265,7 @@ GEM actionpack (>= 6.1) activesupport (>= 6.1) sprockets (>= 3.0.0) + strscan (3.1.1) thor (1.3.1) timeout (0.4.1) tzinfo (2.0.6) @@ -326,7 +320,6 @@ DEPENDENCIES simplecov! simplecov-cobertura (~> 2.1.0) sprockets (< 4) - strscan! warning (~> 1) webmock (>= 3.10.0) webrick (>= 1.8.2) diff --git a/gemfiles/ruby_3.4_graphql_2.2.gemfile b/gemfiles/ruby_3.4_graphql_2.2.gemfile index 10c6d255c33..2c7558e0998 100644 --- a/gemfiles/ruby_3.4_graphql_2.2.gemfile +++ b/gemfiles/ruby_3.4_graphql_2.2.gemfile @@ -30,7 +30,6 @@ gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" -gem "strscan", git: "https://github.com/ruby/strscan", ref: "041b15df4ccc067deabd85fd489b2c15961d0e2f" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.8.2" diff --git a/gemfiles/ruby_3.4_graphql_2.2.gemfile.lock b/gemfiles/ruby_3.4_graphql_2.2.gemfile.lock index fba40f152eb..abbb5921da2 100644 --- a/gemfiles/ruby_3.4_graphql_2.2.gemfile.lock +++ b/gemfiles/ruby_3.4_graphql_2.2.gemfile.lock @@ -8,13 +8,6 @@ GIT simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) -GIT - remote: https://github.com/ruby/strscan - revision: 041b15df4ccc067deabd85fd489b2c15961d0e2f - ref: 041b15df4ccc067deabd85fd489b2c15961d0e2f - specs: - strscan (3.1.1) - PATH remote: .. specs: @@ -272,6 +265,7 @@ GEM actionpack (>= 6.1) activesupport (>= 6.1) sprockets (>= 3.0.0) + strscan (3.1.1) thor (1.3.1) timeout (0.4.1) tzinfo (2.0.6) @@ -326,7 +320,6 @@ DEPENDENCIES simplecov! simplecov-cobertura (~> 2.1.0) sprockets (< 4) - strscan! warning (~> 1) webmock (>= 3.10.0) webrick (>= 1.8.2) diff --git a/gemfiles/ruby_3.4_graphql_2.3.gemfile b/gemfiles/ruby_3.4_graphql_2.3.gemfile index f775428fe71..85c824645e9 100644 --- a/gemfiles/ruby_3.4_graphql_2.3.gemfile +++ b/gemfiles/ruby_3.4_graphql_2.3.gemfile @@ -30,7 +30,6 @@ gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" -gem "strscan", git: "https://github.com/ruby/strscan", ref: "041b15df4ccc067deabd85fd489b2c15961d0e2f" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.8.2" diff --git a/gemfiles/ruby_3.4_graphql_2.3.gemfile.lock b/gemfiles/ruby_3.4_graphql_2.3.gemfile.lock index ab9dd543d85..9fd62652b3d 100644 --- a/gemfiles/ruby_3.4_graphql_2.3.gemfile.lock +++ b/gemfiles/ruby_3.4_graphql_2.3.gemfile.lock @@ -8,13 +8,6 @@ GIT simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) -GIT - remote: https://github.com/ruby/strscan - revision: 041b15df4ccc067deabd85fd489b2c15961d0e2f - ref: 041b15df4ccc067deabd85fd489b2c15961d0e2f - specs: - strscan (3.1.1) - PATH remote: .. specs: @@ -272,6 +265,7 @@ GEM actionpack (>= 6.1) activesupport (>= 6.1) sprockets (>= 3.0.0) + strscan (3.1.1) thor (1.3.1) timeout (0.4.1) tzinfo (2.0.6) @@ -326,7 +320,6 @@ DEPENDENCIES simplecov! simplecov-cobertura (~> 2.1.0) sprockets (< 4) - strscan! warning (~> 1) webmock (>= 3.10.0) webrick (>= 1.8.2) diff --git a/gemfiles/ruby_3.4_http.gemfile b/gemfiles/ruby_3.4_http.gemfile index 9013f09cfca..823cd07ba5a 100644 --- a/gemfiles/ruby_3.4_http.gemfile +++ b/gemfiles/ruby_3.4_http.gemfile @@ -30,7 +30,6 @@ gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" -gem "strscan", git: "https://github.com/ruby/strscan", ref: "041b15df4ccc067deabd85fd489b2c15961d0e2f" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.8.2" diff --git a/gemfiles/ruby_3.4_http.gemfile.lock b/gemfiles/ruby_3.4_http.gemfile.lock index fb8a0aef4cc..e3ccb3ab6a6 100644 --- a/gemfiles/ruby_3.4_http.gemfile.lock +++ b/gemfiles/ruby_3.4_http.gemfile.lock @@ -8,13 +8,6 @@ GIT simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) -GIT - remote: https://github.com/ruby/strscan - revision: 041b15df4ccc067deabd85fd489b2c15961d0e2f - ref: 041b15df4ccc067deabd85fd489b2c15961d0e2f - specs: - strscan (3.1.1) - PATH remote: .. specs: @@ -169,6 +162,7 @@ GEM simplecov (~> 0.19) simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) + strscan (3.1.1) typhoeus (1.4.1) ethon (>= 0.9.0) unicode-display_width (2.5.0) @@ -220,7 +214,6 @@ DEPENDENCIES rubocop-rspec (~> 2.20, < 2.21) simplecov! simplecov-cobertura (~> 2.1.0) - strscan! typhoeus warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.4_opensearch_2.gemfile b/gemfiles/ruby_3.4_opensearch_2.gemfile index 8487af6f277..b9f5dd06ab1 100644 --- a/gemfiles/ruby_3.4_opensearch_2.gemfile +++ b/gemfiles/ruby_3.4_opensearch_2.gemfile @@ -30,7 +30,6 @@ gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" -gem "strscan", git: "https://github.com/ruby/strscan", ref: "041b15df4ccc067deabd85fd489b2c15961d0e2f" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.8.2" diff --git a/gemfiles/ruby_3.4_opensearch_2.gemfile.lock b/gemfiles/ruby_3.4_opensearch_2.gemfile.lock index 54ade015841..fbe94e88416 100644 --- a/gemfiles/ruby_3.4_opensearch_2.gemfile.lock +++ b/gemfiles/ruby_3.4_opensearch_2.gemfile.lock @@ -8,13 +8,6 @@ GIT simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) -GIT - remote: https://github.com/ruby/strscan - revision: 041b15df4ccc067deabd85fd489b2c15961d0e2f - ref: 041b15df4ccc067deabd85fd489b2c15961d0e2f - specs: - strscan (3.1.1) - PATH remote: .. specs: @@ -151,6 +144,7 @@ GEM simplecov (~> 0.19) simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) + strscan (3.1.1) unicode-display_width (2.5.0) uri (1.0.2) warning (1.4.0) @@ -195,7 +189,6 @@ DEPENDENCIES rubocop-rspec (~> 2.20, < 2.21) simplecov! simplecov-cobertura (~> 2.1.0) - strscan! warning (~> 1) webmock (>= 3.10.0) webrick (>= 1.8.2) diff --git a/gemfiles/ruby_3.4_opensearch_3.gemfile b/gemfiles/ruby_3.4_opensearch_3.gemfile index 1a928a4a7c8..c6b73fbb534 100644 --- a/gemfiles/ruby_3.4_opensearch_3.gemfile +++ b/gemfiles/ruby_3.4_opensearch_3.gemfile @@ -30,7 +30,6 @@ gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" -gem "strscan", git: "https://github.com/ruby/strscan", ref: "041b15df4ccc067deabd85fd489b2c15961d0e2f" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.8.2" diff --git a/gemfiles/ruby_3.4_opensearch_3.gemfile.lock b/gemfiles/ruby_3.4_opensearch_3.gemfile.lock index 8475eadd9b9..bd49940dd79 100644 --- a/gemfiles/ruby_3.4_opensearch_3.gemfile.lock +++ b/gemfiles/ruby_3.4_opensearch_3.gemfile.lock @@ -8,13 +8,6 @@ GIT simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) -GIT - remote: https://github.com/ruby/strscan - revision: 041b15df4ccc067deabd85fd489b2c15961d0e2f - ref: 041b15df4ccc067deabd85fd489b2c15961d0e2f - specs: - strscan (3.1.1) - PATH remote: .. specs: @@ -146,6 +139,7 @@ GEM simplecov (~> 0.19) simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) + strscan (3.1.1) unicode-display_width (2.5.0) uri (1.0.2) warning (1.4.0) @@ -190,7 +184,6 @@ DEPENDENCIES rubocop-rspec (~> 2.20, < 2.21) simplecov! simplecov-cobertura (~> 2.1.0) - strscan! warning (~> 1) webmock (>= 3.10.0) webrick (>= 1.8.2) diff --git a/gemfiles/ruby_3.4_opensearch_latest.gemfile b/gemfiles/ruby_3.4_opensearch_latest.gemfile index 4bdc9cd1ec5..d7ee68961b8 100644 --- a/gemfiles/ruby_3.4_opensearch_latest.gemfile +++ b/gemfiles/ruby_3.4_opensearch_latest.gemfile @@ -30,7 +30,6 @@ gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" -gem "strscan", git: "https://github.com/ruby/strscan", ref: "041b15df4ccc067deabd85fd489b2c15961d0e2f" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.8.2" diff --git a/gemfiles/ruby_3.4_opensearch_latest.gemfile.lock b/gemfiles/ruby_3.4_opensearch_latest.gemfile.lock index dd0d9e7320d..b5252634c3f 100644 --- a/gemfiles/ruby_3.4_opensearch_latest.gemfile.lock +++ b/gemfiles/ruby_3.4_opensearch_latest.gemfile.lock @@ -8,13 +8,6 @@ GIT simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) -GIT - remote: https://github.com/ruby/strscan - revision: 041b15df4ccc067deabd85fd489b2c15961d0e2f - ref: 041b15df4ccc067deabd85fd489b2c15961d0e2f - specs: - strscan (3.1.1) - PATH remote: .. specs: @@ -189,7 +182,6 @@ DEPENDENCIES rubocop-rspec (~> 2.20, < 2.21) simplecov! simplecov-cobertura (~> 2.1.0) - strscan! warning (~> 1) webmock (>= 3.10.0) webrick (>= 1.8.2) diff --git a/gemfiles/ruby_3.4_opentelemetry.gemfile b/gemfiles/ruby_3.4_opentelemetry.gemfile index 13f8c87ba04..2b1ee29481c 100644 --- a/gemfiles/ruby_3.4_opentelemetry.gemfile +++ b/gemfiles/ruby_3.4_opentelemetry.gemfile @@ -30,7 +30,6 @@ gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" -gem "strscan", git: "https://github.com/ruby/strscan", ref: "041b15df4ccc067deabd85fd489b2c15961d0e2f" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.8.2" diff --git a/gemfiles/ruby_3.4_opentelemetry.gemfile.lock b/gemfiles/ruby_3.4_opentelemetry.gemfile.lock index b3ab9d1ec70..c8aef7ddd35 100644 --- a/gemfiles/ruby_3.4_opentelemetry.gemfile.lock +++ b/gemfiles/ruby_3.4_opentelemetry.gemfile.lock @@ -8,13 +8,6 @@ GIT simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) -GIT - remote: https://github.com/ruby/strscan - revision: 041b15df4ccc067deabd85fd489b2c15961d0e2f - ref: 041b15df4ccc067deabd85fd489b2c15961d0e2f - specs: - strscan (3.1.1) - PATH remote: .. specs: @@ -145,6 +138,7 @@ GEM simplecov (~> 0.19) simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) + strscan (3.1.1) unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) @@ -188,7 +182,6 @@ DEPENDENCIES rubocop-rspec (~> 2.20, < 2.21) simplecov! simplecov-cobertura (~> 2.1.0) - strscan! warning (~> 1) webmock (>= 3.10.0) webrick (>= 1.8.2) diff --git a/gemfiles/ruby_3.4_opentelemetry_otlp.gemfile b/gemfiles/ruby_3.4_opentelemetry_otlp.gemfile index dcef28884e0..cd64e4e680b 100644 --- a/gemfiles/ruby_3.4_opentelemetry_otlp.gemfile +++ b/gemfiles/ruby_3.4_opentelemetry_otlp.gemfile @@ -30,7 +30,6 @@ gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" -gem "strscan", git: "https://github.com/ruby/strscan", ref: "041b15df4ccc067deabd85fd489b2c15961d0e2f" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.8.2" diff --git a/gemfiles/ruby_3.4_opentelemetry_otlp.gemfile.lock b/gemfiles/ruby_3.4_opentelemetry_otlp.gemfile.lock index ffabe185890..78db044daa4 100644 --- a/gemfiles/ruby_3.4_opentelemetry_otlp.gemfile.lock +++ b/gemfiles/ruby_3.4_opentelemetry_otlp.gemfile.lock @@ -8,13 +8,6 @@ GIT simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) -GIT - remote: https://github.com/ruby/strscan - revision: 041b15df4ccc067deabd85fd489b2c15961d0e2f - ref: 041b15df4ccc067deabd85fd489b2c15961d0e2f - specs: - strscan (3.1.1) - PATH remote: .. specs: @@ -197,7 +190,6 @@ DEPENDENCIES rubocop-rspec (~> 2.20, < 2.21) simplecov! simplecov-cobertura (~> 2.1.0) - strscan! warning (~> 1) webmock (>= 3.10.0) webrick (>= 1.8.2) diff --git a/gemfiles/ruby_3.4_rack_2.gemfile b/gemfiles/ruby_3.4_rack_2.gemfile index 1471d0b6b31..f9b1fda874c 100644 --- a/gemfiles/ruby_3.4_rack_2.gemfile +++ b/gemfiles/ruby_3.4_rack_2.gemfile @@ -30,7 +30,6 @@ gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" -gem "strscan", git: "https://github.com/ruby/strscan", ref: "041b15df4ccc067deabd85fd489b2c15961d0e2f" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.8.2" diff --git a/gemfiles/ruby_3.4_rack_2.gemfile.lock b/gemfiles/ruby_3.4_rack_2.gemfile.lock index 7418d027cce..bcfa63671f1 100644 --- a/gemfiles/ruby_3.4_rack_2.gemfile.lock +++ b/gemfiles/ruby_3.4_rack_2.gemfile.lock @@ -8,13 +8,6 @@ GIT simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) -GIT - remote: https://github.com/ruby/strscan - revision: 041b15df4ccc067deabd85fd489b2c15961d0e2f - ref: 041b15df4ccc067deabd85fd489b2c15961d0e2f - specs: - strscan (3.1.1) - PATH remote: .. specs: @@ -138,6 +131,7 @@ GEM simplecov (~> 0.19) simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) + strscan (3.1.1) unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) @@ -183,7 +177,6 @@ DEPENDENCIES rubocop-rspec (~> 2.20, < 2.21) simplecov! simplecov-cobertura (~> 2.1.0) - strscan! warning (~> 1) webmock (>= 3.10.0) webrick (>= 1.8.2) diff --git a/gemfiles/ruby_3.4_rack_3.gemfile b/gemfiles/ruby_3.4_rack_3.gemfile index 7c8b1e43db9..6483683c9cb 100644 --- a/gemfiles/ruby_3.4_rack_3.gemfile +++ b/gemfiles/ruby_3.4_rack_3.gemfile @@ -30,7 +30,6 @@ gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" -gem "strscan", git: "https://github.com/ruby/strscan", ref: "041b15df4ccc067deabd85fd489b2c15961d0e2f" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.8.2" diff --git a/gemfiles/ruby_3.4_rack_3.gemfile.lock b/gemfiles/ruby_3.4_rack_3.gemfile.lock index 56041730327..9af02fb4158 100644 --- a/gemfiles/ruby_3.4_rack_3.gemfile.lock +++ b/gemfiles/ruby_3.4_rack_3.gemfile.lock @@ -8,13 +8,6 @@ GIT simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) -GIT - remote: https://github.com/ruby/strscan - revision: 041b15df4ccc067deabd85fd489b2c15961d0e2f - ref: 041b15df4ccc067deabd85fd489b2c15961d0e2f - specs: - strscan (3.1.1) - PATH remote: .. specs: @@ -138,6 +131,7 @@ GEM simplecov (~> 0.19) simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) + strscan (3.1.1) unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) @@ -183,7 +177,6 @@ DEPENDENCIES rubocop-rspec (~> 2.20, < 2.21) simplecov! simplecov-cobertura (~> 2.1.0) - strscan! warning (~> 1) webmock (>= 3.10.0) webrick (>= 1.8.2) diff --git a/gemfiles/ruby_3.4_rack_latest.gemfile b/gemfiles/ruby_3.4_rack_latest.gemfile index 9f705bee167..675b9e26fd3 100644 --- a/gemfiles/ruby_3.4_rack_latest.gemfile +++ b/gemfiles/ruby_3.4_rack_latest.gemfile @@ -30,7 +30,6 @@ gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" -gem "strscan", git: "https://github.com/ruby/strscan", ref: "041b15df4ccc067deabd85fd489b2c15961d0e2f" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.8.2" diff --git a/gemfiles/ruby_3.4_rack_latest.gemfile.lock b/gemfiles/ruby_3.4_rack_latest.gemfile.lock index 4ff59f8edd1..ddbe1a2a65e 100644 --- a/gemfiles/ruby_3.4_rack_latest.gemfile.lock +++ b/gemfiles/ruby_3.4_rack_latest.gemfile.lock @@ -8,13 +8,6 @@ GIT simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) -GIT - remote: https://github.com/ruby/strscan - revision: 041b15df4ccc067deabd85fd489b2c15961d0e2f - ref: 041b15df4ccc067deabd85fd489b2c15961d0e2f - specs: - strscan (3.1.1) - PATH remote: .. specs: @@ -182,7 +175,6 @@ DEPENDENCIES rubocop-rspec (~> 2.20, < 2.21) simplecov! simplecov-cobertura (~> 2.1.0) - strscan! warning (~> 1) webmock (>= 3.10.0) webrick (>= 1.8.2) diff --git a/gemfiles/ruby_3.4_rails61_mysql2.gemfile b/gemfiles/ruby_3.4_rails61_mysql2.gemfile index 88849759a64..b0259c8f84d 100644 --- a/gemfiles/ruby_3.4_rails61_mysql2.gemfile +++ b/gemfiles/ruby_3.4_rails61_mysql2.gemfile @@ -30,7 +30,6 @@ gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" -gem "strscan", git: "https://github.com/ruby/strscan", ref: "041b15df4ccc067deabd85fd489b2c15961d0e2f" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.8.2" diff --git a/gemfiles/ruby_3.4_rails61_mysql2.gemfile.lock b/gemfiles/ruby_3.4_rails61_mysql2.gemfile.lock index a2c1144b087..7f4dcac9b39 100644 --- a/gemfiles/ruby_3.4_rails61_mysql2.gemfile.lock +++ b/gemfiles/ruby_3.4_rails61_mysql2.gemfile.lock @@ -8,13 +8,6 @@ GIT simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) -GIT - remote: https://github.com/ruby/strscan - revision: 041b15df4ccc067deabd85fd489b2c15961d0e2f - ref: 041b15df4ccc067deabd85fd489b2c15961d0e2f - specs: - strscan (3.1.1) - PATH remote: .. specs: @@ -271,6 +264,7 @@ GEM actionpack (>= 6.1) activesupport (>= 6.1) sprockets (>= 3.0.0) + strscan (3.1.1) thor (1.3.1) timeout (0.4.1) tzinfo (2.0.6) @@ -326,7 +320,6 @@ DEPENDENCIES simplecov! simplecov-cobertura (~> 2.1.0) sprockets (< 4) - strscan! warning (~> 1) webmock (>= 3.10.0) webrick (>= 1.8.2) diff --git a/gemfiles/ruby_3.4_rails61_postgres.gemfile b/gemfiles/ruby_3.4_rails61_postgres.gemfile index 017c1a501db..b7792f10cbc 100644 --- a/gemfiles/ruby_3.4_rails61_postgres.gemfile +++ b/gemfiles/ruby_3.4_rails61_postgres.gemfile @@ -30,7 +30,6 @@ gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" -gem "strscan", git: "https://github.com/ruby/strscan", ref: "041b15df4ccc067deabd85fd489b2c15961d0e2f" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.8.2" diff --git a/gemfiles/ruby_3.4_rails61_postgres.gemfile.lock b/gemfiles/ruby_3.4_rails61_postgres.gemfile.lock index 9e54602c501..d6472b2a812 100644 --- a/gemfiles/ruby_3.4_rails61_postgres.gemfile.lock +++ b/gemfiles/ruby_3.4_rails61_postgres.gemfile.lock @@ -8,13 +8,6 @@ GIT simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) -GIT - remote: https://github.com/ruby/strscan - revision: 041b15df4ccc067deabd85fd489b2c15961d0e2f - ref: 041b15df4ccc067deabd85fd489b2c15961d0e2f - specs: - strscan (3.1.1) - PATH remote: .. specs: @@ -271,6 +264,7 @@ GEM actionpack (>= 6.1) activesupport (>= 6.1) sprockets (>= 3.0.0) + strscan (3.1.1) thor (1.3.1) timeout (0.4.1) tzinfo (2.0.6) @@ -326,7 +320,6 @@ DEPENDENCIES simplecov! simplecov-cobertura (~> 2.1.0) sprockets (< 4) - strscan! warning (~> 1) webmock (>= 3.10.0) webrick (>= 1.8.2) diff --git a/gemfiles/ruby_3.4_rails61_postgres_redis.gemfile b/gemfiles/ruby_3.4_rails61_postgres_redis.gemfile index 5227ff1a053..952e9a6f865 100644 --- a/gemfiles/ruby_3.4_rails61_postgres_redis.gemfile +++ b/gemfiles/ruby_3.4_rails61_postgres_redis.gemfile @@ -30,7 +30,6 @@ gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" -gem "strscan", git: "https://github.com/ruby/strscan", ref: "041b15df4ccc067deabd85fd489b2c15961d0e2f" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.8.2" diff --git a/gemfiles/ruby_3.4_rails61_postgres_redis.gemfile.lock b/gemfiles/ruby_3.4_rails61_postgres_redis.gemfile.lock index fa5d9163b5a..853fe2afe0b 100644 --- a/gemfiles/ruby_3.4_rails61_postgres_redis.gemfile.lock +++ b/gemfiles/ruby_3.4_rails61_postgres_redis.gemfile.lock @@ -8,13 +8,6 @@ GIT simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) -GIT - remote: https://github.com/ruby/strscan - revision: 041b15df4ccc067deabd85fd489b2c15961d0e2f - ref: 041b15df4ccc067deabd85fd489b2c15961d0e2f - specs: - strscan (3.1.1) - PATH remote: .. specs: @@ -272,6 +265,7 @@ GEM actionpack (>= 6.1) activesupport (>= 6.1) sprockets (>= 3.0.0) + strscan (3.1.1) thor (1.3.1) timeout (0.4.1) tzinfo (2.0.6) @@ -328,7 +322,6 @@ DEPENDENCIES simplecov! simplecov-cobertura (~> 2.1.0) sprockets (< 4) - strscan! warning (~> 1) webmock (>= 3.10.0) webrick (>= 1.8.2) diff --git a/gemfiles/ruby_3.4_rails61_postgres_sidekiq.gemfile b/gemfiles/ruby_3.4_rails61_postgres_sidekiq.gemfile index e36430d98c7..69cf36345bc 100644 --- a/gemfiles/ruby_3.4_rails61_postgres_sidekiq.gemfile +++ b/gemfiles/ruby_3.4_rails61_postgres_sidekiq.gemfile @@ -30,7 +30,6 @@ gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" -gem "strscan", git: "https://github.com/ruby/strscan", ref: "041b15df4ccc067deabd85fd489b2c15961d0e2f" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.8.2" diff --git a/gemfiles/ruby_3.4_rails61_postgres_sidekiq.gemfile.lock b/gemfiles/ruby_3.4_rails61_postgres_sidekiq.gemfile.lock index 083f02824e6..a3795dddbcb 100644 --- a/gemfiles/ruby_3.4_rails61_postgres_sidekiq.gemfile.lock +++ b/gemfiles/ruby_3.4_rails61_postgres_sidekiq.gemfile.lock @@ -8,13 +8,6 @@ GIT simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) -GIT - remote: https://github.com/ruby/strscan - revision: 041b15df4ccc067deabd85fd489b2c15961d0e2f - ref: 041b15df4ccc067deabd85fd489b2c15961d0e2f - specs: - strscan (3.1.1) - PATH remote: .. specs: @@ -285,6 +278,7 @@ GEM actionpack (>= 6.1) activesupport (>= 6.1) sprockets (>= 3.0.0) + strscan (3.1.1) thor (1.3.1) timeout (0.4.1) tzinfo (2.0.6) @@ -342,7 +336,6 @@ DEPENDENCIES simplecov! simplecov-cobertura (~> 2.1.0) sprockets (< 4) - strscan! warning (~> 1) webmock (>= 3.10.0) webrick (>= 1.8.2) diff --git a/gemfiles/ruby_3.4_rails61_semantic_logger.gemfile b/gemfiles/ruby_3.4_rails61_semantic_logger.gemfile index eb3d09a2613..6842d8876ea 100644 --- a/gemfiles/ruby_3.4_rails61_semantic_logger.gemfile +++ b/gemfiles/ruby_3.4_rails61_semantic_logger.gemfile @@ -30,7 +30,6 @@ gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" -gem "strscan", git: "https://github.com/ruby/strscan", ref: "041b15df4ccc067deabd85fd489b2c15961d0e2f" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.8.2" diff --git a/gemfiles/ruby_3.4_rails61_semantic_logger.gemfile.lock b/gemfiles/ruby_3.4_rails61_semantic_logger.gemfile.lock index 739d739d381..29776284dd4 100644 --- a/gemfiles/ruby_3.4_rails61_semantic_logger.gemfile.lock +++ b/gemfiles/ruby_3.4_rails61_semantic_logger.gemfile.lock @@ -8,13 +8,6 @@ GIT simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) -GIT - remote: https://github.com/ruby/strscan - revision: 041b15df4ccc067deabd85fd489b2c15961d0e2f - ref: 041b15df4ccc067deabd85fd489b2c15961d0e2f - specs: - strscan (3.1.1) - PATH remote: .. specs: @@ -270,6 +263,7 @@ GEM actionpack (>= 6.1) activesupport (>= 6.1) sprockets (>= 3.0.0) + strscan (3.1.1) thor (1.3.1) timeout (0.4.1) tzinfo (2.0.6) @@ -325,7 +319,6 @@ DEPENDENCIES simplecov! simplecov-cobertura (~> 2.1.0) sprockets (< 4) - strscan! warning (~> 1) webmock (>= 3.10.0) webrick (>= 1.8.2) diff --git a/gemfiles/ruby_3.4_rails61_trilogy.gemfile b/gemfiles/ruby_3.4_rails61_trilogy.gemfile index ebb99bceb42..f5aa9ddf483 100644 --- a/gemfiles/ruby_3.4_rails61_trilogy.gemfile +++ b/gemfiles/ruby_3.4_rails61_trilogy.gemfile @@ -30,7 +30,6 @@ gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" -gem "strscan", git: "https://github.com/ruby/strscan", ref: "041b15df4ccc067deabd85fd489b2c15961d0e2f" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.8.2" diff --git a/gemfiles/ruby_3.4_rails61_trilogy.gemfile.lock b/gemfiles/ruby_3.4_rails61_trilogy.gemfile.lock index 0f3d03e4eb8..3417f522d57 100644 --- a/gemfiles/ruby_3.4_rails61_trilogy.gemfile.lock +++ b/gemfiles/ruby_3.4_rails61_trilogy.gemfile.lock @@ -8,13 +8,6 @@ GIT simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) -GIT - remote: https://github.com/ruby/strscan - revision: 041b15df4ccc067deabd85fd489b2c15961d0e2f - ref: 041b15df4ccc067deabd85fd489b2c15961d0e2f - specs: - strscan (3.1.1) - PATH remote: .. specs: @@ -273,6 +266,7 @@ GEM actionpack (>= 6.1) activesupport (>= 6.1) sprockets (>= 3.0.0) + strscan (3.1.1) thor (1.3.1) timeout (0.4.1) trilogy (2.8.1) @@ -329,7 +323,6 @@ DEPENDENCIES simplecov! simplecov-cobertura (~> 2.1.0) sprockets (< 4) - strscan! trilogy warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.4_rails7.gemfile b/gemfiles/ruby_3.4_rails7.gemfile index ce59672af11..182edfe9da3 100644 --- a/gemfiles/ruby_3.4_rails7.gemfile +++ b/gemfiles/ruby_3.4_rails7.gemfile @@ -30,7 +30,6 @@ gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" -gem "strscan", git: "https://github.com/ruby/strscan", ref: "041b15df4ccc067deabd85fd489b2c15961d0e2f" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.8.2" diff --git a/gemfiles/ruby_3.4_rails7.gemfile.lock b/gemfiles/ruby_3.4_rails7.gemfile.lock index cadeb0f339a..23e47c46e81 100644 --- a/gemfiles/ruby_3.4_rails7.gemfile.lock +++ b/gemfiles/ruby_3.4_rails7.gemfile.lock @@ -8,13 +8,6 @@ GIT simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) -GIT - remote: https://github.com/ruby/strscan - revision: 041b15df4ccc067deabd85fd489b2c15961d0e2f - ref: 041b15df4ccc067deabd85fd489b2c15961d0e2f - specs: - strscan (3.1.1) - PATH remote: .. specs: @@ -264,6 +257,7 @@ GEM simplecov (~> 0.19) simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) + strscan (3.1.1) thor (1.3.1) timeout (0.4.1) tzinfo (2.0.6) @@ -316,7 +310,6 @@ DEPENDENCIES rubocop-rspec (~> 2.20, < 2.21) simplecov! simplecov-cobertura (~> 2.1.0) - strscan! warning (~> 1) webmock (>= 3.10.0) webrick (>= 1.8.2) diff --git a/gemfiles/ruby_3.4_rails71.gemfile b/gemfiles/ruby_3.4_rails71.gemfile index d62f469a994..a3c36b665b3 100644 --- a/gemfiles/ruby_3.4_rails71.gemfile +++ b/gemfiles/ruby_3.4_rails71.gemfile @@ -30,7 +30,6 @@ gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" -gem "strscan", git: "https://github.com/ruby/strscan", ref: "041b15df4ccc067deabd85fd489b2c15961d0e2f" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.8.2" diff --git a/gemfiles/ruby_3.4_rails71.gemfile.lock b/gemfiles/ruby_3.4_rails71.gemfile.lock index 1176a752d43..3bf31d83ce7 100644 --- a/gemfiles/ruby_3.4_rails71.gemfile.lock +++ b/gemfiles/ruby_3.4_rails71.gemfile.lock @@ -8,13 +8,6 @@ GIT simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) -GIT - remote: https://github.com/ruby/strscan - revision: 041b15df4ccc067deabd85fd489b2c15961d0e2f - ref: 041b15df4ccc067deabd85fd489b2c15961d0e2f - specs: - strscan (3.1.1) - PATH remote: .. specs: @@ -292,6 +285,7 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) stringio (3.1.1) + strscan (3.1.1) thor (1.3.1) timeout (0.4.1) tzinfo (2.0.6) @@ -344,7 +338,6 @@ DEPENDENCIES rubocop-rspec (~> 2.20, < 2.21) simplecov! simplecov-cobertura (~> 2.1.0) - strscan! warning (~> 1) webmock (>= 3.10.0) webrick (>= 1.8.2) diff --git a/gemfiles/ruby_3.4_rails_old_redis.gemfile b/gemfiles/ruby_3.4_rails_old_redis.gemfile index 3b67a2fe8da..27a681c7644 100644 --- a/gemfiles/ruby_3.4_rails_old_redis.gemfile +++ b/gemfiles/ruby_3.4_rails_old_redis.gemfile @@ -30,7 +30,6 @@ gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" -gem "strscan", git: "https://github.com/ruby/strscan", ref: "041b15df4ccc067deabd85fd489b2c15961d0e2f" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.8.2" diff --git a/gemfiles/ruby_3.4_redis_3.gemfile b/gemfiles/ruby_3.4_redis_3.gemfile index 58da84c1f65..c12e260ce06 100644 --- a/gemfiles/ruby_3.4_redis_3.gemfile +++ b/gemfiles/ruby_3.4_redis_3.gemfile @@ -30,7 +30,6 @@ gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" -gem "strscan", git: "https://github.com/ruby/strscan", ref: "041b15df4ccc067deabd85fd489b2c15961d0e2f" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.8.2" diff --git a/gemfiles/ruby_3.4_redis_3.gemfile.lock b/gemfiles/ruby_3.4_redis_3.gemfile.lock index a3996881bdc..379c806e722 100644 --- a/gemfiles/ruby_3.4_redis_3.gemfile.lock +++ b/gemfiles/ruby_3.4_redis_3.gemfile.lock @@ -8,13 +8,6 @@ GIT simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) -GIT - remote: https://github.com/ruby/strscan - revision: 041b15df4ccc067deabd85fd489b2c15961d0e2f - ref: 041b15df4ccc067deabd85fd489b2c15961d0e2f - specs: - strscan (3.1.1) - PATH remote: .. specs: @@ -134,6 +127,7 @@ GEM simplecov (~> 0.19) simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) + strscan (3.1.1) unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) @@ -177,7 +171,6 @@ DEPENDENCIES rubocop-rspec (~> 2.20, < 2.21) simplecov! simplecov-cobertura (~> 2.1.0) - strscan! warning (~> 1) webmock (>= 3.10.0) webrick (>= 1.8.2) diff --git a/gemfiles/ruby_3.4_redis_4.gemfile b/gemfiles/ruby_3.4_redis_4.gemfile index 9abbb22f0f9..4720c68ece2 100644 --- a/gemfiles/ruby_3.4_redis_4.gemfile +++ b/gemfiles/ruby_3.4_redis_4.gemfile @@ -30,7 +30,6 @@ gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" -gem "strscan", git: "https://github.com/ruby/strscan", ref: "041b15df4ccc067deabd85fd489b2c15961d0e2f" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.8.2" diff --git a/gemfiles/ruby_3.4_redis_4.gemfile.lock b/gemfiles/ruby_3.4_redis_4.gemfile.lock index e64ed262a78..8786579f576 100644 --- a/gemfiles/ruby_3.4_redis_4.gemfile.lock +++ b/gemfiles/ruby_3.4_redis_4.gemfile.lock @@ -8,13 +8,6 @@ GIT simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) -GIT - remote: https://github.com/ruby/strscan - revision: 041b15df4ccc067deabd85fd489b2c15961d0e2f - ref: 041b15df4ccc067deabd85fd489b2c15961d0e2f - specs: - strscan (3.1.1) - PATH remote: .. specs: @@ -134,6 +127,7 @@ GEM simplecov (~> 0.19) simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) + strscan (3.1.1) unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) @@ -177,7 +171,6 @@ DEPENDENCIES rubocop-rspec (~> 2.20, < 2.21) simplecov! simplecov-cobertura (~> 2.1.0) - strscan! warning (~> 1) webmock (>= 3.10.0) webrick (>= 1.8.2) diff --git a/gemfiles/ruby_3.4_redis_5.gemfile b/gemfiles/ruby_3.4_redis_5.gemfile index d7d32251619..a68bb653459 100644 --- a/gemfiles/ruby_3.4_redis_5.gemfile +++ b/gemfiles/ruby_3.4_redis_5.gemfile @@ -30,7 +30,6 @@ gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" -gem "strscan", git: "https://github.com/ruby/strscan", ref: "041b15df4ccc067deabd85fd489b2c15961d0e2f" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.8.2" diff --git a/gemfiles/ruby_3.4_redis_5.gemfile.lock b/gemfiles/ruby_3.4_redis_5.gemfile.lock index e372400cdf2..1d0286608d0 100644 --- a/gemfiles/ruby_3.4_redis_5.gemfile.lock +++ b/gemfiles/ruby_3.4_redis_5.gemfile.lock @@ -8,13 +8,6 @@ GIT simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) -GIT - remote: https://github.com/ruby/strscan - revision: 041b15df4ccc067deabd85fd489b2c15961d0e2f - ref: 041b15df4ccc067deabd85fd489b2c15961d0e2f - specs: - strscan (3.1.1) - PATH remote: .. specs: @@ -138,6 +131,7 @@ GEM simplecov (~> 0.19) simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) + strscan (3.1.1) unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) @@ -181,7 +175,6 @@ DEPENDENCIES rubocop-rspec (~> 2.20, < 2.21) simplecov! simplecov-cobertura (~> 2.1.0) - strscan! warning (~> 1) webmock (>= 3.10.0) webrick (>= 1.8.2) diff --git a/gemfiles/ruby_3.4_relational_db.gemfile b/gemfiles/ruby_3.4_relational_db.gemfile index 1edd7a29e13..15035f00277 100644 --- a/gemfiles/ruby_3.4_relational_db.gemfile +++ b/gemfiles/ruby_3.4_relational_db.gemfile @@ -30,7 +30,6 @@ gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" -gem "strscan", git: "https://github.com/ruby/strscan", ref: "041b15df4ccc067deabd85fd489b2c15961d0e2f" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.8.2" diff --git a/gemfiles/ruby_3.4_relational_db.gemfile.lock b/gemfiles/ruby_3.4_relational_db.gemfile.lock index 3afe5e5e690..0f9c10999b0 100644 --- a/gemfiles/ruby_3.4_relational_db.gemfile.lock +++ b/gemfiles/ruby_3.4_relational_db.gemfile.lock @@ -8,13 +8,6 @@ GIT simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) -GIT - remote: https://github.com/ruby/strscan - revision: 041b15df4ccc067deabd85fd489b2c15961d0e2f - ref: 041b15df4ccc067deabd85fd489b2c15961d0e2f - specs: - strscan (3.1.1) - PATH remote: .. specs: @@ -212,7 +205,6 @@ DEPENDENCIES simplecov! simplecov-cobertura (~> 2.1.0) sqlite3 (~> 1.4) - strscan! trilogy warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.4_resque2_redis3.gemfile b/gemfiles/ruby_3.4_resque2_redis3.gemfile index 441d2cec014..11a44bd90ea 100644 --- a/gemfiles/ruby_3.4_resque2_redis3.gemfile +++ b/gemfiles/ruby_3.4_resque2_redis3.gemfile @@ -30,7 +30,6 @@ gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" -gem "strscan", git: "https://github.com/ruby/strscan", ref: "041b15df4ccc067deabd85fd489b2c15961d0e2f" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.8.2" diff --git a/gemfiles/ruby_3.4_resque2_redis3.gemfile.lock b/gemfiles/ruby_3.4_resque2_redis3.gemfile.lock index fa349354fab..2181d0b81d1 100644 --- a/gemfiles/ruby_3.4_resque2_redis3.gemfile.lock +++ b/gemfiles/ruby_3.4_resque2_redis3.gemfile.lock @@ -8,13 +8,6 @@ GIT simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) -GIT - remote: https://github.com/ruby/strscan - revision: 041b15df4ccc067deabd85fd489b2c15961d0e2f - ref: 041b15df4ccc067deabd85fd489b2c15961d0e2f - specs: - strscan (3.1.1) - PATH remote: .. specs: @@ -158,6 +151,7 @@ GEM rack-protection (= 4.0.0) rack-session (>= 2.0.0, < 3) tilt (~> 2.0) + strscan (3.1.1) tilt (2.4.0) unicode-display_width (2.5.0) warning (1.4.0) @@ -203,7 +197,6 @@ DEPENDENCIES rubocop-rspec (~> 2.20, < 2.21) simplecov! simplecov-cobertura (~> 2.1.0) - strscan! warning (~> 1) webmock (>= 3.10.0) webrick (>= 1.8.2) diff --git a/gemfiles/ruby_3.4_resque2_redis4.gemfile b/gemfiles/ruby_3.4_resque2_redis4.gemfile index 71b690f141b..1d97a21787a 100644 --- a/gemfiles/ruby_3.4_resque2_redis4.gemfile +++ b/gemfiles/ruby_3.4_resque2_redis4.gemfile @@ -30,7 +30,6 @@ gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" -gem "strscan", git: "https://github.com/ruby/strscan", ref: "041b15df4ccc067deabd85fd489b2c15961d0e2f" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.8.2" diff --git a/gemfiles/ruby_3.4_resque2_redis4.gemfile.lock b/gemfiles/ruby_3.4_resque2_redis4.gemfile.lock index 8a64dc9b6e4..8480cc29f1e 100644 --- a/gemfiles/ruby_3.4_resque2_redis4.gemfile.lock +++ b/gemfiles/ruby_3.4_resque2_redis4.gemfile.lock @@ -8,13 +8,6 @@ GIT simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) -GIT - remote: https://github.com/ruby/strscan - revision: 041b15df4ccc067deabd85fd489b2c15961d0e2f - ref: 041b15df4ccc067deabd85fd489b2c15961d0e2f - specs: - strscan (3.1.1) - PATH remote: .. specs: @@ -162,6 +155,7 @@ GEM rack-protection (= 4.0.0) rack-session (>= 2.0.0, < 3) tilt (~> 2.0) + strscan (3.1.1) tilt (2.4.0) unicode-display_width (2.5.0) warning (1.4.0) @@ -207,7 +201,6 @@ DEPENDENCIES rubocop-rspec (~> 2.20, < 2.21) simplecov! simplecov-cobertura (~> 2.1.0) - strscan! warning (~> 1) webmock (>= 3.10.0) webrick (>= 1.8.2) diff --git a/gemfiles/ruby_3.4_sinatra_2.gemfile b/gemfiles/ruby_3.4_sinatra_2.gemfile index 5c157ea5e77..41fda663a9f 100644 --- a/gemfiles/ruby_3.4_sinatra_2.gemfile +++ b/gemfiles/ruby_3.4_sinatra_2.gemfile @@ -30,7 +30,6 @@ gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" -gem "strscan", git: "https://github.com/ruby/strscan", ref: "041b15df4ccc067deabd85fd489b2c15961d0e2f" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.8.2" diff --git a/gemfiles/ruby_3.4_sinatra_2.gemfile.lock b/gemfiles/ruby_3.4_sinatra_2.gemfile.lock index 0ae275e47d7..7dd32ba1e29 100644 --- a/gemfiles/ruby_3.4_sinatra_2.gemfile.lock +++ b/gemfiles/ruby_3.4_sinatra_2.gemfile.lock @@ -8,13 +8,6 @@ GIT simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) -GIT - remote: https://github.com/ruby/strscan - revision: 041b15df4ccc067deabd85fd489b2c15961d0e2f - ref: 041b15df4ccc067deabd85fd489b2c15961d0e2f - specs: - strscan (3.1.1) - PATH remote: .. specs: @@ -148,6 +141,7 @@ GEM rack (~> 2.2) rack-protection (= 2.2.4) tilt (~> 2.0) + strscan (3.1.1) tilt (2.4.0) unicode-display_width (2.5.0) warning (1.4.0) @@ -194,7 +188,6 @@ DEPENDENCIES simplecov! simplecov-cobertura (~> 2.1.0) sinatra (~> 2) - strscan! warning (~> 1) webmock (>= 3.10.0) webrick (>= 1.8.2) diff --git a/gemfiles/ruby_3.4_sinatra_3.gemfile b/gemfiles/ruby_3.4_sinatra_3.gemfile index 808a0a071a8..f0a164eb69b 100644 --- a/gemfiles/ruby_3.4_sinatra_3.gemfile +++ b/gemfiles/ruby_3.4_sinatra_3.gemfile @@ -30,7 +30,6 @@ gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" -gem "strscan", git: "https://github.com/ruby/strscan", ref: "041b15df4ccc067deabd85fd489b2c15961d0e2f" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.8.2" diff --git a/gemfiles/ruby_3.4_sinatra_3.gemfile.lock b/gemfiles/ruby_3.4_sinatra_3.gemfile.lock index 5ac70a1ed5b..31412a6cf53 100644 --- a/gemfiles/ruby_3.4_sinatra_3.gemfile.lock +++ b/gemfiles/ruby_3.4_sinatra_3.gemfile.lock @@ -8,13 +8,6 @@ GIT simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) -GIT - remote: https://github.com/ruby/strscan - revision: 041b15df4ccc067deabd85fd489b2c15961d0e2f - ref: 041b15df4ccc067deabd85fd489b2c15961d0e2f - specs: - strscan (3.1.1) - PATH remote: .. specs: @@ -149,6 +142,7 @@ GEM rack (~> 2.2, >= 2.2.4) rack-protection (= 3.2.0) tilt (~> 2.0) + strscan (3.1.1) tilt (2.4.0) unicode-display_width (2.5.0) warning (1.4.0) @@ -195,7 +189,6 @@ DEPENDENCIES simplecov! simplecov-cobertura (~> 2.1.0) sinatra (~> 3) - strscan! warning (~> 1) webmock (>= 3.10.0) webrick (>= 1.8.2) diff --git a/gemfiles/ruby_3.4_sinatra_4.gemfile b/gemfiles/ruby_3.4_sinatra_4.gemfile index dce6bd501f4..6a26ce80c7c 100644 --- a/gemfiles/ruby_3.4_sinatra_4.gemfile +++ b/gemfiles/ruby_3.4_sinatra_4.gemfile @@ -30,7 +30,6 @@ gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" -gem "strscan", git: "https://github.com/ruby/strscan", ref: "041b15df4ccc067deabd85fd489b2c15961d0e2f" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.8.2" diff --git a/gemfiles/ruby_3.4_sinatra_4.gemfile.lock b/gemfiles/ruby_3.4_sinatra_4.gemfile.lock index aa6745e09aa..e85be404281 100644 --- a/gemfiles/ruby_3.4_sinatra_4.gemfile.lock +++ b/gemfiles/ruby_3.4_sinatra_4.gemfile.lock @@ -8,13 +8,6 @@ GIT simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) -GIT - remote: https://github.com/ruby/strscan - revision: 041b15df4ccc067deabd85fd489b2c15961d0e2f - ref: 041b15df4ccc067deabd85fd489b2c15961d0e2f - specs: - strscan (3.1.1) - PATH remote: .. specs: @@ -152,6 +145,7 @@ GEM rack-protection (= 4.0.0) rack-session (>= 2.0.0, < 3) tilt (~> 2.0) + strscan (3.1.1) tilt (2.4.0) unicode-display_width (2.5.0) warning (1.4.0) @@ -198,7 +192,6 @@ DEPENDENCIES simplecov! simplecov-cobertura (~> 2.1.0) sinatra (~> 4) - strscan! warning (~> 1) webmock (>= 3.10.0) webrick (>= 1.8.2) diff --git a/gemfiles/ruby_3.4_stripe_10.gemfile b/gemfiles/ruby_3.4_stripe_10.gemfile index 564e99d4354..73f9288292b 100644 --- a/gemfiles/ruby_3.4_stripe_10.gemfile +++ b/gemfiles/ruby_3.4_stripe_10.gemfile @@ -30,7 +30,6 @@ gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" -gem "strscan", git: "https://github.com/ruby/strscan", ref: "041b15df4ccc067deabd85fd489b2c15961d0e2f" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.8.2" diff --git a/gemfiles/ruby_3.4_stripe_10.gemfile.lock b/gemfiles/ruby_3.4_stripe_10.gemfile.lock index 1152fca6317..6bb9b782b1b 100644 --- a/gemfiles/ruby_3.4_stripe_10.gemfile.lock +++ b/gemfiles/ruby_3.4_stripe_10.gemfile.lock @@ -8,13 +8,6 @@ GIT simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) -GIT - remote: https://github.com/ruby/strscan - revision: 041b15df4ccc067deabd85fd489b2c15961d0e2f - ref: 041b15df4ccc067deabd85fd489b2c15961d0e2f - specs: - strscan (3.1.1) - PATH remote: .. specs: @@ -134,6 +127,7 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) stripe (10.15.0) + strscan (3.1.1) unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) @@ -177,7 +171,6 @@ DEPENDENCIES simplecov! simplecov-cobertura (~> 2.1.0) stripe (~> 10) - strscan! warning (~> 1) webmock (>= 3.10.0) webrick (>= 1.8.2) diff --git a/gemfiles/ruby_3.4_stripe_11.gemfile b/gemfiles/ruby_3.4_stripe_11.gemfile index 8744f24ffd2..549cf4f0f28 100644 --- a/gemfiles/ruby_3.4_stripe_11.gemfile +++ b/gemfiles/ruby_3.4_stripe_11.gemfile @@ -30,7 +30,6 @@ gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" -gem "strscan", git: "https://github.com/ruby/strscan", ref: "041b15df4ccc067deabd85fd489b2c15961d0e2f" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.8.2" diff --git a/gemfiles/ruby_3.4_stripe_11.gemfile.lock b/gemfiles/ruby_3.4_stripe_11.gemfile.lock index 9a6bdc16caf..090dc7b61d3 100644 --- a/gemfiles/ruby_3.4_stripe_11.gemfile.lock +++ b/gemfiles/ruby_3.4_stripe_11.gemfile.lock @@ -8,13 +8,6 @@ GIT simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) -GIT - remote: https://github.com/ruby/strscan - revision: 041b15df4ccc067deabd85fd489b2c15961d0e2f - ref: 041b15df4ccc067deabd85fd489b2c15961d0e2f - specs: - strscan (3.1.1) - PATH remote: .. specs: @@ -134,6 +127,7 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) stripe (11.7.0) + strscan (3.1.1) unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) @@ -177,7 +171,6 @@ DEPENDENCIES simplecov! simplecov-cobertura (~> 2.1.0) stripe (~> 11) - strscan! warning (~> 1) webmock (>= 3.10.0) webrick (>= 1.8.2) diff --git a/gemfiles/ruby_3.4_stripe_12.gemfile b/gemfiles/ruby_3.4_stripe_12.gemfile index 8a5eefa2e33..8040f2e5afe 100644 --- a/gemfiles/ruby_3.4_stripe_12.gemfile +++ b/gemfiles/ruby_3.4_stripe_12.gemfile @@ -30,7 +30,6 @@ gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" -gem "strscan", git: "https://github.com/ruby/strscan", ref: "041b15df4ccc067deabd85fd489b2c15961d0e2f" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.8.2" diff --git a/gemfiles/ruby_3.4_stripe_12.gemfile.lock b/gemfiles/ruby_3.4_stripe_12.gemfile.lock index 511dde8abf7..cad39c3e5f5 100644 --- a/gemfiles/ruby_3.4_stripe_12.gemfile.lock +++ b/gemfiles/ruby_3.4_stripe_12.gemfile.lock @@ -8,13 +8,6 @@ GIT simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) -GIT - remote: https://github.com/ruby/strscan - revision: 041b15df4ccc067deabd85fd489b2c15961d0e2f - ref: 041b15df4ccc067deabd85fd489b2c15961d0e2f - specs: - strscan (3.1.1) - PATH remote: .. specs: @@ -134,6 +127,7 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) stripe (12.6.0) + strscan (3.1.1) unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) @@ -177,7 +171,6 @@ DEPENDENCIES simplecov! simplecov-cobertura (~> 2.1.0) stripe (~> 12) - strscan! warning (~> 1) webmock (>= 3.10.0) webrick (>= 1.8.2) diff --git a/gemfiles/ruby_3.4_stripe_7.gemfile b/gemfiles/ruby_3.4_stripe_7.gemfile index aa0580743a2..f5212922ca1 100644 --- a/gemfiles/ruby_3.4_stripe_7.gemfile +++ b/gemfiles/ruby_3.4_stripe_7.gemfile @@ -30,7 +30,6 @@ gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" -gem "strscan", git: "https://github.com/ruby/strscan", ref: "041b15df4ccc067deabd85fd489b2c15961d0e2f" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.8.2" diff --git a/gemfiles/ruby_3.4_stripe_7.gemfile.lock b/gemfiles/ruby_3.4_stripe_7.gemfile.lock index 8bf4aaf86fd..058c1577101 100644 --- a/gemfiles/ruby_3.4_stripe_7.gemfile.lock +++ b/gemfiles/ruby_3.4_stripe_7.gemfile.lock @@ -8,13 +8,6 @@ GIT simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) -GIT - remote: https://github.com/ruby/strscan - revision: 041b15df4ccc067deabd85fd489b2c15961d0e2f - ref: 041b15df4ccc067deabd85fd489b2c15961d0e2f - specs: - strscan (3.1.1) - PATH remote: .. specs: @@ -134,6 +127,7 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) stripe (7.1.0) + strscan (3.1.1) unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) @@ -177,7 +171,6 @@ DEPENDENCIES simplecov! simplecov-cobertura (~> 2.1.0) stripe (~> 7) - strscan! warning (~> 1) webmock (>= 3.10.0) webrick (>= 1.8.2) diff --git a/gemfiles/ruby_3.4_stripe_8.gemfile b/gemfiles/ruby_3.4_stripe_8.gemfile index bf483a884d8..d589321c320 100644 --- a/gemfiles/ruby_3.4_stripe_8.gemfile +++ b/gemfiles/ruby_3.4_stripe_8.gemfile @@ -30,7 +30,6 @@ gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" -gem "strscan", git: "https://github.com/ruby/strscan", ref: "041b15df4ccc067deabd85fd489b2c15961d0e2f" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.8.2" diff --git a/gemfiles/ruby_3.4_stripe_8.gemfile.lock b/gemfiles/ruby_3.4_stripe_8.gemfile.lock index acd8dd37ed8..a81bba9fae0 100644 --- a/gemfiles/ruby_3.4_stripe_8.gemfile.lock +++ b/gemfiles/ruby_3.4_stripe_8.gemfile.lock @@ -8,13 +8,6 @@ GIT simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) -GIT - remote: https://github.com/ruby/strscan - revision: 041b15df4ccc067deabd85fd489b2c15961d0e2f - ref: 041b15df4ccc067deabd85fd489b2c15961d0e2f - specs: - strscan (3.1.1) - PATH remote: .. specs: @@ -134,6 +127,7 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) stripe (8.7.0) + strscan (3.1.1) unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) @@ -177,7 +171,6 @@ DEPENDENCIES simplecov! simplecov-cobertura (~> 2.1.0) stripe (~> 8) - strscan! warning (~> 1) webmock (>= 3.10.0) webrick (>= 1.8.2) diff --git a/gemfiles/ruby_3.4_stripe_9.gemfile b/gemfiles/ruby_3.4_stripe_9.gemfile index 555bae6e9ce..338036c8081 100644 --- a/gemfiles/ruby_3.4_stripe_9.gemfile +++ b/gemfiles/ruby_3.4_stripe_9.gemfile @@ -30,7 +30,6 @@ gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" -gem "strscan", git: "https://github.com/ruby/strscan", ref: "041b15df4ccc067deabd85fd489b2c15961d0e2f" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.8.2" diff --git a/gemfiles/ruby_3.4_stripe_9.gemfile.lock b/gemfiles/ruby_3.4_stripe_9.gemfile.lock index 9e3ec1b1f0f..e62a943ea07 100644 --- a/gemfiles/ruby_3.4_stripe_9.gemfile.lock +++ b/gemfiles/ruby_3.4_stripe_9.gemfile.lock @@ -8,13 +8,6 @@ GIT simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) -GIT - remote: https://github.com/ruby/strscan - revision: 041b15df4ccc067deabd85fd489b2c15961d0e2f - ref: 041b15df4ccc067deabd85fd489b2c15961d0e2f - specs: - strscan (3.1.1) - PATH remote: .. specs: @@ -134,6 +127,7 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) stripe (9.4.0) + strscan (3.1.1) unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) @@ -177,7 +171,6 @@ DEPENDENCIES simplecov! simplecov-cobertura (~> 2.1.0) stripe (~> 9) - strscan! warning (~> 1) webmock (>= 3.10.0) webrick (>= 1.8.2) diff --git a/gemfiles/ruby_3.4_stripe_latest.gemfile b/gemfiles/ruby_3.4_stripe_latest.gemfile index 32fde1e0507..dcf18e7238c 100644 --- a/gemfiles/ruby_3.4_stripe_latest.gemfile +++ b/gemfiles/ruby_3.4_stripe_latest.gemfile @@ -30,7 +30,6 @@ gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" -gem "strscan", git: "https://github.com/ruby/strscan", ref: "041b15df4ccc067deabd85fd489b2c15961d0e2f" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.8.2" diff --git a/gemfiles/ruby_3.4_stripe_latest.gemfile.lock b/gemfiles/ruby_3.4_stripe_latest.gemfile.lock index db77568274b..1aca6905be3 100644 --- a/gemfiles/ruby_3.4_stripe_latest.gemfile.lock +++ b/gemfiles/ruby_3.4_stripe_latest.gemfile.lock @@ -8,13 +8,6 @@ GIT simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) -GIT - remote: https://github.com/ruby/strscan - revision: 041b15df4ccc067deabd85fd489b2c15961d0e2f - ref: 041b15df4ccc067deabd85fd489b2c15961d0e2f - specs: - strscan (3.1.1) - PATH remote: .. specs: @@ -176,7 +169,6 @@ DEPENDENCIES simplecov! simplecov-cobertura (~> 2.1.0) stripe - strscan! warning (~> 1) webmock (>= 3.10.0) webrick (>= 1.8.2) diff --git a/gemfiles/ruby_3.4_stripe_min.gemfile b/gemfiles/ruby_3.4_stripe_min.gemfile index 7082d9f9cfd..bd90818d9c2 100644 --- a/gemfiles/ruby_3.4_stripe_min.gemfile +++ b/gemfiles/ruby_3.4_stripe_min.gemfile @@ -30,7 +30,6 @@ gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" gem "simplecov-cobertura", "~> 2.1.0" -gem "strscan", git: "https://github.com/ruby/strscan", ref: "041b15df4ccc067deabd85fd489b2c15961d0e2f" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" gem "webrick", ">= 1.8.2" diff --git a/gemfiles/ruby_3.4_stripe_min.gemfile.lock b/gemfiles/ruby_3.4_stripe_min.gemfile.lock index e3c6d1caa72..a0db08d178c 100644 --- a/gemfiles/ruby_3.4_stripe_min.gemfile.lock +++ b/gemfiles/ruby_3.4_stripe_min.gemfile.lock @@ -8,13 +8,6 @@ GIT simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) -GIT - remote: https://github.com/ruby/strscan - revision: 041b15df4ccc067deabd85fd489b2c15961d0e2f - ref: 041b15df4ccc067deabd85fd489b2c15961d0e2f - specs: - strscan (3.1.1) - PATH remote: .. specs: @@ -176,7 +169,6 @@ DEPENDENCIES simplecov! simplecov-cobertura (~> 2.1.0) stripe (= 5.15.0) - strscan! warning (~> 1) webmock (>= 3.10.0) webrick (>= 1.8.2) From 913fe43e4c183ceb9edbacdb2a623fc2f09aec4b Mon Sep 17 00:00:00 2001 From: Ivo Anjo Date: Fri, 3 Jan 2025 12:52:43 +0000 Subject: [PATCH 106/161] [NO-TICKET] Profiling refactor: typedef most structures **What does this PR do?** In C, when you declare a `struct foo { ... };` (a bag of fields), you need to always call it `struct foo` by default. But, using the `typedef` keyword instead, e.g. `typedef struct { ... } foo;` you can now refer to the type as `foo`. I've done a big pass and converted almost all structs we have to a typedef. Some already had both names (`struct foo` and `foo`), and in those cases I left only the typedef. **Motivation:** Historically the profiler codebase has used structs both with and without the typedef in a quite inconsistent way. I've been meaning to fix this inconsistency. **Additional Notes:** There's a few structs in the heap profiler I did not touch. That's because I'm working on a PR that has a number of big changes to the heap profiler and it's not worth doing those changes, introducing more conflicts, just to then remove many of them as they are unused and whatnot. **How to test the change?** The code successfully compiling + the existing test coverage is enough to validate these changes. --- .../clock_id.h | 4 +- .../collectors_cpu_and_wall_time_worker.c | 108 ++++----- .../collectors_discrete_dynamic_sampler.c | 2 +- .../collectors_discrete_dynamic_sampler.h | 2 +- .../collectors_idle_sampling_helper.c | 32 +-- .../collectors_stack.c | 14 +- .../collectors_thread_context.c | 222 +++++++++--------- .../heap_recorder.h | 2 +- .../http_transport.c | 8 +- .../private_vm_api_access.h | 2 +- .../profiling.c | 16 +- .../ruby_helpers.c | 16 +- .../stack_recorder.c | 108 ++++----- .../stack_recorder.h | 2 +- .../time_helpers.h | 2 +- 15 files changed, 270 insertions(+), 270 deletions(-) diff --git a/ext/datadog_profiling_native_extension/clock_id.h b/ext/datadog_profiling_native_extension/clock_id.h index b302380eab7..f02bcd5bd1b 100644 --- a/ext/datadog_profiling_native_extension/clock_id.h +++ b/ext/datadog_profiling_native_extension/clock_id.h @@ -5,13 +5,13 @@ #include // Contains the operating-system specific identifier needed to fetch CPU-time, and a flag to indicate if we failed to fetch it -typedef struct thread_cpu_time_id { +typedef struct { bool valid; clockid_t clock_id; } thread_cpu_time_id; // Contains the current cpu time, and a flag to indicate if we failed to fetch it -typedef struct thread_cpu_time { +typedef struct { bool valid; long result_ns; } thread_cpu_time; diff --git a/ext/datadog_profiling_native_extension/collectors_cpu_and_wall_time_worker.c b/ext/datadog_profiling_native_extension/collectors_cpu_and_wall_time_worker.c index 723e2d93b33..e40c2a1a14e 100644 --- a/ext/datadog_profiling_native_extension/collectors_cpu_and_wall_time_worker.c +++ b/ext/datadog_profiling_native_extension/collectors_cpu_and_wall_time_worker.c @@ -92,7 +92,7 @@ unsigned int MAX_ALLOC_WEIGHT = 10000; #endif // Contains state for a single CpuAndWallTimeWorker instance -struct cpu_and_wall_time_worker_state { +typedef struct { // These are immutable after initialization bool gc_profiling_enabled; @@ -187,7 +187,7 @@ struct cpu_and_wall_time_worker_state { uint64_t gvl_sampling_time_ns_max; uint64_t gvl_sampling_time_ns_total; } stats; -}; +} cpu_and_wall_time_worker_state; static VALUE _native_new(VALUE klass); static VALUE _native_initialize(int argc, VALUE *argv, DDTRACE_UNUSED VALUE _self); @@ -195,7 +195,7 @@ static void cpu_and_wall_time_worker_typed_data_mark(void *state_ptr); static VALUE _native_sampling_loop(VALUE self, VALUE instance); static VALUE _native_stop(DDTRACE_UNUSED VALUE _self, VALUE self_instance, VALUE worker_thread); static VALUE stop(VALUE self_instance, VALUE optional_exception); -static void stop_state(struct cpu_and_wall_time_worker_state *state, VALUE optional_exception); +static void stop_state(cpu_and_wall_time_worker_state *state, VALUE optional_exception); static void handle_sampling_signal(DDTRACE_UNUSED int _signal, DDTRACE_UNUSED siginfo_t *_info, DDTRACE_UNUSED void *_ucontext); static void *run_sampling_trigger_loop(void *state_ptr); static void interrupt_sampling_trigger_loop(void *state_ptr); @@ -221,14 +221,14 @@ static VALUE _native_stats(DDTRACE_UNUSED VALUE self, VALUE instance); static VALUE _native_stats_reset_not_thread_safe(DDTRACE_UNUSED VALUE self, VALUE instance); void *simulate_sampling_signal_delivery(DDTRACE_UNUSED void *_unused); static void grab_gvl_and_sample(void); -static void reset_stats_not_thread_safe(struct cpu_and_wall_time_worker_state *state); +static void reset_stats_not_thread_safe(cpu_and_wall_time_worker_state *state); static void sleep_for(uint64_t time_ns); static VALUE _native_allocation_count(DDTRACE_UNUSED VALUE self); static void on_newobj_event(DDTRACE_UNUSED VALUE unused1, DDTRACE_UNUSED void *unused2); -static void disable_tracepoints(struct cpu_and_wall_time_worker_state *state); +static void disable_tracepoints(cpu_and_wall_time_worker_state *state); static VALUE _native_with_blocked_sigprof(DDTRACE_UNUSED VALUE self); static VALUE rescued_sample_allocation(VALUE tracepoint_data); -static void delayed_error(struct cpu_and_wall_time_worker_state *state, const char *error); +static void delayed_error(cpu_and_wall_time_worker_state *state, const char *error); static VALUE _native_delayed_error(DDTRACE_UNUSED VALUE self, VALUE instance, VALUE error_msg); static VALUE _native_hold_signals(DDTRACE_UNUSED VALUE self); static VALUE _native_resume_signals(DDTRACE_UNUSED VALUE self); @@ -262,7 +262,7 @@ static VALUE _native_gvl_profiling_hook_active(DDTRACE_UNUSED VALUE self, VALUE // This global state is needed because a bunch of functions on this file need to access it from situations // (e.g. signal handler) where it's impossible or just awkward to pass it as an argument. static VALUE active_sampler_instance = Qnil; -static struct cpu_and_wall_time_worker_state *active_sampler_instance_state = NULL; +static cpu_and_wall_time_worker_state *active_sampler_instance_state = NULL; // See handle_sampling_signal for details on what this does #ifdef NO_POSTPONED_TRIGGER @@ -334,7 +334,7 @@ void collectors_cpu_and_wall_time_worker_init(VALUE profiling_module) { rb_define_singleton_method(testing_module, "_native_gvl_profiling_hook_active", _native_gvl_profiling_hook_active, 1); } -// This structure is used to define a Ruby object that stores a pointer to a struct cpu_and_wall_time_worker_state +// This structure is used to define a Ruby object that stores a pointer to a cpu_and_wall_time_worker_state // See also https://github.com/ruby/ruby/blob/master/doc/extension.rdoc for how this works static const rb_data_type_t cpu_and_wall_time_worker_typed_data = { .wrap_struct_name = "Datadog::Profiling::Collectors::CpuAndWallTimeWorker", @@ -350,7 +350,7 @@ static const rb_data_type_t cpu_and_wall_time_worker_typed_data = { static VALUE _native_new(VALUE klass) { long now = monotonic_wall_time_now_ns(RAISE_ON_FAILURE); - struct cpu_and_wall_time_worker_state *state = ruby_xcalloc(1, sizeof(struct cpu_and_wall_time_worker_state)); + cpu_and_wall_time_worker_state *state = ruby_xcalloc(1, sizeof(cpu_and_wall_time_worker_state)); // Note: Any exceptions raised from this note until the TypedData_Wrap_Struct call will lead to the state memory // being leaked. @@ -414,8 +414,8 @@ static VALUE _native_initialize(int argc, VALUE *argv, DDTRACE_UNUSED VALUE _sel ENFORCE_BOOLEAN(gvl_profiling_enabled); ENFORCE_BOOLEAN(skip_idle_samples_for_testing) - struct cpu_and_wall_time_worker_state *state; - TypedData_Get_Struct(self_instance, struct cpu_and_wall_time_worker_state, &cpu_and_wall_time_worker_typed_data, state); + cpu_and_wall_time_worker_state *state; + TypedData_Get_Struct(self_instance, cpu_and_wall_time_worker_state, &cpu_and_wall_time_worker_typed_data, state); state->gc_profiling_enabled = (gc_profiling_enabled == Qtrue); state->no_signals_workaround_enabled = (no_signals_workaround_enabled == Qtrue); @@ -445,7 +445,7 @@ static VALUE _native_initialize(int argc, VALUE *argv, DDTRACE_UNUSED VALUE _sel // Since our state contains references to Ruby objects, we need to tell the Ruby GC about them static void cpu_and_wall_time_worker_typed_data_mark(void *state_ptr) { - struct cpu_and_wall_time_worker_state *state = (struct cpu_and_wall_time_worker_state *) state_ptr; + cpu_and_wall_time_worker_state *state = (cpu_and_wall_time_worker_state *) state_ptr; rb_gc_mark(state->thread_context_collector_instance); rb_gc_mark(state->idle_sampling_helper_instance); @@ -457,8 +457,8 @@ static void cpu_and_wall_time_worker_typed_data_mark(void *state_ptr) { // Called in a background thread created in CpuAndWallTimeWorker#start static VALUE _native_sampling_loop(DDTRACE_UNUSED VALUE _self, VALUE instance) { - struct cpu_and_wall_time_worker_state *state; - TypedData_Get_Struct(instance, struct cpu_and_wall_time_worker_state, &cpu_and_wall_time_worker_typed_data, state); + cpu_and_wall_time_worker_state *state; + TypedData_Get_Struct(instance, cpu_and_wall_time_worker_state, &cpu_and_wall_time_worker_typed_data, state); // If we already got a delayed exception registered even before starting, raise before starting if (state->failure_exception != Qnil) { @@ -466,7 +466,7 @@ static VALUE _native_sampling_loop(DDTRACE_UNUSED VALUE _self, VALUE instance) { rb_exc_raise(state->failure_exception); } - struct cpu_and_wall_time_worker_state *old_state = active_sampler_instance_state; + cpu_and_wall_time_worker_state *old_state = active_sampler_instance_state; if (old_state != NULL) { if (is_thread_alive(old_state->owner_thread)) { rb_raise( @@ -546,15 +546,15 @@ static VALUE _native_sampling_loop(DDTRACE_UNUSED VALUE _self, VALUE instance) { } static VALUE _native_stop(DDTRACE_UNUSED VALUE _self, VALUE self_instance, VALUE worker_thread) { - struct cpu_and_wall_time_worker_state *state; - TypedData_Get_Struct(self_instance, struct cpu_and_wall_time_worker_state, &cpu_and_wall_time_worker_typed_data, state); + cpu_and_wall_time_worker_state *state; + TypedData_Get_Struct(self_instance, cpu_and_wall_time_worker_state, &cpu_and_wall_time_worker_typed_data, state); state->stop_thread = worker_thread; return stop(self_instance, /* optional_exception: */ Qnil); } -static void stop_state(struct cpu_and_wall_time_worker_state *state, VALUE optional_exception) { +static void stop_state(cpu_and_wall_time_worker_state *state, VALUE optional_exception) { atomic_store(&state->should_run, false); state->failure_exception = optional_exception; @@ -563,8 +563,8 @@ static void stop_state(struct cpu_and_wall_time_worker_state *state, VALUE optio } static VALUE stop(VALUE self_instance, VALUE optional_exception) { - struct cpu_and_wall_time_worker_state *state; - TypedData_Get_Struct(self_instance, struct cpu_and_wall_time_worker_state, &cpu_and_wall_time_worker_typed_data, state); + cpu_and_wall_time_worker_state *state; + TypedData_Get_Struct(self_instance, cpu_and_wall_time_worker_state, &cpu_and_wall_time_worker_typed_data, state); stop_state(state, optional_exception); @@ -575,7 +575,7 @@ static VALUE stop(VALUE self_instance, VALUE optional_exception) { // We need to be careful not to change any state that may be observed OR to restore it if we do. For instance, if anything // we do here can set `errno`, then we must be careful to restore the old `errno` after the fact. static void handle_sampling_signal(DDTRACE_UNUSED int _signal, DDTRACE_UNUSED siginfo_t *_info, DDTRACE_UNUSED void *_ucontext) { - struct cpu_and_wall_time_worker_state *state = active_sampler_instance_state; // Read from global variable, see "sampler global state safety" note above + cpu_and_wall_time_worker_state *state = active_sampler_instance_state; // Read from global variable, see "sampler global state safety" note above // This can potentially happen if the CpuAndWallTimeWorker was stopped while the signal delivery was happening; nothing to do if (state == NULL) return; @@ -650,7 +650,7 @@ static void handle_sampling_signal(DDTRACE_UNUSED int _signal, DDTRACE_UNUSED si // The actual sampling trigger loop always runs **without** the global vm lock. static void *run_sampling_trigger_loop(void *state_ptr) { - struct cpu_and_wall_time_worker_state *state = (struct cpu_and_wall_time_worker_state *) state_ptr; + cpu_and_wall_time_worker_state *state = (cpu_and_wall_time_worker_state *) state_ptr; uint64_t minimum_time_between_signals = MILLIS_AS_NS(10); @@ -709,13 +709,13 @@ static void *run_sampling_trigger_loop(void *state_ptr) { // This is called by the Ruby VM when it wants to shut down the background thread static void interrupt_sampling_trigger_loop(void *state_ptr) { - struct cpu_and_wall_time_worker_state *state = (struct cpu_and_wall_time_worker_state *) state_ptr; + cpu_and_wall_time_worker_state *state = (cpu_and_wall_time_worker_state *) state_ptr; atomic_store(&state->should_run, false); } static void sample_from_postponed_job(DDTRACE_UNUSED void *_unused) { - struct cpu_and_wall_time_worker_state *state = active_sampler_instance_state; // Read from global variable, see "sampler global state safety" note above + cpu_and_wall_time_worker_state *state = active_sampler_instance_state; // Read from global variable, see "sampler global state safety" note above // This can potentially happen if the CpuAndWallTimeWorker was stopped while the postponed job was waiting to be executed; nothing to do if (state == NULL) return; @@ -735,8 +735,8 @@ static void sample_from_postponed_job(DDTRACE_UNUSED void *_unused) { } static VALUE rescued_sample_from_postponed_job(VALUE self_instance) { - struct cpu_and_wall_time_worker_state *state; - TypedData_Get_Struct(self_instance, struct cpu_and_wall_time_worker_state, &cpu_and_wall_time_worker_typed_data, state); + cpu_and_wall_time_worker_state *state; + TypedData_Get_Struct(self_instance, cpu_and_wall_time_worker_state, &cpu_and_wall_time_worker_typed_data, state); long wall_time_ns_before_sample = monotonic_wall_time_now_ns(RAISE_ON_FAILURE); @@ -791,8 +791,8 @@ static VALUE _native_current_sigprof_signal_handler(DDTRACE_UNUSED VALUE self) { } static VALUE release_gvl_and_run_sampling_trigger_loop(VALUE instance) { - struct cpu_and_wall_time_worker_state *state; - TypedData_Get_Struct(instance, struct cpu_and_wall_time_worker_state, &cpu_and_wall_time_worker_typed_data, state); + cpu_and_wall_time_worker_state *state; + TypedData_Get_Struct(instance, cpu_and_wall_time_worker_state, &cpu_and_wall_time_worker_typed_data, state); // Final preparations: Setup signal handler and enable tracepoints. We run these here and not in `_native_sampling_loop` // because they may raise exceptions. @@ -842,7 +842,7 @@ static VALUE release_gvl_and_run_sampling_trigger_loop(VALUE instance) { // This method exists only to enable testing Datadog::Profiling::Collectors::CpuAndWallTimeWorker behavior using RSpec. // It SHOULD NOT be used for other purposes. static VALUE _native_is_running(DDTRACE_UNUSED VALUE self, VALUE instance) { - struct cpu_and_wall_time_worker_state *state = active_sampler_instance_state; // Read from global variable, see "sampler global state safety" note above + cpu_and_wall_time_worker_state *state = active_sampler_instance_state; // Read from global variable, see "sampler global state safety" note above return (state != NULL && is_thread_alive(state->owner_thread) && state->self_instance == instance) ? Qtrue : Qfalse; } @@ -875,8 +875,8 @@ static VALUE _native_trigger_sample(DDTRACE_UNUSED VALUE self) { // This method exists only to enable testing Datadog::Profiling::Collectors::CpuAndWallTimeWorker behavior using RSpec. // It SHOULD NOT be used for other purposes. static VALUE _native_gc_tracepoint(DDTRACE_UNUSED VALUE self, VALUE instance) { - struct cpu_and_wall_time_worker_state *state; - TypedData_Get_Struct(instance, struct cpu_and_wall_time_worker_state, &cpu_and_wall_time_worker_typed_data, state); + cpu_and_wall_time_worker_state *state; + TypedData_Get_Struct(instance, cpu_and_wall_time_worker_state, &cpu_and_wall_time_worker_typed_data, state); return state->gc_tracepoint; } @@ -902,7 +902,7 @@ static void on_gc_event(VALUE tracepoint_data, DDTRACE_UNUSED void *unused) { int event = rb_tracearg_event_flag(rb_tracearg_from_tracepoint(tracepoint_data)); if (event != RUBY_INTERNAL_EVENT_GC_ENTER && event != RUBY_INTERNAL_EVENT_GC_EXIT) return; // Unknown event - struct cpu_and_wall_time_worker_state *state = active_sampler_instance_state; // Read from global variable, see "sampler global state safety" note above + cpu_and_wall_time_worker_state *state = active_sampler_instance_state; // Read from global variable, see "sampler global state safety" note above // This should not happen in a normal situation because the tracepoint is always enabled after the instance is set // and disabled before it is cleared, but just in case... @@ -926,7 +926,7 @@ static void on_gc_event(VALUE tracepoint_data, DDTRACE_UNUSED void *unused) { } static void after_gc_from_postponed_job(DDTRACE_UNUSED void *_unused) { - struct cpu_and_wall_time_worker_state *state = active_sampler_instance_state; // Read from global variable, see "sampler global state safety" note above + cpu_and_wall_time_worker_state *state = active_sampler_instance_state; // Read from global variable, see "sampler global state safety" note above // This can potentially happen if the CpuAndWallTimeWorker was stopped while the postponed job was waiting to be executed; nothing to do if (state == NULL) return; @@ -981,8 +981,8 @@ static VALUE _native_simulate_sample_from_postponed_job(DDTRACE_UNUSED VALUE sel // In the future, if we add more other components with tracepoints, we will need to coordinate stopping all such // tracepoints before doing the other cleaning steps. static VALUE _native_reset_after_fork(DDTRACE_UNUSED VALUE self, VALUE instance) { - struct cpu_and_wall_time_worker_state *state; - TypedData_Get_Struct(instance, struct cpu_and_wall_time_worker_state, &cpu_and_wall_time_worker_typed_data, state); + cpu_and_wall_time_worker_state *state; + TypedData_Get_Struct(instance, cpu_and_wall_time_worker_state, &cpu_and_wall_time_worker_typed_data, state); // Disable all tracepoints, so that there are no more attempts to mutate the profile disable_tracepoints(state); @@ -1000,8 +1000,8 @@ static VALUE _native_is_sigprof_blocked_in_current_thread(DDTRACE_UNUSED VALUE s } static VALUE _native_stats(DDTRACE_UNUSED VALUE self, VALUE instance) { - struct cpu_and_wall_time_worker_state *state; - TypedData_Get_Struct(instance, struct cpu_and_wall_time_worker_state, &cpu_and_wall_time_worker_typed_data, state); + cpu_and_wall_time_worker_state *state; + TypedData_Get_Struct(instance, cpu_and_wall_time_worker_state, &cpu_and_wall_time_worker_typed_data, state); unsigned long total_cpu_samples_attempted = state->stats.cpu_sampled + state->stats.cpu_skipped; VALUE effective_cpu_sample_rate = @@ -1059,14 +1059,14 @@ static VALUE _native_stats(DDTRACE_UNUSED VALUE self, VALUE instance) { } static VALUE _native_stats_reset_not_thread_safe(DDTRACE_UNUSED VALUE self, VALUE instance) { - struct cpu_and_wall_time_worker_state *state; - TypedData_Get_Struct(instance, struct cpu_and_wall_time_worker_state, &cpu_and_wall_time_worker_typed_data, state); + cpu_and_wall_time_worker_state *state; + TypedData_Get_Struct(instance, cpu_and_wall_time_worker_state, &cpu_and_wall_time_worker_typed_data, state); reset_stats_not_thread_safe(state); return Qnil; } void *simulate_sampling_signal_delivery(DDTRACE_UNUSED void *_unused) { - struct cpu_and_wall_time_worker_state *state = active_sampler_instance_state; // Read from global variable, see "sampler global state safety" note above + cpu_and_wall_time_worker_state *state = active_sampler_instance_state; // Read from global variable, see "sampler global state safety" note above // This can potentially happen if the CpuAndWallTimeWorker was stopped while the IdleSamplingHelper was trying to execute this action if (state == NULL) return NULL; @@ -1082,7 +1082,7 @@ void *simulate_sampling_signal_delivery(DDTRACE_UNUSED void *_unused) { static void grab_gvl_and_sample(void) { rb_thread_call_with_gvl(simulate_sampling_signal_delivery, NULL); } -static void reset_stats_not_thread_safe(struct cpu_and_wall_time_worker_state *state) { +static void reset_stats_not_thread_safe(cpu_and_wall_time_worker_state *state) { // NOTE: This is not really thread safe so ongoing sampling operations that are concurrent with a reset can have their stats: // * Lost (writes after stats retrieval but before reset). // * Included in the previous stats window (writes before stats retrieval and reset). @@ -1116,7 +1116,7 @@ static void sleep_for(uint64_t time_ns) { } static VALUE _native_allocation_count(DDTRACE_UNUSED VALUE self) { - struct cpu_and_wall_time_worker_state *state = active_sampler_instance_state; + cpu_and_wall_time_worker_state *state = active_sampler_instance_state; bool are_allocations_being_tracked = state != NULL && state->allocation_profiling_enabled && state->allocation_counting_enabled; @@ -1149,7 +1149,7 @@ static VALUE _native_allocation_count(DDTRACE_UNUSED VALUE self) { // call `rb_tracearg_from_tracepoint(anything)` anywhere during this function or its callees to get the data, so that's // why it's not being passed as an argument. static void on_newobj_event(DDTRACE_UNUSED VALUE unused1, DDTRACE_UNUSED void *unused2) { - struct cpu_and_wall_time_worker_state *state = active_sampler_instance_state; // Read from global variable, see "sampler global state safety" note above + cpu_and_wall_time_worker_state *state = active_sampler_instance_state; // Read from global variable, see "sampler global state safety" note above // This should not happen in a normal situation because the tracepoint is always enabled after the instance is set // and disabled before it is cleared, but just in case... @@ -1235,7 +1235,7 @@ static void on_newobj_event(DDTRACE_UNUSED VALUE unused1, DDTRACE_UNUSED void *u state->during_sample = false; } -static void disable_tracepoints(struct cpu_and_wall_time_worker_state *state) { +static void disable_tracepoints(cpu_and_wall_time_worker_state *state) { if (state->gc_tracepoint != Qnil) { rb_tracepoint_disable(state->gc_tracepoint); } @@ -1264,7 +1264,7 @@ static VALUE _native_with_blocked_sigprof(DDTRACE_UNUSED VALUE self) { } static VALUE rescued_sample_allocation(DDTRACE_UNUSED VALUE unused) { - struct cpu_and_wall_time_worker_state *state = active_sampler_instance_state; // Read from global variable, see "sampler global state safety" note above + cpu_and_wall_time_worker_state *state = active_sampler_instance_state; // Read from global variable, see "sampler global state safety" note above // This should not happen in a normal situation because on_newobj_event already checked for this, but just in case... if (state == NULL) return Qnil; @@ -1293,7 +1293,7 @@ static VALUE rescued_sample_allocation(DDTRACE_UNUSED VALUE unused) { return Qnil; } -static void delayed_error(struct cpu_and_wall_time_worker_state *state, const char *error) { +static void delayed_error(cpu_and_wall_time_worker_state *state, const char *error) { // If we can't raise an immediate exception at the calling site, use the asynchronous flow through the main worker loop. stop_state(state, rb_exc_new_cstr(rb_eRuntimeError, error)); } @@ -1301,8 +1301,8 @@ static void delayed_error(struct cpu_and_wall_time_worker_state *state, const ch static VALUE _native_delayed_error(DDTRACE_UNUSED VALUE self, VALUE instance, VALUE error_msg) { ENFORCE_TYPE(error_msg, T_STRING); - struct cpu_and_wall_time_worker_state *state; - TypedData_Get_Struct(instance, struct cpu_and_wall_time_worker_state, &cpu_and_wall_time_worker_typed_data, state); + cpu_and_wall_time_worker_state *state; + TypedData_Get_Struct(instance, cpu_and_wall_time_worker_state, &cpu_and_wall_time_worker_typed_data, state); delayed_error(state, rb_string_value_cstr(&error_msg)); @@ -1355,7 +1355,7 @@ static VALUE _native_resume_signals(DDTRACE_UNUSED VALUE self) { rb_postponed_job_register_one(0, after_gvl_running_from_postponed_job, NULL); #endif } else if (result == ON_GVL_RUNNING_DONT_SAMPLE) { - struct cpu_and_wall_time_worker_state *state = active_sampler_instance_state; // Read from global variable, see "sampler global state safety" note above + cpu_and_wall_time_worker_state *state = active_sampler_instance_state; // Read from global variable, see "sampler global state safety" note above if (state == NULL) return; // This should not happen, but just in case... @@ -1368,7 +1368,7 @@ static VALUE _native_resume_signals(DDTRACE_UNUSED VALUE self) { } static void after_gvl_running_from_postponed_job(DDTRACE_UNUSED void *_unused) { - struct cpu_and_wall_time_worker_state *state = active_sampler_instance_state; // Read from global variable, see "sampler global state safety" note above + cpu_and_wall_time_worker_state *state = active_sampler_instance_state; // Read from global variable, see "sampler global state safety" note above // This can potentially happen if the CpuAndWallTimeWorker was stopped while the postponed job was waiting to be executed; nothing to do if (state == NULL) return; @@ -1382,8 +1382,8 @@ static VALUE _native_resume_signals(DDTRACE_UNUSED VALUE self) { } static VALUE rescued_after_gvl_running_from_postponed_job(VALUE self_instance) { - struct cpu_and_wall_time_worker_state *state; - TypedData_Get_Struct(self_instance, struct cpu_and_wall_time_worker_state, &cpu_and_wall_time_worker_typed_data, state); + cpu_and_wall_time_worker_state *state; + TypedData_Get_Struct(self_instance, cpu_and_wall_time_worker_state, &cpu_and_wall_time_worker_typed_data, state); long wall_time_ns_before_sample = monotonic_wall_time_now_ns(RAISE_ON_FAILURE); thread_context_collector_sample_after_gvl_running(state->thread_context_collector_instance, rb_thread_current(), wall_time_ns_before_sample); @@ -1404,8 +1404,8 @@ static VALUE _native_resume_signals(DDTRACE_UNUSED VALUE self) { } static VALUE _native_gvl_profiling_hook_active(DDTRACE_UNUSED VALUE self, VALUE instance) { - struct cpu_and_wall_time_worker_state *state; - TypedData_Get_Struct(instance, struct cpu_and_wall_time_worker_state, &cpu_and_wall_time_worker_typed_data, state); + cpu_and_wall_time_worker_state *state; + TypedData_Get_Struct(instance, cpu_and_wall_time_worker_state, &cpu_and_wall_time_worker_typed_data, state); return state->gvl_profiling_hook != NULL ? Qtrue : Qfalse; } diff --git a/ext/datadog_profiling_native_extension/collectors_discrete_dynamic_sampler.c b/ext/datadog_profiling_native_extension/collectors_discrete_dynamic_sampler.c index 25fcb0b3dbe..d310d3ca993 100644 --- a/ext/datadog_profiling_native_extension/collectors_discrete_dynamic_sampler.c +++ b/ext/datadog_profiling_native_extension/collectors_discrete_dynamic_sampler.c @@ -333,7 +333,7 @@ static VALUE _native_should_sample(VALUE self, VALUE now); static VALUE _native_after_sample(VALUE self, VALUE now); static VALUE _native_state_snapshot(VALUE self); -typedef struct sampler_state { +typedef struct { discrete_dynamic_sampler sampler; } sampler_state; diff --git a/ext/datadog_profiling_native_extension/collectors_discrete_dynamic_sampler.h b/ext/datadog_profiling_native_extension/collectors_discrete_dynamic_sampler.h index 7e1edfb5c42..1c0b0aedb2c 100644 --- a/ext/datadog_profiling_native_extension/collectors_discrete_dynamic_sampler.h +++ b/ext/datadog_profiling_native_extension/collectors_discrete_dynamic_sampler.h @@ -16,7 +16,7 @@ // every event and is thus, in theory, susceptible to some pattern // biases. In practice, the dynamic readjustment of sampling interval // and randomized starting point should help with avoiding heavy biases. -typedef struct discrete_dynamic_sampler { +typedef struct { // --- Config --- // Name of this sampler for debug logs. const char *debug_name; diff --git a/ext/datadog_profiling_native_extension/collectors_idle_sampling_helper.c b/ext/datadog_profiling_native_extension/collectors_idle_sampling_helper.c index a34a81feaf2..fcbc42eaa94 100644 --- a/ext/datadog_profiling_native_extension/collectors_idle_sampling_helper.c +++ b/ext/datadog_profiling_native_extension/collectors_idle_sampling_helper.c @@ -21,15 +21,15 @@ typedef enum { ACTION_WAIT, ACTION_RUN, ACTION_STOP } action; // Contains state for a single CpuAndWallTimeWorker instance -struct idle_sampling_loop_state { +typedef struct { pthread_mutex_t wakeup_mutex; pthread_cond_t wakeup; action requested_action; void (*run_action_function)(void); -}; +} idle_sampling_loop_state; static VALUE _native_new(VALUE klass); -static void reset_state(struct idle_sampling_loop_state *state); +static void reset_state(idle_sampling_loop_state *state); static VALUE _native_idle_sampling_loop(DDTRACE_UNUSED VALUE self, VALUE self_instance); static VALUE _native_stop(DDTRACE_UNUSED VALUE self, VALUE self_instance); static void *run_idle_sampling_loop(void *state_ptr); @@ -62,7 +62,7 @@ void collectors_idle_sampling_helper_init(VALUE profiling_module) { rb_define_singleton_method(testing_module, "_native_idle_sampling_helper_request_action", _native_idle_sampling_helper_request_action, 1); } -// This structure is used to define a Ruby object that stores a pointer to a struct idle_sampling_loop_state +// This structure is used to define a Ruby object that stores a pointer to a idle_sampling_loop_state // See also https://github.com/ruby/ruby/blob/master/doc/extension.rdoc for how this works static const rb_data_type_t idle_sampling_helper_typed_data = { .wrap_struct_name = "Datadog::Profiling::Collectors::IdleSamplingHelper", @@ -76,7 +76,7 @@ static const rb_data_type_t idle_sampling_helper_typed_data = { }; static VALUE _native_new(VALUE klass) { - struct idle_sampling_loop_state *state = ruby_xcalloc(1, sizeof(struct idle_sampling_loop_state)); + idle_sampling_loop_state *state = ruby_xcalloc(1, sizeof(idle_sampling_loop_state)); // Note: Any exceptions raised from this note until the TypedData_Wrap_Struct call will lead to the state memory // being leaked. @@ -90,7 +90,7 @@ static VALUE _native_new(VALUE klass) { return TypedData_Wrap_Struct(klass, &idle_sampling_helper_typed_data, state); } -static void reset_state(struct idle_sampling_loop_state *state) { +static void reset_state(idle_sampling_loop_state *state) { state->wakeup_mutex = (pthread_mutex_t) PTHREAD_MUTEX_INITIALIZER; state->wakeup = (pthread_cond_t) PTHREAD_COND_INITIALIZER; state->requested_action = ACTION_WAIT; @@ -101,8 +101,8 @@ static void reset_state(struct idle_sampling_loop_state *state) { // a pristine state before recreating the worker thread (this includes resetting the mutex in case it was left // locked halfway through the VM forking) static VALUE _native_reset(DDTRACE_UNUSED VALUE self, VALUE self_instance) { - struct idle_sampling_loop_state *state; - TypedData_Get_Struct(self_instance, struct idle_sampling_loop_state, &idle_sampling_helper_typed_data, state); + idle_sampling_loop_state *state; + TypedData_Get_Struct(self_instance, idle_sampling_loop_state, &idle_sampling_helper_typed_data, state); reset_state(state); @@ -110,8 +110,8 @@ static VALUE _native_reset(DDTRACE_UNUSED VALUE self, VALUE self_instance) { } static VALUE _native_idle_sampling_loop(DDTRACE_UNUSED VALUE self, VALUE self_instance) { - struct idle_sampling_loop_state *state; - TypedData_Get_Struct(self_instance, struct idle_sampling_loop_state, &idle_sampling_helper_typed_data, state); + idle_sampling_loop_state *state; + TypedData_Get_Struct(self_instance, idle_sampling_loop_state, &idle_sampling_helper_typed_data, state); // Release GVL and run the loop waiting for requests rb_thread_call_without_gvl(run_idle_sampling_loop, state, interrupt_idle_sampling_loop, state); @@ -120,7 +120,7 @@ static VALUE _native_idle_sampling_loop(DDTRACE_UNUSED VALUE self, VALUE self_in } static void *run_idle_sampling_loop(void *state_ptr) { - struct idle_sampling_loop_state *state = (struct idle_sampling_loop_state *) state_ptr; + idle_sampling_loop_state *state = (idle_sampling_loop_state *) state_ptr; int error = 0; while (true) { @@ -164,7 +164,7 @@ static void *run_idle_sampling_loop(void *state_ptr) { } static void interrupt_idle_sampling_loop(void *state_ptr) { - struct idle_sampling_loop_state *state = (struct idle_sampling_loop_state *) state_ptr; + idle_sampling_loop_state *state = (idle_sampling_loop_state *) state_ptr; int error = 0; // Note about the error handling in this situation: Something bad happening at this stage is really really awkward to @@ -189,8 +189,8 @@ static void interrupt_idle_sampling_loop(void *state_ptr) { } static VALUE _native_stop(DDTRACE_UNUSED VALUE self, VALUE self_instance) { - struct idle_sampling_loop_state *state; - TypedData_Get_Struct(self_instance, struct idle_sampling_loop_state, &idle_sampling_helper_typed_data, state); + idle_sampling_loop_state *state; + TypedData_Get_Struct(self_instance, idle_sampling_loop_state, &idle_sampling_helper_typed_data, state); ENFORCE_SUCCESS_GVL(pthread_mutex_lock(&state->wakeup_mutex)); state->requested_action = ACTION_STOP; @@ -204,12 +204,12 @@ static VALUE _native_stop(DDTRACE_UNUSED VALUE self, VALUE self_instance) { // Assumption: Function gets called without the global VM lock void idle_sampling_helper_request_action(VALUE self_instance, void (*run_action_function)(void)) { - struct idle_sampling_loop_state *state; + idle_sampling_loop_state *state; if (!rb_typeddata_is_kind_of(self_instance, &idle_sampling_helper_typed_data)) { grab_gvl_and_raise(rb_eTypeError, "Wrong argument for idle_sampling_helper_request_action"); } // This should never fail the the above check passes - TypedData_Get_Struct(self_instance, struct idle_sampling_loop_state, &idle_sampling_helper_typed_data, state); + TypedData_Get_Struct(self_instance, idle_sampling_loop_state, &idle_sampling_helper_typed_data, state); ENFORCE_SUCCESS_NO_GVL(pthread_mutex_lock(&state->wakeup_mutex)); if (state->requested_action == ACTION_WAIT) { diff --git a/ext/datadog_profiling_native_extension/collectors_stack.c b/ext/datadog_profiling_native_extension/collectors_stack.c index c7445dfc9ca..201a548f388 100644 --- a/ext/datadog_profiling_native_extension/collectors_stack.c +++ b/ext/datadog_profiling_native_extension/collectors_stack.c @@ -14,11 +14,11 @@ static VALUE missing_string = Qnil; // Used as scratch space during sampling -struct sampling_buffer { +struct sampling_buffer { // Note: typedef'd in the header to sampling_buffer uint16_t max_frames; ddog_prof_Location *locations; frame_info *stack_buffer; -}; // Note: typedef'd in the header to sampling_buffer +}; static VALUE _native_sample(int argc, VALUE *argv, DDTRACE_UNUSED VALUE _self); static VALUE native_sample_do(VALUE args); @@ -44,7 +44,7 @@ void collectors_stack_init(VALUE profiling_module) { rb_global_variable(&missing_string); } -struct native_sample_args { +typedef struct { VALUE in_gc; VALUE recorder_instance; sample_values values; @@ -52,7 +52,7 @@ struct native_sample_args { VALUE thread; ddog_prof_Location *locations; sampling_buffer *buffer; -}; +} native_sample_args; // This method exists only to enable testing Datadog::Profiling::Collectors::Stack behavior using RSpec. // It SHOULD NOT be used for other purposes. @@ -123,7 +123,7 @@ static VALUE _native_sample(int argc, VALUE *argv, DDTRACE_UNUSED VALUE _self) { ddog_prof_Slice_Label slice_labels = {.ptr = labels, .len = labels_count}; - struct native_sample_args args_struct = { + native_sample_args args_struct = { .in_gc = in_gc, .recorder_instance = recorder_instance, .values = values, @@ -137,7 +137,7 @@ static VALUE _native_sample(int argc, VALUE *argv, DDTRACE_UNUSED VALUE _self) { } static VALUE native_sample_do(VALUE args) { - struct native_sample_args *args_struct = (struct native_sample_args *) args; + native_sample_args *args_struct = (native_sample_args *) args; if (args_struct->in_gc == Qtrue) { record_placeholder_stack( @@ -160,7 +160,7 @@ static VALUE native_sample_do(VALUE args) { } static VALUE native_sample_ensure(VALUE args) { - struct native_sample_args *args_struct = (struct native_sample_args *) args; + native_sample_args *args_struct = (native_sample_args *) args; ruby_xfree(args_struct->locations); sampling_buffer_free(args_struct->buffer); diff --git a/ext/datadog_profiling_native_extension/collectors_thread_context.c b/ext/datadog_profiling_native_extension/collectors_thread_context.c index 4afb23c5a9e..ba351b0c1fa 100644 --- a/ext/datadog_profiling_native_extension/collectors_thread_context.c +++ b/ext/datadog_profiling_native_extension/collectors_thread_context.c @@ -113,14 +113,14 @@ static uint32_t global_waiting_for_gvl_threshold_ns = MILLIS_AS_NS(10); typedef enum { OTEL_CONTEXT_ENABLED_FALSE, OTEL_CONTEXT_ENABLED_ONLY, OTEL_CONTEXT_ENABLED_BOTH } otel_context_enabled; // Contains state for a single ThreadContext instance -struct thread_context_collector_state { +typedef struct { // Note: Places in this file that usually need to be changed when this struct is changed are tagged with // "Update this when modifying state struct" // Required by Datadog::Profiling::Collectors::Stack as a scratch buffer during sampling ddog_prof_Location *locations; uint16_t max_frames; - // Hashmap + // Hashmap st_table *hash_map_per_thread_context; // Datadog::Profiling::StackRecorder instance VALUE recorder_instance; @@ -163,10 +163,10 @@ struct thread_context_collector_state { long wall_time_at_previous_gc_ns; // Will be INVALID_TIME unless there's accumulated time above long wall_time_at_last_flushed_gc_event_ns; // Starts at 0 and then will always be valid } gc_tracking; -}; +} thread_context_collector_state; // Tracks per-thread state -struct per_thread_context { +typedef struct { sampling_buffer *sampling_buffer; char thread_id[THREAD_ID_LIMIT_CHARS]; ddog_CharSlice thread_id_char_slice; @@ -182,21 +182,21 @@ struct per_thread_context { long cpu_time_at_start_ns; long wall_time_at_start_ns; } gc_tracking; -}; +} per_thread_context; // Used to correlate profiles with traces -struct trace_identifiers { +typedef struct { bool valid; uint64_t local_root_span_id; uint64_t span_id; VALUE trace_endpoint; -}; +} trace_identifiers; -struct otel_span { +typedef struct { VALUE span; VALUE span_id; VALUE trace_id; -}; +} otel_span; static void thread_context_collector_typed_data_mark(void *state_ptr); static void thread_context_collector_typed_data_free(void *state_ptr); @@ -209,19 +209,19 @@ static VALUE _native_on_gc_start(VALUE self, VALUE collector_instance); static VALUE _native_on_gc_finish(VALUE self, VALUE collector_instance); static VALUE _native_sample_after_gc(DDTRACE_UNUSED VALUE self, VALUE collector_instance, VALUE reset_monotonic_to_system_state, VALUE allow_exception); static void update_metrics_and_sample( - struct thread_context_collector_state *state, + thread_context_collector_state *state, VALUE thread_being_sampled, VALUE stack_from_thread, - struct per_thread_context *thread_context, + per_thread_context *thread_context, sampling_buffer* sampling_buffer, long current_cpu_time_ns, long current_monotonic_wall_time_ns ); static void trigger_sample_for_thread( - struct thread_context_collector_state *state, + thread_context_collector_state *state, VALUE thread, VALUE stack_from_thread, - struct per_thread_context *thread_context, + per_thread_context *thread_context, sampling_buffer* sampling_buffer, sample_values values, long current_monotonic_wall_time_ns, @@ -231,37 +231,37 @@ static void trigger_sample_for_thread( bool is_safe_to_allocate_objects ); static VALUE _native_thread_list(VALUE self); -static struct per_thread_context *get_or_create_context_for(VALUE thread, struct thread_context_collector_state *state); -static struct per_thread_context *get_context_for(VALUE thread, struct thread_context_collector_state *state); -static void initialize_context(VALUE thread, struct per_thread_context *thread_context, struct thread_context_collector_state *state); -static void free_context(struct per_thread_context* thread_context); +static per_thread_context *get_or_create_context_for(VALUE thread, thread_context_collector_state *state); +static per_thread_context *get_context_for(VALUE thread, thread_context_collector_state *state); +static void initialize_context(VALUE thread, per_thread_context *thread_context, thread_context_collector_state *state); +static void free_context(per_thread_context* thread_context); static VALUE _native_inspect(VALUE self, VALUE collector_instance); -static VALUE per_thread_context_st_table_as_ruby_hash(struct thread_context_collector_state *state); +static VALUE per_thread_context_st_table_as_ruby_hash(thread_context_collector_state *state); static int per_thread_context_as_ruby_hash(st_data_t key_thread, st_data_t value_context, st_data_t result_hash); -static VALUE stats_as_ruby_hash(struct thread_context_collector_state *state); -static VALUE gc_tracking_as_ruby_hash(struct thread_context_collector_state *state); -static void remove_context_for_dead_threads(struct thread_context_collector_state *state); +static VALUE stats_as_ruby_hash(thread_context_collector_state *state); +static VALUE gc_tracking_as_ruby_hash(thread_context_collector_state *state); +static void remove_context_for_dead_threads(thread_context_collector_state *state); static int remove_if_dead_thread(st_data_t key_thread, st_data_t value_context, st_data_t _argument); static VALUE _native_per_thread_context(VALUE self, VALUE collector_instance); static long update_time_since_previous_sample(long *time_at_previous_sample_ns, long current_time_ns, long gc_start_time_ns, bool is_wall_time); -static long cpu_time_now_ns(struct per_thread_context *thread_context); +static long cpu_time_now_ns(per_thread_context *thread_context); static long thread_id_for(VALUE thread); static VALUE _native_stats(VALUE self, VALUE collector_instance); static VALUE _native_gc_tracking(VALUE self, VALUE collector_instance); static void trace_identifiers_for( - struct thread_context_collector_state *state, + thread_context_collector_state *state, VALUE thread, - struct trace_identifiers *trace_identifiers_result, + trace_identifiers *trace_identifiers_result, bool is_safe_to_allocate_objects ); static bool should_collect_resource(VALUE root_span); static VALUE _native_reset_after_fork(DDTRACE_UNUSED VALUE self, VALUE collector_instance); -static VALUE thread_list(struct thread_context_collector_state *state); +static VALUE thread_list(thread_context_collector_state *state); static VALUE _native_sample_allocation(DDTRACE_UNUSED VALUE self, VALUE collector_instance, VALUE sample_weight, VALUE new_object); static VALUE _native_new_empty_thread(VALUE self); static ddog_CharSlice ruby_value_type_to_class_name(enum ruby_value_type type); static void ddtrace_otel_trace_identifiers_for( - struct thread_context_collector_state *state, + thread_context_collector_state *state, VALUE *active_trace, VALUE *root_span, VALUE *numeric_span_id, @@ -271,10 +271,10 @@ static void ddtrace_otel_trace_identifiers_for( ); static VALUE _native_sample_skipped_allocation_samples(DDTRACE_UNUSED VALUE self, VALUE collector_instance, VALUE skipped_samples); static bool handle_gvl_waiting( - struct thread_context_collector_state *state, + thread_context_collector_state *state, VALUE thread_being_sampled, VALUE stack_from_thread, - struct per_thread_context *thread_context, + per_thread_context *thread_context, sampling_buffer* sampling_buffer, long current_cpu_time_ns ); @@ -284,12 +284,12 @@ static VALUE _native_on_gvl_running(DDTRACE_UNUSED VALUE self, VALUE thread); static VALUE _native_sample_after_gvl_running(DDTRACE_UNUSED VALUE self, VALUE collector_instance, VALUE thread); static VALUE _native_apply_delta_to_cpu_time_at_previous_sample_ns(DDTRACE_UNUSED VALUE self, VALUE collector_instance, VALUE thread, VALUE delta_ns); static void otel_without_ddtrace_trace_identifiers_for( - struct thread_context_collector_state *state, + thread_context_collector_state *state, VALUE thread, - struct trace_identifiers *trace_identifiers_result, + trace_identifiers *trace_identifiers_result, bool is_safe_to_allocate_objects ); -static struct otel_span otel_span_from(VALUE otel_context, VALUE otel_current_span_key); +static otel_span otel_span_from(VALUE otel_context, VALUE otel_current_span_key); static uint64_t otel_span_id_to_uint(VALUE otel_span_id); static VALUE safely_lookup_hash_without_going_into_ruby_code(VALUE hash, VALUE key); @@ -357,7 +357,7 @@ void collectors_thread_context_init(VALUE profiling_module) { gc_profiling_init(); } -// This structure is used to define a Ruby object that stores a pointer to a struct thread_context_collector_state +// This structure is used to define a Ruby object that stores a pointer to a thread_context_collector_state // See also https://github.com/ruby/ruby/blob/master/doc/extension.rdoc for how this works static const rb_data_type_t thread_context_collector_typed_data = { .wrap_struct_name = "Datadog::Profiling::Collectors::ThreadContext", @@ -373,7 +373,7 @@ static const rb_data_type_t thread_context_collector_typed_data = { // This function is called by the Ruby GC to give us a chance to mark any Ruby objects that we're holding on to, // so that they don't get garbage collected static void thread_context_collector_typed_data_mark(void *state_ptr) { - struct thread_context_collector_state *state = (struct thread_context_collector_state *) state_ptr; + thread_context_collector_state *state = (thread_context_collector_state *) state_ptr; // Update this when modifying state struct rb_gc_mark(state->recorder_instance); @@ -384,7 +384,7 @@ static void thread_context_collector_typed_data_mark(void *state_ptr) { } static void thread_context_collector_typed_data_free(void *state_ptr) { - struct thread_context_collector_state *state = (struct thread_context_collector_state *) state_ptr; + thread_context_collector_state *state = (thread_context_collector_state *) state_ptr; // Update this when modifying state struct @@ -409,13 +409,13 @@ static int hash_map_per_thread_context_mark(st_data_t key_thread, DDTRACE_UNUSED // Used to clear each of the per_thread_contexts inside the hash_map_per_thread_context static int hash_map_per_thread_context_free_values(DDTRACE_UNUSED st_data_t _thread, st_data_t value_per_thread_context, DDTRACE_UNUSED st_data_t _argument) { - struct per_thread_context *thread_context = (struct per_thread_context*) value_per_thread_context; + per_thread_context *thread_context = (per_thread_context*) value_per_thread_context; free_context(thread_context); return ST_CONTINUE; } static VALUE _native_new(VALUE klass) { - struct thread_context_collector_state *state = ruby_xcalloc(1, sizeof(struct thread_context_collector_state)); + thread_context_collector_state *state = ruby_xcalloc(1, sizeof(thread_context_collector_state)); // Note: Any exceptions raised from this note until the TypedData_Wrap_Struct call will lead to the state memory // being leaked. @@ -471,8 +471,8 @@ static VALUE _native_initialize(int argc, VALUE *argv, DDTRACE_UNUSED VALUE _sel ENFORCE_BOOLEAN(timeline_enabled); ENFORCE_TYPE(waiting_for_gvl_threshold_ns, T_FIXNUM); - struct thread_context_collector_state *state; - TypedData_Get_Struct(self_instance, struct thread_context_collector_state, &thread_context_collector_typed_data, state); + thread_context_collector_state *state; + TypedData_Get_Struct(self_instance, thread_context_collector_state, &thread_context_collector_typed_data, state); // Update this when modifying state struct state->max_frames = sampling_buffer_check_max_frames(NUM2INT(max_frames)); @@ -550,8 +550,8 @@ static VALUE _native_sample_after_gc(DDTRACE_UNUSED VALUE self, VALUE collector_ ENFORCE_BOOLEAN(reset_monotonic_to_system_state); ENFORCE_BOOLEAN(allow_exception); - struct thread_context_collector_state *state; - TypedData_Get_Struct(collector_instance, struct thread_context_collector_state, &thread_context_collector_typed_data, state); + thread_context_collector_state *state; + TypedData_Get_Struct(collector_instance, thread_context_collector_state, &thread_context_collector_typed_data, state); if (reset_monotonic_to_system_state == Qtrue) { state->time_converter_state = (monotonic_to_system_epoch_state) MONOTONIC_TO_SYSTEM_EPOCH_INITIALIZER; @@ -577,11 +577,11 @@ static VALUE _native_sample_after_gc(DDTRACE_UNUSED VALUE self, VALUE collector_ // The `profiler_overhead_stack_thread` is used to attribute the profiler overhead to a stack borrowed from a different thread // (belonging to ddtrace), so that the overhead is visible in the profile rather than blamed on user code. void thread_context_collector_sample(VALUE self_instance, long current_monotonic_wall_time_ns, VALUE profiler_overhead_stack_thread) { - struct thread_context_collector_state *state; - TypedData_Get_Struct(self_instance, struct thread_context_collector_state, &thread_context_collector_typed_data, state); + thread_context_collector_state *state; + TypedData_Get_Struct(self_instance, thread_context_collector_state, &thread_context_collector_typed_data, state); VALUE current_thread = rb_thread_current(); - struct per_thread_context *current_thread_context = get_or_create_context_for(current_thread, state); + per_thread_context *current_thread_context = get_or_create_context_for(current_thread, state); long cpu_time_at_sample_start_for_current_thread = cpu_time_now_ns(current_thread_context); VALUE threads = thread_list(state); @@ -589,7 +589,7 @@ void thread_context_collector_sample(VALUE self_instance, long current_monotonic const long thread_count = RARRAY_LEN(threads); for (long i = 0; i < thread_count; i++) { VALUE thread = RARRAY_AREF(threads, i); - struct per_thread_context *thread_context = get_or_create_context_for(thread, state); + per_thread_context *thread_context = get_or_create_context_for(thread, state); // We account for cpu-time for the current thread in a different way -- we use the cpu-time at sampling start, to avoid // blaming the time the profiler took on whatever's running on the thread right now @@ -625,10 +625,10 @@ void thread_context_collector_sample(VALUE self_instance, long current_monotonic } static void update_metrics_and_sample( - struct thread_context_collector_state *state, + thread_context_collector_state *state, VALUE thread_being_sampled, VALUE stack_from_thread, // This can be different when attributing profiler overhead using a different stack - struct per_thread_context *thread_context, + per_thread_context *thread_context, sampling_buffer* sampling_buffer, long current_cpu_time_ns, long current_monotonic_wall_time_ns @@ -696,12 +696,12 @@ static void update_metrics_and_sample( // Assumption 1: This function is called in a thread that is holding the Global VM Lock. Caller is responsible for enforcing this. // Assumption 2: This function is called from the main Ractor (if Ruby has support for Ractors). void thread_context_collector_on_gc_start(VALUE self_instance) { - struct thread_context_collector_state *state; + thread_context_collector_state *state; if (!rb_typeddata_is_kind_of(self_instance, &thread_context_collector_typed_data)) return; // This should never fail the the above check passes - TypedData_Get_Struct(self_instance, struct thread_context_collector_state, &thread_context_collector_typed_data, state); + TypedData_Get_Struct(self_instance, thread_context_collector_state, &thread_context_collector_typed_data, state); - struct per_thread_context *thread_context = get_context_for(rb_thread_current(), state); + per_thread_context *thread_context = get_context_for(rb_thread_current(), state); // If there was no previously-existing context for this thread, we won't allocate one (see safety). For now we just drop // the GC sample, under the assumption that "a thread that is so new that we never sampled it even once before it triggers @@ -729,12 +729,12 @@ void thread_context_collector_on_gc_start(VALUE self_instance) { // Assumption 2: This function is called from the main Ractor (if Ruby has support for Ractors). __attribute__((warn_unused_result)) bool thread_context_collector_on_gc_finish(VALUE self_instance) { - struct thread_context_collector_state *state; + thread_context_collector_state *state; if (!rb_typeddata_is_kind_of(self_instance, &thread_context_collector_typed_data)) return false; // This should never fail the the above check passes - TypedData_Get_Struct(self_instance, struct thread_context_collector_state, &thread_context_collector_typed_data, state); + TypedData_Get_Struct(self_instance, thread_context_collector_state, &thread_context_collector_typed_data, state); - struct per_thread_context *thread_context = get_context_for(rb_thread_current(), state); + per_thread_context *thread_context = get_context_for(rb_thread_current(), state); // If there was no previously-existing context for this thread, we won't allocate one (see safety). We keep a metric for // how often this happens -- see on_gc_start. @@ -807,8 +807,8 @@ bool thread_context_collector_on_gc_finish(VALUE self_instance) { // Assumption 3: Unlike `on_gc_start` and `on_gc_finish`, this method is allowed to allocate memory as needed. // Assumption 4: This function is called from the main Ractor (if Ruby has support for Ractors). VALUE thread_context_collector_sample_after_gc(VALUE self_instance) { - struct thread_context_collector_state *state; - TypedData_Get_Struct(self_instance, struct thread_context_collector_state, &thread_context_collector_typed_data, state); + thread_context_collector_state *state; + TypedData_Get_Struct(self_instance, thread_context_collector_state, &thread_context_collector_typed_data, state); if (state->gc_tracking.wall_time_at_previous_gc_ns == INVALID_TIME) { rb_raise(rb_eRuntimeError, "BUG: Unexpected call to sample_after_gc without valid GC information available"); @@ -857,10 +857,10 @@ VALUE thread_context_collector_sample_after_gc(VALUE self_instance) { } static void trigger_sample_for_thread( - struct thread_context_collector_state *state, + thread_context_collector_state *state, VALUE thread, VALUE stack_from_thread, // This can be different when attributing profiler overhead using a different stack - struct per_thread_context *thread_context, + per_thread_context *thread_context, sampling_buffer* sampling_buffer, sample_values values, long current_monotonic_wall_time_ns, @@ -908,7 +908,7 @@ static void trigger_sample_for_thread( }; } - struct trace_identifiers trace_identifiers_result = {.valid = false, .trace_endpoint = Qnil}; + trace_identifiers trace_identifiers_result = {.valid = false, .trace_endpoint = Qnil}; trace_identifiers_for(state, thread, &trace_identifiers_result, is_safe_to_allocate_objects); if (!trace_identifiers_result.valid && state->otel_context_enabled != OTEL_CONTEXT_ENABLED_FALSE) { @@ -1017,14 +1017,14 @@ static VALUE _native_thread_list(DDTRACE_UNUSED VALUE _self) { return result; } -static struct per_thread_context *get_or_create_context_for(VALUE thread, struct thread_context_collector_state *state) { - struct per_thread_context* thread_context = NULL; +static per_thread_context *get_or_create_context_for(VALUE thread, thread_context_collector_state *state) { + per_thread_context* thread_context = NULL; st_data_t value_context = 0; if (st_lookup(state->hash_map_per_thread_context, (st_data_t) thread, &value_context)) { - thread_context = (struct per_thread_context*) value_context; + thread_context = (per_thread_context*) value_context; } else { - thread_context = ruby_xcalloc(1, sizeof(struct per_thread_context)); + thread_context = ruby_xcalloc(1, sizeof(per_thread_context)); initialize_context(thread, thread_context, state); st_insert(state->hash_map_per_thread_context, (st_data_t) thread, (st_data_t) thread_context); } @@ -1032,12 +1032,12 @@ static struct per_thread_context *get_or_create_context_for(VALUE thread, struct return thread_context; } -static struct per_thread_context *get_context_for(VALUE thread, struct thread_context_collector_state *state) { - struct per_thread_context* thread_context = NULL; +static per_thread_context *get_context_for(VALUE thread, thread_context_collector_state *state) { + per_thread_context* thread_context = NULL; st_data_t value_context = 0; if (st_lookup(state->hash_map_per_thread_context, (st_data_t) thread, &value_context)) { - thread_context = (struct per_thread_context*) value_context; + thread_context = (per_thread_context*) value_context; } return thread_context; @@ -1064,7 +1064,7 @@ static bool is_logging_gem_monkey_patch(VALUE invoke_file_location) { return strncmp(invoke_file + invoke_file_len - logging_gem_path_len, LOGGING_GEM_PATH, logging_gem_path_len) == 0; } -static void initialize_context(VALUE thread, struct per_thread_context *thread_context, struct thread_context_collector_state *state) { +static void initialize_context(VALUE thread, per_thread_context *thread_context, thread_context_collector_state *state) { thread_context->sampling_buffer = sampling_buffer_new(state->max_frames, state->locations); snprintf(thread_context->thread_id, THREAD_ID_LIMIT_CHARS, "%"PRIu64" (%lu)", native_thread_id_for(thread), (unsigned long) thread_id_for(thread)); @@ -1121,14 +1121,14 @@ static void initialize_context(VALUE thread, struct per_thread_context *thread_c #endif } -static void free_context(struct per_thread_context* thread_context) { +static void free_context(per_thread_context* thread_context) { sampling_buffer_free(thread_context->sampling_buffer); ruby_xfree(thread_context); } static VALUE _native_inspect(DDTRACE_UNUSED VALUE _self, VALUE collector_instance) { - struct thread_context_collector_state *state; - TypedData_Get_Struct(collector_instance, struct thread_context_collector_state, &thread_context_collector_typed_data, state); + thread_context_collector_state *state; + TypedData_Get_Struct(collector_instance, thread_context_collector_state, &thread_context_collector_typed_data, state); VALUE result = rb_str_new2(" (native state)"); @@ -1156,7 +1156,7 @@ static VALUE _native_inspect(DDTRACE_UNUSED VALUE _self, VALUE collector_instanc return result; } -static VALUE per_thread_context_st_table_as_ruby_hash(struct thread_context_collector_state *state) { +static VALUE per_thread_context_st_table_as_ruby_hash(thread_context_collector_state *state) { VALUE result = rb_hash_new(); st_foreach(state->hash_map_per_thread_context, per_thread_context_as_ruby_hash, result); return result; @@ -1164,7 +1164,7 @@ static VALUE per_thread_context_st_table_as_ruby_hash(struct thread_context_coll static int per_thread_context_as_ruby_hash(st_data_t key_thread, st_data_t value_context, st_data_t result_hash) { VALUE thread = (VALUE) key_thread; - struct per_thread_context *thread_context = (struct per_thread_context*) value_context; + per_thread_context *thread_context = (per_thread_context*) value_context; VALUE result = (VALUE) result_hash; VALUE context_as_hash = rb_hash_new(); rb_hash_aset(result, thread, context_as_hash); @@ -1189,7 +1189,7 @@ static int per_thread_context_as_ruby_hash(st_data_t key_thread, st_data_t value return ST_CONTINUE; } -static VALUE stats_as_ruby_hash(struct thread_context_collector_state *state) { +static VALUE stats_as_ruby_hash(thread_context_collector_state *state) { // Update this when modifying state struct (stats inner struct) VALUE stats_as_hash = rb_hash_new(); VALUE arguments[] = { @@ -1200,7 +1200,7 @@ static VALUE stats_as_ruby_hash(struct thread_context_collector_state *state) { return stats_as_hash; } -static VALUE gc_tracking_as_ruby_hash(struct thread_context_collector_state *state) { +static VALUE gc_tracking_as_ruby_hash(thread_context_collector_state *state) { // Update this when modifying state struct (gc_tracking inner struct) VALUE result = rb_hash_new(); VALUE arguments[] = { @@ -1213,13 +1213,13 @@ static VALUE gc_tracking_as_ruby_hash(struct thread_context_collector_state *sta return result; } -static void remove_context_for_dead_threads(struct thread_context_collector_state *state) { +static void remove_context_for_dead_threads(thread_context_collector_state *state) { st_foreach(state->hash_map_per_thread_context, remove_if_dead_thread, 0 /* unused */); } static int remove_if_dead_thread(st_data_t key_thread, st_data_t value_context, DDTRACE_UNUSED st_data_t _argument) { VALUE thread = (VALUE) key_thread; - struct per_thread_context* thread_context = (struct per_thread_context*) value_context; + per_thread_context* thread_context = (per_thread_context*) value_context; if (is_thread_alive(thread)) return ST_CONTINUE; @@ -1232,8 +1232,8 @@ static int remove_if_dead_thread(st_data_t key_thread, st_data_t value_context, // // Returns the whole contents of the per_thread_context structs being tracked. static VALUE _native_per_thread_context(DDTRACE_UNUSED VALUE _self, VALUE collector_instance) { - struct thread_context_collector_state *state; - TypedData_Get_Struct(collector_instance, struct thread_context_collector_state, &thread_context_collector_typed_data, state); + thread_context_collector_state *state; + TypedData_Get_Struct(collector_instance, thread_context_collector_state, &thread_context_collector_typed_data, state); return per_thread_context_st_table_as_ruby_hash(state); } @@ -1278,7 +1278,7 @@ static long update_time_since_previous_sample(long *time_at_previous_sample_ns, } // Safety: This function is assumed never to raise exceptions by callers -static long cpu_time_now_ns(struct per_thread_context *thread_context) { +static long cpu_time_now_ns(per_thread_context *thread_context) { thread_cpu_time cpu_time = thread_cpu_time_for(thread_context->thread_cpu_time_id); if (!cpu_time.valid) { @@ -1316,8 +1316,8 @@ VALUE enforce_thread_context_collector_instance(VALUE object) { // This method exists only to enable testing Datadog::Profiling::Collectors::ThreadContext behavior using RSpec. // It SHOULD NOT be used for other purposes. static VALUE _native_stats(DDTRACE_UNUSED VALUE _self, VALUE collector_instance) { - struct thread_context_collector_state *state; - TypedData_Get_Struct(collector_instance, struct thread_context_collector_state, &thread_context_collector_typed_data, state); + thread_context_collector_state *state; + TypedData_Get_Struct(collector_instance, thread_context_collector_state, &thread_context_collector_typed_data, state); return stats_as_ruby_hash(state); } @@ -1325,17 +1325,17 @@ static VALUE _native_stats(DDTRACE_UNUSED VALUE _self, VALUE collector_instance) // This method exists only to enable testing Datadog::Profiling::Collectors::ThreadContext behavior using RSpec. // It SHOULD NOT be used for other purposes. static VALUE _native_gc_tracking(DDTRACE_UNUSED VALUE _self, VALUE collector_instance) { - struct thread_context_collector_state *state; - TypedData_Get_Struct(collector_instance, struct thread_context_collector_state, &thread_context_collector_typed_data, state); + thread_context_collector_state *state; + TypedData_Get_Struct(collector_instance, thread_context_collector_state, &thread_context_collector_typed_data, state); return gc_tracking_as_ruby_hash(state); } // Assumption 1: This function is called in a thread that is holding the Global VM Lock. Caller is responsible for enforcing this. static void trace_identifiers_for( - struct thread_context_collector_state *state, + thread_context_collector_state *state, VALUE thread, - struct trace_identifiers *trace_identifiers_result, + trace_identifiers *trace_identifiers_result, bool is_safe_to_allocate_objects ) { if (state->otel_context_enabled == OTEL_CONTEXT_ENABLED_ONLY) return; @@ -1415,8 +1415,8 @@ static bool should_collect_resource(VALUE root_span) { // Assumption: This method gets called BEFORE restarting profiling -- e.g. there are no components attempting to // trigger samples at the same time. static VALUE _native_reset_after_fork(DDTRACE_UNUSED VALUE self, VALUE collector_instance) { - struct thread_context_collector_state *state; - TypedData_Get_Struct(collector_instance, struct thread_context_collector_state, &thread_context_collector_typed_data, state); + thread_context_collector_state *state; + TypedData_Get_Struct(collector_instance, thread_context_collector_state, &thread_context_collector_typed_data, state); // Release all context memory before clearing the existing context st_foreach(state->hash_map_per_thread_context, hash_map_per_thread_context_free_values, 0 /* unused */); @@ -1430,7 +1430,7 @@ static VALUE _native_reset_after_fork(DDTRACE_UNUSED VALUE self, VALUE collector return Qtrue; } -static VALUE thread_list(struct thread_context_collector_state *state) { +static VALUE thread_list(thread_context_collector_state *state) { VALUE result = state->thread_list_buffer; rb_ary_clear(result); ddtrace_thread_list(result); @@ -1438,8 +1438,8 @@ static VALUE thread_list(struct thread_context_collector_state *state) { } void thread_context_collector_sample_allocation(VALUE self_instance, unsigned int sample_weight, VALUE new_object) { - struct thread_context_collector_state *state; - TypedData_Get_Struct(self_instance, struct thread_context_collector_state, &thread_context_collector_typed_data, state); + thread_context_collector_state *state; + TypedData_Get_Struct(self_instance, thread_context_collector_state, &thread_context_collector_typed_data, state); VALUE current_thread = rb_thread_current(); @@ -1512,7 +1512,7 @@ void thread_context_collector_sample_allocation(VALUE self_instance, unsigned in track_object(state->recorder_instance, new_object, sample_weight, optional_class_name); - struct per_thread_context *thread_context = get_or_create_context_for(current_thread, state); + per_thread_context *thread_context = get_or_create_context_for(current_thread, state); trigger_sample_for_thread( state, @@ -1585,7 +1585,7 @@ static VALUE read_otel_current_span_key_const(DDTRACE_UNUSED VALUE _unused) { return rb_const_get(trace_module, rb_intern("CURRENT_SPAN_KEY")); } -static VALUE get_otel_current_span_key(struct thread_context_collector_state *state, bool is_safe_to_allocate_objects) { +static VALUE get_otel_current_span_key(thread_context_collector_state *state, bool is_safe_to_allocate_objects) { if (state->otel_current_span_key == Qtrue) { // Qtrue means we haven't tried to extract it yet if (!is_safe_to_allocate_objects) { // Calling read_otel_current_span_key_const below can trigger exceptions and arbitrary Ruby code running (e.g. @@ -1608,7 +1608,7 @@ static VALUE get_otel_current_span_key(struct thread_context_collector_state *st // This method gets used when ddtrace is being used indirectly via the opentelemetry APIs. Information gets stored slightly // differently, and this codepath handles it. static void ddtrace_otel_trace_identifiers_for( - struct thread_context_collector_state *state, + thread_context_collector_state *state, VALUE *active_trace, VALUE *root_span, VALUE *numeric_span_id, @@ -1652,8 +1652,8 @@ static void ddtrace_otel_trace_identifiers_for( } void thread_context_collector_sample_skipped_allocation_samples(VALUE self_instance, unsigned int skipped_samples) { - struct thread_context_collector_state *state; - TypedData_Get_Struct(self_instance, struct thread_context_collector_state, &thread_context_collector_typed_data, state); + thread_context_collector_state *state; + TypedData_Get_Struct(self_instance, thread_context_collector_state, &thread_context_collector_typed_data, state); ddog_prof_Label labels[] = { // Providing .num = 0 should not be needed but the tracer-2.7 docker image ships a buggy gcc that complains about this @@ -1707,9 +1707,9 @@ static VALUE _native_sample_skipped_allocation_samples(DDTRACE_UNUSED VALUE self // root span id. // This matches the semantics of how ddtrace tracing creates a TraceOperation and assigns a local root span to it. static void otel_without_ddtrace_trace_identifiers_for( - struct thread_context_collector_state *state, + thread_context_collector_state *state, VALUE thread, - struct trace_identifiers *trace_identifiers_result, + trace_identifiers *trace_identifiers_result, bool is_safe_to_allocate_objects ) { VALUE context_storage = rb_thread_local_aref(thread, otel_context_storage_id /* __opentelemetry_context_storage__ */); @@ -1723,14 +1723,14 @@ static void otel_without_ddtrace_trace_identifiers_for( int active_context_index = RARRAY_LEN(context_storage) - 1; if (active_context_index < 0) return; - struct otel_span active_span = otel_span_from(rb_ary_entry(context_storage, active_context_index), otel_current_span_key); + otel_span active_span = otel_span_from(rb_ary_entry(context_storage, active_context_index), otel_current_span_key); if (active_span.span == Qnil) return; - struct otel_span local_root_span = active_span; + otel_span local_root_span = active_span; // Now find the oldest span starting from the active span that still has the same trace id as the active span for (int i = active_context_index - 1; i >= 0; i--) { - struct otel_span checking_span = otel_span_from(rb_ary_entry(context_storage, i), otel_current_span_key); + otel_span checking_span = otel_span_from(rb_ary_entry(context_storage, i), otel_current_span_key); if (checking_span.span == Qnil) return; if (rb_str_equal(active_span.trace_id, checking_span.trace_id) == Qfalse) break; @@ -1758,8 +1758,8 @@ static void otel_without_ddtrace_trace_identifiers_for( trace_identifiers_result->trace_endpoint = trace_resource; } -static struct otel_span otel_span_from(VALUE otel_context, VALUE otel_current_span_key) { - struct otel_span failed = {.span = Qnil, .span_id = Qnil, .trace_id = Qnil}; +static otel_span otel_span_from(VALUE otel_context, VALUE otel_current_span_key) { + otel_span failed = {.span = Qnil, .span_id = Qnil, .trace_id = Qnil}; if (otel_context == Qnil) return failed; @@ -1778,7 +1778,7 @@ static struct otel_span otel_span_from(VALUE otel_context, VALUE otel_current_sp VALUE trace_id = rb_ivar_get(span_context, at_trace_id_id /* @trace_id */); if (span_id == Qnil || trace_id == Qnil || !RB_TYPE_P(span_id, T_STRING) || !RB_TYPE_P(trace_id, T_STRING)) return failed; - return (struct otel_span) {.span = span, .span_id = span_id, .trace_id = trace_id}; + return (otel_span) {.span = span, .span_id = span_id, .trace_id = trace_id}; } // Otel span ids are represented as a big-endian 8-byte string @@ -1880,8 +1880,8 @@ static uint64_t otel_span_id_to_uint(VALUE otel_span_id) { // NOTE: In normal use, current_thread is expected to be == rb_thread_current(); the `current_thread` parameter only // exists to enable testing. VALUE thread_context_collector_sample_after_gvl_running(VALUE self_instance, VALUE current_thread, long current_monotonic_wall_time_ns) { - struct thread_context_collector_state *state; - TypedData_Get_Struct(self_instance, struct thread_context_collector_state, &thread_context_collector_typed_data, state); + thread_context_collector_state *state; + TypedData_Get_Struct(self_instance, thread_context_collector_state, &thread_context_collector_typed_data, state); if (!state->timeline_enabled) rb_raise(rb_eRuntimeError, "GVL profiling requires timeline to be enabled"); @@ -1895,7 +1895,7 @@ static uint64_t otel_span_id_to_uint(VALUE otel_span_id) { return Qfalse; } - struct per_thread_context *thread_context = get_or_create_context_for(current_thread, state); + per_thread_context *thread_context = get_or_create_context_for(current_thread, state); // We don't actually account for cpu-time during Waiting for GVL. BUT, we may chose to push an // extra sample to represent the period prior to Waiting for GVL. To support that, we retrieve the current @@ -1921,10 +1921,10 @@ static uint64_t otel_span_id_to_uint(VALUE otel_span_id) { // need to take when sampling cpu/wall-time for a thread that's in the "Waiting for GVL" state. __attribute__((warn_unused_result)) static bool handle_gvl_waiting( - struct thread_context_collector_state *state, + thread_context_collector_state *state, VALUE thread_being_sampled, VALUE stack_from_thread, - struct per_thread_context *thread_context, + per_thread_context *thread_context, sampling_buffer* sampling_buffer, long current_cpu_time_ns ) { @@ -2072,10 +2072,10 @@ static uint64_t otel_span_id_to_uint(VALUE otel_span_id) { static VALUE _native_apply_delta_to_cpu_time_at_previous_sample_ns(DDTRACE_UNUSED VALUE self, VALUE collector_instance, VALUE thread, VALUE delta_ns) { ENFORCE_THREAD(thread); - struct thread_context_collector_state *state; - TypedData_Get_Struct(collector_instance, struct thread_context_collector_state, &thread_context_collector_typed_data, state); + thread_context_collector_state *state; + TypedData_Get_Struct(collector_instance, thread_context_collector_state, &thread_context_collector_typed_data, state); - struct per_thread_context *thread_context = get_context_for(thread, state); + per_thread_context *thread_context = get_context_for(thread, state); if (thread_context == NULL) rb_raise(rb_eArgError, "Unexpected: This method cannot be used unless the per-thread context for the thread already exists"); thread_context->cpu_time_at_previous_sample_ns += NUM2LONG(delta_ns); @@ -2085,10 +2085,10 @@ static uint64_t otel_span_id_to_uint(VALUE otel_span_id) { #else static bool handle_gvl_waiting( - DDTRACE_UNUSED struct thread_context_collector_state *state, + DDTRACE_UNUSED thread_context_collector_state *state, DDTRACE_UNUSED VALUE thread_being_sampled, DDTRACE_UNUSED VALUE stack_from_thread, - DDTRACE_UNUSED struct per_thread_context *thread_context, + DDTRACE_UNUSED per_thread_context *thread_context, DDTRACE_UNUSED sampling_buffer* sampling_buffer, DDTRACE_UNUSED long current_cpu_time_ns ) { return false; } diff --git a/ext/datadog_profiling_native_extension/heap_recorder.h b/ext/datadog_profiling_native_extension/heap_recorder.h index bd298464e35..e59bf7d0187 100644 --- a/ext/datadog_profiling_native_extension/heap_recorder.h +++ b/ext/datadog_profiling_native_extension/heap_recorder.h @@ -17,7 +17,7 @@ typedef struct heap_recorder heap_recorder; // Extra data associated with each live object being tracked. -typedef struct live_object_data { +typedef struct { // The weight of this object from a sampling perspective. // // A notion of weight is preserved for each tracked object to allow for an approximate diff --git a/ext/datadog_profiling_native_extension/http_transport.c b/ext/datadog_profiling_native_extension/http_transport.c index d41ab7a6b4c..0852e36d7b6 100644 --- a/ext/datadog_profiling_native_extension/http_transport.c +++ b/ext/datadog_profiling_native_extension/http_transport.c @@ -13,13 +13,13 @@ static VALUE error_symbol = Qnil; // :error in Ruby static VALUE library_version_string = Qnil; -struct call_exporter_without_gvl_arguments { +typedef struct { ddog_prof_Exporter *exporter; ddog_prof_Exporter_Request_BuildResult *build_result; ddog_CancellationToken *cancel_token; ddog_prof_Exporter_SendResult result; bool send_ran; -}; +} call_exporter_without_gvl_arguments; static inline ddog_ByteSlice byte_slice_from_ruby_string(VALUE string); static VALUE _native_validate_exporter(VALUE self, VALUE exporter_configuration); @@ -165,7 +165,7 @@ static VALUE perform_export( // We'll release the Global VM Lock while we're calling send, so that the Ruby VM can continue to work while this // is pending - struct call_exporter_without_gvl_arguments args = + call_exporter_without_gvl_arguments args = {.exporter = exporter, .build_result = &build_result, .cancel_token = cancel_token, .send_ran = false}; // We use rb_thread_call_without_gvl2 instead of rb_thread_call_without_gvl as the gvl2 variant never raises any @@ -300,7 +300,7 @@ static VALUE _native_do_export( } static void *call_exporter_without_gvl(void *call_args) { - struct call_exporter_without_gvl_arguments *args = (struct call_exporter_without_gvl_arguments*) call_args; + call_exporter_without_gvl_arguments *args = (call_exporter_without_gvl_arguments*) call_args; args->result = ddog_prof_Exporter_send(args->exporter, &args->build_result->ok, args->cancel_token); args->send_ran = true; diff --git a/ext/datadog_profiling_native_extension/private_vm_api_access.h b/ext/datadog_profiling_native_extension/private_vm_api_access.h index 3e412f51ea5..030ff1b5757 100644 --- a/ext/datadog_profiling_native_extension/private_vm_api_access.h +++ b/ext/datadog_profiling_native_extension/private_vm_api_access.h @@ -18,7 +18,7 @@ typedef struct { rb_nativethread_id_t owner; } current_gvl_owner; -typedef struct frame_info { +typedef struct { union { struct { VALUE iseq; diff --git a/ext/datadog_profiling_native_extension/profiling.c b/ext/datadog_profiling_native_extension/profiling.c index a7bfe0d466b..e26bbf897a3 100644 --- a/ext/datadog_profiling_native_extension/profiling.c +++ b/ext/datadog_profiling_native_extension/profiling.c @@ -85,16 +85,16 @@ static VALUE native_working_p(DDTRACE_UNUSED VALUE _self) { return Qtrue; } -struct trigger_grab_gvl_and_raise_arguments { +typedef struct { VALUE exception_class; char *test_message; int test_message_arg; -}; +} trigger_grab_gvl_and_raise_arguments; static VALUE _native_grab_gvl_and_raise(DDTRACE_UNUSED VALUE _self, VALUE exception_class, VALUE test_message, VALUE test_message_arg, VALUE release_gvl) { ENFORCE_TYPE(test_message, T_STRING); - struct trigger_grab_gvl_and_raise_arguments args; + trigger_grab_gvl_and_raise_arguments args; args.exception_class = exception_class; args.test_message = StringValueCStr(test_message); @@ -110,7 +110,7 @@ static VALUE _native_grab_gvl_and_raise(DDTRACE_UNUSED VALUE _self, VALUE except } static void *trigger_grab_gvl_and_raise(void *trigger_args) { - struct trigger_grab_gvl_and_raise_arguments *args = (struct trigger_grab_gvl_and_raise_arguments *) trigger_args; + trigger_grab_gvl_and_raise_arguments *args = (trigger_grab_gvl_and_raise_arguments *) trigger_args; if (args->test_message_arg >= 0) { grab_gvl_and_raise(args->exception_class, "%s%d", args->test_message, args->test_message_arg); @@ -121,16 +121,16 @@ static void *trigger_grab_gvl_and_raise(void *trigger_args) { return NULL; } -struct trigger_grab_gvl_and_raise_syserr_arguments { +typedef struct { int syserr_errno; char *test_message; int test_message_arg; -}; +} trigger_grab_gvl_and_raise_syserr_arguments; static VALUE _native_grab_gvl_and_raise_syserr(DDTRACE_UNUSED VALUE _self, VALUE syserr_errno, VALUE test_message, VALUE test_message_arg, VALUE release_gvl) { ENFORCE_TYPE(test_message, T_STRING); - struct trigger_grab_gvl_and_raise_syserr_arguments args; + trigger_grab_gvl_and_raise_syserr_arguments args; args.syserr_errno = NUM2INT(syserr_errno); args.test_message = StringValueCStr(test_message); @@ -146,7 +146,7 @@ static VALUE _native_grab_gvl_and_raise_syserr(DDTRACE_UNUSED VALUE _self, VALUE } static void *trigger_grab_gvl_and_raise_syserr(void *trigger_args) { - struct trigger_grab_gvl_and_raise_syserr_arguments *args = (struct trigger_grab_gvl_and_raise_syserr_arguments *) trigger_args; + trigger_grab_gvl_and_raise_syserr_arguments *args = (trigger_grab_gvl_and_raise_syserr_arguments *) trigger_args; if (args->test_message_arg >= 0) { grab_gvl_and_raise_syserr(args->syserr_errno, "%s%d", args->test_message, args->test_message_arg); diff --git a/ext/datadog_profiling_native_extension/ruby_helpers.c b/ext/datadog_profiling_native_extension/ruby_helpers.c index 09b14d20855..34e9fa61c77 100644 --- a/ext/datadog_profiling_native_extension/ruby_helpers.c +++ b/ext/datadog_profiling_native_extension/ruby_helpers.c @@ -23,18 +23,18 @@ void ruby_helpers_init(void) { #define MAX_RAISE_MESSAGE_SIZE 256 -struct raise_arguments { +typedef struct { VALUE exception_class; char exception_message[MAX_RAISE_MESSAGE_SIZE]; -}; +} raise_args; static void *trigger_raise(void *raise_arguments) { - struct raise_arguments *args = (struct raise_arguments *) raise_arguments; + raise_args *args = (raise_args *) raise_arguments; rb_raise(args->exception_class, "%s", args->exception_message); } void grab_gvl_and_raise(VALUE exception_class, const char *format_string, ...) { - struct raise_arguments args; + raise_args args; args.exception_class = exception_class; @@ -55,18 +55,18 @@ void grab_gvl_and_raise(VALUE exception_class, const char *format_string, ...) { rb_bug("[ddtrace] Unexpected: Reached the end of grab_gvl_and_raise while raising '%s'\n", args.exception_message); } -struct syserr_raise_arguments { +typedef struct { int syserr_errno; char exception_message[MAX_RAISE_MESSAGE_SIZE]; -}; +} syserr_raise_args; static void *trigger_syserr_raise(void *syserr_raise_arguments) { - struct syserr_raise_arguments *args = (struct syserr_raise_arguments *) syserr_raise_arguments; + syserr_raise_args *args = (syserr_raise_args *) syserr_raise_arguments; rb_syserr_fail(args->syserr_errno, args->exception_message); } void grab_gvl_and_raise_syserr(int syserr_errno, const char *format_string, ...) { - struct syserr_raise_arguments args; + syserr_raise_args args; args.syserr_errno = syserr_errno; diff --git a/ext/datadog_profiling_native_extension/stack_recorder.c b/ext/datadog_profiling_native_extension/stack_recorder.c index 710b17356e2..349a9df89dd 100644 --- a/ext/datadog_profiling_native_extension/stack_recorder.c +++ b/ext/datadog_profiling_native_extension/stack_recorder.c @@ -173,18 +173,18 @@ static const uint8_t all_value_types_positions[] = // Struct for storing stats related to a profile in a particular slot. // These stats will share the same lifetime as the data in that profile slot. -typedef struct slot_stats { +typedef struct { // How many individual samples were recorded into this slot (un-weighted) uint64_t recorded_samples; } stats_slot; -typedef struct profile_slot { +typedef struct { ddog_prof_Profile profile; stats_slot stats; } profile_slot; // Contains native state for each instance -struct stack_recorder_state { +typedef struct { // Heap recorder instance heap_recorder *heap_recorder; bool heap_clean_after_gc_enabled; @@ -210,17 +210,17 @@ struct stack_recorder_state { long serialization_time_ns_max; uint64_t serialization_time_ns_total; } stats_lifetime; -}; +} stack_recorder_state; // Used to group mutex and the corresponding profile slot for easy unlocking after work is done. -typedef struct locked_profile_slot { +typedef struct { pthread_mutex_t *mutex; profile_slot *data; } locked_profile_slot; -struct call_serialize_without_gvl_arguments { +typedef struct { // Set by caller - struct stack_recorder_state *state; + stack_recorder_state *state; ddog_Timespec finish_timestamp; // Set by callee @@ -231,26 +231,26 @@ struct call_serialize_without_gvl_arguments { // Set by both bool serialize_ran; -}; +} call_serialize_without_gvl_arguments; static VALUE _native_new(VALUE klass); -static void initialize_slot_concurrency_control(struct stack_recorder_state *state); -static void initialize_profiles(struct stack_recorder_state *state, ddog_prof_Slice_ValueType sample_types); +static void initialize_slot_concurrency_control(stack_recorder_state *state); +static void initialize_profiles(stack_recorder_state *state, ddog_prof_Slice_ValueType sample_types); static void stack_recorder_typed_data_free(void *data); static VALUE _native_initialize(int argc, VALUE *argv, DDTRACE_UNUSED VALUE _self); static VALUE _native_serialize(VALUE self, VALUE recorder_instance); static VALUE ruby_time_from(ddog_Timespec ddprof_time); static void *call_serialize_without_gvl(void *call_args); -static locked_profile_slot sampler_lock_active_profile(struct stack_recorder_state *state); +static locked_profile_slot sampler_lock_active_profile(stack_recorder_state *state); static void sampler_unlock_active_profile(locked_profile_slot active_slot); -static profile_slot* serializer_flip_active_and_inactive_slots(struct stack_recorder_state *state); +static profile_slot* serializer_flip_active_and_inactive_slots(stack_recorder_state *state); static VALUE _native_active_slot(DDTRACE_UNUSED VALUE _self, VALUE recorder_instance); static VALUE _native_is_slot_one_mutex_locked(DDTRACE_UNUSED VALUE _self, VALUE recorder_instance); static VALUE _native_is_slot_two_mutex_locked(DDTRACE_UNUSED VALUE _self, VALUE recorder_instance); static VALUE test_slot_mutex_state(VALUE recorder_instance, int slot); static ddog_Timespec system_epoch_now_timespec(void); static VALUE _native_reset_after_fork(DDTRACE_UNUSED VALUE self, VALUE recorder_instance); -static void serializer_set_start_timestamp_for_next_profile(struct stack_recorder_state *state, ddog_Timespec start_time); +static void serializer_set_start_timestamp_for_next_profile(stack_recorder_state *state, ddog_Timespec start_time); static VALUE _native_record_endpoint(DDTRACE_UNUSED VALUE _self, VALUE recorder_instance, VALUE local_root_span_id, VALUE endpoint); static void reset_profile_slot(profile_slot *slot, ddog_Timespec *start_time /* Can be null */); static VALUE _native_track_object(DDTRACE_UNUSED VALUE _self, VALUE recorder_instance, VALUE new_obj, VALUE weight, VALUE alloc_class); @@ -316,7 +316,7 @@ static const rb_data_type_t stack_recorder_typed_data = { }; static VALUE _native_new(VALUE klass) { - struct stack_recorder_state *state = ruby_xcalloc(1, sizeof(struct stack_recorder_state)); + stack_recorder_state *state = ruby_xcalloc(1, sizeof(stack_recorder_state)); // Note: Any exceptions raised from this note until the TypedData_Wrap_Struct call will lead to the state memory // being leaked. @@ -354,7 +354,7 @@ static VALUE _native_new(VALUE klass) { return stack_recorder; } -static void initialize_slot_concurrency_control(struct stack_recorder_state *state) { +static void initialize_slot_concurrency_control(stack_recorder_state *state) { state->mutex_slot_one = (pthread_mutex_t) PTHREAD_MUTEX_INITIALIZER; state->mutex_slot_two = (pthread_mutex_t) PTHREAD_MUTEX_INITIALIZER; @@ -364,7 +364,7 @@ static void initialize_slot_concurrency_control(struct stack_recorder_state *sta state->active_slot = 1; } -static void initialize_profiles(struct stack_recorder_state *state, ddog_prof_Slice_ValueType sample_types) { +static void initialize_profiles(stack_recorder_state *state, ddog_prof_Slice_ValueType sample_types) { ddog_prof_Profile_NewResult slot_one_profile_result = ddog_prof_Profile_new(sample_types, NULL /* period is optional */, NULL /* start_time is optional */); @@ -391,7 +391,7 @@ static void initialize_profiles(struct stack_recorder_state *state, ddog_prof_Sl } static void stack_recorder_typed_data_free(void *state_ptr) { - struct stack_recorder_state *state = (struct stack_recorder_state *) state_ptr; + stack_recorder_state *state = (stack_recorder_state *) state_ptr; pthread_mutex_destroy(&state->mutex_slot_one); ddog_prof_Profile_drop(&state->profile_slot_one.profile); @@ -426,8 +426,8 @@ static VALUE _native_initialize(int argc, VALUE *argv, DDTRACE_UNUSED VALUE _sel ENFORCE_BOOLEAN(timeline_enabled); ENFORCE_BOOLEAN(heap_clean_after_gc_enabled); - struct stack_recorder_state *state; - TypedData_Get_Struct(recorder_instance, struct stack_recorder_state, &stack_recorder_typed_data, state); + stack_recorder_state *state; + TypedData_Get_Struct(recorder_instance, stack_recorder_state, &stack_recorder_typed_data, state); state->heap_clean_after_gc_enabled = (heap_clean_after_gc_enabled == Qtrue); @@ -517,8 +517,8 @@ static VALUE _native_initialize(int argc, VALUE *argv, DDTRACE_UNUSED VALUE _sel } static VALUE _native_serialize(DDTRACE_UNUSED VALUE _self, VALUE recorder_instance) { - struct stack_recorder_state *state; - TypedData_Get_Struct(recorder_instance, struct stack_recorder_state, &stack_recorder_typed_data, state); + stack_recorder_state *state; + TypedData_Get_Struct(recorder_instance, stack_recorder_state, &stack_recorder_typed_data, state); ddog_Timespec finish_timestamp = system_epoch_now_timespec(); // Need to do this while still holding on to the Global VM Lock; see comments on method for why @@ -532,7 +532,7 @@ static VALUE _native_serialize(DDTRACE_UNUSED VALUE _self, VALUE recorder_instan // We'll release the Global VM Lock while we're calling serialize, so that the Ruby VM can continue to work while this // is pending - struct call_serialize_without_gvl_arguments args = { + call_serialize_without_gvl_arguments args = { .state = state, .finish_timestamp = finish_timestamp, .serialize_ran = false @@ -597,8 +597,8 @@ static VALUE ruby_time_from(ddog_Timespec ddprof_time) { } void record_sample(VALUE recorder_instance, ddog_prof_Slice_Location locations, sample_values values, sample_labels labels) { - struct stack_recorder_state *state; - TypedData_Get_Struct(recorder_instance, struct stack_recorder_state, &stack_recorder_typed_data, state); + stack_recorder_state *state; + TypedData_Get_Struct(recorder_instance, stack_recorder_state, &stack_recorder_typed_data, state); locked_profile_slot active_slot = sampler_lock_active_profile(state); @@ -652,8 +652,8 @@ void record_sample(VALUE recorder_instance, ddog_prof_Slice_Location locations, } void track_object(VALUE recorder_instance, VALUE new_object, unsigned int sample_weight, ddog_CharSlice *alloc_class) { - struct stack_recorder_state *state; - TypedData_Get_Struct(recorder_instance, struct stack_recorder_state, &stack_recorder_typed_data, state); + stack_recorder_state *state; + TypedData_Get_Struct(recorder_instance, stack_recorder_state, &stack_recorder_typed_data, state); // FIXME: Heap sampling currently has to be done in 2 parts because the construction of locations is happening // very late in the allocation-sampling path (which is shared with the cpu sampling path). This can // be fixed with some refactoring but for now this leads to a less impactful change. @@ -661,8 +661,8 @@ void track_object(VALUE recorder_instance, VALUE new_object, unsigned int sample } void record_endpoint(VALUE recorder_instance, uint64_t local_root_span_id, ddog_CharSlice endpoint) { - struct stack_recorder_state *state; - TypedData_Get_Struct(recorder_instance, struct stack_recorder_state, &stack_recorder_typed_data, state); + stack_recorder_state *state; + TypedData_Get_Struct(recorder_instance, stack_recorder_state, &stack_recorder_typed_data, state); locked_profile_slot active_slot = sampler_lock_active_profile(state); @@ -676,8 +676,8 @@ void record_endpoint(VALUE recorder_instance, uint64_t local_root_span_id, ddog_ } void recorder_after_gc_step(VALUE recorder_instance) { - struct stack_recorder_state *state; - TypedData_Get_Struct(recorder_instance, struct stack_recorder_state, &stack_recorder_typed_data, state); + stack_recorder_state *state; + TypedData_Get_Struct(recorder_instance, stack_recorder_state, &stack_recorder_typed_data, state); if (state->heap_clean_after_gc_enabled) heap_recorder_update_young_objects(state->heap_recorder); } @@ -687,7 +687,7 @@ void recorder_after_gc_step(VALUE recorder_instance) { // Heap recorder iteration context allows us access to stack recorder state and profile being serialized // during iteration of heap recorder live objects. typedef struct heap_recorder_iteration_context { - struct stack_recorder_state *state; + stack_recorder_state *state; profile_slot *slot; bool error; @@ -749,7 +749,7 @@ static bool add_heap_sample_to_active_profile_without_gvl(heap_recorder_iteratio return true; } -static void build_heap_profile_without_gvl(struct stack_recorder_state *state, profile_slot *slot) { +static void build_heap_profile_without_gvl(stack_recorder_state *state, profile_slot *slot) { heap_recorder_iteration_context iteration_context = { .state = state, .slot = slot, @@ -770,7 +770,7 @@ static void build_heap_profile_without_gvl(struct stack_recorder_state *state, p } static void *call_serialize_without_gvl(void *call_args) { - struct call_serialize_without_gvl_arguments *args = (struct call_serialize_without_gvl_arguments *) call_args; + call_serialize_without_gvl_arguments *args = (call_serialize_without_gvl_arguments *) call_args; long serialize_no_gvl_start_time_ns = monotonic_wall_time_now_ns(DO_NOT_RAISE_ON_FAILURE); @@ -796,7 +796,7 @@ VALUE enforce_recorder_instance(VALUE object) { return object; } -static locked_profile_slot sampler_lock_active_profile(struct stack_recorder_state *state) { +static locked_profile_slot sampler_lock_active_profile(stack_recorder_state *state) { int error; for (int attempts = 0; attempts < 2; attempts++) { @@ -823,7 +823,7 @@ static void sampler_unlock_active_profile(locked_profile_slot active_slot) { ENFORCE_SUCCESS_GVL(pthread_mutex_unlock(active_slot.mutex)); } -static profile_slot* serializer_flip_active_and_inactive_slots(struct stack_recorder_state *state) { +static profile_slot* serializer_flip_active_and_inactive_slots(stack_recorder_state *state) { int previously_active_slot = state->active_slot; if (previously_active_slot != 1 && previously_active_slot != 2) { @@ -849,8 +849,8 @@ static profile_slot* serializer_flip_active_and_inactive_slots(struct stack_reco // This method exists only to enable testing Datadog::Profiling::StackRecorder behavior using RSpec. // It SHOULD NOT be used for other purposes. static VALUE _native_active_slot(DDTRACE_UNUSED VALUE _self, VALUE recorder_instance) { - struct stack_recorder_state *state; - TypedData_Get_Struct(recorder_instance, struct stack_recorder_state, &stack_recorder_typed_data, state); + stack_recorder_state *state; + TypedData_Get_Struct(recorder_instance, stack_recorder_state, &stack_recorder_typed_data, state); return INT2NUM(state->active_slot); } @@ -864,8 +864,8 @@ static VALUE _native_is_slot_one_mutex_locked(DDTRACE_UNUSED VALUE _self, VALUE static VALUE _native_is_slot_two_mutex_locked(DDTRACE_UNUSED VALUE _self, VALUE recorder_instance) { return test_slot_mutex_state(recorder_instance, 2); } static VALUE test_slot_mutex_state(VALUE recorder_instance, int slot) { - struct stack_recorder_state *state; - TypedData_Get_Struct(recorder_instance, struct stack_recorder_state, &stack_recorder_typed_data, state); + stack_recorder_state *state; + TypedData_Get_Struct(recorder_instance, stack_recorder_state, &stack_recorder_typed_data, state); pthread_mutex_t *slot_mutex = (slot == 1) ? &state->mutex_slot_one : &state->mutex_slot_two; @@ -895,8 +895,8 @@ static ddog_Timespec system_epoch_now_timespec(void) { // Assumption: This method gets called BEFORE restarting profiling -- e.g. there are no components attempting to // trigger samples at the same time. static VALUE _native_reset_after_fork(DDTRACE_UNUSED VALUE self, VALUE recorder_instance) { - struct stack_recorder_state *state; - TypedData_Get_Struct(recorder_instance, struct stack_recorder_state, &stack_recorder_typed_data, state); + stack_recorder_state *state; + TypedData_Get_Struct(recorder_instance, stack_recorder_state, &stack_recorder_typed_data, state); // In case the fork happened halfway through `serializer_flip_active_and_inactive_slots` execution and the // resulting state is inconsistent, we make sure to reset it back to the initial state. @@ -912,7 +912,7 @@ static VALUE _native_reset_after_fork(DDTRACE_UNUSED VALUE self, VALUE recorder_ // Assumption 1: This method is called with the GVL being held, because `ddog_prof_Profile_reset` mutates the profile and must // not be interrupted part-way through by a VM fork. -static void serializer_set_start_timestamp_for_next_profile(struct stack_recorder_state *state, ddog_Timespec start_time) { +static void serializer_set_start_timestamp_for_next_profile(stack_recorder_state *state, ddog_Timespec start_time) { // Before making this profile active, we reset it so that it uses the correct start_time for its start profile_slot *next_profile_slot = (state->active_slot == 1) ? &state->profile_slot_two : &state->profile_slot_one; reset_profile_slot(next_profile_slot, &start_time); @@ -972,8 +972,8 @@ static void reset_profile_slot(profile_slot *slot, ddog_Timespec *start_time /* // This method exists only to enable testing Datadog::Profiling::StackRecorder behavior using RSpec. // It SHOULD NOT be used for other purposes. static VALUE _native_start_fake_slow_heap_serialization(DDTRACE_UNUSED VALUE _self, VALUE recorder_instance) { - struct stack_recorder_state *state; - TypedData_Get_Struct(recorder_instance, struct stack_recorder_state, &stack_recorder_typed_data, state); + stack_recorder_state *state; + TypedData_Get_Struct(recorder_instance, stack_recorder_state, &stack_recorder_typed_data, state); heap_recorder_prepare_iteration(state->heap_recorder); @@ -983,8 +983,8 @@ static VALUE _native_start_fake_slow_heap_serialization(DDTRACE_UNUSED VALUE _se // This method exists only to enable testing Datadog::Profiling::StackRecorder behavior using RSpec. // It SHOULD NOT be used for other purposes. static VALUE _native_end_fake_slow_heap_serialization(DDTRACE_UNUSED VALUE _self, VALUE recorder_instance) { - struct stack_recorder_state *state; - TypedData_Get_Struct(recorder_instance, struct stack_recorder_state, &stack_recorder_typed_data, state); + stack_recorder_state *state; + TypedData_Get_Struct(recorder_instance, stack_recorder_state, &stack_recorder_typed_data, state); heap_recorder_finish_iteration(state->heap_recorder); @@ -994,15 +994,15 @@ static VALUE _native_end_fake_slow_heap_serialization(DDTRACE_UNUSED VALUE _self // This method exists only to enable testing Datadog::Profiling::StackRecorder behavior using RSpec. // It SHOULD NOT be used for other purposes. static VALUE _native_debug_heap_recorder(DDTRACE_UNUSED VALUE _self, VALUE recorder_instance) { - struct stack_recorder_state *state; - TypedData_Get_Struct(recorder_instance, struct stack_recorder_state, &stack_recorder_typed_data, state); + stack_recorder_state *state; + TypedData_Get_Struct(recorder_instance, stack_recorder_state, &stack_recorder_typed_data, state); return heap_recorder_testonly_debug(state->heap_recorder); } static VALUE _native_stats(DDTRACE_UNUSED VALUE self, VALUE recorder_instance) { - struct stack_recorder_state *state; - TypedData_Get_Struct(recorder_instance, struct stack_recorder_state, &stack_recorder_typed_data, state); + stack_recorder_state *state; + TypedData_Get_Struct(recorder_instance, stack_recorder_state, &stack_recorder_typed_data, state); uint64_t total_serializations = state->stats_lifetime.serialization_successes + state->stats_lifetime.serialization_failures; @@ -1040,15 +1040,15 @@ static VALUE build_profile_stats(profile_slot *slot, long serialization_time_ns, static VALUE _native_is_object_recorded(DDTRACE_UNUSED VALUE _self, VALUE recorder_instance, VALUE obj_id) { ENFORCE_TYPE(obj_id, T_FIXNUM); - struct stack_recorder_state *state; - TypedData_Get_Struct(recorder_instance, struct stack_recorder_state, &stack_recorder_typed_data, state); + stack_recorder_state *state; + TypedData_Get_Struct(recorder_instance, stack_recorder_state, &stack_recorder_typed_data, state); return heap_recorder_testonly_is_object_recorded(state->heap_recorder, obj_id); } static VALUE _native_heap_recorder_reset_last_update(DDTRACE_UNUSED VALUE _self, VALUE recorder_instance) { - struct stack_recorder_state *state; - TypedData_Get_Struct(recorder_instance, struct stack_recorder_state, &stack_recorder_typed_data, state); + stack_recorder_state *state; + TypedData_Get_Struct(recorder_instance, stack_recorder_state, &stack_recorder_typed_data, state); heap_recorder_testonly_reset_last_update(state->heap_recorder); diff --git a/ext/datadog_profiling_native_extension/stack_recorder.h b/ext/datadog_profiling_native_extension/stack_recorder.h index 7a500c42c1b..38b228afc78 100644 --- a/ext/datadog_profiling_native_extension/stack_recorder.h +++ b/ext/datadog_profiling_native_extension/stack_recorder.h @@ -13,7 +13,7 @@ typedef struct { int64_t timeline_wall_time_ns; } sample_values; -typedef struct sample_labels { +typedef struct { ddog_prof_Slice_Label labels; // This is used to allow the `Collectors::Stack` to modify the existing label, if any. This MUST be NULL or point diff --git a/ext/datadog_profiling_native_extension/time_helpers.h b/ext/datadog_profiling_native_extension/time_helpers.h index 87bc5341fc9..08390cd8c11 100644 --- a/ext/datadog_profiling_native_extension/time_helpers.h +++ b/ext/datadog_profiling_native_extension/time_helpers.h @@ -39,7 +39,7 @@ static inline long system_epoch_time_now_ns(raise_on_failure_setting raise_on_fa // https://docs.redhat.com/en/documentation/red_hat_enterprise_linux_for_real_time/7/html/reference_guide/sect-posix_clocks#Using_clock_getres_to_compare_clock_resolution // We introduce here a separate type for it, so as to make it harder to misuse/more explicit when these timestamps are used -typedef struct coarse_instant { +typedef struct { long timestamp_ns; } coarse_instant; From 6fc4c8ee2b3bf3f8cd76e3825e86c18fbbbc0ed0 Mon Sep 17 00:00:00 2001 From: Oleg Pudeyev <156273877+p-datadog@users.noreply.github.com> Date: Fri, 3 Jan 2025 16:04:15 -0500 Subject: [PATCH 107/161] Update integrations images build script (#4243) Remove pre-2.5 image builds commands since the minimum Ruby version we now support is 2.5. Add 3.4 as a supported Ruby version to the help text (it is already handled by the script). Co-authored-by: Oleg Pudeyev Co-authored-by: Ivo Anjo --- integration/script/build-images | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/integration/script/build-images b/integration/script/build-images index 9a98f4f9516..d3a0f633a25 100755 --- a/integration/script/build-images +++ b/integration/script/build-images @@ -14,7 +14,7 @@ while getopts ":hv:" opt; do echo "Usage: ./script/build-images [-v RUBY_VERSION]" echo echo "If no Ruby version is specified, images are built for each of the" - echo "supported versions (currently 2.1 through 3.3)." + echo "supported versions (currently 2.5 through 3.4)." exit 0 ;; v) @@ -39,10 +39,6 @@ docker build -t datadog/dd-apm-demo:agent -f $INTEGRATION_DIR/images/agent/Docke if test -n "$APP_RUBY_VERSION"; then docker build -t datadog/dd-apm-demo:rb-$APP_RUBY_VERSION -f $INTEGRATION_DIR/images/ruby/$APP_RUBY_VERSION/Dockerfile $INTEGRATION_DIR/images else - docker build -t datadog/dd-apm-demo:rb-2.1 -f $INTEGRATION_DIR/images/ruby/2.1/Dockerfile $INTEGRATION_DIR/images - docker build -t datadog/dd-apm-demo:rb-2.2 -f $INTEGRATION_DIR/images/ruby/2.2/Dockerfile $INTEGRATION_DIR/images - docker build -t datadog/dd-apm-demo:rb-2.3 -f $INTEGRATION_DIR/images/ruby/2.3/Dockerfile $INTEGRATION_DIR/images - docker build -t datadog/dd-apm-demo:rb-2.4 -f $INTEGRATION_DIR/images/ruby/2.4/Dockerfile $INTEGRATION_DIR/images docker build -t datadog/dd-apm-demo:rb-2.5 -f $INTEGRATION_DIR/images/ruby/2.5/Dockerfile $INTEGRATION_DIR/images docker build -t datadog/dd-apm-demo:rb-2.6 -f $INTEGRATION_DIR/images/ruby/2.6/Dockerfile $INTEGRATION_DIR/images docker build -t datadog/dd-apm-demo:rb-2.7 -f $INTEGRATION_DIR/images/ruby/2.7/Dockerfile $INTEGRATION_DIR/images From f3e66eaf60aa5d953c48b4aa0dc6dba556b8cdb8 Mon Sep 17 00:00:00 2001 From: Oleg Pudeyev <156273877+p-datadog@users.noreply.github.com> Date: Fri, 3 Jan 2025 16:04:45 -0500 Subject: [PATCH 108/161] Add standard to development guide (#4242) Co-authored-by: Oleg Pudeyev Co-authored-by: Ivo Anjo --- docs/DevelopmentGuide.md | 21 ++++++++++++++++++++- 1 file changed, 20 insertions(+), 1 deletion(-) diff --git a/docs/DevelopmentGuide.md b/docs/DevelopmentGuide.md index 087695e1e30..f3f07ec21b2 100644 --- a/docs/DevelopmentGuide.md +++ b/docs/DevelopmentGuide.md @@ -223,12 +223,31 @@ https://github.com/datadog/dd-apm-test-agent#readme **Linting** -The trace library uses Rubocop to enforce [code style](https://github.com/bbatsov/ruby-style-guide) and quality. To check, run: +Most of the library uses Rubocop to enforce [code style](https://github.com/bbatsov/ruby-style-guide) and quality. To check, run: ``` $ bundle exec rake rubocop ``` +To change your code to the version that rubocop wants, run: + +``` +$ bundle exec rake rubocop -A +``` + +Profiling and Dynamic Instrumentation use [standard](https://github.com/standardrb/standard) +instead of Rubocop. To check files with standard, run: + +``` +$ bundle exec rake standard +``` + +To change your code to the version that standard wants, run: + +``` +$ bundle exec rake standard:fix +``` + ## Appendix ### Writing new integrations From d4a3bab219906c3256b91398e43da5450d1e1af6 Mon Sep 17 00:00:00 2001 From: TonyCTHsu <16049123+TonyCTHsu@users.noreply.github.com> Date: Sun, 5 Jan 2025 00:16:24 +0000 Subject: [PATCH 109/161] =?UTF-8?q?[=F0=9F=A4=96]=20Update=20Latest=20Depe?= =?UTF-8?q?ndency:=20https://github.com/DataDog/dd-trace-rb/actions/runs/1?= =?UTF-8?q?2614773826?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- gemfiles/jruby_9.2_activesupport.gemfile.lock | 2 +- gemfiles/jruby_9.2_aws.gemfile.lock | 2 +- gemfiles/jruby_9.2_contrib.gemfile.lock | 2 +- gemfiles/jruby_9.2_contrib_old.gemfile.lock | 2 +- gemfiles/jruby_9.2_core_old.gemfile.lock | 2 +- gemfiles/jruby_9.2_elasticsearch_7.gemfile.lock | 2 +- gemfiles/jruby_9.2_elasticsearch_8.gemfile.lock | 2 +- gemfiles/jruby_9.2_elasticsearch_latest.gemfile.lock | 2 +- gemfiles/jruby_9.2_graphql_2.0.gemfile.lock | 2 +- gemfiles/jruby_9.2_http.gemfile.lock | 2 +- gemfiles/jruby_9.2_opensearch_2.gemfile.lock | 2 +- gemfiles/jruby_9.2_opensearch_3.gemfile.lock | 2 +- gemfiles/jruby_9.2_opensearch_latest.gemfile.lock | 2 +- gemfiles/jruby_9.2_rack_1.gemfile.lock | 2 +- gemfiles/jruby_9.2_rack_2.gemfile.lock | 2 +- gemfiles/jruby_9.2_rack_3.gemfile.lock | 2 +- gemfiles/jruby_9.2_rack_latest.gemfile.lock | 2 +- gemfiles/jruby_9.2_rails5_mysql2.gemfile.lock | 2 +- gemfiles/jruby_9.2_rails5_postgres.gemfile.lock | 2 +- gemfiles/jruby_9.2_rails5_postgres_redis.gemfile.lock | 2 +- ...uby_9.2_rails5_postgres_redis_activesupport.gemfile.lock | 2 +- gemfiles/jruby_9.2_rails5_postgres_sidekiq.gemfile.lock | 2 +- gemfiles/jruby_9.2_rails5_semantic_logger.gemfile.lock | 2 +- gemfiles/jruby_9.2_rails61_mysql2.gemfile.lock | 2 +- gemfiles/jruby_9.2_rails61_postgres.gemfile.lock | 2 +- gemfiles/jruby_9.2_rails61_postgres_redis.gemfile.lock | 2 +- gemfiles/jruby_9.2_rails61_postgres_sidekiq.gemfile.lock | 2 +- gemfiles/jruby_9.2_rails61_semantic_logger.gemfile.lock | 2 +- gemfiles/jruby_9.2_rails6_mysql2.gemfile.lock | 2 +- gemfiles/jruby_9.2_rails6_postgres.gemfile.lock | 2 +- gemfiles/jruby_9.2_rails6_postgres_redis.gemfile.lock | 2 +- ...uby_9.2_rails6_postgres_redis_activesupport.gemfile.lock | 2 +- gemfiles/jruby_9.2_rails6_postgres_sidekiq.gemfile.lock | 2 +- gemfiles/jruby_9.2_rails6_semantic_logger.gemfile.lock | 2 +- gemfiles/jruby_9.2_redis_3.gemfile.lock | 2 +- gemfiles/jruby_9.2_redis_4.gemfile.lock | 2 +- gemfiles/jruby_9.2_redis_5.gemfile.lock | 2 +- gemfiles/jruby_9.2_relational_db.gemfile.lock | 2 +- gemfiles/jruby_9.2_resque2_redis3.gemfile.lock | 2 +- gemfiles/jruby_9.2_resque2_redis4.gemfile.lock | 2 +- gemfiles/jruby_9.2_sinatra_2.gemfile.lock | 2 +- gemfiles/jruby_9.2_stripe_10.gemfile.lock | 2 +- gemfiles/jruby_9.2_stripe_11.gemfile.lock | 2 +- gemfiles/jruby_9.2_stripe_12.gemfile.lock | 2 +- gemfiles/jruby_9.2_stripe_7.gemfile.lock | 2 +- gemfiles/jruby_9.2_stripe_8.gemfile.lock | 2 +- gemfiles/jruby_9.2_stripe_9.gemfile.lock | 2 +- gemfiles/jruby_9.2_stripe_latest.gemfile.lock | 2 +- gemfiles/jruby_9.2_stripe_min.gemfile.lock | 2 +- gemfiles/jruby_9.3_activesupport.gemfile.lock | 2 +- gemfiles/jruby_9.3_aws.gemfile.lock | 2 +- gemfiles/jruby_9.3_contrib.gemfile.lock | 2 +- gemfiles/jruby_9.3_contrib_old.gemfile.lock | 2 +- gemfiles/jruby_9.3_core_old.gemfile.lock | 2 +- gemfiles/jruby_9.3_elasticsearch_7.gemfile.lock | 2 +- gemfiles/jruby_9.3_elasticsearch_8.gemfile.lock | 2 +- gemfiles/jruby_9.3_elasticsearch_latest.gemfile.lock | 2 +- gemfiles/jruby_9.3_graphql_1.13.gemfile.lock | 2 +- gemfiles/jruby_9.3_graphql_2.0.gemfile.lock | 2 +- gemfiles/jruby_9.3_http.gemfile.lock | 2 +- gemfiles/jruby_9.3_opensearch_2.gemfile.lock | 2 +- gemfiles/jruby_9.3_opensearch_3.gemfile.lock | 2 +- gemfiles/jruby_9.3_opensearch_latest.gemfile.lock | 2 +- gemfiles/jruby_9.3_rack_1.gemfile.lock | 2 +- gemfiles/jruby_9.3_rack_2.gemfile.lock | 2 +- gemfiles/jruby_9.3_rack_3.gemfile.lock | 2 +- gemfiles/jruby_9.3_rack_latest.gemfile.lock | 2 +- gemfiles/jruby_9.3_rails5_mysql2.gemfile.lock | 2 +- gemfiles/jruby_9.3_rails5_postgres.gemfile.lock | 2 +- gemfiles/jruby_9.3_rails5_postgres_redis.gemfile.lock | 2 +- ...uby_9.3_rails5_postgres_redis_activesupport.gemfile.lock | 2 +- gemfiles/jruby_9.3_rails5_postgres_sidekiq.gemfile.lock | 2 +- gemfiles/jruby_9.3_rails5_semantic_logger.gemfile.lock | 2 +- gemfiles/jruby_9.3_rails61_mysql2.gemfile.lock | 2 +- gemfiles/jruby_9.3_rails61_postgres.gemfile.lock | 2 +- gemfiles/jruby_9.3_rails61_postgres_redis.gemfile.lock | 2 +- gemfiles/jruby_9.3_rails61_postgres_sidekiq.gemfile.lock | 2 +- gemfiles/jruby_9.3_rails61_semantic_logger.gemfile.lock | 2 +- gemfiles/jruby_9.3_rails6_mysql2.gemfile.lock | 2 +- gemfiles/jruby_9.3_rails6_postgres.gemfile.lock | 2 +- gemfiles/jruby_9.3_rails6_postgres_redis.gemfile.lock | 2 +- ...uby_9.3_rails6_postgres_redis_activesupport.gemfile.lock | 2 +- gemfiles/jruby_9.3_rails6_postgres_sidekiq.gemfile.lock | 2 +- gemfiles/jruby_9.3_rails6_semantic_logger.gemfile.lock | 2 +- gemfiles/jruby_9.3_redis_3.gemfile.lock | 2 +- gemfiles/jruby_9.3_redis_4.gemfile.lock | 2 +- gemfiles/jruby_9.3_redis_5.gemfile.lock | 2 +- gemfiles/jruby_9.3_relational_db.gemfile.lock | 2 +- gemfiles/jruby_9.3_resque2_redis3.gemfile.lock | 2 +- gemfiles/jruby_9.3_resque2_redis4.gemfile.lock | 2 +- gemfiles/jruby_9.3_sinatra_2.gemfile.lock | 2 +- gemfiles/jruby_9.3_sinatra_3.gemfile.lock | 2 +- gemfiles/jruby_9.3_stripe_10.gemfile.lock | 2 +- gemfiles/jruby_9.3_stripe_11.gemfile.lock | 2 +- gemfiles/jruby_9.3_stripe_12.gemfile.lock | 2 +- gemfiles/jruby_9.3_stripe_7.gemfile.lock | 2 +- gemfiles/jruby_9.3_stripe_8.gemfile.lock | 2 +- gemfiles/jruby_9.3_stripe_9.gemfile.lock | 2 +- gemfiles/jruby_9.3_stripe_latest.gemfile.lock | 2 +- gemfiles/jruby_9.3_stripe_min.gemfile.lock | 2 +- gemfiles/jruby_9.4_activesupport.gemfile.lock | 2 +- gemfiles/jruby_9.4_aws.gemfile.lock | 2 +- gemfiles/jruby_9.4_contrib.gemfile.lock | 2 +- gemfiles/jruby_9.4_contrib_old.gemfile.lock | 2 +- gemfiles/jruby_9.4_core_old.gemfile.lock | 2 +- gemfiles/jruby_9.4_elasticsearch_7.gemfile.lock | 2 +- gemfiles/jruby_9.4_elasticsearch_8.gemfile.lock | 2 +- gemfiles/jruby_9.4_elasticsearch_latest.gemfile.lock | 2 +- gemfiles/jruby_9.4_graphql_1.13.gemfile.lock | 2 +- gemfiles/jruby_9.4_graphql_2.0.gemfile.lock | 2 +- gemfiles/jruby_9.4_graphql_2.1.gemfile.lock | 2 +- gemfiles/jruby_9.4_graphql_2.2.gemfile.lock | 2 +- gemfiles/jruby_9.4_graphql_2.3.gemfile.lock | 2 +- gemfiles/jruby_9.4_http.gemfile.lock | 2 +- gemfiles/jruby_9.4_opensearch_2.gemfile.lock | 2 +- gemfiles/jruby_9.4_opensearch_3.gemfile.lock | 2 +- gemfiles/jruby_9.4_opensearch_latest.gemfile.lock | 2 +- gemfiles/jruby_9.4_rack_1.gemfile.lock | 2 +- gemfiles/jruby_9.4_rack_2.gemfile.lock | 2 +- gemfiles/jruby_9.4_rack_3.gemfile.lock | 2 +- gemfiles/jruby_9.4_rack_latest.gemfile.lock | 2 +- gemfiles/jruby_9.4_rails61_mysql2.gemfile.lock | 2 +- gemfiles/jruby_9.4_rails61_postgres.gemfile.lock | 2 +- gemfiles/jruby_9.4_rails61_postgres_redis.gemfile.lock | 2 +- gemfiles/jruby_9.4_rails61_postgres_sidekiq.gemfile.lock | 2 +- gemfiles/jruby_9.4_rails61_semantic_logger.gemfile.lock | 2 +- gemfiles/jruby_9.4_redis_3.gemfile.lock | 2 +- gemfiles/jruby_9.4_redis_4.gemfile.lock | 2 +- gemfiles/jruby_9.4_redis_5.gemfile.lock | 2 +- gemfiles/jruby_9.4_relational_db.gemfile.lock | 2 +- gemfiles/jruby_9.4_resque2_redis3.gemfile.lock | 2 +- gemfiles/jruby_9.4_resque2_redis4.gemfile.lock | 2 +- gemfiles/jruby_9.4_sinatra_2.gemfile.lock | 2 +- gemfiles/jruby_9.4_sinatra_3.gemfile.lock | 2 +- gemfiles/jruby_9.4_sinatra_4.gemfile.lock | 2 +- gemfiles/jruby_9.4_stripe_10.gemfile.lock | 2 +- gemfiles/jruby_9.4_stripe_11.gemfile.lock | 2 +- gemfiles/jruby_9.4_stripe_12.gemfile.lock | 2 +- gemfiles/jruby_9.4_stripe_7.gemfile.lock | 2 +- gemfiles/jruby_9.4_stripe_8.gemfile.lock | 2 +- gemfiles/jruby_9.4_stripe_9.gemfile.lock | 2 +- gemfiles/jruby_9.4_stripe_latest.gemfile.lock | 2 +- gemfiles/jruby_9.4_stripe_min.gemfile.lock | 2 +- gemfiles/ruby_2.5_activesupport.gemfile.lock | 4 ++-- gemfiles/ruby_2.5_aws.gemfile.lock | 4 ++-- gemfiles/ruby_2.5_contrib.gemfile.lock | 4 ++-- gemfiles/ruby_2.5_contrib_old.gemfile.lock | 4 ++-- gemfiles/ruby_2.5_core_old.gemfile.lock | 4 ++-- gemfiles/ruby_2.5_elasticsearch_7.gemfile.lock | 4 ++-- gemfiles/ruby_2.5_elasticsearch_8.gemfile.lock | 4 ++-- gemfiles/ruby_2.5_elasticsearch_latest.gemfile.lock | 4 ++-- gemfiles/ruby_2.5_graphql_2.0.gemfile.lock | 4 ++-- gemfiles/ruby_2.5_hanami_1.gemfile.lock | 4 ++-- gemfiles/ruby_2.5_http.gemfile.lock | 4 ++-- gemfiles/ruby_2.5_opensearch_2.gemfile.lock | 4 ++-- gemfiles/ruby_2.5_opensearch_3.gemfile.lock | 4 ++-- gemfiles/ruby_2.5_opensearch_latest.gemfile.lock | 4 ++-- gemfiles/ruby_2.5_rack_1.gemfile.lock | 4 ++-- gemfiles/ruby_2.5_rack_2.gemfile.lock | 4 ++-- gemfiles/ruby_2.5_rack_3.gemfile.lock | 4 ++-- gemfiles/ruby_2.5_rack_latest.gemfile.lock | 4 ++-- gemfiles/ruby_2.5_rails4_mysql2.gemfile.lock | 4 ++-- gemfiles/ruby_2.5_rails4_postgres.gemfile.lock | 4 ++-- gemfiles/ruby_2.5_rails4_postgres_redis.gemfile.lock | 4 ++-- gemfiles/ruby_2.5_rails4_postgres_sidekiq.gemfile.lock | 4 ++-- gemfiles/ruby_2.5_rails4_semantic_logger.gemfile.lock | 4 ++-- gemfiles/ruby_2.5_rails5_mysql2.gemfile.lock | 4 ++-- gemfiles/ruby_2.5_rails5_postgres.gemfile.lock | 4 ++-- gemfiles/ruby_2.5_rails5_postgres_redis.gemfile.lock | 4 ++-- ...uby_2.5_rails5_postgres_redis_activesupport.gemfile.lock | 4 ++-- gemfiles/ruby_2.5_rails5_postgres_sidekiq.gemfile.lock | 4 ++-- gemfiles/ruby_2.5_rails5_semantic_logger.gemfile.lock | 4 ++-- gemfiles/ruby_2.5_rails61_mysql2.gemfile.lock | 4 ++-- gemfiles/ruby_2.5_rails61_postgres.gemfile.lock | 4 ++-- gemfiles/ruby_2.5_rails61_postgres_redis.gemfile.lock | 4 ++-- gemfiles/ruby_2.5_rails61_postgres_sidekiq.gemfile.lock | 4 ++-- gemfiles/ruby_2.5_rails61_semantic_logger.gemfile.lock | 4 ++-- gemfiles/ruby_2.5_rails6_mysql2.gemfile.lock | 4 ++-- gemfiles/ruby_2.5_rails6_postgres.gemfile.lock | 4 ++-- gemfiles/ruby_2.5_rails6_postgres_redis.gemfile.lock | 4 ++-- ...uby_2.5_rails6_postgres_redis_activesupport.gemfile.lock | 4 ++-- gemfiles/ruby_2.5_rails6_postgres_sidekiq.gemfile.lock | 4 ++-- gemfiles/ruby_2.5_rails6_semantic_logger.gemfile.lock | 4 ++-- gemfiles/ruby_2.5_redis_3.gemfile.lock | 4 ++-- gemfiles/ruby_2.5_redis_4.gemfile.lock | 4 ++-- gemfiles/ruby_2.5_redis_5.gemfile.lock | 4 ++-- gemfiles/ruby_2.5_relational_db.gemfile.lock | 4 ++-- gemfiles/ruby_2.5_resque2_redis3.gemfile.lock | 4 ++-- gemfiles/ruby_2.5_resque2_redis4.gemfile.lock | 4 ++-- gemfiles/ruby_2.5_sinatra_2.gemfile.lock | 4 ++-- gemfiles/ruby_2.5_stripe_10.gemfile.lock | 4 ++-- gemfiles/ruby_2.5_stripe_11.gemfile.lock | 4 ++-- gemfiles/ruby_2.5_stripe_12.gemfile.lock | 4 ++-- gemfiles/ruby_2.5_stripe_7.gemfile.lock | 4 ++-- gemfiles/ruby_2.5_stripe_8.gemfile.lock | 4 ++-- gemfiles/ruby_2.5_stripe_9.gemfile.lock | 4 ++-- gemfiles/ruby_2.5_stripe_latest.gemfile.lock | 4 ++-- gemfiles/ruby_2.5_stripe_min.gemfile.lock | 4 ++-- gemfiles/ruby_2.6_activesupport.gemfile.lock | 4 ++-- gemfiles/ruby_2.6_aws.gemfile.lock | 4 ++-- gemfiles/ruby_2.6_contrib.gemfile.lock | 4 ++-- gemfiles/ruby_2.6_contrib_old.gemfile.lock | 4 ++-- gemfiles/ruby_2.6_core_old.gemfile.lock | 4 ++-- gemfiles/ruby_2.6_elasticsearch_7.gemfile.lock | 4 ++-- gemfiles/ruby_2.6_elasticsearch_8.gemfile.lock | 4 ++-- gemfiles/ruby_2.6_elasticsearch_latest.gemfile.lock | 4 ++-- gemfiles/ruby_2.6_graphql_1.13.gemfile.lock | 4 ++-- gemfiles/ruby_2.6_graphql_2.0.gemfile.lock | 4 ++-- gemfiles/ruby_2.6_hanami_1.gemfile.lock | 4 ++-- gemfiles/ruby_2.6_http.gemfile.lock | 4 ++-- gemfiles/ruby_2.6_opensearch_2.gemfile.lock | 4 ++-- gemfiles/ruby_2.6_opensearch_3.gemfile.lock | 4 ++-- gemfiles/ruby_2.6_opensearch_latest.gemfile.lock | 4 ++-- gemfiles/ruby_2.6_opentelemetry.gemfile.lock | 4 ++-- gemfiles/ruby_2.6_opentelemetry_otlp.gemfile.lock | 4 ++-- gemfiles/ruby_2.6_rack_1.gemfile.lock | 4 ++-- gemfiles/ruby_2.6_rack_2.gemfile.lock | 4 ++-- gemfiles/ruby_2.6_rack_3.gemfile.lock | 4 ++-- gemfiles/ruby_2.6_rack_latest.gemfile.lock | 4 ++-- gemfiles/ruby_2.6_rails5_mysql2.gemfile.lock | 4 ++-- gemfiles/ruby_2.6_rails5_postgres.gemfile.lock | 4 ++-- gemfiles/ruby_2.6_rails5_postgres_redis.gemfile.lock | 4 ++-- ...uby_2.6_rails5_postgres_redis_activesupport.gemfile.lock | 4 ++-- gemfiles/ruby_2.6_rails5_postgres_sidekiq.gemfile.lock | 4 ++-- gemfiles/ruby_2.6_rails5_semantic_logger.gemfile.lock | 4 ++-- gemfiles/ruby_2.6_rails61_mysql2.gemfile.lock | 4 ++-- gemfiles/ruby_2.6_rails61_postgres.gemfile.lock | 4 ++-- gemfiles/ruby_2.6_rails61_postgres_redis.gemfile.lock | 4 ++-- gemfiles/ruby_2.6_rails61_postgres_sidekiq.gemfile.lock | 4 ++-- gemfiles/ruby_2.6_rails61_semantic_logger.gemfile.lock | 4 ++-- gemfiles/ruby_2.6_rails6_mysql2.gemfile.lock | 4 ++-- gemfiles/ruby_2.6_rails6_postgres.gemfile.lock | 4 ++-- gemfiles/ruby_2.6_rails6_postgres_redis.gemfile.lock | 4 ++-- ...uby_2.6_rails6_postgres_redis_activesupport.gemfile.lock | 4 ++-- gemfiles/ruby_2.6_rails6_postgres_sidekiq.gemfile.lock | 4 ++-- gemfiles/ruby_2.6_rails6_semantic_logger.gemfile.lock | 4 ++-- gemfiles/ruby_2.6_redis_3.gemfile.lock | 4 ++-- gemfiles/ruby_2.6_redis_4.gemfile.lock | 4 ++-- gemfiles/ruby_2.6_redis_5.gemfile.lock | 4 ++-- gemfiles/ruby_2.6_relational_db.gemfile.lock | 4 ++-- gemfiles/ruby_2.6_resque2_redis3.gemfile.lock | 4 ++-- gemfiles/ruby_2.6_resque2_redis4.gemfile.lock | 4 ++-- gemfiles/ruby_2.6_sinatra_2.gemfile.lock | 4 ++-- gemfiles/ruby_2.6_sinatra_3.gemfile.lock | 4 ++-- gemfiles/ruby_2.6_stripe_10.gemfile.lock | 4 ++-- gemfiles/ruby_2.6_stripe_11.gemfile.lock | 4 ++-- gemfiles/ruby_2.6_stripe_12.gemfile.lock | 4 ++-- gemfiles/ruby_2.6_stripe_7.gemfile.lock | 4 ++-- gemfiles/ruby_2.6_stripe_8.gemfile.lock | 4 ++-- gemfiles/ruby_2.6_stripe_9.gemfile.lock | 4 ++-- gemfiles/ruby_2.6_stripe_latest.gemfile.lock | 4 ++-- gemfiles/ruby_2.6_stripe_min.gemfile.lock | 4 ++-- gemfiles/ruby_2.7_activesupport.gemfile.lock | 4 ++-- gemfiles/ruby_2.7_aws.gemfile.lock | 4 ++-- gemfiles/ruby_2.7_contrib.gemfile.lock | 4 ++-- gemfiles/ruby_2.7_contrib_old.gemfile.lock | 4 ++-- gemfiles/ruby_2.7_core_old.gemfile.lock | 4 ++-- gemfiles/ruby_2.7_elasticsearch_7.gemfile.lock | 4 ++-- gemfiles/ruby_2.7_elasticsearch_8.gemfile.lock | 4 ++-- gemfiles/ruby_2.7_elasticsearch_latest.gemfile.lock | 4 ++-- gemfiles/ruby_2.7_graphql_1.13.gemfile.lock | 4 ++-- gemfiles/ruby_2.7_graphql_2.0.gemfile.lock | 4 ++-- gemfiles/ruby_2.7_graphql_2.1.gemfile.lock | 4 ++-- gemfiles/ruby_2.7_graphql_2.2.gemfile.lock | 4 ++-- gemfiles/ruby_2.7_graphql_2.3.gemfile.lock | 4 ++-- gemfiles/ruby_2.7_hanami_1.gemfile.lock | 4 ++-- gemfiles/ruby_2.7_http.gemfile.lock | 4 ++-- gemfiles/ruby_2.7_opensearch_2.gemfile.lock | 4 ++-- gemfiles/ruby_2.7_opensearch_3.gemfile.lock | 4 ++-- gemfiles/ruby_2.7_opensearch_latest.gemfile.lock | 4 ++-- gemfiles/ruby_2.7_opentelemetry.gemfile.lock | 4 ++-- gemfiles/ruby_2.7_opentelemetry_otlp.gemfile.lock | 4 ++-- gemfiles/ruby_2.7_rack_1.gemfile.lock | 4 ++-- gemfiles/ruby_2.7_rack_2.gemfile.lock | 4 ++-- gemfiles/ruby_2.7_rack_3.gemfile.lock | 4 ++-- gemfiles/ruby_2.7_rack_latest.gemfile.lock | 4 ++-- gemfiles/ruby_2.7_rails5_mysql2.gemfile.lock | 4 ++-- gemfiles/ruby_2.7_rails5_postgres.gemfile.lock | 4 ++-- gemfiles/ruby_2.7_rails5_postgres_redis.gemfile.lock | 4 ++-- ...uby_2.7_rails5_postgres_redis_activesupport.gemfile.lock | 4 ++-- gemfiles/ruby_2.7_rails5_postgres_sidekiq.gemfile.lock | 4 ++-- gemfiles/ruby_2.7_rails5_semantic_logger.gemfile.lock | 4 ++-- gemfiles/ruby_2.7_rails61_mysql2.gemfile.lock | 4 ++-- gemfiles/ruby_2.7_rails61_postgres.gemfile.lock | 4 ++-- gemfiles/ruby_2.7_rails61_postgres_redis.gemfile.lock | 4 ++-- gemfiles/ruby_2.7_rails61_postgres_sidekiq.gemfile.lock | 4 ++-- gemfiles/ruby_2.7_rails61_semantic_logger.gemfile.lock | 4 ++-- gemfiles/ruby_2.7_rails6_mysql2.gemfile.lock | 4 ++-- gemfiles/ruby_2.7_rails6_postgres.gemfile.lock | 4 ++-- gemfiles/ruby_2.7_rails6_postgres_redis.gemfile.lock | 4 ++-- ...uby_2.7_rails6_postgres_redis_activesupport.gemfile.lock | 4 ++-- gemfiles/ruby_2.7_rails6_postgres_sidekiq.gemfile.lock | 4 ++-- gemfiles/ruby_2.7_rails6_semantic_logger.gemfile.lock | 4 ++-- gemfiles/ruby_2.7_redis_3.gemfile.lock | 4 ++-- gemfiles/ruby_2.7_redis_4.gemfile.lock | 4 ++-- gemfiles/ruby_2.7_redis_5.gemfile.lock | 4 ++-- gemfiles/ruby_2.7_relational_db.gemfile.lock | 4 ++-- gemfiles/ruby_2.7_resque2_redis3.gemfile.lock | 4 ++-- gemfiles/ruby_2.7_resque2_redis4.gemfile.lock | 4 ++-- gemfiles/ruby_2.7_sinatra_2.gemfile.lock | 4 ++-- gemfiles/ruby_2.7_sinatra_3.gemfile.lock | 4 ++-- gemfiles/ruby_2.7_stripe_10.gemfile.lock | 4 ++-- gemfiles/ruby_2.7_stripe_11.gemfile.lock | 4 ++-- gemfiles/ruby_2.7_stripe_12.gemfile.lock | 4 ++-- gemfiles/ruby_2.7_stripe_7.gemfile.lock | 4 ++-- gemfiles/ruby_2.7_stripe_8.gemfile.lock | 4 ++-- gemfiles/ruby_2.7_stripe_9.gemfile.lock | 4 ++-- gemfiles/ruby_2.7_stripe_latest.gemfile.lock | 4 ++-- gemfiles/ruby_2.7_stripe_min.gemfile.lock | 4 ++-- gemfiles/ruby_3.0_activesupport.gemfile.lock | 4 ++-- gemfiles/ruby_3.0_aws.gemfile.lock | 4 ++-- gemfiles/ruby_3.0_contrib.gemfile.lock | 4 ++-- gemfiles/ruby_3.0_contrib_old.gemfile.lock | 4 ++-- gemfiles/ruby_3.0_core_old.gemfile.lock | 4 ++-- gemfiles/ruby_3.0_elasticsearch_7.gemfile.lock | 4 ++-- gemfiles/ruby_3.0_elasticsearch_8.gemfile.lock | 4 ++-- gemfiles/ruby_3.0_elasticsearch_latest.gemfile.lock | 4 ++-- gemfiles/ruby_3.0_graphql_1.13.gemfile.lock | 4 ++-- gemfiles/ruby_3.0_graphql_2.0.gemfile.lock | 4 ++-- gemfiles/ruby_3.0_graphql_2.1.gemfile.lock | 4 ++-- gemfiles/ruby_3.0_graphql_2.2.gemfile.lock | 4 ++-- gemfiles/ruby_3.0_graphql_2.3.gemfile.lock | 4 ++-- gemfiles/ruby_3.0_http.gemfile.lock | 4 ++-- gemfiles/ruby_3.0_opensearch_2.gemfile.lock | 4 ++-- gemfiles/ruby_3.0_opensearch_3.gemfile.lock | 4 ++-- gemfiles/ruby_3.0_opensearch_latest.gemfile.lock | 4 ++-- gemfiles/ruby_3.0_opentelemetry.gemfile.lock | 4 ++-- gemfiles/ruby_3.0_opentelemetry_otlp.gemfile.lock | 4 ++-- gemfiles/ruby_3.0_rack_1.gemfile.lock | 4 ++-- gemfiles/ruby_3.0_rack_2.gemfile.lock | 4 ++-- gemfiles/ruby_3.0_rack_3.gemfile.lock | 4 ++-- gemfiles/ruby_3.0_rack_latest.gemfile.lock | 4 ++-- gemfiles/ruby_3.0_rails61_mysql2.gemfile.lock | 4 ++-- gemfiles/ruby_3.0_rails61_postgres.gemfile.lock | 4 ++-- gemfiles/ruby_3.0_rails61_postgres_redis.gemfile.lock | 4 ++-- gemfiles/ruby_3.0_rails61_postgres_sidekiq.gemfile.lock | 4 ++-- gemfiles/ruby_3.0_rails61_semantic_logger.gemfile.lock | 4 ++-- gemfiles/ruby_3.0_rails61_trilogy.gemfile.lock | 4 ++-- gemfiles/ruby_3.0_rails7.gemfile.lock | 4 ++-- gemfiles/ruby_3.0_rails71.gemfile.lock | 4 ++-- gemfiles/ruby_3.0_redis_3.gemfile.lock | 4 ++-- gemfiles/ruby_3.0_redis_4.gemfile.lock | 4 ++-- gemfiles/ruby_3.0_redis_5.gemfile.lock | 4 ++-- gemfiles/ruby_3.0_relational_db.gemfile.lock | 4 ++-- gemfiles/ruby_3.0_resque2_redis3.gemfile.lock | 4 ++-- gemfiles/ruby_3.0_resque2_redis4.gemfile.lock | 4 ++-- gemfiles/ruby_3.0_sinatra_2.gemfile.lock | 4 ++-- gemfiles/ruby_3.0_sinatra_3.gemfile.lock | 4 ++-- gemfiles/ruby_3.0_sinatra_4.gemfile.lock | 4 ++-- gemfiles/ruby_3.0_stripe_10.gemfile.lock | 4 ++-- gemfiles/ruby_3.0_stripe_11.gemfile.lock | 4 ++-- gemfiles/ruby_3.0_stripe_12.gemfile.lock | 4 ++-- gemfiles/ruby_3.0_stripe_7.gemfile.lock | 4 ++-- gemfiles/ruby_3.0_stripe_8.gemfile.lock | 4 ++-- gemfiles/ruby_3.0_stripe_9.gemfile.lock | 4 ++-- gemfiles/ruby_3.0_stripe_latest.gemfile.lock | 4 ++-- gemfiles/ruby_3.0_stripe_min.gemfile.lock | 4 ++-- gemfiles/ruby_3.1_activesupport.gemfile.lock | 4 ++-- gemfiles/ruby_3.1_aws.gemfile.lock | 4 ++-- gemfiles/ruby_3.1_contrib.gemfile.lock | 4 ++-- gemfiles/ruby_3.1_contrib_old.gemfile.lock | 4 ++-- gemfiles/ruby_3.1_core_old.gemfile.lock | 4 ++-- gemfiles/ruby_3.1_elasticsearch_7.gemfile.lock | 4 ++-- gemfiles/ruby_3.1_elasticsearch_8.gemfile.lock | 4 ++-- gemfiles/ruby_3.1_elasticsearch_latest.gemfile.lock | 4 ++-- gemfiles/ruby_3.1_graphql_1.13.gemfile.lock | 4 ++-- gemfiles/ruby_3.1_graphql_2.0.gemfile.lock | 4 ++-- gemfiles/ruby_3.1_graphql_2.1.gemfile.lock | 4 ++-- gemfiles/ruby_3.1_graphql_2.2.gemfile.lock | 4 ++-- gemfiles/ruby_3.1_graphql_2.3.gemfile.lock | 4 ++-- gemfiles/ruby_3.1_http.gemfile.lock | 4 ++-- gemfiles/ruby_3.1_opensearch_2.gemfile.lock | 4 ++-- gemfiles/ruby_3.1_opensearch_3.gemfile.lock | 4 ++-- gemfiles/ruby_3.1_opensearch_latest.gemfile.lock | 4 ++-- gemfiles/ruby_3.1_opentelemetry.gemfile.lock | 6 +++--- gemfiles/ruby_3.1_opentelemetry_otlp.gemfile.lock | 4 ++-- gemfiles/ruby_3.1_rack_1.gemfile.lock | 4 ++-- gemfiles/ruby_3.1_rack_2.gemfile.lock | 4 ++-- gemfiles/ruby_3.1_rack_3.gemfile.lock | 4 ++-- gemfiles/ruby_3.1_rack_latest.gemfile.lock | 4 ++-- gemfiles/ruby_3.1_rails61_mysql2.gemfile.lock | 4 ++-- gemfiles/ruby_3.1_rails61_postgres.gemfile.lock | 4 ++-- gemfiles/ruby_3.1_rails61_postgres_redis.gemfile.lock | 4 ++-- gemfiles/ruby_3.1_rails61_postgres_sidekiq.gemfile.lock | 4 ++-- gemfiles/ruby_3.1_rails61_semantic_logger.gemfile.lock | 4 ++-- gemfiles/ruby_3.1_rails61_trilogy.gemfile.lock | 4 ++-- gemfiles/ruby_3.1_rails7.gemfile.lock | 4 ++-- gemfiles/ruby_3.1_rails71.gemfile.lock | 4 ++-- gemfiles/ruby_3.1_redis_3.gemfile.lock | 4 ++-- gemfiles/ruby_3.1_redis_4.gemfile.lock | 4 ++-- gemfiles/ruby_3.1_redis_5.gemfile.lock | 4 ++-- gemfiles/ruby_3.1_relational_db.gemfile.lock | 4 ++-- gemfiles/ruby_3.1_resque2_redis3.gemfile.lock | 4 ++-- gemfiles/ruby_3.1_resque2_redis4.gemfile.lock | 4 ++-- gemfiles/ruby_3.1_sinatra_2.gemfile.lock | 4 ++-- gemfiles/ruby_3.1_sinatra_3.gemfile.lock | 4 ++-- gemfiles/ruby_3.1_sinatra_4.gemfile.lock | 4 ++-- gemfiles/ruby_3.1_stripe_10.gemfile.lock | 4 ++-- gemfiles/ruby_3.1_stripe_11.gemfile.lock | 4 ++-- gemfiles/ruby_3.1_stripe_12.gemfile.lock | 4 ++-- gemfiles/ruby_3.1_stripe_7.gemfile.lock | 4 ++-- gemfiles/ruby_3.1_stripe_8.gemfile.lock | 4 ++-- gemfiles/ruby_3.1_stripe_9.gemfile.lock | 4 ++-- gemfiles/ruby_3.1_stripe_latest.gemfile.lock | 4 ++-- gemfiles/ruby_3.1_stripe_min.gemfile.lock | 4 ++-- gemfiles/ruby_3.2_activesupport.gemfile.lock | 4 ++-- gemfiles/ruby_3.2_aws.gemfile.lock | 4 ++-- gemfiles/ruby_3.2_contrib.gemfile.lock | 4 ++-- gemfiles/ruby_3.2_contrib_old.gemfile.lock | 4 ++-- gemfiles/ruby_3.2_core_old.gemfile.lock | 4 ++-- gemfiles/ruby_3.2_elasticsearch_7.gemfile.lock | 4 ++-- gemfiles/ruby_3.2_elasticsearch_8.gemfile.lock | 4 ++-- gemfiles/ruby_3.2_elasticsearch_latest.gemfile.lock | 4 ++-- gemfiles/ruby_3.2_graphql_1.13.gemfile.lock | 4 ++-- gemfiles/ruby_3.2_graphql_2.0.gemfile.lock | 4 ++-- gemfiles/ruby_3.2_graphql_2.1.gemfile.lock | 4 ++-- gemfiles/ruby_3.2_graphql_2.2.gemfile.lock | 4 ++-- gemfiles/ruby_3.2_graphql_2.3.gemfile.lock | 4 ++-- gemfiles/ruby_3.2_http.gemfile.lock | 4 ++-- gemfiles/ruby_3.2_opensearch_2.gemfile.lock | 4 ++-- gemfiles/ruby_3.2_opensearch_3.gemfile.lock | 4 ++-- gemfiles/ruby_3.2_opensearch_latest.gemfile.lock | 4 ++-- gemfiles/ruby_3.2_opentelemetry.gemfile.lock | 4 ++-- gemfiles/ruby_3.2_opentelemetry_otlp.gemfile.lock | 4 ++-- gemfiles/ruby_3.2_rack_1.gemfile.lock | 4 ++-- gemfiles/ruby_3.2_rack_2.gemfile.lock | 4 ++-- gemfiles/ruby_3.2_rack_3.gemfile.lock | 4 ++-- gemfiles/ruby_3.2_rack_latest.gemfile.lock | 4 ++-- gemfiles/ruby_3.2_rails61_mysql2.gemfile.lock | 4 ++-- gemfiles/ruby_3.2_rails61_postgres.gemfile.lock | 4 ++-- gemfiles/ruby_3.2_rails61_postgres_redis.gemfile.lock | 4 ++-- gemfiles/ruby_3.2_rails61_postgres_sidekiq.gemfile.lock | 4 ++-- gemfiles/ruby_3.2_rails61_semantic_logger.gemfile.lock | 4 ++-- gemfiles/ruby_3.2_rails61_trilogy.gemfile.lock | 4 ++-- gemfiles/ruby_3.2_rails7.gemfile.lock | 4 ++-- gemfiles/ruby_3.2_rails71.gemfile.lock | 4 ++-- gemfiles/ruby_3.2_redis_3.gemfile.lock | 4 ++-- gemfiles/ruby_3.2_redis_4.gemfile.lock | 4 ++-- gemfiles/ruby_3.2_redis_5.gemfile.lock | 4 ++-- gemfiles/ruby_3.2_relational_db.gemfile.lock | 4 ++-- gemfiles/ruby_3.2_resque2_redis3.gemfile.lock | 4 ++-- gemfiles/ruby_3.2_resque2_redis4.gemfile.lock | 4 ++-- gemfiles/ruby_3.2_sinatra_2.gemfile.lock | 4 ++-- gemfiles/ruby_3.2_sinatra_3.gemfile.lock | 4 ++-- gemfiles/ruby_3.2_sinatra_4.gemfile.lock | 4 ++-- gemfiles/ruby_3.2_stripe_10.gemfile.lock | 4 ++-- gemfiles/ruby_3.2_stripe_11.gemfile.lock | 4 ++-- gemfiles/ruby_3.2_stripe_12.gemfile.lock | 4 ++-- gemfiles/ruby_3.2_stripe_7.gemfile.lock | 4 ++-- gemfiles/ruby_3.2_stripe_8.gemfile.lock | 4 ++-- gemfiles/ruby_3.2_stripe_9.gemfile.lock | 4 ++-- gemfiles/ruby_3.2_stripe_latest.gemfile.lock | 4 ++-- gemfiles/ruby_3.2_stripe_min.gemfile.lock | 4 ++-- gemfiles/ruby_3.3_activesupport.gemfile.lock | 4 ++-- gemfiles/ruby_3.3_aws.gemfile.lock | 4 ++-- gemfiles/ruby_3.3_contrib.gemfile.lock | 4 ++-- gemfiles/ruby_3.3_contrib_old.gemfile.lock | 4 ++-- gemfiles/ruby_3.3_core_old.gemfile.lock | 4 ++-- gemfiles/ruby_3.3_elasticsearch_7.gemfile.lock | 4 ++-- gemfiles/ruby_3.3_elasticsearch_8.gemfile.lock | 4 ++-- gemfiles/ruby_3.3_elasticsearch_latest.gemfile.lock | 4 ++-- gemfiles/ruby_3.3_graphql_1.13.gemfile.lock | 4 ++-- gemfiles/ruby_3.3_graphql_2.0.gemfile.lock | 4 ++-- gemfiles/ruby_3.3_graphql_2.1.gemfile.lock | 4 ++-- gemfiles/ruby_3.3_graphql_2.2.gemfile.lock | 4 ++-- gemfiles/ruby_3.3_graphql_2.3.gemfile.lock | 4 ++-- gemfiles/ruby_3.3_http.gemfile.lock | 4 ++-- gemfiles/ruby_3.3_opensearch_2.gemfile.lock | 4 ++-- gemfiles/ruby_3.3_opensearch_3.gemfile.lock | 4 ++-- gemfiles/ruby_3.3_opensearch_latest.gemfile.lock | 4 ++-- gemfiles/ruby_3.3_opentelemetry.gemfile.lock | 4 ++-- gemfiles/ruby_3.3_opentelemetry_otlp.gemfile.lock | 4 ++-- gemfiles/ruby_3.3_rack_2.gemfile.lock | 4 ++-- gemfiles/ruby_3.3_rack_3.gemfile.lock | 4 ++-- gemfiles/ruby_3.3_rack_latest.gemfile.lock | 4 ++-- gemfiles/ruby_3.3_rails61_mysql2.gemfile.lock | 4 ++-- gemfiles/ruby_3.3_rails61_postgres.gemfile.lock | 4 ++-- gemfiles/ruby_3.3_rails61_postgres_redis.gemfile.lock | 4 ++-- gemfiles/ruby_3.3_rails61_postgres_sidekiq.gemfile.lock | 4 ++-- gemfiles/ruby_3.3_rails61_semantic_logger.gemfile.lock | 4 ++-- gemfiles/ruby_3.3_rails61_trilogy.gemfile.lock | 4 ++-- gemfiles/ruby_3.3_rails7.gemfile.lock | 4 ++-- gemfiles/ruby_3.3_rails71.gemfile.lock | 4 ++-- gemfiles/ruby_3.3_redis_3.gemfile.lock | 4 ++-- gemfiles/ruby_3.3_redis_4.gemfile.lock | 4 ++-- gemfiles/ruby_3.3_redis_5.gemfile.lock | 4 ++-- gemfiles/ruby_3.3_relational_db.gemfile.lock | 4 ++-- gemfiles/ruby_3.3_resque2_redis3.gemfile.lock | 4 ++-- gemfiles/ruby_3.3_resque2_redis4.gemfile.lock | 4 ++-- gemfiles/ruby_3.3_sinatra_2.gemfile.lock | 4 ++-- gemfiles/ruby_3.3_sinatra_3.gemfile.lock | 4 ++-- gemfiles/ruby_3.3_sinatra_4.gemfile.lock | 4 ++-- gemfiles/ruby_3.3_stripe_10.gemfile.lock | 4 ++-- gemfiles/ruby_3.3_stripe_11.gemfile.lock | 4 ++-- gemfiles/ruby_3.3_stripe_12.gemfile.lock | 4 ++-- gemfiles/ruby_3.3_stripe_7.gemfile.lock | 4 ++-- gemfiles/ruby_3.3_stripe_8.gemfile.lock | 4 ++-- gemfiles/ruby_3.3_stripe_9.gemfile.lock | 4 ++-- gemfiles/ruby_3.3_stripe_latest.gemfile.lock | 4 ++-- gemfiles/ruby_3.3_stripe_min.gemfile.lock | 4 ++-- gemfiles/ruby_3.4_activesupport.gemfile.lock | 3 ++- gemfiles/ruby_3.4_aws.gemfile.lock | 3 ++- gemfiles/ruby_3.4_contrib.gemfile.lock | 3 ++- gemfiles/ruby_3.4_contrib_old.gemfile.lock | 3 ++- gemfiles/ruby_3.4_core_old.gemfile.lock | 3 ++- gemfiles/ruby_3.4_elasticsearch_7.gemfile.lock | 3 ++- gemfiles/ruby_3.4_elasticsearch_8.gemfile.lock | 3 ++- gemfiles/ruby_3.4_elasticsearch_latest.gemfile.lock | 3 ++- gemfiles/ruby_3.4_graphql_1.13.gemfile.lock | 3 ++- gemfiles/ruby_3.4_graphql_2.0.gemfile.lock | 3 ++- gemfiles/ruby_3.4_graphql_2.1.gemfile.lock | 3 ++- gemfiles/ruby_3.4_graphql_2.2.gemfile.lock | 3 ++- gemfiles/ruby_3.4_graphql_2.3.gemfile.lock | 3 ++- gemfiles/ruby_3.4_http.gemfile.lock | 3 ++- gemfiles/ruby_3.4_opensearch_2.gemfile.lock | 3 ++- gemfiles/ruby_3.4_opensearch_3.gemfile.lock | 3 ++- gemfiles/ruby_3.4_opensearch_latest.gemfile.lock | 3 ++- gemfiles/ruby_3.4_opentelemetry.gemfile.lock | 3 ++- gemfiles/ruby_3.4_opentelemetry_otlp.gemfile.lock | 3 ++- gemfiles/ruby_3.4_rack_2.gemfile.lock | 3 ++- gemfiles/ruby_3.4_rack_3.gemfile.lock | 3 ++- gemfiles/ruby_3.4_rack_latest.gemfile.lock | 3 ++- gemfiles/ruby_3.4_rails61_mysql2.gemfile.lock | 3 ++- gemfiles/ruby_3.4_rails61_postgres.gemfile.lock | 3 ++- gemfiles/ruby_3.4_rails61_postgres_redis.gemfile.lock | 3 ++- gemfiles/ruby_3.4_rails61_postgres_sidekiq.gemfile.lock | 3 ++- gemfiles/ruby_3.4_rails61_semantic_logger.gemfile.lock | 3 ++- gemfiles/ruby_3.4_rails61_trilogy.gemfile.lock | 3 ++- gemfiles/ruby_3.4_rails7.gemfile.lock | 4 +++- gemfiles/ruby_3.4_rails71.gemfile.lock | 4 +++- gemfiles/ruby_3.4_redis_3.gemfile.lock | 3 ++- gemfiles/ruby_3.4_redis_4.gemfile.lock | 3 ++- gemfiles/ruby_3.4_redis_5.gemfile.lock | 3 ++- gemfiles/ruby_3.4_relational_db.gemfile.lock | 3 ++- gemfiles/ruby_3.4_resque2_redis3.gemfile.lock | 3 ++- gemfiles/ruby_3.4_resque2_redis4.gemfile.lock | 3 ++- gemfiles/ruby_3.4_sinatra_2.gemfile.lock | 3 ++- gemfiles/ruby_3.4_sinatra_3.gemfile.lock | 3 ++- gemfiles/ruby_3.4_sinatra_4.gemfile.lock | 3 ++- gemfiles/ruby_3.4_stripe_10.gemfile.lock | 3 ++- gemfiles/ruby_3.4_stripe_11.gemfile.lock | 3 ++- gemfiles/ruby_3.4_stripe_12.gemfile.lock | 3 ++- gemfiles/ruby_3.4_stripe_7.gemfile.lock | 3 ++- gemfiles/ruby_3.4_stripe_8.gemfile.lock | 3 ++- gemfiles/ruby_3.4_stripe_9.gemfile.lock | 3 ++- gemfiles/ruby_3.4_stripe_latest.gemfile.lock | 3 ++- gemfiles/ruby_3.4_stripe_min.gemfile.lock | 3 ++- 547 files changed, 954 insertions(+), 905 deletions(-) diff --git a/gemfiles/jruby_9.2_activesupport.gemfile.lock b/gemfiles/jruby_9.2_activesupport.gemfile.lock index 58b4e61fc55..1f37736408a 100644 --- a/gemfiles/jruby_9.2_activesupport.gemfile.lock +++ b/gemfiles/jruby_9.2_activesupport.gemfile.lock @@ -83,7 +83,7 @@ GEM dry-inflector (~> 0.1, >= 0.1.2) dry-logic (~> 1.0, >= 1.0.2) erubi (1.12.0) - ffi (1.17.0-java) + ffi (1.17.1-java) grape (1.7.0) activesupport builder diff --git a/gemfiles/jruby_9.2_aws.gemfile.lock b/gemfiles/jruby_9.2_aws.gemfile.lock index 937464612a9..b5010a2d76d 100644 --- a/gemfiles/jruby_9.2_aws.gemfile.lock +++ b/gemfiles/jruby_9.2_aws.gemfile.lock @@ -1454,7 +1454,7 @@ GEM diff-lcs (1.5.0) docile (1.4.0) dogstatsd-ruby (5.6.0) - ffi (1.17.0-java) + ffi (1.17.1-java) hashdiff (1.0.1) jmespath (1.6.2) json-schema (2.8.1) diff --git a/gemfiles/jruby_9.2_contrib.gemfile.lock b/gemfiles/jruby_9.2_contrib.gemfile.lock index 8f976ad5ed5..8170f1b7ba8 100644 --- a/gemfiles/jruby_9.2_contrib.gemfile.lock +++ b/gemfiles/jruby_9.2_contrib.gemfile.lock @@ -40,7 +40,7 @@ GEM diff-lcs (1.5.0) docile (1.4.0) dogstatsd-ruby (5.6.0) - ffi (1.17.0-java) + ffi (1.17.1-java) hashdiff (1.0.1) i18n (1.8.7) concurrent-ruby (~> 1.0) diff --git a/gemfiles/jruby_9.2_contrib_old.gemfile.lock b/gemfiles/jruby_9.2_contrib_old.gemfile.lock index 0e47d3a2342..66e746a8673 100644 --- a/gemfiles/jruby_9.2_contrib_old.gemfile.lock +++ b/gemfiles/jruby_9.2_contrib_old.gemfile.lock @@ -38,7 +38,7 @@ GEM multipart-post (>= 1.2, < 3) faraday_middleware (0.12.2) faraday (>= 0.7.4, < 1.0) - ffi (1.17.0-java) + ffi (1.17.1-java) hashdiff (1.0.1) json-schema (2.8.1) addressable (>= 2.4) diff --git a/gemfiles/jruby_9.2_core_old.gemfile.lock b/gemfiles/jruby_9.2_core_old.gemfile.lock index 77a6aaf4457..e5f7c1e960f 100644 --- a/gemfiles/jruby_9.2_core_old.gemfile.lock +++ b/gemfiles/jruby_9.2_core_old.gemfile.lock @@ -33,7 +33,7 @@ GEM diff-lcs (1.5.0) docile (1.4.0) dogstatsd-ruby (4.8.3) - ffi (1.17.0-java) + ffi (1.17.1-java) hashdiff (1.0.1) json-schema (2.8.1) addressable (>= 2.4) diff --git a/gemfiles/jruby_9.2_elasticsearch_7.gemfile.lock b/gemfiles/jruby_9.2_elasticsearch_7.gemfile.lock index 5bb58b57c32..287047c262c 100644 --- a/gemfiles/jruby_9.2_elasticsearch_7.gemfile.lock +++ b/gemfiles/jruby_9.2_elasticsearch_7.gemfile.lock @@ -67,7 +67,7 @@ GEM faraday-patron (1.0.0) faraday-rack (1.0.0) faraday-retry (1.0.3) - ffi (1.17.0-java) + ffi (1.17.1-java) hashdiff (1.0.1) json-schema (2.8.1) addressable (>= 2.4) diff --git a/gemfiles/jruby_9.2_elasticsearch_8.gemfile.lock b/gemfiles/jruby_9.2_elasticsearch_8.gemfile.lock index 85899ece000..dffc23160cd 100644 --- a/gemfiles/jruby_9.2_elasticsearch_8.gemfile.lock +++ b/gemfiles/jruby_9.2_elasticsearch_8.gemfile.lock @@ -65,7 +65,7 @@ GEM faraday-patron (1.0.0) faraday-rack (1.0.0) faraday-retry (1.0.3) - ffi (1.17.0-java) + ffi (1.17.1-java) hashdiff (1.0.1) json-schema (2.8.1) addressable (>= 2.4) diff --git a/gemfiles/jruby_9.2_elasticsearch_latest.gemfile.lock b/gemfiles/jruby_9.2_elasticsearch_latest.gemfile.lock index c36be87792e..cd7ff91d60e 100644 --- a/gemfiles/jruby_9.2_elasticsearch_latest.gemfile.lock +++ b/gemfiles/jruby_9.2_elasticsearch_latest.gemfile.lock @@ -67,7 +67,7 @@ GEM faraday-patron (1.0.0) faraday-rack (1.0.0) faraday-retry (1.0.3) - ffi (1.17.0-java) + ffi (1.17.1-java) hashdiff (1.1.1) json-schema (2.8.1) addressable (>= 2.4) diff --git a/gemfiles/jruby_9.2_graphql_2.0.gemfile.lock b/gemfiles/jruby_9.2_graphql_2.0.gemfile.lock index ba1d8859ffe..83473fe7a75 100644 --- a/gemfiles/jruby_9.2_graphql_2.0.gemfile.lock +++ b/gemfiles/jruby_9.2_graphql_2.0.gemfile.lock @@ -98,7 +98,7 @@ GEM docile (1.4.0) dogstatsd-ruby (5.6.1) erubi (1.13.0) - ffi (1.17.0-java) + ffi (1.17.1-java) globalid (1.2.1) activesupport (>= 6.1) graphql (2.0.28) diff --git a/gemfiles/jruby_9.2_http.gemfile.lock b/gemfiles/jruby_9.2_http.gemfile.lock index eff1eb91e03..69da049a128 100644 --- a/gemfiles/jruby_9.2_http.gemfile.lock +++ b/gemfiles/jruby_9.2_http.gemfile.lock @@ -61,7 +61,7 @@ GEM faraday-patron (1.0.0) faraday-rack (1.0.0) faraday-retry (1.0.3) - ffi (1.17.0-java) + ffi (1.17.1-java) ffi-compiler (1.0.1) ffi (>= 1.0.0) rake diff --git a/gemfiles/jruby_9.2_opensearch_2.gemfile.lock b/gemfiles/jruby_9.2_opensearch_2.gemfile.lock index 2b780aa3b94..b2691fe8c84 100644 --- a/gemfiles/jruby_9.2_opensearch_2.gemfile.lock +++ b/gemfiles/jruby_9.2_opensearch_2.gemfile.lock @@ -57,7 +57,7 @@ GEM faraday-patron (1.0.0) faraday-rack (1.0.0) faraday-retry (1.0.3) - ffi (1.17.0-java) + ffi (1.17.1-java) hashdiff (1.0.1) json-schema (2.8.1) addressable (>= 2.4) diff --git a/gemfiles/jruby_9.2_opensearch_3.gemfile.lock b/gemfiles/jruby_9.2_opensearch_3.gemfile.lock index e96582e849c..432115661b8 100644 --- a/gemfiles/jruby_9.2_opensearch_3.gemfile.lock +++ b/gemfiles/jruby_9.2_opensearch_3.gemfile.lock @@ -57,7 +57,7 @@ GEM faraday-patron (1.0.0) faraday-rack (1.0.0) faraday-retry (1.0.3) - ffi (1.17.0-java) + ffi (1.17.1-java) hashdiff (1.0.1) json-schema (2.8.1) addressable (>= 2.4) diff --git a/gemfiles/jruby_9.2_opensearch_latest.gemfile.lock b/gemfiles/jruby_9.2_opensearch_latest.gemfile.lock index c3ed52188b3..be60061472a 100644 --- a/gemfiles/jruby_9.2_opensearch_latest.gemfile.lock +++ b/gemfiles/jruby_9.2_opensearch_latest.gemfile.lock @@ -59,7 +59,7 @@ GEM faraday-patron (1.0.0) faraday-rack (1.0.0) faraday-retry (1.0.3) - ffi (1.17.0-java) + ffi (1.17.1-java) hashdiff (1.1.1) json-schema (2.8.1) addressable (>= 2.4) diff --git a/gemfiles/jruby_9.2_rack_1.gemfile.lock b/gemfiles/jruby_9.2_rack_1.gemfile.lock index 7af13990074..fc08acf68f1 100644 --- a/gemfiles/jruby_9.2_rack_1.gemfile.lock +++ b/gemfiles/jruby_9.2_rack_1.gemfile.lock @@ -33,7 +33,7 @@ GEM diff-lcs (1.5.0) docile (1.4.0) dogstatsd-ruby (5.6.1) - ffi (1.17.0-java) + ffi (1.17.1-java) hashdiff (1.0.1) json-schema (2.8.1) addressable (>= 2.4) diff --git a/gemfiles/jruby_9.2_rack_2.gemfile.lock b/gemfiles/jruby_9.2_rack_2.gemfile.lock index 779b6b03302..e70c1ffa419 100644 --- a/gemfiles/jruby_9.2_rack_2.gemfile.lock +++ b/gemfiles/jruby_9.2_rack_2.gemfile.lock @@ -33,7 +33,7 @@ GEM diff-lcs (1.5.0) docile (1.4.0) dogstatsd-ruby (5.6.1) - ffi (1.17.0-java) + ffi (1.17.1-java) hashdiff (1.0.1) json-schema (2.8.1) addressable (>= 2.4) diff --git a/gemfiles/jruby_9.2_rack_3.gemfile.lock b/gemfiles/jruby_9.2_rack_3.gemfile.lock index 2d2d880cf8b..6e40b093aae 100644 --- a/gemfiles/jruby_9.2_rack_3.gemfile.lock +++ b/gemfiles/jruby_9.2_rack_3.gemfile.lock @@ -33,7 +33,7 @@ GEM diff-lcs (1.5.0) docile (1.4.0) dogstatsd-ruby (5.6.1) - ffi (1.17.0-java) + ffi (1.17.1-java) hashdiff (1.0.1) json-schema (2.8.1) addressable (>= 2.4) diff --git a/gemfiles/jruby_9.2_rack_latest.gemfile.lock b/gemfiles/jruby_9.2_rack_latest.gemfile.lock index aef3569f16a..11060d7171f 100644 --- a/gemfiles/jruby_9.2_rack_latest.gemfile.lock +++ b/gemfiles/jruby_9.2_rack_latest.gemfile.lock @@ -36,7 +36,7 @@ GEM diff-lcs (1.5.1) docile (1.4.1) dogstatsd-ruby (5.6.2) - ffi (1.17.0-java) + ffi (1.17.1-java) hashdiff (1.1.1) json-schema (2.8.1) addressable (>= 2.4) diff --git a/gemfiles/jruby_9.2_rails5_mysql2.gemfile.lock b/gemfiles/jruby_9.2_rails5_mysql2.gemfile.lock index 98ef89a0d45..a59d47005cd 100644 --- a/gemfiles/jruby_9.2_rails5_mysql2.gemfile.lock +++ b/gemfiles/jruby_9.2_rails5_mysql2.gemfile.lock @@ -83,7 +83,7 @@ GEM docile (1.4.0) dogstatsd-ruby (5.5.0) erubi (1.12.0) - ffi (1.17.0-java) + ffi (1.17.1-java) globalid (1.0.0) activesupport (>= 5.0) hashdiff (1.0.1) diff --git a/gemfiles/jruby_9.2_rails5_postgres.gemfile.lock b/gemfiles/jruby_9.2_rails5_postgres.gemfile.lock index 3a10aa9a428..8e6fdfafad9 100644 --- a/gemfiles/jruby_9.2_rails5_postgres.gemfile.lock +++ b/gemfiles/jruby_9.2_rails5_postgres.gemfile.lock @@ -84,7 +84,7 @@ GEM docile (1.4.0) dogstatsd-ruby (5.5.0) erubi (1.12.0) - ffi (1.17.0-java) + ffi (1.17.1-java) globalid (1.0.0) activesupport (>= 5.0) hashdiff (1.0.1) diff --git a/gemfiles/jruby_9.2_rails5_postgres_redis.gemfile.lock b/gemfiles/jruby_9.2_rails5_postgres_redis.gemfile.lock index 32c9bef65a8..2bef5b56ead 100644 --- a/gemfiles/jruby_9.2_rails5_postgres_redis.gemfile.lock +++ b/gemfiles/jruby_9.2_rails5_postgres_redis.gemfile.lock @@ -85,7 +85,7 @@ GEM docile (1.4.0) dogstatsd-ruby (5.5.0) erubi (1.12.0) - ffi (1.17.0-java) + ffi (1.17.1-java) globalid (1.0.0) activesupport (>= 5.0) hashdiff (1.0.1) diff --git a/gemfiles/jruby_9.2_rails5_postgres_redis_activesupport.gemfile.lock b/gemfiles/jruby_9.2_rails5_postgres_redis_activesupport.gemfile.lock index ea2e232d083..4f4295aab55 100644 --- a/gemfiles/jruby_9.2_rails5_postgres_redis_activesupport.gemfile.lock +++ b/gemfiles/jruby_9.2_rails5_postgres_redis_activesupport.gemfile.lock @@ -84,7 +84,7 @@ GEM docile (1.4.0) dogstatsd-ruby (5.5.0) erubi (1.12.0) - ffi (1.17.0-java) + ffi (1.17.1-java) globalid (1.0.0) activesupport (>= 5.0) hashdiff (1.0.1) diff --git a/gemfiles/jruby_9.2_rails5_postgres_sidekiq.gemfile.lock b/gemfiles/jruby_9.2_rails5_postgres_sidekiq.gemfile.lock index 685218def61..42bc3254b6f 100644 --- a/gemfiles/jruby_9.2_rails5_postgres_sidekiq.gemfile.lock +++ b/gemfiles/jruby_9.2_rails5_postgres_sidekiq.gemfile.lock @@ -85,7 +85,7 @@ GEM docile (1.4.0) dogstatsd-ruby (5.5.0) erubi (1.12.0) - ffi (1.17.0-java) + ffi (1.17.1-java) globalid (1.0.0) activesupport (>= 5.0) hashdiff (1.0.1) diff --git a/gemfiles/jruby_9.2_rails5_semantic_logger.gemfile.lock b/gemfiles/jruby_9.2_rails5_semantic_logger.gemfile.lock index 52f1e112258..71836358c22 100644 --- a/gemfiles/jruby_9.2_rails5_semantic_logger.gemfile.lock +++ b/gemfiles/jruby_9.2_rails5_semantic_logger.gemfile.lock @@ -84,7 +84,7 @@ GEM docile (1.4.0) dogstatsd-ruby (5.5.0) erubi (1.12.0) - ffi (1.17.0-java) + ffi (1.17.1-java) globalid (1.0.0) activesupport (>= 5.0) hashdiff (1.0.1) diff --git a/gemfiles/jruby_9.2_rails61_mysql2.gemfile.lock b/gemfiles/jruby_9.2_rails61_mysql2.gemfile.lock index b29df7238ae..5b88027a2d1 100644 --- a/gemfiles/jruby_9.2_rails61_mysql2.gemfile.lock +++ b/gemfiles/jruby_9.2_rails61_mysql2.gemfile.lock @@ -100,7 +100,7 @@ GEM docile (1.4.0) dogstatsd-ruby (5.5.0) erubi (1.12.0) - ffi (1.17.0-java) + ffi (1.17.1-java) globalid (1.0.0) activesupport (>= 5.0) hashdiff (1.0.1) diff --git a/gemfiles/jruby_9.2_rails61_postgres.gemfile.lock b/gemfiles/jruby_9.2_rails61_postgres.gemfile.lock index 1fe92d98b46..84156f500a3 100644 --- a/gemfiles/jruby_9.2_rails61_postgres.gemfile.lock +++ b/gemfiles/jruby_9.2_rails61_postgres.gemfile.lock @@ -101,7 +101,7 @@ GEM docile (1.4.0) dogstatsd-ruby (5.5.0) erubi (1.12.0) - ffi (1.17.0-java) + ffi (1.17.1-java) globalid (1.0.0) activesupport (>= 5.0) hashdiff (1.0.1) diff --git a/gemfiles/jruby_9.2_rails61_postgres_redis.gemfile.lock b/gemfiles/jruby_9.2_rails61_postgres_redis.gemfile.lock index 842a72226b1..455289fb4e3 100644 --- a/gemfiles/jruby_9.2_rails61_postgres_redis.gemfile.lock +++ b/gemfiles/jruby_9.2_rails61_postgres_redis.gemfile.lock @@ -102,7 +102,7 @@ GEM docile (1.4.0) dogstatsd-ruby (5.5.0) erubi (1.12.0) - ffi (1.17.0-java) + ffi (1.17.1-java) globalid (1.0.0) activesupport (>= 5.0) hashdiff (1.0.1) diff --git a/gemfiles/jruby_9.2_rails61_postgres_sidekiq.gemfile.lock b/gemfiles/jruby_9.2_rails61_postgres_sidekiq.gemfile.lock index 7e77405d291..b5f5347c4cb 100644 --- a/gemfiles/jruby_9.2_rails61_postgres_sidekiq.gemfile.lock +++ b/gemfiles/jruby_9.2_rails61_postgres_sidekiq.gemfile.lock @@ -102,7 +102,7 @@ GEM docile (1.4.0) dogstatsd-ruby (5.5.0) erubi (1.12.0) - ffi (1.17.0-java) + ffi (1.17.1-java) globalid (1.0.0) activesupport (>= 5.0) hashdiff (1.0.1) diff --git a/gemfiles/jruby_9.2_rails61_semantic_logger.gemfile.lock b/gemfiles/jruby_9.2_rails61_semantic_logger.gemfile.lock index 856960d2ed5..6b05b5e1805 100644 --- a/gemfiles/jruby_9.2_rails61_semantic_logger.gemfile.lock +++ b/gemfiles/jruby_9.2_rails61_semantic_logger.gemfile.lock @@ -101,7 +101,7 @@ GEM docile (1.4.0) dogstatsd-ruby (5.5.0) erubi (1.12.0) - ffi (1.17.0-java) + ffi (1.17.1-java) globalid (1.0.0) activesupport (>= 5.0) hashdiff (1.0.1) diff --git a/gemfiles/jruby_9.2_rails6_mysql2.gemfile.lock b/gemfiles/jruby_9.2_rails6_mysql2.gemfile.lock index 662bc2668cf..6d3703d4832 100644 --- a/gemfiles/jruby_9.2_rails6_mysql2.gemfile.lock +++ b/gemfiles/jruby_9.2_rails6_mysql2.gemfile.lock @@ -96,7 +96,7 @@ GEM docile (1.4.0) dogstatsd-ruby (5.5.0) erubi (1.12.0) - ffi (1.17.0-java) + ffi (1.17.1-java) globalid (1.0.0) activesupport (>= 5.0) hashdiff (1.0.1) diff --git a/gemfiles/jruby_9.2_rails6_postgres.gemfile.lock b/gemfiles/jruby_9.2_rails6_postgres.gemfile.lock index 355bd0f8b27..c2958359820 100644 --- a/gemfiles/jruby_9.2_rails6_postgres.gemfile.lock +++ b/gemfiles/jruby_9.2_rails6_postgres.gemfile.lock @@ -97,7 +97,7 @@ GEM docile (1.4.0) dogstatsd-ruby (5.5.0) erubi (1.12.0) - ffi (1.17.0-java) + ffi (1.17.1-java) globalid (1.0.0) activesupport (>= 5.0) hashdiff (1.0.1) diff --git a/gemfiles/jruby_9.2_rails6_postgres_redis.gemfile.lock b/gemfiles/jruby_9.2_rails6_postgres_redis.gemfile.lock index eb87d641e37..1fc442e286b 100644 --- a/gemfiles/jruby_9.2_rails6_postgres_redis.gemfile.lock +++ b/gemfiles/jruby_9.2_rails6_postgres_redis.gemfile.lock @@ -98,7 +98,7 @@ GEM docile (1.4.0) dogstatsd-ruby (5.5.0) erubi (1.12.0) - ffi (1.17.0-java) + ffi (1.17.1-java) globalid (1.0.0) activesupport (>= 5.0) hashdiff (1.0.1) diff --git a/gemfiles/jruby_9.2_rails6_postgres_redis_activesupport.gemfile.lock b/gemfiles/jruby_9.2_rails6_postgres_redis_activesupport.gemfile.lock index 9e3afb268d1..ec916b932c1 100644 --- a/gemfiles/jruby_9.2_rails6_postgres_redis_activesupport.gemfile.lock +++ b/gemfiles/jruby_9.2_rails6_postgres_redis_activesupport.gemfile.lock @@ -97,7 +97,7 @@ GEM docile (1.4.0) dogstatsd-ruby (5.5.0) erubi (1.12.0) - ffi (1.17.0-java) + ffi (1.17.1-java) globalid (1.0.0) activesupport (>= 5.0) hashdiff (1.0.1) diff --git a/gemfiles/jruby_9.2_rails6_postgres_sidekiq.gemfile.lock b/gemfiles/jruby_9.2_rails6_postgres_sidekiq.gemfile.lock index cf6a10755d8..4e893ec937b 100644 --- a/gemfiles/jruby_9.2_rails6_postgres_sidekiq.gemfile.lock +++ b/gemfiles/jruby_9.2_rails6_postgres_sidekiq.gemfile.lock @@ -98,7 +98,7 @@ GEM docile (1.4.0) dogstatsd-ruby (5.5.0) erubi (1.12.0) - ffi (1.17.0-java) + ffi (1.17.1-java) globalid (1.0.0) activesupport (>= 5.0) hashdiff (1.0.1) diff --git a/gemfiles/jruby_9.2_rails6_semantic_logger.gemfile.lock b/gemfiles/jruby_9.2_rails6_semantic_logger.gemfile.lock index a5a24948c6a..52c3fd53c1e 100644 --- a/gemfiles/jruby_9.2_rails6_semantic_logger.gemfile.lock +++ b/gemfiles/jruby_9.2_rails6_semantic_logger.gemfile.lock @@ -97,7 +97,7 @@ GEM docile (1.4.0) dogstatsd-ruby (5.5.0) erubi (1.12.0) - ffi (1.17.0-java) + ffi (1.17.1-java) globalid (1.0.0) activesupport (>= 5.0) hashdiff (1.0.1) diff --git a/gemfiles/jruby_9.2_redis_3.gemfile.lock b/gemfiles/jruby_9.2_redis_3.gemfile.lock index f21beb9d170..6343e70c980 100644 --- a/gemfiles/jruby_9.2_redis_3.gemfile.lock +++ b/gemfiles/jruby_9.2_redis_3.gemfile.lock @@ -33,7 +33,7 @@ GEM diff-lcs (1.5.0) docile (1.4.0) dogstatsd-ruby (5.5.0) - ffi (1.17.0-java) + ffi (1.17.1-java) hashdiff (1.0.1) json-schema (2.8.1) addressable (>= 2.4) diff --git a/gemfiles/jruby_9.2_redis_4.gemfile.lock b/gemfiles/jruby_9.2_redis_4.gemfile.lock index 6bb2255d6d5..90e3620a513 100644 --- a/gemfiles/jruby_9.2_redis_4.gemfile.lock +++ b/gemfiles/jruby_9.2_redis_4.gemfile.lock @@ -33,7 +33,7 @@ GEM diff-lcs (1.5.0) docile (1.4.0) dogstatsd-ruby (5.5.0) - ffi (1.17.0-java) + ffi (1.17.1-java) hashdiff (1.0.1) json-schema (2.8.1) addressable (>= 2.4) diff --git a/gemfiles/jruby_9.2_redis_5.gemfile.lock b/gemfiles/jruby_9.2_redis_5.gemfile.lock index 9af3293bb13..de1502cf808 100644 --- a/gemfiles/jruby_9.2_redis_5.gemfile.lock +++ b/gemfiles/jruby_9.2_redis_5.gemfile.lock @@ -34,7 +34,7 @@ GEM diff-lcs (1.5.0) docile (1.4.0) dogstatsd-ruby (5.5.0) - ffi (1.17.0-java) + ffi (1.17.1-java) hashdiff (1.0.1) json-schema (2.8.1) addressable (>= 2.4) diff --git a/gemfiles/jruby_9.2_relational_db.gemfile.lock b/gemfiles/jruby_9.2_relational_db.gemfile.lock index d74e73cb59d..2e7d061cfab 100644 --- a/gemfiles/jruby_9.2_relational_db.gemfile.lock +++ b/gemfiles/jruby_9.2_relational_db.gemfile.lock @@ -62,7 +62,7 @@ GEM diff-lcs (1.5.0) docile (1.4.0) dogstatsd-ruby (5.6.1) - ffi (1.17.0-java) + ffi (1.17.1-java) hashdiff (1.0.1) i18n (1.14.1) concurrent-ruby (~> 1.0) diff --git a/gemfiles/jruby_9.2_resque2_redis3.gemfile.lock b/gemfiles/jruby_9.2_resque2_redis3.gemfile.lock index 92dc61f86d0..b9dff458923 100644 --- a/gemfiles/jruby_9.2_resque2_redis3.gemfile.lock +++ b/gemfiles/jruby_9.2_resque2_redis3.gemfile.lock @@ -33,7 +33,7 @@ GEM diff-lcs (1.5.0) docile (1.4.0) dogstatsd-ruby (5.5.0) - ffi (1.17.0-java) + ffi (1.17.1-java) hashdiff (1.0.1) json-schema (2.8.1) addressable (>= 2.4) diff --git a/gemfiles/jruby_9.2_resque2_redis4.gemfile.lock b/gemfiles/jruby_9.2_resque2_redis4.gemfile.lock index fc58622cecd..c103c157190 100644 --- a/gemfiles/jruby_9.2_resque2_redis4.gemfile.lock +++ b/gemfiles/jruby_9.2_resque2_redis4.gemfile.lock @@ -34,7 +34,7 @@ GEM diff-lcs (1.5.0) docile (1.4.0) dogstatsd-ruby (5.5.0) - ffi (1.17.0-java) + ffi (1.17.1-java) hashdiff (1.0.1) json-schema (2.8.1) addressable (>= 2.4) diff --git a/gemfiles/jruby_9.2_sinatra_2.gemfile.lock b/gemfiles/jruby_9.2_sinatra_2.gemfile.lock index cc994cfef6a..320bdbbdab8 100644 --- a/gemfiles/jruby_9.2_sinatra_2.gemfile.lock +++ b/gemfiles/jruby_9.2_sinatra_2.gemfile.lock @@ -36,7 +36,7 @@ GEM diff-lcs (1.5.1) docile (1.4.0) dogstatsd-ruby (5.6.1) - ffi (1.17.0-java) + ffi (1.17.1-java) hashdiff (1.1.0) json-schema (2.8.1) addressable (>= 2.4) diff --git a/gemfiles/jruby_9.2_stripe_10.gemfile.lock b/gemfiles/jruby_9.2_stripe_10.gemfile.lock index 2e6b817157b..89d1ec37f1c 100644 --- a/gemfiles/jruby_9.2_stripe_10.gemfile.lock +++ b/gemfiles/jruby_9.2_stripe_10.gemfile.lock @@ -36,7 +36,7 @@ GEM diff-lcs (1.5.1) docile (1.4.1) dogstatsd-ruby (5.6.1) - ffi (1.17.0-java) + ffi (1.17.1-java) hashdiff (1.1.1) json-schema (2.8.1) addressable (>= 2.4) diff --git a/gemfiles/jruby_9.2_stripe_11.gemfile.lock b/gemfiles/jruby_9.2_stripe_11.gemfile.lock index 1450cec3a41..8e1cd792b6d 100644 --- a/gemfiles/jruby_9.2_stripe_11.gemfile.lock +++ b/gemfiles/jruby_9.2_stripe_11.gemfile.lock @@ -36,7 +36,7 @@ GEM diff-lcs (1.5.1) docile (1.4.1) dogstatsd-ruby (5.6.1) - ffi (1.17.0-java) + ffi (1.17.1-java) hashdiff (1.1.1) json-schema (2.8.1) addressable (>= 2.4) diff --git a/gemfiles/jruby_9.2_stripe_12.gemfile.lock b/gemfiles/jruby_9.2_stripe_12.gemfile.lock index c8bea428847..d8150b4628f 100644 --- a/gemfiles/jruby_9.2_stripe_12.gemfile.lock +++ b/gemfiles/jruby_9.2_stripe_12.gemfile.lock @@ -36,7 +36,7 @@ GEM diff-lcs (1.5.1) docile (1.4.1) dogstatsd-ruby (5.6.1) - ffi (1.17.0-java) + ffi (1.17.1-java) hashdiff (1.1.1) json-schema (2.8.1) addressable (>= 2.4) diff --git a/gemfiles/jruby_9.2_stripe_7.gemfile.lock b/gemfiles/jruby_9.2_stripe_7.gemfile.lock index 21ca74a66f5..4f8bcc70492 100644 --- a/gemfiles/jruby_9.2_stripe_7.gemfile.lock +++ b/gemfiles/jruby_9.2_stripe_7.gemfile.lock @@ -36,7 +36,7 @@ GEM diff-lcs (1.5.1) docile (1.4.1) dogstatsd-ruby (5.6.1) - ffi (1.17.0-java) + ffi (1.17.1-java) hashdiff (1.1.1) json-schema (2.8.1) addressable (>= 2.4) diff --git a/gemfiles/jruby_9.2_stripe_8.gemfile.lock b/gemfiles/jruby_9.2_stripe_8.gemfile.lock index 668f99cef7c..92c0f0000e0 100644 --- a/gemfiles/jruby_9.2_stripe_8.gemfile.lock +++ b/gemfiles/jruby_9.2_stripe_8.gemfile.lock @@ -36,7 +36,7 @@ GEM diff-lcs (1.5.1) docile (1.4.1) dogstatsd-ruby (5.6.1) - ffi (1.17.0-java) + ffi (1.17.1-java) hashdiff (1.1.1) json-schema (2.8.1) addressable (>= 2.4) diff --git a/gemfiles/jruby_9.2_stripe_9.gemfile.lock b/gemfiles/jruby_9.2_stripe_9.gemfile.lock index fc7ee6855eb..5df16e5dbf8 100644 --- a/gemfiles/jruby_9.2_stripe_9.gemfile.lock +++ b/gemfiles/jruby_9.2_stripe_9.gemfile.lock @@ -36,7 +36,7 @@ GEM diff-lcs (1.5.1) docile (1.4.1) dogstatsd-ruby (5.6.1) - ffi (1.17.0-java) + ffi (1.17.1-java) hashdiff (1.1.1) json-schema (2.8.1) addressable (>= 2.4) diff --git a/gemfiles/jruby_9.2_stripe_latest.gemfile.lock b/gemfiles/jruby_9.2_stripe_latest.gemfile.lock index b6802cce920..802e2bcd643 100644 --- a/gemfiles/jruby_9.2_stripe_latest.gemfile.lock +++ b/gemfiles/jruby_9.2_stripe_latest.gemfile.lock @@ -36,7 +36,7 @@ GEM diff-lcs (1.5.1) docile (1.4.1) dogstatsd-ruby (5.6.1) - ffi (1.17.0-java) + ffi (1.17.1-java) hashdiff (1.1.1) json-schema (2.8.1) addressable (>= 2.4) diff --git a/gemfiles/jruby_9.2_stripe_min.gemfile.lock b/gemfiles/jruby_9.2_stripe_min.gemfile.lock index 7238383745a..b32ad3c432c 100644 --- a/gemfiles/jruby_9.2_stripe_min.gemfile.lock +++ b/gemfiles/jruby_9.2_stripe_min.gemfile.lock @@ -36,7 +36,7 @@ GEM diff-lcs (1.5.1) docile (1.4.1) dogstatsd-ruby (5.6.1) - ffi (1.17.0-java) + ffi (1.17.1-java) hashdiff (1.1.1) json-schema (2.8.1) addressable (>= 2.4) diff --git a/gemfiles/jruby_9.3_activesupport.gemfile.lock b/gemfiles/jruby_9.3_activesupport.gemfile.lock index 5fa2e50cea0..8c67f757ce5 100644 --- a/gemfiles/jruby_9.3_activesupport.gemfile.lock +++ b/gemfiles/jruby_9.3_activesupport.gemfile.lock @@ -85,7 +85,7 @@ GEM dry-inflector (~> 0.1, >= 0.1.2) dry-logic (~> 1.0, >= 1.0.2) erubi (1.12.0) - ffi (1.17.0-java) + ffi (1.17.1-java) grape (1.8.0) activesupport (>= 5) builder diff --git a/gemfiles/jruby_9.3_aws.gemfile.lock b/gemfiles/jruby_9.3_aws.gemfile.lock index 3d60c08e571..a2ab56c2531 100644 --- a/gemfiles/jruby_9.3_aws.gemfile.lock +++ b/gemfiles/jruby_9.3_aws.gemfile.lock @@ -1455,7 +1455,7 @@ GEM diff-lcs (1.5.0) docile (1.4.0) dogstatsd-ruby (5.6.0) - ffi (1.17.0-java) + ffi (1.17.1-java) hashdiff (1.0.1) jmespath (1.6.2) json (2.6.3-java) diff --git a/gemfiles/jruby_9.3_contrib.gemfile.lock b/gemfiles/jruby_9.3_contrib.gemfile.lock index c519b3f350d..7e5f3dcb603 100644 --- a/gemfiles/jruby_9.3_contrib.gemfile.lock +++ b/gemfiles/jruby_9.3_contrib.gemfile.lock @@ -41,7 +41,7 @@ GEM diff-lcs (1.5.0) docile (1.4.0) dogstatsd-ruby (5.6.1) - ffi (1.17.0-java) + ffi (1.17.1-java) hashdiff (1.0.1) json (2.6.3-java) json-schema (2.8.1) diff --git a/gemfiles/jruby_9.3_contrib_old.gemfile.lock b/gemfiles/jruby_9.3_contrib_old.gemfile.lock index 941ef597de2..fe2c3709e57 100644 --- a/gemfiles/jruby_9.3_contrib_old.gemfile.lock +++ b/gemfiles/jruby_9.3_contrib_old.gemfile.lock @@ -39,7 +39,7 @@ GEM multipart-post (>= 1.2, < 3) faraday_middleware (0.12.2) faraday (>= 0.7.4, < 1.0) - ffi (1.17.0-java) + ffi (1.17.1-java) hashdiff (1.0.1) json (2.6.3-java) json-schema (2.8.1) diff --git a/gemfiles/jruby_9.3_core_old.gemfile.lock b/gemfiles/jruby_9.3_core_old.gemfile.lock index 684364abdbc..5d149003505 100644 --- a/gemfiles/jruby_9.3_core_old.gemfile.lock +++ b/gemfiles/jruby_9.3_core_old.gemfile.lock @@ -34,7 +34,7 @@ GEM diff-lcs (1.5.0) docile (1.4.0) dogstatsd-ruby (4.8.3) - ffi (1.17.0-java) + ffi (1.17.1-java) hashdiff (1.0.1) json (2.6.3-java) json-schema (2.8.1) diff --git a/gemfiles/jruby_9.3_elasticsearch_7.gemfile.lock b/gemfiles/jruby_9.3_elasticsearch_7.gemfile.lock index 50c4c83f604..b0fa99a4e5b 100644 --- a/gemfiles/jruby_9.3_elasticsearch_7.gemfile.lock +++ b/gemfiles/jruby_9.3_elasticsearch_7.gemfile.lock @@ -50,7 +50,7 @@ GEM faraday-net_http (>= 2.0, < 3.1) ruby2_keywords (>= 0.0.4) faraday-net_http (3.0.2) - ffi (1.17.0-java) + ffi (1.17.1-java) hashdiff (1.0.1) json (2.6.3-java) json-schema (2.8.1) diff --git a/gemfiles/jruby_9.3_elasticsearch_8.gemfile.lock b/gemfiles/jruby_9.3_elasticsearch_8.gemfile.lock index 41b0248490f..87e7bbc4d1e 100644 --- a/gemfiles/jruby_9.3_elasticsearch_8.gemfile.lock +++ b/gemfiles/jruby_9.3_elasticsearch_8.gemfile.lock @@ -49,7 +49,7 @@ GEM faraday-net_http (>= 2.0, < 3.1) ruby2_keywords (>= 0.0.4) faraday-net_http (3.0.2) - ffi (1.17.0-java) + ffi (1.17.1-java) hashdiff (1.0.1) json (2.6.3-java) json-schema (2.8.1) diff --git a/gemfiles/jruby_9.3_elasticsearch_latest.gemfile.lock b/gemfiles/jruby_9.3_elasticsearch_latest.gemfile.lock index 579f69b55fc..cd92e849ecc 100644 --- a/gemfiles/jruby_9.3_elasticsearch_latest.gemfile.lock +++ b/gemfiles/jruby_9.3_elasticsearch_latest.gemfile.lock @@ -51,7 +51,7 @@ GEM faraday-net_http (>= 2.0, < 3.1) ruby2_keywords (>= 0.0.4) faraday-net_http (3.0.2) - ffi (1.17.0-java) + ffi (1.17.1-java) hashdiff (1.1.1) json (2.7.2-java) json-schema (2.8.1) diff --git a/gemfiles/jruby_9.3_graphql_1.13.gemfile.lock b/gemfiles/jruby_9.3_graphql_1.13.gemfile.lock index f61df7ae3e2..101a8dc516d 100644 --- a/gemfiles/jruby_9.3_graphql_1.13.gemfile.lock +++ b/gemfiles/jruby_9.3_graphql_1.13.gemfile.lock @@ -99,7 +99,7 @@ GEM docile (1.4.0) dogstatsd-ruby (5.6.1) erubi (1.13.0) - ffi (1.17.0-java) + ffi (1.17.1-java) globalid (1.2.1) activesupport (>= 6.1) graphql (1.13.21) diff --git a/gemfiles/jruby_9.3_graphql_2.0.gemfile.lock b/gemfiles/jruby_9.3_graphql_2.0.gemfile.lock index 86e2debca04..c666092be52 100644 --- a/gemfiles/jruby_9.3_graphql_2.0.gemfile.lock +++ b/gemfiles/jruby_9.3_graphql_2.0.gemfile.lock @@ -99,7 +99,7 @@ GEM docile (1.4.0) dogstatsd-ruby (5.6.1) erubi (1.13.0) - ffi (1.17.0-java) + ffi (1.17.1-java) globalid (1.2.1) activesupport (>= 6.1) graphql (2.0.28) diff --git a/gemfiles/jruby_9.3_http.gemfile.lock b/gemfiles/jruby_9.3_http.gemfile.lock index faf21f0efaf..5d88d7f530b 100644 --- a/gemfiles/jruby_9.3_http.gemfile.lock +++ b/gemfiles/jruby_9.3_http.gemfile.lock @@ -43,7 +43,7 @@ GEM faraday-net_http (>= 2.0, < 3.1) ruby2_keywords (>= 0.0.4) faraday-net_http (3.0.2) - ffi (1.17.0-java) + ffi (1.17.1-java) ffi-compiler (1.0.1) ffi (>= 1.0.0) rake diff --git a/gemfiles/jruby_9.3_opensearch_2.gemfile.lock b/gemfiles/jruby_9.3_opensearch_2.gemfile.lock index d83a453e612..46cd5d33e1d 100644 --- a/gemfiles/jruby_9.3_opensearch_2.gemfile.lock +++ b/gemfiles/jruby_9.3_opensearch_2.gemfile.lock @@ -41,7 +41,7 @@ GEM faraday-net_http (>= 2.0, < 3.1) ruby2_keywords (>= 0.0.4) faraday-net_http (3.0.2) - ffi (1.17.0-java) + ffi (1.17.1-java) hashdiff (1.0.1) json (2.6.3-java) json-schema (2.8.1) diff --git a/gemfiles/jruby_9.3_opensearch_3.gemfile.lock b/gemfiles/jruby_9.3_opensearch_3.gemfile.lock index 7249358cb4d..5856baadd3e 100644 --- a/gemfiles/jruby_9.3_opensearch_3.gemfile.lock +++ b/gemfiles/jruby_9.3_opensearch_3.gemfile.lock @@ -41,7 +41,7 @@ GEM faraday-net_http (>= 2.0, < 3.1) ruby2_keywords (>= 0.0.4) faraday-net_http (3.0.2) - ffi (1.17.0-java) + ffi (1.17.1-java) hashdiff (1.0.1) json (2.6.3-java) json-schema (2.8.1) diff --git a/gemfiles/jruby_9.3_opensearch_latest.gemfile.lock b/gemfiles/jruby_9.3_opensearch_latest.gemfile.lock index 16d22b48c0f..fdb09719818 100644 --- a/gemfiles/jruby_9.3_opensearch_latest.gemfile.lock +++ b/gemfiles/jruby_9.3_opensearch_latest.gemfile.lock @@ -43,7 +43,7 @@ GEM faraday-net_http (>= 2.0, < 3.1) ruby2_keywords (>= 0.0.4) faraday-net_http (3.0.2) - ffi (1.17.0-java) + ffi (1.17.1-java) hashdiff (1.1.1) json (2.7.2-java) json-schema (2.8.1) diff --git a/gemfiles/jruby_9.3_rack_1.gemfile.lock b/gemfiles/jruby_9.3_rack_1.gemfile.lock index d8c90f51ae8..28f81bcc662 100644 --- a/gemfiles/jruby_9.3_rack_1.gemfile.lock +++ b/gemfiles/jruby_9.3_rack_1.gemfile.lock @@ -34,7 +34,7 @@ GEM diff-lcs (1.5.0) docile (1.4.0) dogstatsd-ruby (5.6.1) - ffi (1.17.0-java) + ffi (1.17.1-java) hashdiff (1.0.1) json (2.6.3-java) json-schema (2.8.1) diff --git a/gemfiles/jruby_9.3_rack_2.gemfile.lock b/gemfiles/jruby_9.3_rack_2.gemfile.lock index 2b2bcfe16da..1a5b9d71b94 100644 --- a/gemfiles/jruby_9.3_rack_2.gemfile.lock +++ b/gemfiles/jruby_9.3_rack_2.gemfile.lock @@ -34,7 +34,7 @@ GEM diff-lcs (1.5.0) docile (1.4.0) dogstatsd-ruby (5.6.1) - ffi (1.17.0-java) + ffi (1.17.1-java) hashdiff (1.0.1) json (2.6.3-java) json-schema (2.8.1) diff --git a/gemfiles/jruby_9.3_rack_3.gemfile.lock b/gemfiles/jruby_9.3_rack_3.gemfile.lock index 1a4b3c3ca98..cdb43ace357 100644 --- a/gemfiles/jruby_9.3_rack_3.gemfile.lock +++ b/gemfiles/jruby_9.3_rack_3.gemfile.lock @@ -34,7 +34,7 @@ GEM diff-lcs (1.5.0) docile (1.4.0) dogstatsd-ruby (5.6.1) - ffi (1.17.0-java) + ffi (1.17.1-java) hashdiff (1.0.1) json (2.6.3-java) json-schema (2.8.1) diff --git a/gemfiles/jruby_9.3_rack_latest.gemfile.lock b/gemfiles/jruby_9.3_rack_latest.gemfile.lock index 17f75b59b32..8e7de425e01 100644 --- a/gemfiles/jruby_9.3_rack_latest.gemfile.lock +++ b/gemfiles/jruby_9.3_rack_latest.gemfile.lock @@ -37,7 +37,7 @@ GEM diff-lcs (1.5.1) docile (1.4.1) dogstatsd-ruby (5.6.2) - ffi (1.17.0-java) + ffi (1.17.1-java) hashdiff (1.1.1) json (2.7.2-java) json-schema (2.8.1) diff --git a/gemfiles/jruby_9.3_rails5_mysql2.gemfile.lock b/gemfiles/jruby_9.3_rails5_mysql2.gemfile.lock index 01678e58ca8..5ae228949ad 100644 --- a/gemfiles/jruby_9.3_rails5_mysql2.gemfile.lock +++ b/gemfiles/jruby_9.3_rails5_mysql2.gemfile.lock @@ -85,7 +85,7 @@ GEM docile (1.4.0) dogstatsd-ruby (5.6.1) erubi (1.12.0) - ffi (1.17.0-java) + ffi (1.17.1-java) globalid (1.0.1) activesupport (>= 5.0) hashdiff (1.0.1) diff --git a/gemfiles/jruby_9.3_rails5_postgres.gemfile.lock b/gemfiles/jruby_9.3_rails5_postgres.gemfile.lock index e8e4e2a1512..eb1b33d1f72 100644 --- a/gemfiles/jruby_9.3_rails5_postgres.gemfile.lock +++ b/gemfiles/jruby_9.3_rails5_postgres.gemfile.lock @@ -85,7 +85,7 @@ GEM docile (1.4.0) dogstatsd-ruby (5.6.1) erubi (1.12.0) - ffi (1.17.0-java) + ffi (1.17.1-java) globalid (1.0.1) activesupport (>= 5.0) hashdiff (1.0.1) diff --git a/gemfiles/jruby_9.3_rails5_postgres_redis.gemfile.lock b/gemfiles/jruby_9.3_rails5_postgres_redis.gemfile.lock index 1bb1004d4c5..0c22a6702ff 100644 --- a/gemfiles/jruby_9.3_rails5_postgres_redis.gemfile.lock +++ b/gemfiles/jruby_9.3_rails5_postgres_redis.gemfile.lock @@ -85,7 +85,7 @@ GEM docile (1.4.0) dogstatsd-ruby (5.6.1) erubi (1.12.0) - ffi (1.17.0-java) + ffi (1.17.1-java) globalid (1.0.1) activesupport (>= 5.0) hashdiff (1.0.1) diff --git a/gemfiles/jruby_9.3_rails5_postgres_redis_activesupport.gemfile.lock b/gemfiles/jruby_9.3_rails5_postgres_redis_activesupport.gemfile.lock index 3acbbec69d2..4cd20e2ddcf 100644 --- a/gemfiles/jruby_9.3_rails5_postgres_redis_activesupport.gemfile.lock +++ b/gemfiles/jruby_9.3_rails5_postgres_redis_activesupport.gemfile.lock @@ -85,7 +85,7 @@ GEM docile (1.4.0) dogstatsd-ruby (5.6.1) erubi (1.12.0) - ffi (1.17.0-java) + ffi (1.17.1-java) globalid (1.0.1) activesupport (>= 5.0) hashdiff (1.0.1) diff --git a/gemfiles/jruby_9.3_rails5_postgres_sidekiq.gemfile.lock b/gemfiles/jruby_9.3_rails5_postgres_sidekiq.gemfile.lock index dc4ec2a618e..3768f1b6b70 100644 --- a/gemfiles/jruby_9.3_rails5_postgres_sidekiq.gemfile.lock +++ b/gemfiles/jruby_9.3_rails5_postgres_sidekiq.gemfile.lock @@ -86,7 +86,7 @@ GEM docile (1.4.0) dogstatsd-ruby (5.6.1) erubi (1.12.0) - ffi (1.17.0-java) + ffi (1.17.1-java) globalid (1.0.1) activesupport (>= 5.0) hashdiff (1.0.1) diff --git a/gemfiles/jruby_9.3_rails5_semantic_logger.gemfile.lock b/gemfiles/jruby_9.3_rails5_semantic_logger.gemfile.lock index 5f750c6f292..ffb002ebaa1 100644 --- a/gemfiles/jruby_9.3_rails5_semantic_logger.gemfile.lock +++ b/gemfiles/jruby_9.3_rails5_semantic_logger.gemfile.lock @@ -85,7 +85,7 @@ GEM docile (1.4.0) dogstatsd-ruby (5.6.1) erubi (1.12.0) - ffi (1.17.0-java) + ffi (1.17.1-java) globalid (1.0.1) activesupport (>= 5.0) hashdiff (1.0.1) diff --git a/gemfiles/jruby_9.3_rails61_mysql2.gemfile.lock b/gemfiles/jruby_9.3_rails61_mysql2.gemfile.lock index adbf4b058aa..136b3a36efb 100644 --- a/gemfiles/jruby_9.3_rails61_mysql2.gemfile.lock +++ b/gemfiles/jruby_9.3_rails61_mysql2.gemfile.lock @@ -102,7 +102,7 @@ GEM docile (1.4.0) dogstatsd-ruby (5.6.1) erubi (1.12.0) - ffi (1.17.0-java) + ffi (1.17.1-java) globalid (1.0.1) activesupport (>= 5.0) hashdiff (1.0.1) diff --git a/gemfiles/jruby_9.3_rails61_postgres.gemfile.lock b/gemfiles/jruby_9.3_rails61_postgres.gemfile.lock index e4d2a7990bf..5ad044a1224 100644 --- a/gemfiles/jruby_9.3_rails61_postgres.gemfile.lock +++ b/gemfiles/jruby_9.3_rails61_postgres.gemfile.lock @@ -102,7 +102,7 @@ GEM docile (1.4.0) dogstatsd-ruby (5.6.1) erubi (1.12.0) - ffi (1.17.0-java) + ffi (1.17.1-java) globalid (1.0.1) activesupport (>= 5.0) hashdiff (1.0.1) diff --git a/gemfiles/jruby_9.3_rails61_postgres_redis.gemfile.lock b/gemfiles/jruby_9.3_rails61_postgres_redis.gemfile.lock index f7852b2be0c..ace5125f4e8 100644 --- a/gemfiles/jruby_9.3_rails61_postgres_redis.gemfile.lock +++ b/gemfiles/jruby_9.3_rails61_postgres_redis.gemfile.lock @@ -102,7 +102,7 @@ GEM docile (1.4.0) dogstatsd-ruby (5.6.1) erubi (1.12.0) - ffi (1.17.0-java) + ffi (1.17.1-java) globalid (1.0.1) activesupport (>= 5.0) hashdiff (1.0.1) diff --git a/gemfiles/jruby_9.3_rails61_postgres_sidekiq.gemfile.lock b/gemfiles/jruby_9.3_rails61_postgres_sidekiq.gemfile.lock index f25eed0531a..9122128d4ad 100644 --- a/gemfiles/jruby_9.3_rails61_postgres_sidekiq.gemfile.lock +++ b/gemfiles/jruby_9.3_rails61_postgres_sidekiq.gemfile.lock @@ -103,7 +103,7 @@ GEM docile (1.4.0) dogstatsd-ruby (5.6.1) erubi (1.12.0) - ffi (1.17.0-java) + ffi (1.17.1-java) globalid (1.0.1) activesupport (>= 5.0) hashdiff (1.0.1) diff --git a/gemfiles/jruby_9.3_rails61_semantic_logger.gemfile.lock b/gemfiles/jruby_9.3_rails61_semantic_logger.gemfile.lock index 40c1664c0ad..99af65286f9 100644 --- a/gemfiles/jruby_9.3_rails61_semantic_logger.gemfile.lock +++ b/gemfiles/jruby_9.3_rails61_semantic_logger.gemfile.lock @@ -102,7 +102,7 @@ GEM docile (1.4.0) dogstatsd-ruby (5.6.1) erubi (1.12.0) - ffi (1.17.0-java) + ffi (1.17.1-java) globalid (1.0.1) activesupport (>= 5.0) hashdiff (1.0.1) diff --git a/gemfiles/jruby_9.3_rails6_mysql2.gemfile.lock b/gemfiles/jruby_9.3_rails6_mysql2.gemfile.lock index 4a6c441a047..a5034be0d00 100644 --- a/gemfiles/jruby_9.3_rails6_mysql2.gemfile.lock +++ b/gemfiles/jruby_9.3_rails6_mysql2.gemfile.lock @@ -98,7 +98,7 @@ GEM docile (1.4.0) dogstatsd-ruby (5.6.1) erubi (1.12.0) - ffi (1.17.0-java) + ffi (1.17.1-java) globalid (1.0.1) activesupport (>= 5.0) hashdiff (1.0.1) diff --git a/gemfiles/jruby_9.3_rails6_postgres.gemfile.lock b/gemfiles/jruby_9.3_rails6_postgres.gemfile.lock index 9fb2257d8b2..d275dba8721 100644 --- a/gemfiles/jruby_9.3_rails6_postgres.gemfile.lock +++ b/gemfiles/jruby_9.3_rails6_postgres.gemfile.lock @@ -98,7 +98,7 @@ GEM docile (1.4.0) dogstatsd-ruby (5.6.1) erubi (1.12.0) - ffi (1.17.0-java) + ffi (1.17.1-java) globalid (1.0.1) activesupport (>= 5.0) hashdiff (1.0.1) diff --git a/gemfiles/jruby_9.3_rails6_postgres_redis.gemfile.lock b/gemfiles/jruby_9.3_rails6_postgres_redis.gemfile.lock index 72832b02ad3..512c0a44002 100644 --- a/gemfiles/jruby_9.3_rails6_postgres_redis.gemfile.lock +++ b/gemfiles/jruby_9.3_rails6_postgres_redis.gemfile.lock @@ -98,7 +98,7 @@ GEM docile (1.4.0) dogstatsd-ruby (5.6.1) erubi (1.12.0) - ffi (1.17.0-java) + ffi (1.17.1-java) globalid (1.0.1) activesupport (>= 5.0) hashdiff (1.0.1) diff --git a/gemfiles/jruby_9.3_rails6_postgres_redis_activesupport.gemfile.lock b/gemfiles/jruby_9.3_rails6_postgres_redis_activesupport.gemfile.lock index 4f6a8d8b3ea..be5440589b8 100644 --- a/gemfiles/jruby_9.3_rails6_postgres_redis_activesupport.gemfile.lock +++ b/gemfiles/jruby_9.3_rails6_postgres_redis_activesupport.gemfile.lock @@ -98,7 +98,7 @@ GEM docile (1.4.0) dogstatsd-ruby (5.6.1) erubi (1.12.0) - ffi (1.17.0-java) + ffi (1.17.1-java) globalid (1.0.1) activesupport (>= 5.0) hashdiff (1.0.1) diff --git a/gemfiles/jruby_9.3_rails6_postgres_sidekiq.gemfile.lock b/gemfiles/jruby_9.3_rails6_postgres_sidekiq.gemfile.lock index 52553f8447a..b9b15ebcd8f 100644 --- a/gemfiles/jruby_9.3_rails6_postgres_sidekiq.gemfile.lock +++ b/gemfiles/jruby_9.3_rails6_postgres_sidekiq.gemfile.lock @@ -99,7 +99,7 @@ GEM docile (1.4.0) dogstatsd-ruby (5.6.1) erubi (1.12.0) - ffi (1.17.0-java) + ffi (1.17.1-java) globalid (1.0.1) activesupport (>= 5.0) hashdiff (1.0.1) diff --git a/gemfiles/jruby_9.3_rails6_semantic_logger.gemfile.lock b/gemfiles/jruby_9.3_rails6_semantic_logger.gemfile.lock index 8c9d96cd7dc..5ee6238f7e0 100644 --- a/gemfiles/jruby_9.3_rails6_semantic_logger.gemfile.lock +++ b/gemfiles/jruby_9.3_rails6_semantic_logger.gemfile.lock @@ -98,7 +98,7 @@ GEM docile (1.4.0) dogstatsd-ruby (5.6.1) erubi (1.12.0) - ffi (1.17.0-java) + ffi (1.17.1-java) globalid (1.0.1) activesupport (>= 5.0) hashdiff (1.0.1) diff --git a/gemfiles/jruby_9.3_redis_3.gemfile.lock b/gemfiles/jruby_9.3_redis_3.gemfile.lock index d19aea4bbea..65ee0d4f084 100644 --- a/gemfiles/jruby_9.3_redis_3.gemfile.lock +++ b/gemfiles/jruby_9.3_redis_3.gemfile.lock @@ -34,7 +34,7 @@ GEM diff-lcs (1.5.0) docile (1.4.0) dogstatsd-ruby (5.6.1) - ffi (1.17.0-java) + ffi (1.17.1-java) hashdiff (1.0.1) json (2.6.3-java) json-schema (2.8.1) diff --git a/gemfiles/jruby_9.3_redis_4.gemfile.lock b/gemfiles/jruby_9.3_redis_4.gemfile.lock index 3b26f43fb54..d919ca368fe 100644 --- a/gemfiles/jruby_9.3_redis_4.gemfile.lock +++ b/gemfiles/jruby_9.3_redis_4.gemfile.lock @@ -34,7 +34,7 @@ GEM diff-lcs (1.5.0) docile (1.4.0) dogstatsd-ruby (5.6.1) - ffi (1.17.0-java) + ffi (1.17.1-java) hashdiff (1.0.1) json (2.6.3-java) json-schema (2.8.1) diff --git a/gemfiles/jruby_9.3_redis_5.gemfile.lock b/gemfiles/jruby_9.3_redis_5.gemfile.lock index f8ecc10dc1b..9db646edc53 100644 --- a/gemfiles/jruby_9.3_redis_5.gemfile.lock +++ b/gemfiles/jruby_9.3_redis_5.gemfile.lock @@ -35,7 +35,7 @@ GEM diff-lcs (1.5.0) docile (1.4.0) dogstatsd-ruby (5.6.1) - ffi (1.17.0-java) + ffi (1.17.1-java) hashdiff (1.0.1) json (2.6.3-java) json-schema (2.8.1) diff --git a/gemfiles/jruby_9.3_relational_db.gemfile.lock b/gemfiles/jruby_9.3_relational_db.gemfile.lock index 93358bcd8ee..c1a16ce398f 100644 --- a/gemfiles/jruby_9.3_relational_db.gemfile.lock +++ b/gemfiles/jruby_9.3_relational_db.gemfile.lock @@ -59,7 +59,7 @@ GEM diff-lcs (1.5.0) docile (1.4.0) dogstatsd-ruby (5.6.1) - ffi (1.17.0-java) + ffi (1.17.1-java) hashdiff (1.0.1) i18n (1.14.1) concurrent-ruby (~> 1.0) diff --git a/gemfiles/jruby_9.3_resque2_redis3.gemfile.lock b/gemfiles/jruby_9.3_resque2_redis3.gemfile.lock index 431d7e58a57..30f3f0dabdc 100644 --- a/gemfiles/jruby_9.3_resque2_redis3.gemfile.lock +++ b/gemfiles/jruby_9.3_resque2_redis3.gemfile.lock @@ -34,7 +34,7 @@ GEM diff-lcs (1.5.0) docile (1.4.0) dogstatsd-ruby (5.6.1) - ffi (1.17.0-java) + ffi (1.17.1-java) hashdiff (1.0.1) json (2.6.3-java) json-schema (2.8.1) diff --git a/gemfiles/jruby_9.3_resque2_redis4.gemfile.lock b/gemfiles/jruby_9.3_resque2_redis4.gemfile.lock index 61460b22f4a..9ae96645ee1 100644 --- a/gemfiles/jruby_9.3_resque2_redis4.gemfile.lock +++ b/gemfiles/jruby_9.3_resque2_redis4.gemfile.lock @@ -34,7 +34,7 @@ GEM diff-lcs (1.5.0) docile (1.4.0) dogstatsd-ruby (5.6.1) - ffi (1.17.0-java) + ffi (1.17.1-java) hashdiff (1.0.1) json (2.6.3-java) json-schema (2.8.1) diff --git a/gemfiles/jruby_9.3_sinatra_2.gemfile.lock b/gemfiles/jruby_9.3_sinatra_2.gemfile.lock index 980f731092f..614813e0d48 100644 --- a/gemfiles/jruby_9.3_sinatra_2.gemfile.lock +++ b/gemfiles/jruby_9.3_sinatra_2.gemfile.lock @@ -37,7 +37,7 @@ GEM diff-lcs (1.5.1) docile (1.4.0) dogstatsd-ruby (5.6.1) - ffi (1.17.0-java) + ffi (1.17.1-java) hashdiff (1.1.0) json (2.7.2-java) json-schema (2.8.1) diff --git a/gemfiles/jruby_9.3_sinatra_3.gemfile.lock b/gemfiles/jruby_9.3_sinatra_3.gemfile.lock index 2269fcf70bf..309391b3670 100644 --- a/gemfiles/jruby_9.3_sinatra_3.gemfile.lock +++ b/gemfiles/jruby_9.3_sinatra_3.gemfile.lock @@ -38,7 +38,7 @@ GEM diff-lcs (1.5.1) docile (1.4.0) dogstatsd-ruby (5.6.1) - ffi (1.17.0-java) + ffi (1.17.1-java) hashdiff (1.1.0) json (2.7.2-java) json-schema (2.8.1) diff --git a/gemfiles/jruby_9.3_stripe_10.gemfile.lock b/gemfiles/jruby_9.3_stripe_10.gemfile.lock index 42e23e9d0ef..24d0f2b07d7 100644 --- a/gemfiles/jruby_9.3_stripe_10.gemfile.lock +++ b/gemfiles/jruby_9.3_stripe_10.gemfile.lock @@ -37,7 +37,7 @@ GEM diff-lcs (1.5.1) docile (1.4.1) dogstatsd-ruby (5.6.1) - ffi (1.17.0-java) + ffi (1.17.1-java) hashdiff (1.1.1) json (2.7.2-java) json-schema (2.8.1) diff --git a/gemfiles/jruby_9.3_stripe_11.gemfile.lock b/gemfiles/jruby_9.3_stripe_11.gemfile.lock index fd18eecd360..df530970c11 100644 --- a/gemfiles/jruby_9.3_stripe_11.gemfile.lock +++ b/gemfiles/jruby_9.3_stripe_11.gemfile.lock @@ -37,7 +37,7 @@ GEM diff-lcs (1.5.1) docile (1.4.1) dogstatsd-ruby (5.6.1) - ffi (1.17.0-java) + ffi (1.17.1-java) hashdiff (1.1.1) json (2.7.2-java) json-schema (2.8.1) diff --git a/gemfiles/jruby_9.3_stripe_12.gemfile.lock b/gemfiles/jruby_9.3_stripe_12.gemfile.lock index 8b53eadae51..8ca39260a2f 100644 --- a/gemfiles/jruby_9.3_stripe_12.gemfile.lock +++ b/gemfiles/jruby_9.3_stripe_12.gemfile.lock @@ -37,7 +37,7 @@ GEM diff-lcs (1.5.1) docile (1.4.1) dogstatsd-ruby (5.6.1) - ffi (1.17.0-java) + ffi (1.17.1-java) hashdiff (1.1.1) json (2.7.2-java) json-schema (2.8.1) diff --git a/gemfiles/jruby_9.3_stripe_7.gemfile.lock b/gemfiles/jruby_9.3_stripe_7.gemfile.lock index 13c29b36a9b..d5f627e17ea 100644 --- a/gemfiles/jruby_9.3_stripe_7.gemfile.lock +++ b/gemfiles/jruby_9.3_stripe_7.gemfile.lock @@ -37,7 +37,7 @@ GEM diff-lcs (1.5.1) docile (1.4.1) dogstatsd-ruby (5.6.1) - ffi (1.17.0-java) + ffi (1.17.1-java) hashdiff (1.1.1) json (2.7.2-java) json-schema (2.8.1) diff --git a/gemfiles/jruby_9.3_stripe_8.gemfile.lock b/gemfiles/jruby_9.3_stripe_8.gemfile.lock index 6365dd9d59c..c0bb6bfdbf1 100644 --- a/gemfiles/jruby_9.3_stripe_8.gemfile.lock +++ b/gemfiles/jruby_9.3_stripe_8.gemfile.lock @@ -37,7 +37,7 @@ GEM diff-lcs (1.5.1) docile (1.4.1) dogstatsd-ruby (5.6.1) - ffi (1.17.0-java) + ffi (1.17.1-java) hashdiff (1.1.1) json (2.7.2-java) json-schema (2.8.1) diff --git a/gemfiles/jruby_9.3_stripe_9.gemfile.lock b/gemfiles/jruby_9.3_stripe_9.gemfile.lock index d7ea0681ecc..c0eeddfac33 100644 --- a/gemfiles/jruby_9.3_stripe_9.gemfile.lock +++ b/gemfiles/jruby_9.3_stripe_9.gemfile.lock @@ -37,7 +37,7 @@ GEM diff-lcs (1.5.1) docile (1.4.1) dogstatsd-ruby (5.6.1) - ffi (1.17.0-java) + ffi (1.17.1-java) hashdiff (1.1.1) json (2.7.2-java) json-schema (2.8.1) diff --git a/gemfiles/jruby_9.3_stripe_latest.gemfile.lock b/gemfiles/jruby_9.3_stripe_latest.gemfile.lock index be48d6015ac..25f00f1d02c 100644 --- a/gemfiles/jruby_9.3_stripe_latest.gemfile.lock +++ b/gemfiles/jruby_9.3_stripe_latest.gemfile.lock @@ -37,7 +37,7 @@ GEM diff-lcs (1.5.1) docile (1.4.1) dogstatsd-ruby (5.6.1) - ffi (1.17.0-java) + ffi (1.17.1-java) hashdiff (1.1.1) json (2.7.2-java) json-schema (2.8.1) diff --git a/gemfiles/jruby_9.3_stripe_min.gemfile.lock b/gemfiles/jruby_9.3_stripe_min.gemfile.lock index fdaf74f4bb4..1d6588ceb75 100644 --- a/gemfiles/jruby_9.3_stripe_min.gemfile.lock +++ b/gemfiles/jruby_9.3_stripe_min.gemfile.lock @@ -37,7 +37,7 @@ GEM diff-lcs (1.5.1) docile (1.4.1) dogstatsd-ruby (5.6.1) - ffi (1.17.0-java) + ffi (1.17.1-java) hashdiff (1.1.1) json (2.7.2-java) json-schema (2.8.1) diff --git a/gemfiles/jruby_9.4_activesupport.gemfile.lock b/gemfiles/jruby_9.4_activesupport.gemfile.lock index 08cb78a05f0..88570c691aa 100644 --- a/gemfiles/jruby_9.4_activesupport.gemfile.lock +++ b/gemfiles/jruby_9.4_activesupport.gemfile.lock @@ -80,7 +80,7 @@ GEM dry-logic (~> 1.4) zeitwerk (~> 2.6) erubi (1.12.0) - ffi (1.17.0-java) + ffi (1.17.1-java) grape (1.8.0) activesupport (>= 5) builder diff --git a/gemfiles/jruby_9.4_aws.gemfile.lock b/gemfiles/jruby_9.4_aws.gemfile.lock index bbe67eb7a19..afdcb51ba28 100644 --- a/gemfiles/jruby_9.4_aws.gemfile.lock +++ b/gemfiles/jruby_9.4_aws.gemfile.lock @@ -1455,7 +1455,7 @@ GEM diff-lcs (1.5.0) docile (1.4.0) dogstatsd-ruby (5.6.0) - ffi (1.17.0-java) + ffi (1.17.1-java) hashdiff (1.0.1) jmespath (1.6.2) json (2.6.3-java) diff --git a/gemfiles/jruby_9.4_contrib.gemfile.lock b/gemfiles/jruby_9.4_contrib.gemfile.lock index dc8646b6ce0..a8d69572440 100644 --- a/gemfiles/jruby_9.4_contrib.gemfile.lock +++ b/gemfiles/jruby_9.4_contrib.gemfile.lock @@ -41,7 +41,7 @@ GEM diff-lcs (1.5.0) docile (1.4.0) dogstatsd-ruby (5.5.0) - ffi (1.17.0-java) + ffi (1.17.1-java) hashdiff (1.0.1) json (2.6.3-java) json-schema (2.8.1) diff --git a/gemfiles/jruby_9.4_contrib_old.gemfile.lock b/gemfiles/jruby_9.4_contrib_old.gemfile.lock index 53103290f21..2b7c9815683 100644 --- a/gemfiles/jruby_9.4_contrib_old.gemfile.lock +++ b/gemfiles/jruby_9.4_contrib_old.gemfile.lock @@ -39,7 +39,7 @@ GEM multipart-post (>= 1.2, < 3) faraday_middleware (0.12.2) faraday (>= 0.7.4, < 1.0) - ffi (1.17.0-java) + ffi (1.17.1-java) hashdiff (1.0.1) json (2.6.3-java) json-schema (2.8.1) diff --git a/gemfiles/jruby_9.4_core_old.gemfile.lock b/gemfiles/jruby_9.4_core_old.gemfile.lock index aa8a5f8d268..ea1bc3179fc 100644 --- a/gemfiles/jruby_9.4_core_old.gemfile.lock +++ b/gemfiles/jruby_9.4_core_old.gemfile.lock @@ -34,7 +34,7 @@ GEM diff-lcs (1.5.0) docile (1.4.0) dogstatsd-ruby (4.8.3) - ffi (1.17.0-java) + ffi (1.17.1-java) hashdiff (1.0.1) json (2.6.3-java) json-schema (2.8.1) diff --git a/gemfiles/jruby_9.4_elasticsearch_7.gemfile.lock b/gemfiles/jruby_9.4_elasticsearch_7.gemfile.lock index d3da187035b..ca7aaf0976a 100644 --- a/gemfiles/jruby_9.4_elasticsearch_7.gemfile.lock +++ b/gemfiles/jruby_9.4_elasticsearch_7.gemfile.lock @@ -51,7 +51,7 @@ GEM logger faraday-net_http (3.4.0) net-http (>= 0.5.0) - ffi (1.17.0-java) + ffi (1.17.1-java) hashdiff (1.0.1) json (2.9.1-java) json-schema (2.8.1) diff --git a/gemfiles/jruby_9.4_elasticsearch_8.gemfile.lock b/gemfiles/jruby_9.4_elasticsearch_8.gemfile.lock index 99944c060cc..263b6b31c7c 100644 --- a/gemfiles/jruby_9.4_elasticsearch_8.gemfile.lock +++ b/gemfiles/jruby_9.4_elasticsearch_8.gemfile.lock @@ -49,7 +49,7 @@ GEM logger faraday-net_http (3.4.0) net-http (>= 0.5.0) - ffi (1.17.0-java) + ffi (1.17.1-java) hashdiff (1.0.1) json (2.9.1-java) json-schema (2.8.1) diff --git a/gemfiles/jruby_9.4_elasticsearch_latest.gemfile.lock b/gemfiles/jruby_9.4_elasticsearch_latest.gemfile.lock index 2523b28c887..cff57442807 100644 --- a/gemfiles/jruby_9.4_elasticsearch_latest.gemfile.lock +++ b/gemfiles/jruby_9.4_elasticsearch_latest.gemfile.lock @@ -51,7 +51,7 @@ GEM logger faraday-net_http (3.4.0) net-http (>= 0.5.0) - ffi (1.17.0-java) + ffi (1.17.1-java) hashdiff (1.1.1) json (2.9.1-java) json-schema (2.8.1) diff --git a/gemfiles/jruby_9.4_graphql_1.13.gemfile.lock b/gemfiles/jruby_9.4_graphql_1.13.gemfile.lock index bd8a4994d66..3f71a77b491 100644 --- a/gemfiles/jruby_9.4_graphql_1.13.gemfile.lock +++ b/gemfiles/jruby_9.4_graphql_1.13.gemfile.lock @@ -99,7 +99,7 @@ GEM docile (1.4.0) dogstatsd-ruby (5.6.1) erubi (1.13.0) - ffi (1.17.0-java) + ffi (1.17.1-java) globalid (1.2.1) activesupport (>= 6.1) graphql (1.13.21) diff --git a/gemfiles/jruby_9.4_graphql_2.0.gemfile.lock b/gemfiles/jruby_9.4_graphql_2.0.gemfile.lock index 5b723d46e57..fcd891d4dbe 100644 --- a/gemfiles/jruby_9.4_graphql_2.0.gemfile.lock +++ b/gemfiles/jruby_9.4_graphql_2.0.gemfile.lock @@ -99,7 +99,7 @@ GEM docile (1.4.0) dogstatsd-ruby (5.6.1) erubi (1.13.0) - ffi (1.17.0-java) + ffi (1.17.1-java) globalid (1.2.1) activesupport (>= 6.1) graphql (2.0.28) diff --git a/gemfiles/jruby_9.4_graphql_2.1.gemfile.lock b/gemfiles/jruby_9.4_graphql_2.1.gemfile.lock index 2be2e76fa4c..3d7bf28fc5d 100644 --- a/gemfiles/jruby_9.4_graphql_2.1.gemfile.lock +++ b/gemfiles/jruby_9.4_graphql_2.1.gemfile.lock @@ -99,7 +99,7 @@ GEM docile (1.4.0) dogstatsd-ruby (5.6.1) erubi (1.13.0) - ffi (1.17.0-java) + ffi (1.17.1-java) globalid (1.2.1) activesupport (>= 6.1) graphql (2.1.11) diff --git a/gemfiles/jruby_9.4_graphql_2.2.gemfile.lock b/gemfiles/jruby_9.4_graphql_2.2.gemfile.lock index 21c8de210ee..592c958cab8 100644 --- a/gemfiles/jruby_9.4_graphql_2.2.gemfile.lock +++ b/gemfiles/jruby_9.4_graphql_2.2.gemfile.lock @@ -99,7 +99,7 @@ GEM docile (1.4.0) dogstatsd-ruby (5.6.1) erubi (1.13.0) - ffi (1.17.0-java) + ffi (1.17.1-java) globalid (1.2.1) activesupport (>= 6.1) graphql (2.2.6) diff --git a/gemfiles/jruby_9.4_graphql_2.3.gemfile.lock b/gemfiles/jruby_9.4_graphql_2.3.gemfile.lock index d4d82b927d6..853fe26856d 100644 --- a/gemfiles/jruby_9.4_graphql_2.3.gemfile.lock +++ b/gemfiles/jruby_9.4_graphql_2.3.gemfile.lock @@ -101,7 +101,7 @@ GEM docile (1.4.0) dogstatsd-ruby (5.6.1) erubi (1.13.0) - ffi (1.17.0-java) + ffi (1.17.1-java) globalid (1.2.1) activesupport (>= 6.1) graphql (2.3.6) diff --git a/gemfiles/jruby_9.4_http.gemfile.lock b/gemfiles/jruby_9.4_http.gemfile.lock index 2918baf2ca5..d11e37aeeec 100644 --- a/gemfiles/jruby_9.4_http.gemfile.lock +++ b/gemfiles/jruby_9.4_http.gemfile.lock @@ -43,7 +43,7 @@ GEM faraday-net_http (>= 2.0, < 3.1) ruby2_keywords (>= 0.0.4) faraday-net_http (3.0.2) - ffi (1.17.0-java) + ffi (1.17.1-java) ffi-compiler (1.0.1) ffi (>= 1.0.0) rake diff --git a/gemfiles/jruby_9.4_opensearch_2.gemfile.lock b/gemfiles/jruby_9.4_opensearch_2.gemfile.lock index dab25836ebc..02ac2032d4c 100644 --- a/gemfiles/jruby_9.4_opensearch_2.gemfile.lock +++ b/gemfiles/jruby_9.4_opensearch_2.gemfile.lock @@ -41,7 +41,7 @@ GEM logger faraday-net_http (3.4.0) net-http (>= 0.5.0) - ffi (1.17.0-java) + ffi (1.17.1-java) hashdiff (1.0.1) json (2.9.1-java) json-schema (2.8.1) diff --git a/gemfiles/jruby_9.4_opensearch_3.gemfile.lock b/gemfiles/jruby_9.4_opensearch_3.gemfile.lock index aee58dbad8f..83edc60d819 100644 --- a/gemfiles/jruby_9.4_opensearch_3.gemfile.lock +++ b/gemfiles/jruby_9.4_opensearch_3.gemfile.lock @@ -41,7 +41,7 @@ GEM logger faraday-net_http (3.4.0) net-http (>= 0.5.0) - ffi (1.17.0-java) + ffi (1.17.1-java) hashdiff (1.0.1) json (2.9.1-java) json-schema (2.8.1) diff --git a/gemfiles/jruby_9.4_opensearch_latest.gemfile.lock b/gemfiles/jruby_9.4_opensearch_latest.gemfile.lock index baa665b1de5..24f7f816f93 100644 --- a/gemfiles/jruby_9.4_opensearch_latest.gemfile.lock +++ b/gemfiles/jruby_9.4_opensearch_latest.gemfile.lock @@ -43,7 +43,7 @@ GEM logger faraday-net_http (3.4.0) net-http (>= 0.5.0) - ffi (1.17.0-java) + ffi (1.17.1-java) hashdiff (1.1.1) json (2.9.1-java) json-schema (2.8.1) diff --git a/gemfiles/jruby_9.4_rack_1.gemfile.lock b/gemfiles/jruby_9.4_rack_1.gemfile.lock index b9d2bc1576d..ed12c7492fd 100644 --- a/gemfiles/jruby_9.4_rack_1.gemfile.lock +++ b/gemfiles/jruby_9.4_rack_1.gemfile.lock @@ -34,7 +34,7 @@ GEM diff-lcs (1.5.0) docile (1.4.0) dogstatsd-ruby (5.6.1) - ffi (1.17.0-java) + ffi (1.17.1-java) hashdiff (1.0.1) json (2.6.3-java) json-schema (2.8.1) diff --git a/gemfiles/jruby_9.4_rack_2.gemfile.lock b/gemfiles/jruby_9.4_rack_2.gemfile.lock index 096db7043f9..0915c1bc8e9 100644 --- a/gemfiles/jruby_9.4_rack_2.gemfile.lock +++ b/gemfiles/jruby_9.4_rack_2.gemfile.lock @@ -34,7 +34,7 @@ GEM diff-lcs (1.5.0) docile (1.4.0) dogstatsd-ruby (5.6.1) - ffi (1.17.0-java) + ffi (1.17.1-java) hashdiff (1.0.1) json (2.6.3-java) json-schema (2.8.1) diff --git a/gemfiles/jruby_9.4_rack_3.gemfile.lock b/gemfiles/jruby_9.4_rack_3.gemfile.lock index d99cc1cc4c4..4b7a73aee08 100644 --- a/gemfiles/jruby_9.4_rack_3.gemfile.lock +++ b/gemfiles/jruby_9.4_rack_3.gemfile.lock @@ -34,7 +34,7 @@ GEM diff-lcs (1.5.0) docile (1.4.0) dogstatsd-ruby (5.6.1) - ffi (1.17.0-java) + ffi (1.17.1-java) hashdiff (1.0.1) json (2.6.3-java) json-schema (2.8.1) diff --git a/gemfiles/jruby_9.4_rack_latest.gemfile.lock b/gemfiles/jruby_9.4_rack_latest.gemfile.lock index c6580c46245..3124a815be2 100644 --- a/gemfiles/jruby_9.4_rack_latest.gemfile.lock +++ b/gemfiles/jruby_9.4_rack_latest.gemfile.lock @@ -37,7 +37,7 @@ GEM diff-lcs (1.5.1) docile (1.4.1) dogstatsd-ruby (5.6.2) - ffi (1.17.0-java) + ffi (1.17.1-java) hashdiff (1.1.1) json (2.7.2-java) json-schema (2.8.1) diff --git a/gemfiles/jruby_9.4_rails61_mysql2.gemfile.lock b/gemfiles/jruby_9.4_rails61_mysql2.gemfile.lock index 49697317069..001edbce30e 100644 --- a/gemfiles/jruby_9.4_rails61_mysql2.gemfile.lock +++ b/gemfiles/jruby_9.4_rails61_mysql2.gemfile.lock @@ -106,7 +106,7 @@ GEM docile (1.4.0) dogstatsd-ruby (5.6.1) erubi (1.13.0) - ffi (1.17.0-java) + ffi (1.17.1-java) globalid (1.2.1) activesupport (>= 6.1) hashdiff (1.1.0) diff --git a/gemfiles/jruby_9.4_rails61_postgres.gemfile.lock b/gemfiles/jruby_9.4_rails61_postgres.gemfile.lock index eeb910a2a87..cca006b558e 100644 --- a/gemfiles/jruby_9.4_rails61_postgres.gemfile.lock +++ b/gemfiles/jruby_9.4_rails61_postgres.gemfile.lock @@ -102,7 +102,7 @@ GEM docile (1.4.0) dogstatsd-ruby (5.5.0) erubi (1.12.0) - ffi (1.17.0-java) + ffi (1.17.1-java) globalid (1.0.1) activesupport (>= 5.0) hashdiff (1.0.1) diff --git a/gemfiles/jruby_9.4_rails61_postgres_redis.gemfile.lock b/gemfiles/jruby_9.4_rails61_postgres_redis.gemfile.lock index 7cf78615007..28fa0eb4997 100644 --- a/gemfiles/jruby_9.4_rails61_postgres_redis.gemfile.lock +++ b/gemfiles/jruby_9.4_rails61_postgres_redis.gemfile.lock @@ -102,7 +102,7 @@ GEM docile (1.4.0) dogstatsd-ruby (5.5.0) erubi (1.12.0) - ffi (1.17.0-java) + ffi (1.17.1-java) globalid (1.0.1) activesupport (>= 5.0) hashdiff (1.0.1) diff --git a/gemfiles/jruby_9.4_rails61_postgres_sidekiq.gemfile.lock b/gemfiles/jruby_9.4_rails61_postgres_sidekiq.gemfile.lock index 2b81024c3d0..a8e2f2be5b7 100644 --- a/gemfiles/jruby_9.4_rails61_postgres_sidekiq.gemfile.lock +++ b/gemfiles/jruby_9.4_rails61_postgres_sidekiq.gemfile.lock @@ -103,7 +103,7 @@ GEM docile (1.4.0) dogstatsd-ruby (5.5.0) erubi (1.12.0) - ffi (1.17.0-java) + ffi (1.17.1-java) globalid (1.0.1) activesupport (>= 5.0) hashdiff (1.0.1) diff --git a/gemfiles/jruby_9.4_rails61_semantic_logger.gemfile.lock b/gemfiles/jruby_9.4_rails61_semantic_logger.gemfile.lock index c0aa7acd502..ed778d9b04e 100644 --- a/gemfiles/jruby_9.4_rails61_semantic_logger.gemfile.lock +++ b/gemfiles/jruby_9.4_rails61_semantic_logger.gemfile.lock @@ -102,7 +102,7 @@ GEM docile (1.4.0) dogstatsd-ruby (5.5.0) erubi (1.12.0) - ffi (1.17.0-java) + ffi (1.17.1-java) globalid (1.0.1) activesupport (>= 5.0) hashdiff (1.0.1) diff --git a/gemfiles/jruby_9.4_redis_3.gemfile.lock b/gemfiles/jruby_9.4_redis_3.gemfile.lock index d876913455c..c27b42e4ac3 100644 --- a/gemfiles/jruby_9.4_redis_3.gemfile.lock +++ b/gemfiles/jruby_9.4_redis_3.gemfile.lock @@ -34,7 +34,7 @@ GEM diff-lcs (1.5.0) docile (1.4.0) dogstatsd-ruby (5.5.0) - ffi (1.17.0-java) + ffi (1.17.1-java) hashdiff (1.0.1) json (2.6.3-java) json-schema (2.8.1) diff --git a/gemfiles/jruby_9.4_redis_4.gemfile.lock b/gemfiles/jruby_9.4_redis_4.gemfile.lock index 87299fe64f5..a318e140b2f 100644 --- a/gemfiles/jruby_9.4_redis_4.gemfile.lock +++ b/gemfiles/jruby_9.4_redis_4.gemfile.lock @@ -34,7 +34,7 @@ GEM diff-lcs (1.5.0) docile (1.4.0) dogstatsd-ruby (5.5.0) - ffi (1.17.0-java) + ffi (1.17.1-java) hashdiff (1.0.1) json (2.6.3-java) json-schema (2.8.1) diff --git a/gemfiles/jruby_9.4_redis_5.gemfile.lock b/gemfiles/jruby_9.4_redis_5.gemfile.lock index bfdf9b66e48..a7a42327dcd 100644 --- a/gemfiles/jruby_9.4_redis_5.gemfile.lock +++ b/gemfiles/jruby_9.4_redis_5.gemfile.lock @@ -35,7 +35,7 @@ GEM diff-lcs (1.5.0) docile (1.4.0) dogstatsd-ruby (5.5.0) - ffi (1.17.0-java) + ffi (1.17.1-java) hashdiff (1.0.1) json (2.6.3-java) json-schema (2.8.1) diff --git a/gemfiles/jruby_9.4_relational_db.gemfile.lock b/gemfiles/jruby_9.4_relational_db.gemfile.lock index e488b3fd28d..49082bf5347 100644 --- a/gemfiles/jruby_9.4_relational_db.gemfile.lock +++ b/gemfiles/jruby_9.4_relational_db.gemfile.lock @@ -61,7 +61,7 @@ GEM diff-lcs (1.5.1) docile (1.4.0) dogstatsd-ruby (5.6.1) - ffi (1.17.0-java) + ffi (1.17.1-java) hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) diff --git a/gemfiles/jruby_9.4_resque2_redis3.gemfile.lock b/gemfiles/jruby_9.4_resque2_redis3.gemfile.lock index 039d4fddade..74436533c24 100644 --- a/gemfiles/jruby_9.4_resque2_redis3.gemfile.lock +++ b/gemfiles/jruby_9.4_resque2_redis3.gemfile.lock @@ -34,7 +34,7 @@ GEM diff-lcs (1.5.0) docile (1.4.0) dogstatsd-ruby (5.5.0) - ffi (1.17.0-java) + ffi (1.17.1-java) hashdiff (1.0.1) json (2.6.3-java) json-schema (2.8.1) diff --git a/gemfiles/jruby_9.4_resque2_redis4.gemfile.lock b/gemfiles/jruby_9.4_resque2_redis4.gemfile.lock index 1521918dc59..66a6b2b6707 100644 --- a/gemfiles/jruby_9.4_resque2_redis4.gemfile.lock +++ b/gemfiles/jruby_9.4_resque2_redis4.gemfile.lock @@ -35,7 +35,7 @@ GEM diff-lcs (1.5.0) docile (1.4.0) dogstatsd-ruby (5.5.0) - ffi (1.17.0-java) + ffi (1.17.1-java) hashdiff (1.0.1) json (2.6.3-java) json-schema (2.8.1) diff --git a/gemfiles/jruby_9.4_sinatra_2.gemfile.lock b/gemfiles/jruby_9.4_sinatra_2.gemfile.lock index beb370fa1be..8b816583569 100644 --- a/gemfiles/jruby_9.4_sinatra_2.gemfile.lock +++ b/gemfiles/jruby_9.4_sinatra_2.gemfile.lock @@ -37,7 +37,7 @@ GEM diff-lcs (1.5.1) docile (1.4.0) dogstatsd-ruby (5.6.1) - ffi (1.17.0-java) + ffi (1.17.1-java) hashdiff (1.1.0) json (2.7.2-java) json-schema (2.8.1) diff --git a/gemfiles/jruby_9.4_sinatra_3.gemfile.lock b/gemfiles/jruby_9.4_sinatra_3.gemfile.lock index 80c3eecef35..a3dd5d624d4 100644 --- a/gemfiles/jruby_9.4_sinatra_3.gemfile.lock +++ b/gemfiles/jruby_9.4_sinatra_3.gemfile.lock @@ -38,7 +38,7 @@ GEM diff-lcs (1.5.1) docile (1.4.0) dogstatsd-ruby (5.6.1) - ffi (1.17.0-java) + ffi (1.17.1-java) hashdiff (1.1.0) json (2.7.2-java) json-schema (2.8.1) diff --git a/gemfiles/jruby_9.4_sinatra_4.gemfile.lock b/gemfiles/jruby_9.4_sinatra_4.gemfile.lock index 516b0823a2a..41aad1024e1 100644 --- a/gemfiles/jruby_9.4_sinatra_4.gemfile.lock +++ b/gemfiles/jruby_9.4_sinatra_4.gemfile.lock @@ -38,7 +38,7 @@ GEM diff-lcs (1.5.1) docile (1.4.0) dogstatsd-ruby (5.6.1) - ffi (1.17.0-java) + ffi (1.17.1-java) hashdiff (1.1.0) json (2.7.2-java) json-schema (2.8.1) diff --git a/gemfiles/jruby_9.4_stripe_10.gemfile.lock b/gemfiles/jruby_9.4_stripe_10.gemfile.lock index 592a77c1106..621396abeb6 100644 --- a/gemfiles/jruby_9.4_stripe_10.gemfile.lock +++ b/gemfiles/jruby_9.4_stripe_10.gemfile.lock @@ -37,7 +37,7 @@ GEM diff-lcs (1.5.1) docile (1.4.1) dogstatsd-ruby (5.6.1) - ffi (1.17.0-java) + ffi (1.17.1-java) hashdiff (1.1.1) json (2.7.2-java) json-schema (2.8.1) diff --git a/gemfiles/jruby_9.4_stripe_11.gemfile.lock b/gemfiles/jruby_9.4_stripe_11.gemfile.lock index b7484f30a47..d817730170f 100644 --- a/gemfiles/jruby_9.4_stripe_11.gemfile.lock +++ b/gemfiles/jruby_9.4_stripe_11.gemfile.lock @@ -37,7 +37,7 @@ GEM diff-lcs (1.5.1) docile (1.4.1) dogstatsd-ruby (5.6.1) - ffi (1.17.0-java) + ffi (1.17.1-java) hashdiff (1.1.1) json (2.7.2-java) json-schema (2.8.1) diff --git a/gemfiles/jruby_9.4_stripe_12.gemfile.lock b/gemfiles/jruby_9.4_stripe_12.gemfile.lock index 03dbc37f525..c09ca1319f9 100644 --- a/gemfiles/jruby_9.4_stripe_12.gemfile.lock +++ b/gemfiles/jruby_9.4_stripe_12.gemfile.lock @@ -37,7 +37,7 @@ GEM diff-lcs (1.5.1) docile (1.4.1) dogstatsd-ruby (5.6.1) - ffi (1.17.0-java) + ffi (1.17.1-java) hashdiff (1.1.1) json (2.7.2-java) json-schema (2.8.1) diff --git a/gemfiles/jruby_9.4_stripe_7.gemfile.lock b/gemfiles/jruby_9.4_stripe_7.gemfile.lock index 6e22f74ce14..cf3153e076e 100644 --- a/gemfiles/jruby_9.4_stripe_7.gemfile.lock +++ b/gemfiles/jruby_9.4_stripe_7.gemfile.lock @@ -37,7 +37,7 @@ GEM diff-lcs (1.5.1) docile (1.4.1) dogstatsd-ruby (5.6.1) - ffi (1.17.0-java) + ffi (1.17.1-java) hashdiff (1.1.1) json (2.7.2-java) json-schema (2.8.1) diff --git a/gemfiles/jruby_9.4_stripe_8.gemfile.lock b/gemfiles/jruby_9.4_stripe_8.gemfile.lock index 99e76503e3c..fc533d75440 100644 --- a/gemfiles/jruby_9.4_stripe_8.gemfile.lock +++ b/gemfiles/jruby_9.4_stripe_8.gemfile.lock @@ -37,7 +37,7 @@ GEM diff-lcs (1.5.1) docile (1.4.1) dogstatsd-ruby (5.6.1) - ffi (1.17.0-java) + ffi (1.17.1-java) hashdiff (1.1.1) json (2.7.2-java) json-schema (2.8.1) diff --git a/gemfiles/jruby_9.4_stripe_9.gemfile.lock b/gemfiles/jruby_9.4_stripe_9.gemfile.lock index 3a792854210..19bed334a61 100644 --- a/gemfiles/jruby_9.4_stripe_9.gemfile.lock +++ b/gemfiles/jruby_9.4_stripe_9.gemfile.lock @@ -37,7 +37,7 @@ GEM diff-lcs (1.5.1) docile (1.4.1) dogstatsd-ruby (5.6.1) - ffi (1.17.0-java) + ffi (1.17.1-java) hashdiff (1.1.1) json (2.7.2-java) json-schema (2.8.1) diff --git a/gemfiles/jruby_9.4_stripe_latest.gemfile.lock b/gemfiles/jruby_9.4_stripe_latest.gemfile.lock index 2f28c1ff44e..5d0c05fed25 100644 --- a/gemfiles/jruby_9.4_stripe_latest.gemfile.lock +++ b/gemfiles/jruby_9.4_stripe_latest.gemfile.lock @@ -37,7 +37,7 @@ GEM diff-lcs (1.5.1) docile (1.4.1) dogstatsd-ruby (5.6.1) - ffi (1.17.0-java) + ffi (1.17.1-java) hashdiff (1.1.1) json (2.7.2-java) json-schema (2.8.1) diff --git a/gemfiles/jruby_9.4_stripe_min.gemfile.lock b/gemfiles/jruby_9.4_stripe_min.gemfile.lock index 22797727717..451c8f4db3e 100644 --- a/gemfiles/jruby_9.4_stripe_min.gemfile.lock +++ b/gemfiles/jruby_9.4_stripe_min.gemfile.lock @@ -37,7 +37,7 @@ GEM diff-lcs (1.5.1) docile (1.4.1) dogstatsd-ruby (5.6.1) - ffi (1.17.0-java) + ffi (1.17.1-java) hashdiff (1.1.1) json (2.7.2-java) json-schema (2.8.1) diff --git a/gemfiles/ruby_2.5_activesupport.gemfile.lock b/gemfiles/ruby_2.5_activesupport.gemfile.lock index bd904dd308c..5f17ae88bba 100644 --- a/gemfiles/ruby_2.5_activesupport.gemfile.lock +++ b/gemfiles/ruby_2.5_activesupport.gemfile.lock @@ -87,8 +87,8 @@ GEM dry-logic (~> 1.0, >= 1.0.2) erubi (1.12.0) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.19.1) google-protobuf (3.19.1-x86_64-linux) grape (1.7.0) diff --git a/gemfiles/ruby_2.5_aws.gemfile.lock b/gemfiles/ruby_2.5_aws.gemfile.lock index 7c8bfab3910..07989587beb 100644 --- a/gemfiles/ruby_2.5_aws.gemfile.lock +++ b/gemfiles/ruby_2.5_aws.gemfile.lock @@ -1458,8 +1458,8 @@ GEM docile (1.4.0) dogstatsd-ruby (5.6.0) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.19.1) google-protobuf (3.19.1-x86_64-linux) hashdiff (1.0.1) diff --git a/gemfiles/ruby_2.5_contrib.gemfile.lock b/gemfiles/ruby_2.5_contrib.gemfile.lock index cbc1f70fb89..fb48022b733 100644 --- a/gemfiles/ruby_2.5_contrib.gemfile.lock +++ b/gemfiles/ruby_2.5_contrib.gemfile.lock @@ -44,8 +44,8 @@ GEM docile (1.4.0) dogstatsd-ruby (5.6.0) extlz4 (0.3.3) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.19.1) google-protobuf (3.19.1-x86_64-linux) googleapis-common-protos-types (1.3.2) diff --git a/gemfiles/ruby_2.5_contrib_old.gemfile.lock b/gemfiles/ruby_2.5_contrib_old.gemfile.lock index 6ab8edac32d..53dfbcf9433 100644 --- a/gemfiles/ruby_2.5_contrib_old.gemfile.lock +++ b/gemfiles/ruby_2.5_contrib_old.gemfile.lock @@ -47,8 +47,8 @@ GEM multipart-post (>= 1.2, < 3) faraday_middleware (0.12.2) faraday (>= 0.7.4, < 1.0) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.19.1) google-protobuf (3.19.1-x86_64-linux) hashdiff (1.0.1) diff --git a/gemfiles/ruby_2.5_core_old.gemfile.lock b/gemfiles/ruby_2.5_core_old.gemfile.lock index dee4f0cdeb5..2ace7e7df70 100644 --- a/gemfiles/ruby_2.5_core_old.gemfile.lock +++ b/gemfiles/ruby_2.5_core_old.gemfile.lock @@ -37,8 +37,8 @@ GEM docile (1.4.0) dogstatsd-ruby (4.8.3) extlz4 (0.3.3) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.19.1) google-protobuf (3.19.1-x86_64-linux) hashdiff (1.0.1) diff --git a/gemfiles/ruby_2.5_elasticsearch_7.gemfile.lock b/gemfiles/ruby_2.5_elasticsearch_7.gemfile.lock index 1dcdb60f488..57d2e8e753e 100644 --- a/gemfiles/ruby_2.5_elasticsearch_7.gemfile.lock +++ b/gemfiles/ruby_2.5_elasticsearch_7.gemfile.lock @@ -71,8 +71,8 @@ GEM faraday-patron (1.0.0) faraday-rack (1.0.0) faraday-retry (1.0.3) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.19.1) google-protobuf (3.19.1-x86_64-linux) hashdiff (1.0.1) diff --git a/gemfiles/ruby_2.5_elasticsearch_8.gemfile.lock b/gemfiles/ruby_2.5_elasticsearch_8.gemfile.lock index 33dfdea8b25..3436f2d9349 100644 --- a/gemfiles/ruby_2.5_elasticsearch_8.gemfile.lock +++ b/gemfiles/ruby_2.5_elasticsearch_8.gemfile.lock @@ -69,8 +69,8 @@ GEM faraday-patron (1.0.0) faraday-rack (1.0.0) faraday-retry (1.0.3) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.19.1) google-protobuf (3.19.1-x86_64-linux) hashdiff (1.0.1) diff --git a/gemfiles/ruby_2.5_elasticsearch_latest.gemfile.lock b/gemfiles/ruby_2.5_elasticsearch_latest.gemfile.lock index c712643c1a1..326c8d51fec 100644 --- a/gemfiles/ruby_2.5_elasticsearch_latest.gemfile.lock +++ b/gemfiles/ruby_2.5_elasticsearch_latest.gemfile.lock @@ -71,8 +71,8 @@ GEM faraday-patron (1.0.0) faraday-rack (1.0.0) faraday-retry (1.0.3) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.19.1) google-protobuf (3.19.1-x86_64-linux) hashdiff (1.1.1) diff --git a/gemfiles/ruby_2.5_graphql_2.0.gemfile.lock b/gemfiles/ruby_2.5_graphql_2.0.gemfile.lock index f3eccb99c53..18746b08995 100644 --- a/gemfiles/ruby_2.5_graphql_2.0.gemfile.lock +++ b/gemfiles/ruby_2.5_graphql_2.0.gemfile.lock @@ -102,8 +102,8 @@ GEM dogstatsd-ruby (5.6.1) erubi (1.13.0) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) globalid (1.2.1) activesupport (>= 6.1) google-protobuf (3.19.1) diff --git a/gemfiles/ruby_2.5_hanami_1.gemfile.lock b/gemfiles/ruby_2.5_hanami_1.gemfile.lock index cefbba4f5ac..b51bb18be9d 100644 --- a/gemfiles/ruby_2.5_hanami_1.gemfile.lock +++ b/gemfiles/ruby_2.5_hanami_1.gemfile.lock @@ -67,8 +67,8 @@ GEM dry-logic (~> 0.4.2) dry-types (~> 0.12.0) extlz4 (0.3.3) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.19.1) google-protobuf (3.19.1-x86_64-linux) hanami (1.3.5) diff --git a/gemfiles/ruby_2.5_http.gemfile.lock b/gemfiles/ruby_2.5_http.gemfile.lock index faf1bb05c34..60e876f907b 100644 --- a/gemfiles/ruby_2.5_http.gemfile.lock +++ b/gemfiles/ruby_2.5_http.gemfile.lock @@ -65,8 +65,8 @@ GEM faraday-patron (1.0.0) faraday-rack (1.0.0) faraday-retry (1.0.3) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) ffi-compiler (1.0.1) ffi (>= 1.0.0) rake diff --git a/gemfiles/ruby_2.5_opensearch_2.gemfile.lock b/gemfiles/ruby_2.5_opensearch_2.gemfile.lock index faf171fa0ed..c7314c5f37e 100644 --- a/gemfiles/ruby_2.5_opensearch_2.gemfile.lock +++ b/gemfiles/ruby_2.5_opensearch_2.gemfile.lock @@ -61,8 +61,8 @@ GEM faraday-patron (1.0.0) faraday-rack (1.0.0) faraday-retry (1.0.3) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.19.1) google-protobuf (3.19.1-x86_64-linux) hashdiff (1.0.1) diff --git a/gemfiles/ruby_2.5_opensearch_3.gemfile.lock b/gemfiles/ruby_2.5_opensearch_3.gemfile.lock index 536089c8374..f8dd34b6afc 100644 --- a/gemfiles/ruby_2.5_opensearch_3.gemfile.lock +++ b/gemfiles/ruby_2.5_opensearch_3.gemfile.lock @@ -61,8 +61,8 @@ GEM faraday-patron (1.0.0) faraday-rack (1.0.0) faraday-retry (1.0.3) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.19.1) google-protobuf (3.19.1-x86_64-linux) hashdiff (1.0.1) diff --git a/gemfiles/ruby_2.5_opensearch_latest.gemfile.lock b/gemfiles/ruby_2.5_opensearch_latest.gemfile.lock index da610b4504b..be32d5c9d63 100644 --- a/gemfiles/ruby_2.5_opensearch_latest.gemfile.lock +++ b/gemfiles/ruby_2.5_opensearch_latest.gemfile.lock @@ -63,8 +63,8 @@ GEM faraday-patron (1.0.0) faraday-rack (1.0.0) faraday-retry (1.0.3) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.19.1) google-protobuf (3.19.1-x86_64-linux) hashdiff (1.1.1) diff --git a/gemfiles/ruby_2.5_rack_1.gemfile.lock b/gemfiles/ruby_2.5_rack_1.gemfile.lock index 9dc66f70083..62b445f3f1f 100644 --- a/gemfiles/ruby_2.5_rack_1.gemfile.lock +++ b/gemfiles/ruby_2.5_rack_1.gemfile.lock @@ -37,8 +37,8 @@ GEM docile (1.4.0) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.19.1) google-protobuf (3.19.1-x86_64-linux) hashdiff (1.0.1) diff --git a/gemfiles/ruby_2.5_rack_2.gemfile.lock b/gemfiles/ruby_2.5_rack_2.gemfile.lock index 1bee404aebd..2a9f3372bc3 100644 --- a/gemfiles/ruby_2.5_rack_2.gemfile.lock +++ b/gemfiles/ruby_2.5_rack_2.gemfile.lock @@ -37,8 +37,8 @@ GEM docile (1.4.0) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.19.1) google-protobuf (3.19.1-x86_64-linux) hashdiff (1.0.1) diff --git a/gemfiles/ruby_2.5_rack_3.gemfile.lock b/gemfiles/ruby_2.5_rack_3.gemfile.lock index 790f9756416..1ac6a451c87 100644 --- a/gemfiles/ruby_2.5_rack_3.gemfile.lock +++ b/gemfiles/ruby_2.5_rack_3.gemfile.lock @@ -37,8 +37,8 @@ GEM docile (1.4.0) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.19.1) google-protobuf (3.19.1-x86_64-linux) hashdiff (1.0.1) diff --git a/gemfiles/ruby_2.5_rack_latest.gemfile.lock b/gemfiles/ruby_2.5_rack_latest.gemfile.lock index 4c20ea3d0ac..680dc9e6049 100644 --- a/gemfiles/ruby_2.5_rack_latest.gemfile.lock +++ b/gemfiles/ruby_2.5_rack_latest.gemfile.lock @@ -40,8 +40,8 @@ GEM docile (1.4.1) dogstatsd-ruby (5.6.2) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.19.1) google-protobuf (3.19.1-x86_64-linux) hashdiff (1.1.1) diff --git a/gemfiles/ruby_2.5_rails4_mysql2.gemfile.lock b/gemfiles/ruby_2.5_rails4_mysql2.gemfile.lock index 98d5b07ca25..8f8cf2a131b 100644 --- a/gemfiles/ruby_2.5_rails4_mysql2.gemfile.lock +++ b/gemfiles/ruby_2.5_rails4_mysql2.gemfile.lock @@ -99,8 +99,8 @@ GEM dogstatsd-ruby (5.6.1) erubis (2.7.0) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) globalid (0.4.2) activesupport (>= 4.2.0) google-protobuf (3.19.1) diff --git a/gemfiles/ruby_2.5_rails4_postgres.gemfile.lock b/gemfiles/ruby_2.5_rails4_postgres.gemfile.lock index c3d1cb19542..706f54e5188 100644 --- a/gemfiles/ruby_2.5_rails4_postgres.gemfile.lock +++ b/gemfiles/ruby_2.5_rails4_postgres.gemfile.lock @@ -99,8 +99,8 @@ GEM dogstatsd-ruby (5.6.1) erubis (2.7.0) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) globalid (0.4.2) activesupport (>= 4.2.0) google-protobuf (3.19.1) diff --git a/gemfiles/ruby_2.5_rails4_postgres_redis.gemfile.lock b/gemfiles/ruby_2.5_rails4_postgres_redis.gemfile.lock index 3e7b46f77e6..67ad69571bd 100644 --- a/gemfiles/ruby_2.5_rails4_postgres_redis.gemfile.lock +++ b/gemfiles/ruby_2.5_rails4_postgres_redis.gemfile.lock @@ -99,8 +99,8 @@ GEM dogstatsd-ruby (5.6.1) erubis (2.7.0) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) globalid (0.4.2) activesupport (>= 4.2.0) google-protobuf (3.19.1) diff --git a/gemfiles/ruby_2.5_rails4_postgres_sidekiq.gemfile.lock b/gemfiles/ruby_2.5_rails4_postgres_sidekiq.gemfile.lock index bf0ee719872..30b97e06f97 100644 --- a/gemfiles/ruby_2.5_rails4_postgres_sidekiq.gemfile.lock +++ b/gemfiles/ruby_2.5_rails4_postgres_sidekiq.gemfile.lock @@ -100,8 +100,8 @@ GEM dogstatsd-ruby (5.6.1) erubis (2.7.0) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) globalid (0.4.2) activesupport (>= 4.2.0) google-protobuf (3.19.1) diff --git a/gemfiles/ruby_2.5_rails4_semantic_logger.gemfile.lock b/gemfiles/ruby_2.5_rails4_semantic_logger.gemfile.lock index 0cd7b760cf9..cb1b4a166db 100644 --- a/gemfiles/ruby_2.5_rails4_semantic_logger.gemfile.lock +++ b/gemfiles/ruby_2.5_rails4_semantic_logger.gemfile.lock @@ -99,8 +99,8 @@ GEM dogstatsd-ruby (5.6.1) erubis (2.7.0) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) globalid (0.4.2) activesupport (>= 4.2.0) google-protobuf (3.19.1) diff --git a/gemfiles/ruby_2.5_rails5_mysql2.gemfile.lock b/gemfiles/ruby_2.5_rails5_mysql2.gemfile.lock index fa9a9ad4b41..711de169e39 100644 --- a/gemfiles/ruby_2.5_rails5_mysql2.gemfile.lock +++ b/gemfiles/ruby_2.5_rails5_mysql2.gemfile.lock @@ -82,8 +82,8 @@ GEM dogstatsd-ruby (5.5.0) erubi (1.12.0) extlz4 (0.3.3) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) globalid (1.1.0) activesupport (>= 5.0) google-protobuf (3.19.1) diff --git a/gemfiles/ruby_2.5_rails5_postgres.gemfile.lock b/gemfiles/ruby_2.5_rails5_postgres.gemfile.lock index 9c3866006db..d9197b5cb4b 100644 --- a/gemfiles/ruby_2.5_rails5_postgres.gemfile.lock +++ b/gemfiles/ruby_2.5_rails5_postgres.gemfile.lock @@ -83,8 +83,8 @@ GEM dogstatsd-ruby (5.5.0) erubi (1.12.0) extlz4 (0.3.3) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) globalid (1.1.0) activesupport (>= 5.0) google-protobuf (3.19.1) diff --git a/gemfiles/ruby_2.5_rails5_postgres_redis.gemfile.lock b/gemfiles/ruby_2.5_rails5_postgres_redis.gemfile.lock index 6e16dbd9784..339c629c153 100644 --- a/gemfiles/ruby_2.5_rails5_postgres_redis.gemfile.lock +++ b/gemfiles/ruby_2.5_rails5_postgres_redis.gemfile.lock @@ -84,8 +84,8 @@ GEM dogstatsd-ruby (5.5.0) erubi (1.12.0) extlz4 (0.3.3) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) globalid (1.1.0) activesupport (>= 5.0) google-protobuf (3.19.1) diff --git a/gemfiles/ruby_2.5_rails5_postgres_redis_activesupport.gemfile.lock b/gemfiles/ruby_2.5_rails5_postgres_redis_activesupport.gemfile.lock index d21cec0cbb6..8e835669d50 100644 --- a/gemfiles/ruby_2.5_rails5_postgres_redis_activesupport.gemfile.lock +++ b/gemfiles/ruby_2.5_rails5_postgres_redis_activesupport.gemfile.lock @@ -83,8 +83,8 @@ GEM dogstatsd-ruby (5.5.0) erubi (1.12.0) extlz4 (0.3.3) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) globalid (1.1.0) activesupport (>= 5.0) google-protobuf (3.19.1) diff --git a/gemfiles/ruby_2.5_rails5_postgres_sidekiq.gemfile.lock b/gemfiles/ruby_2.5_rails5_postgres_sidekiq.gemfile.lock index e2190f3e66b..f33349ed653 100644 --- a/gemfiles/ruby_2.5_rails5_postgres_sidekiq.gemfile.lock +++ b/gemfiles/ruby_2.5_rails5_postgres_sidekiq.gemfile.lock @@ -84,8 +84,8 @@ GEM dogstatsd-ruby (5.5.0) erubi (1.12.0) extlz4 (0.3.3) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) globalid (1.1.0) activesupport (>= 5.0) google-protobuf (3.19.1) diff --git a/gemfiles/ruby_2.5_rails5_semantic_logger.gemfile.lock b/gemfiles/ruby_2.5_rails5_semantic_logger.gemfile.lock index 7d2edd6c1eb..f71073e2009 100644 --- a/gemfiles/ruby_2.5_rails5_semantic_logger.gemfile.lock +++ b/gemfiles/ruby_2.5_rails5_semantic_logger.gemfile.lock @@ -83,8 +83,8 @@ GEM dogstatsd-ruby (5.5.0) erubi (1.12.0) extlz4 (0.3.3) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) globalid (1.1.0) activesupport (>= 5.0) google-protobuf (3.19.1) diff --git a/gemfiles/ruby_2.5_rails61_mysql2.gemfile.lock b/gemfiles/ruby_2.5_rails61_mysql2.gemfile.lock index 7c62661712b..e34ff6f41a6 100644 --- a/gemfiles/ruby_2.5_rails61_mysql2.gemfile.lock +++ b/gemfiles/ruby_2.5_rails61_mysql2.gemfile.lock @@ -99,8 +99,8 @@ GEM dogstatsd-ruby (5.5.0) erubi (1.12.0) extlz4 (0.3.3) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) globalid (1.1.0) activesupport (>= 5.0) google-protobuf (3.19.1) diff --git a/gemfiles/ruby_2.5_rails61_postgres.gemfile.lock b/gemfiles/ruby_2.5_rails61_postgres.gemfile.lock index e9cd62106e1..362e80f1afd 100644 --- a/gemfiles/ruby_2.5_rails61_postgres.gemfile.lock +++ b/gemfiles/ruby_2.5_rails61_postgres.gemfile.lock @@ -100,8 +100,8 @@ GEM dogstatsd-ruby (5.5.0) erubi (1.12.0) extlz4 (0.3.3) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) globalid (1.1.0) activesupport (>= 5.0) google-protobuf (3.19.1) diff --git a/gemfiles/ruby_2.5_rails61_postgres_redis.gemfile.lock b/gemfiles/ruby_2.5_rails61_postgres_redis.gemfile.lock index 31b9f1af9a3..d5f8ca8e5f4 100644 --- a/gemfiles/ruby_2.5_rails61_postgres_redis.gemfile.lock +++ b/gemfiles/ruby_2.5_rails61_postgres_redis.gemfile.lock @@ -101,8 +101,8 @@ GEM dogstatsd-ruby (5.5.0) erubi (1.12.0) extlz4 (0.3.3) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) globalid (1.1.0) activesupport (>= 5.0) google-protobuf (3.19.1) diff --git a/gemfiles/ruby_2.5_rails61_postgres_sidekiq.gemfile.lock b/gemfiles/ruby_2.5_rails61_postgres_sidekiq.gemfile.lock index 49c11dbbe5c..72899654fdb 100644 --- a/gemfiles/ruby_2.5_rails61_postgres_sidekiq.gemfile.lock +++ b/gemfiles/ruby_2.5_rails61_postgres_sidekiq.gemfile.lock @@ -101,8 +101,8 @@ GEM dogstatsd-ruby (5.5.0) erubi (1.12.0) extlz4 (0.3.3) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) globalid (1.1.0) activesupport (>= 5.0) google-protobuf (3.19.1) diff --git a/gemfiles/ruby_2.5_rails61_semantic_logger.gemfile.lock b/gemfiles/ruby_2.5_rails61_semantic_logger.gemfile.lock index 43b03c017a5..b963236309b 100644 --- a/gemfiles/ruby_2.5_rails61_semantic_logger.gemfile.lock +++ b/gemfiles/ruby_2.5_rails61_semantic_logger.gemfile.lock @@ -100,8 +100,8 @@ GEM dogstatsd-ruby (5.5.0) erubi (1.12.0) extlz4 (0.3.3) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) globalid (1.1.0) activesupport (>= 5.0) google-protobuf (3.19.1) diff --git a/gemfiles/ruby_2.5_rails6_mysql2.gemfile.lock b/gemfiles/ruby_2.5_rails6_mysql2.gemfile.lock index d3009f23132..33d0f290a7a 100644 --- a/gemfiles/ruby_2.5_rails6_mysql2.gemfile.lock +++ b/gemfiles/ruby_2.5_rails6_mysql2.gemfile.lock @@ -95,8 +95,8 @@ GEM dogstatsd-ruby (5.5.0) erubi (1.12.0) extlz4 (0.3.3) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) globalid (1.1.0) activesupport (>= 5.0) google-protobuf (3.19.1) diff --git a/gemfiles/ruby_2.5_rails6_postgres.gemfile.lock b/gemfiles/ruby_2.5_rails6_postgres.gemfile.lock index 12267ed7939..19f4e422753 100644 --- a/gemfiles/ruby_2.5_rails6_postgres.gemfile.lock +++ b/gemfiles/ruby_2.5_rails6_postgres.gemfile.lock @@ -96,8 +96,8 @@ GEM dogstatsd-ruby (5.5.0) erubi (1.12.0) extlz4 (0.3.3) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) globalid (1.1.0) activesupport (>= 5.0) google-protobuf (3.19.1) diff --git a/gemfiles/ruby_2.5_rails6_postgres_redis.gemfile.lock b/gemfiles/ruby_2.5_rails6_postgres_redis.gemfile.lock index 4d882855ea2..64c92531a53 100644 --- a/gemfiles/ruby_2.5_rails6_postgres_redis.gemfile.lock +++ b/gemfiles/ruby_2.5_rails6_postgres_redis.gemfile.lock @@ -97,8 +97,8 @@ GEM dogstatsd-ruby (5.5.0) erubi (1.12.0) extlz4 (0.3.3) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) globalid (1.1.0) activesupport (>= 5.0) google-protobuf (3.19.1) diff --git a/gemfiles/ruby_2.5_rails6_postgres_redis_activesupport.gemfile.lock b/gemfiles/ruby_2.5_rails6_postgres_redis_activesupport.gemfile.lock index a0f6b8886ba..10d4a7d01ef 100644 --- a/gemfiles/ruby_2.5_rails6_postgres_redis_activesupport.gemfile.lock +++ b/gemfiles/ruby_2.5_rails6_postgres_redis_activesupport.gemfile.lock @@ -96,8 +96,8 @@ GEM dogstatsd-ruby (5.5.0) erubi (1.12.0) extlz4 (0.3.3) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) globalid (1.1.0) activesupport (>= 5.0) google-protobuf (3.19.1) diff --git a/gemfiles/ruby_2.5_rails6_postgres_sidekiq.gemfile.lock b/gemfiles/ruby_2.5_rails6_postgres_sidekiq.gemfile.lock index d01c1775f35..666ee6e08e2 100644 --- a/gemfiles/ruby_2.5_rails6_postgres_sidekiq.gemfile.lock +++ b/gemfiles/ruby_2.5_rails6_postgres_sidekiq.gemfile.lock @@ -97,8 +97,8 @@ GEM dogstatsd-ruby (5.5.0) erubi (1.12.0) extlz4 (0.3.3) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) globalid (1.1.0) activesupport (>= 5.0) google-protobuf (3.19.1) diff --git a/gemfiles/ruby_2.5_rails6_semantic_logger.gemfile.lock b/gemfiles/ruby_2.5_rails6_semantic_logger.gemfile.lock index e91f9b57ddb..0fb11344278 100644 --- a/gemfiles/ruby_2.5_rails6_semantic_logger.gemfile.lock +++ b/gemfiles/ruby_2.5_rails6_semantic_logger.gemfile.lock @@ -96,8 +96,8 @@ GEM dogstatsd-ruby (5.5.0) erubi (1.12.0) extlz4 (0.3.3) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) globalid (1.1.0) activesupport (>= 5.0) google-protobuf (3.19.1) diff --git a/gemfiles/ruby_2.5_redis_3.gemfile.lock b/gemfiles/ruby_2.5_redis_3.gemfile.lock index f2f9106cad0..339b00ef46a 100644 --- a/gemfiles/ruby_2.5_redis_3.gemfile.lock +++ b/gemfiles/ruby_2.5_redis_3.gemfile.lock @@ -37,8 +37,8 @@ GEM docile (1.4.0) dogstatsd-ruby (5.5.0) extlz4 (0.3.3) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.19.1) google-protobuf (3.19.1-x86_64-linux) hashdiff (1.0.1) diff --git a/gemfiles/ruby_2.5_redis_4.gemfile.lock b/gemfiles/ruby_2.5_redis_4.gemfile.lock index f4ffec0f566..72a2c135888 100644 --- a/gemfiles/ruby_2.5_redis_4.gemfile.lock +++ b/gemfiles/ruby_2.5_redis_4.gemfile.lock @@ -37,8 +37,8 @@ GEM docile (1.4.0) dogstatsd-ruby (5.5.0) extlz4 (0.3.3) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.19.1) google-protobuf (3.19.1-x86_64-linux) hashdiff (1.0.1) diff --git a/gemfiles/ruby_2.5_redis_5.gemfile.lock b/gemfiles/ruby_2.5_redis_5.gemfile.lock index e6b52817d30..4572b1f6a01 100644 --- a/gemfiles/ruby_2.5_redis_5.gemfile.lock +++ b/gemfiles/ruby_2.5_redis_5.gemfile.lock @@ -38,8 +38,8 @@ GEM docile (1.4.0) dogstatsd-ruby (5.5.0) extlz4 (0.3.3) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.19.1) google-protobuf (3.19.1-x86_64-linux) hashdiff (1.0.1) diff --git a/gemfiles/ruby_2.5_relational_db.gemfile.lock b/gemfiles/ruby_2.5_relational_db.gemfile.lock index f41c1fe7b3c..1e43ca2f328 100644 --- a/gemfiles/ruby_2.5_relational_db.gemfile.lock +++ b/gemfiles/ruby_2.5_relational_db.gemfile.lock @@ -55,8 +55,8 @@ GEM docile (1.4.0) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.19.1) google-protobuf (3.19.1-x86_64-linux) hashdiff (1.0.1) diff --git a/gemfiles/ruby_2.5_resque2_redis3.gemfile.lock b/gemfiles/ruby_2.5_resque2_redis3.gemfile.lock index f92b0fa93ea..28ae6ab1725 100644 --- a/gemfiles/ruby_2.5_resque2_redis3.gemfile.lock +++ b/gemfiles/ruby_2.5_resque2_redis3.gemfile.lock @@ -37,8 +37,8 @@ GEM docile (1.4.0) dogstatsd-ruby (5.5.0) extlz4 (0.3.3) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.19.1) google-protobuf (3.19.1-x86_64-linux) hashdiff (1.0.1) diff --git a/gemfiles/ruby_2.5_resque2_redis4.gemfile.lock b/gemfiles/ruby_2.5_resque2_redis4.gemfile.lock index b3843f0b5d6..d45b0cef799 100644 --- a/gemfiles/ruby_2.5_resque2_redis4.gemfile.lock +++ b/gemfiles/ruby_2.5_resque2_redis4.gemfile.lock @@ -38,8 +38,8 @@ GEM docile (1.4.0) dogstatsd-ruby (5.5.0) extlz4 (0.3.3) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.19.1) google-protobuf (3.19.1-x86_64-linux) hashdiff (1.0.1) diff --git a/gemfiles/ruby_2.5_sinatra_2.gemfile.lock b/gemfiles/ruby_2.5_sinatra_2.gemfile.lock index f6ac9af0873..051d70daa01 100644 --- a/gemfiles/ruby_2.5_sinatra_2.gemfile.lock +++ b/gemfiles/ruby_2.5_sinatra_2.gemfile.lock @@ -40,8 +40,8 @@ GEM docile (1.4.0) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.19.1) google-protobuf (3.19.1-x86_64-linux) hashdiff (1.1.0) diff --git a/gemfiles/ruby_2.5_stripe_10.gemfile.lock b/gemfiles/ruby_2.5_stripe_10.gemfile.lock index 5f3e5df99e8..d573a983788 100644 --- a/gemfiles/ruby_2.5_stripe_10.gemfile.lock +++ b/gemfiles/ruby_2.5_stripe_10.gemfile.lock @@ -40,8 +40,8 @@ GEM docile (1.4.1) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.19.1) google-protobuf (3.19.1-x86_64-linux) hashdiff (1.1.1) diff --git a/gemfiles/ruby_2.5_stripe_11.gemfile.lock b/gemfiles/ruby_2.5_stripe_11.gemfile.lock index 1b01f79eb74..1f4090efd05 100644 --- a/gemfiles/ruby_2.5_stripe_11.gemfile.lock +++ b/gemfiles/ruby_2.5_stripe_11.gemfile.lock @@ -40,8 +40,8 @@ GEM docile (1.4.1) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.19.1) google-protobuf (3.19.1-x86_64-linux) hashdiff (1.1.1) diff --git a/gemfiles/ruby_2.5_stripe_12.gemfile.lock b/gemfiles/ruby_2.5_stripe_12.gemfile.lock index 8d8f68c4ca5..6baa0413510 100644 --- a/gemfiles/ruby_2.5_stripe_12.gemfile.lock +++ b/gemfiles/ruby_2.5_stripe_12.gemfile.lock @@ -40,8 +40,8 @@ GEM docile (1.4.1) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.19.1) google-protobuf (3.19.1-x86_64-linux) hashdiff (1.1.1) diff --git a/gemfiles/ruby_2.5_stripe_7.gemfile.lock b/gemfiles/ruby_2.5_stripe_7.gemfile.lock index 21d488d5ff7..f772ff035b6 100644 --- a/gemfiles/ruby_2.5_stripe_7.gemfile.lock +++ b/gemfiles/ruby_2.5_stripe_7.gemfile.lock @@ -40,8 +40,8 @@ GEM docile (1.4.1) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.19.1) google-protobuf (3.19.1-x86_64-linux) hashdiff (1.1.1) diff --git a/gemfiles/ruby_2.5_stripe_8.gemfile.lock b/gemfiles/ruby_2.5_stripe_8.gemfile.lock index e990b9f72d7..62130a60acc 100644 --- a/gemfiles/ruby_2.5_stripe_8.gemfile.lock +++ b/gemfiles/ruby_2.5_stripe_8.gemfile.lock @@ -40,8 +40,8 @@ GEM docile (1.4.1) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.19.1) google-protobuf (3.19.1-x86_64-linux) hashdiff (1.1.1) diff --git a/gemfiles/ruby_2.5_stripe_9.gemfile.lock b/gemfiles/ruby_2.5_stripe_9.gemfile.lock index a9f4eeb3153..96bb62b76e2 100644 --- a/gemfiles/ruby_2.5_stripe_9.gemfile.lock +++ b/gemfiles/ruby_2.5_stripe_9.gemfile.lock @@ -40,8 +40,8 @@ GEM docile (1.4.1) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.19.1) google-protobuf (3.19.1-x86_64-linux) hashdiff (1.1.1) diff --git a/gemfiles/ruby_2.5_stripe_latest.gemfile.lock b/gemfiles/ruby_2.5_stripe_latest.gemfile.lock index a7beba6ef22..a86f084f2fc 100644 --- a/gemfiles/ruby_2.5_stripe_latest.gemfile.lock +++ b/gemfiles/ruby_2.5_stripe_latest.gemfile.lock @@ -40,8 +40,8 @@ GEM docile (1.4.1) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.19.1) google-protobuf (3.19.1-x86_64-linux) hashdiff (1.1.1) diff --git a/gemfiles/ruby_2.5_stripe_min.gemfile.lock b/gemfiles/ruby_2.5_stripe_min.gemfile.lock index 3ca5faa328c..da9397e8e6f 100644 --- a/gemfiles/ruby_2.5_stripe_min.gemfile.lock +++ b/gemfiles/ruby_2.5_stripe_min.gemfile.lock @@ -40,8 +40,8 @@ GEM docile (1.4.1) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.19.1) google-protobuf (3.19.1-x86_64-linux) hashdiff (1.1.1) diff --git a/gemfiles/ruby_2.6_activesupport.gemfile.lock b/gemfiles/ruby_2.6_activesupport.gemfile.lock index 4d734fe6577..007706e59bd 100644 --- a/gemfiles/ruby_2.6_activesupport.gemfile.lock +++ b/gemfiles/ruby_2.6_activesupport.gemfile.lock @@ -90,8 +90,8 @@ GEM dry-logic (~> 1.0, >= 1.0.2) erubi (1.12.0) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.19.1) google-protobuf (3.19.1-x86_64-linux) grape (1.8.0) diff --git a/gemfiles/ruby_2.6_aws.gemfile.lock b/gemfiles/ruby_2.6_aws.gemfile.lock index c1128ef2a7f..3c96fe1b541 100644 --- a/gemfiles/ruby_2.6_aws.gemfile.lock +++ b/gemfiles/ruby_2.6_aws.gemfile.lock @@ -1460,8 +1460,8 @@ GEM docile (1.4.0) dogstatsd-ruby (5.6.0) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.19.1) google-protobuf (3.19.1-x86_64-linux) hashdiff (1.0.1) diff --git a/gemfiles/ruby_2.6_contrib.gemfile.lock b/gemfiles/ruby_2.6_contrib.gemfile.lock index 9290fa6d458..670be6cb17e 100644 --- a/gemfiles/ruby_2.6_contrib.gemfile.lock +++ b/gemfiles/ruby_2.6_contrib.gemfile.lock @@ -46,8 +46,8 @@ GEM docile (1.4.0) dogstatsd-ruby (5.6.0) extlz4 (0.3.3) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.19.1) google-protobuf (3.19.1-x86_64-linux) googleapis-common-protos-types (1.7.0) diff --git a/gemfiles/ruby_2.6_contrib_old.gemfile.lock b/gemfiles/ruby_2.6_contrib_old.gemfile.lock index ee3bb57e301..1f5b283560f 100644 --- a/gemfiles/ruby_2.6_contrib_old.gemfile.lock +++ b/gemfiles/ruby_2.6_contrib_old.gemfile.lock @@ -49,8 +49,8 @@ GEM multipart-post (>= 1.2, < 3) faraday_middleware (0.12.2) faraday (>= 0.7.4, < 1.0) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.19.1) google-protobuf (3.19.1-x86_64-linux) hashdiff (1.0.1) diff --git a/gemfiles/ruby_2.6_core_old.gemfile.lock b/gemfiles/ruby_2.6_core_old.gemfile.lock index 9f852271ed1..d9a4bf1b21f 100644 --- a/gemfiles/ruby_2.6_core_old.gemfile.lock +++ b/gemfiles/ruby_2.6_core_old.gemfile.lock @@ -39,8 +39,8 @@ GEM docile (1.4.0) dogstatsd-ruby (4.8.3) extlz4 (0.3.3) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.19.1) google-protobuf (3.19.1-x86_64-linux) hashdiff (1.0.1) diff --git a/gemfiles/ruby_2.6_elasticsearch_7.gemfile.lock b/gemfiles/ruby_2.6_elasticsearch_7.gemfile.lock index 4cea30faa65..a29fc91e410 100644 --- a/gemfiles/ruby_2.6_elasticsearch_7.gemfile.lock +++ b/gemfiles/ruby_2.6_elasticsearch_7.gemfile.lock @@ -55,8 +55,8 @@ GEM faraday-net_http (>= 2.0, < 3.1) ruby2_keywords (>= 0.0.4) faraday-net_http (3.0.2) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.19.1) google-protobuf (3.19.1-x86_64-linux) hashdiff (1.0.1) diff --git a/gemfiles/ruby_2.6_elasticsearch_8.gemfile.lock b/gemfiles/ruby_2.6_elasticsearch_8.gemfile.lock index 453b543e584..6def7dd6ab4 100644 --- a/gemfiles/ruby_2.6_elasticsearch_8.gemfile.lock +++ b/gemfiles/ruby_2.6_elasticsearch_8.gemfile.lock @@ -54,8 +54,8 @@ GEM faraday-net_http (>= 2.0, < 3.1) ruby2_keywords (>= 0.0.4) faraday-net_http (3.0.2) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.19.1) google-protobuf (3.19.1-x86_64-linux) hashdiff (1.0.1) diff --git a/gemfiles/ruby_2.6_elasticsearch_latest.gemfile.lock b/gemfiles/ruby_2.6_elasticsearch_latest.gemfile.lock index e793083ecad..dff86247bb3 100644 --- a/gemfiles/ruby_2.6_elasticsearch_latest.gemfile.lock +++ b/gemfiles/ruby_2.6_elasticsearch_latest.gemfile.lock @@ -56,8 +56,8 @@ GEM faraday-net_http (>= 2.0, < 3.1) ruby2_keywords (>= 0.0.4) faraday-net_http (3.0.2) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.19.1) google-protobuf (3.19.1-x86_64-linux) hashdiff (1.1.1) diff --git a/gemfiles/ruby_2.6_graphql_1.13.gemfile.lock b/gemfiles/ruby_2.6_graphql_1.13.gemfile.lock index 27fe29f22ba..f92c2d9d115 100644 --- a/gemfiles/ruby_2.6_graphql_1.13.gemfile.lock +++ b/gemfiles/ruby_2.6_graphql_1.13.gemfile.lock @@ -104,8 +104,8 @@ GEM dogstatsd-ruby (5.6.1) erubi (1.13.0) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) globalid (1.2.1) activesupport (>= 6.1) google-protobuf (3.19.1) diff --git a/gemfiles/ruby_2.6_graphql_2.0.gemfile.lock b/gemfiles/ruby_2.6_graphql_2.0.gemfile.lock index 396b6ab6381..f5d11fa0340 100644 --- a/gemfiles/ruby_2.6_graphql_2.0.gemfile.lock +++ b/gemfiles/ruby_2.6_graphql_2.0.gemfile.lock @@ -104,8 +104,8 @@ GEM dogstatsd-ruby (5.6.1) erubi (1.13.0) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) globalid (1.2.1) activesupport (>= 6.1) google-protobuf (3.19.1) diff --git a/gemfiles/ruby_2.6_hanami_1.gemfile.lock b/gemfiles/ruby_2.6_hanami_1.gemfile.lock index 5b3a2e1519f..4cc8e6be2f2 100644 --- a/gemfiles/ruby_2.6_hanami_1.gemfile.lock +++ b/gemfiles/ruby_2.6_hanami_1.gemfile.lock @@ -69,8 +69,8 @@ GEM dry-logic (~> 0.4.2) dry-types (~> 0.12.0) extlz4 (0.3.3) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.19.1) google-protobuf (3.19.1-x86_64-linux) hanami (1.3.5) diff --git a/gemfiles/ruby_2.6_http.gemfile.lock b/gemfiles/ruby_2.6_http.gemfile.lock index 263581b8f2c..cfbfbe9f17a 100644 --- a/gemfiles/ruby_2.6_http.gemfile.lock +++ b/gemfiles/ruby_2.6_http.gemfile.lock @@ -48,8 +48,8 @@ GEM faraday-net_http (>= 2.0, < 3.1) ruby2_keywords (>= 0.0.4) faraday-net_http (3.0.2) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) ffi-compiler (1.0.1) ffi (>= 1.0.0) rake diff --git a/gemfiles/ruby_2.6_opensearch_2.gemfile.lock b/gemfiles/ruby_2.6_opensearch_2.gemfile.lock index a2c93b728b0..298b66f389f 100644 --- a/gemfiles/ruby_2.6_opensearch_2.gemfile.lock +++ b/gemfiles/ruby_2.6_opensearch_2.gemfile.lock @@ -46,8 +46,8 @@ GEM faraday-net_http (>= 2.0, < 3.1) ruby2_keywords (>= 0.0.4) faraday-net_http (3.0.2) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.19.1) google-protobuf (3.19.1-x86_64-linux) hashdiff (1.0.1) diff --git a/gemfiles/ruby_2.6_opensearch_3.gemfile.lock b/gemfiles/ruby_2.6_opensearch_3.gemfile.lock index dfd124a3cbd..d5aca8518f1 100644 --- a/gemfiles/ruby_2.6_opensearch_3.gemfile.lock +++ b/gemfiles/ruby_2.6_opensearch_3.gemfile.lock @@ -46,8 +46,8 @@ GEM faraday-net_http (>= 2.0, < 3.1) ruby2_keywords (>= 0.0.4) faraday-net_http (3.0.2) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.19.1) google-protobuf (3.19.1-x86_64-linux) hashdiff (1.0.1) diff --git a/gemfiles/ruby_2.6_opensearch_latest.gemfile.lock b/gemfiles/ruby_2.6_opensearch_latest.gemfile.lock index bf4ffc42c52..d764f6519a4 100644 --- a/gemfiles/ruby_2.6_opensearch_latest.gemfile.lock +++ b/gemfiles/ruby_2.6_opensearch_latest.gemfile.lock @@ -48,8 +48,8 @@ GEM faraday-net_http (>= 2.0, < 3.1) ruby2_keywords (>= 0.0.4) faraday-net_http (3.0.2) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.19.1) google-protobuf (3.19.1-x86_64-linux) hashdiff (1.1.1) diff --git a/gemfiles/ruby_2.6_opentelemetry.gemfile.lock b/gemfiles/ruby_2.6_opentelemetry.gemfile.lock index 1040200aab6..5fd5563348a 100755 --- a/gemfiles/ruby_2.6_opentelemetry.gemfile.lock +++ b/gemfiles/ruby_2.6_opentelemetry.gemfile.lock @@ -39,8 +39,8 @@ GEM docile (1.4.0) dogstatsd-ruby (5.5.0) extlz4 (0.3.3) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.19.1) google-protobuf (3.19.1-x86_64-linux) hashdiff (1.0.1) diff --git a/gemfiles/ruby_2.6_opentelemetry_otlp.gemfile.lock b/gemfiles/ruby_2.6_opentelemetry_otlp.gemfile.lock index 7819077d47f..c961b165c02 100644 --- a/gemfiles/ruby_2.6_opentelemetry_otlp.gemfile.lock +++ b/gemfiles/ruby_2.6_opentelemetry_otlp.gemfile.lock @@ -42,8 +42,8 @@ GEM docile (1.4.0) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.19.1) google-protobuf (3.19.1-x86_64-linux) googleapis-common-protos-types (1.12.0) diff --git a/gemfiles/ruby_2.6_rack_1.gemfile.lock b/gemfiles/ruby_2.6_rack_1.gemfile.lock index c0c4f47cc89..057a40e0b42 100644 --- a/gemfiles/ruby_2.6_rack_1.gemfile.lock +++ b/gemfiles/ruby_2.6_rack_1.gemfile.lock @@ -39,8 +39,8 @@ GEM docile (1.4.0) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.19.1) google-protobuf (3.19.1-x86_64-linux) hashdiff (1.0.1) diff --git a/gemfiles/ruby_2.6_rack_2.gemfile.lock b/gemfiles/ruby_2.6_rack_2.gemfile.lock index ed770a02bcc..3e66da62b55 100644 --- a/gemfiles/ruby_2.6_rack_2.gemfile.lock +++ b/gemfiles/ruby_2.6_rack_2.gemfile.lock @@ -39,8 +39,8 @@ GEM docile (1.4.0) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.19.1) google-protobuf (3.19.1-x86_64-linux) hashdiff (1.0.1) diff --git a/gemfiles/ruby_2.6_rack_3.gemfile.lock b/gemfiles/ruby_2.6_rack_3.gemfile.lock index 0f1fdb86c11..59096f03914 100644 --- a/gemfiles/ruby_2.6_rack_3.gemfile.lock +++ b/gemfiles/ruby_2.6_rack_3.gemfile.lock @@ -39,8 +39,8 @@ GEM docile (1.4.0) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.19.1) google-protobuf (3.19.1-x86_64-linux) hashdiff (1.0.1) diff --git a/gemfiles/ruby_2.6_rack_latest.gemfile.lock b/gemfiles/ruby_2.6_rack_latest.gemfile.lock index 6891c1bd984..241128453b4 100644 --- a/gemfiles/ruby_2.6_rack_latest.gemfile.lock +++ b/gemfiles/ruby_2.6_rack_latest.gemfile.lock @@ -42,8 +42,8 @@ GEM docile (1.4.1) dogstatsd-ruby (5.6.2) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.19.1) google-protobuf (3.19.1-x86_64-linux) hashdiff (1.1.1) diff --git a/gemfiles/ruby_2.6_rails5_mysql2.gemfile.lock b/gemfiles/ruby_2.6_rails5_mysql2.gemfile.lock index 176418de4ae..22e580615c8 100644 --- a/gemfiles/ruby_2.6_rails5_mysql2.gemfile.lock +++ b/gemfiles/ruby_2.6_rails5_mysql2.gemfile.lock @@ -85,8 +85,8 @@ GEM dogstatsd-ruby (5.5.0) erubi (1.12.0) extlz4 (0.3.3) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) globalid (1.1.0) activesupport (>= 5.0) google-protobuf (3.19.1) diff --git a/gemfiles/ruby_2.6_rails5_postgres.gemfile.lock b/gemfiles/ruby_2.6_rails5_postgres.gemfile.lock index 84d937bee65..b56248cf371 100644 --- a/gemfiles/ruby_2.6_rails5_postgres.gemfile.lock +++ b/gemfiles/ruby_2.6_rails5_postgres.gemfile.lock @@ -85,8 +85,8 @@ GEM dogstatsd-ruby (5.5.0) erubi (1.12.0) extlz4 (0.3.3) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) globalid (1.1.0) activesupport (>= 5.0) google-protobuf (3.19.1) diff --git a/gemfiles/ruby_2.6_rails5_postgres_redis.gemfile.lock b/gemfiles/ruby_2.6_rails5_postgres_redis.gemfile.lock index 23c18f51d01..5a62196473f 100644 --- a/gemfiles/ruby_2.6_rails5_postgres_redis.gemfile.lock +++ b/gemfiles/ruby_2.6_rails5_postgres_redis.gemfile.lock @@ -85,8 +85,8 @@ GEM dogstatsd-ruby (5.5.0) erubi (1.12.0) extlz4 (0.3.3) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) globalid (1.1.0) activesupport (>= 5.0) google-protobuf (3.19.1) diff --git a/gemfiles/ruby_2.6_rails5_postgres_redis_activesupport.gemfile.lock b/gemfiles/ruby_2.6_rails5_postgres_redis_activesupport.gemfile.lock index ba81191983f..5588224c138 100644 --- a/gemfiles/ruby_2.6_rails5_postgres_redis_activesupport.gemfile.lock +++ b/gemfiles/ruby_2.6_rails5_postgres_redis_activesupport.gemfile.lock @@ -85,8 +85,8 @@ GEM dogstatsd-ruby (5.5.0) erubi (1.12.0) extlz4 (0.3.3) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) globalid (1.1.0) activesupport (>= 5.0) google-protobuf (3.19.1) diff --git a/gemfiles/ruby_2.6_rails5_postgres_sidekiq.gemfile.lock b/gemfiles/ruby_2.6_rails5_postgres_sidekiq.gemfile.lock index 5e2b43f592f..84e85773041 100644 --- a/gemfiles/ruby_2.6_rails5_postgres_sidekiq.gemfile.lock +++ b/gemfiles/ruby_2.6_rails5_postgres_sidekiq.gemfile.lock @@ -86,8 +86,8 @@ GEM dogstatsd-ruby (5.5.0) erubi (1.12.0) extlz4 (0.3.3) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) globalid (1.1.0) activesupport (>= 5.0) google-protobuf (3.19.1) diff --git a/gemfiles/ruby_2.6_rails5_semantic_logger.gemfile.lock b/gemfiles/ruby_2.6_rails5_semantic_logger.gemfile.lock index ec24adf2eab..b001a7bf319 100644 --- a/gemfiles/ruby_2.6_rails5_semantic_logger.gemfile.lock +++ b/gemfiles/ruby_2.6_rails5_semantic_logger.gemfile.lock @@ -85,8 +85,8 @@ GEM dogstatsd-ruby (5.5.0) erubi (1.12.0) extlz4 (0.3.3) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) globalid (1.1.0) activesupport (>= 5.0) google-protobuf (3.19.1) diff --git a/gemfiles/ruby_2.6_rails61_mysql2.gemfile.lock b/gemfiles/ruby_2.6_rails61_mysql2.gemfile.lock index 1147580099a..9ca8b22d8e6 100644 --- a/gemfiles/ruby_2.6_rails61_mysql2.gemfile.lock +++ b/gemfiles/ruby_2.6_rails61_mysql2.gemfile.lock @@ -102,8 +102,8 @@ GEM dogstatsd-ruby (5.5.0) erubi (1.12.0) extlz4 (0.3.3) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) globalid (1.1.0) activesupport (>= 5.0) google-protobuf (3.19.1) diff --git a/gemfiles/ruby_2.6_rails61_postgres.gemfile.lock b/gemfiles/ruby_2.6_rails61_postgres.gemfile.lock index 4b5972956f8..13373664ab2 100644 --- a/gemfiles/ruby_2.6_rails61_postgres.gemfile.lock +++ b/gemfiles/ruby_2.6_rails61_postgres.gemfile.lock @@ -102,8 +102,8 @@ GEM dogstatsd-ruby (5.5.0) erubi (1.12.0) extlz4 (0.3.3) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) globalid (1.1.0) activesupport (>= 5.0) google-protobuf (3.19.1) diff --git a/gemfiles/ruby_2.6_rails61_postgres_redis.gemfile.lock b/gemfiles/ruby_2.6_rails61_postgres_redis.gemfile.lock index 938b3444aa2..b97184421cf 100644 --- a/gemfiles/ruby_2.6_rails61_postgres_redis.gemfile.lock +++ b/gemfiles/ruby_2.6_rails61_postgres_redis.gemfile.lock @@ -102,8 +102,8 @@ GEM dogstatsd-ruby (5.5.0) erubi (1.12.0) extlz4 (0.3.3) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) globalid (1.1.0) activesupport (>= 5.0) google-protobuf (3.19.1) diff --git a/gemfiles/ruby_2.6_rails61_postgres_sidekiq.gemfile.lock b/gemfiles/ruby_2.6_rails61_postgres_sidekiq.gemfile.lock index ff3d9e1602f..11b16044cb9 100644 --- a/gemfiles/ruby_2.6_rails61_postgres_sidekiq.gemfile.lock +++ b/gemfiles/ruby_2.6_rails61_postgres_sidekiq.gemfile.lock @@ -103,8 +103,8 @@ GEM dogstatsd-ruby (5.5.0) erubi (1.12.0) extlz4 (0.3.3) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) globalid (1.1.0) activesupport (>= 5.0) google-protobuf (3.19.1) diff --git a/gemfiles/ruby_2.6_rails61_semantic_logger.gemfile.lock b/gemfiles/ruby_2.6_rails61_semantic_logger.gemfile.lock index b0221015b7e..e5b4c022915 100644 --- a/gemfiles/ruby_2.6_rails61_semantic_logger.gemfile.lock +++ b/gemfiles/ruby_2.6_rails61_semantic_logger.gemfile.lock @@ -102,8 +102,8 @@ GEM dogstatsd-ruby (5.5.0) erubi (1.12.0) extlz4 (0.3.3) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) globalid (1.1.0) activesupport (>= 5.0) google-protobuf (3.19.1) diff --git a/gemfiles/ruby_2.6_rails6_mysql2.gemfile.lock b/gemfiles/ruby_2.6_rails6_mysql2.gemfile.lock index 83b6198afd4..ef787f8184c 100644 --- a/gemfiles/ruby_2.6_rails6_mysql2.gemfile.lock +++ b/gemfiles/ruby_2.6_rails6_mysql2.gemfile.lock @@ -98,8 +98,8 @@ GEM dogstatsd-ruby (5.5.0) erubi (1.12.0) extlz4 (0.3.3) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) globalid (1.1.0) activesupport (>= 5.0) google-protobuf (3.19.1) diff --git a/gemfiles/ruby_2.6_rails6_postgres.gemfile.lock b/gemfiles/ruby_2.6_rails6_postgres.gemfile.lock index 0319caa25a6..0112d262e6b 100644 --- a/gemfiles/ruby_2.6_rails6_postgres.gemfile.lock +++ b/gemfiles/ruby_2.6_rails6_postgres.gemfile.lock @@ -98,8 +98,8 @@ GEM dogstatsd-ruby (5.5.0) erubi (1.12.0) extlz4 (0.3.3) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) globalid (1.1.0) activesupport (>= 5.0) google-protobuf (3.19.1) diff --git a/gemfiles/ruby_2.6_rails6_postgres_redis.gemfile.lock b/gemfiles/ruby_2.6_rails6_postgres_redis.gemfile.lock index 99b15756cf0..07e8a196546 100644 --- a/gemfiles/ruby_2.6_rails6_postgres_redis.gemfile.lock +++ b/gemfiles/ruby_2.6_rails6_postgres_redis.gemfile.lock @@ -98,8 +98,8 @@ GEM dogstatsd-ruby (5.5.0) erubi (1.12.0) extlz4 (0.3.3) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) globalid (1.1.0) activesupport (>= 5.0) google-protobuf (3.19.1) diff --git a/gemfiles/ruby_2.6_rails6_postgres_redis_activesupport.gemfile.lock b/gemfiles/ruby_2.6_rails6_postgres_redis_activesupport.gemfile.lock index 606079fb6cc..eecd4e75761 100644 --- a/gemfiles/ruby_2.6_rails6_postgres_redis_activesupport.gemfile.lock +++ b/gemfiles/ruby_2.6_rails6_postgres_redis_activesupport.gemfile.lock @@ -98,8 +98,8 @@ GEM dogstatsd-ruby (5.5.0) erubi (1.12.0) extlz4 (0.3.3) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) globalid (1.1.0) activesupport (>= 5.0) google-protobuf (3.19.1) diff --git a/gemfiles/ruby_2.6_rails6_postgres_sidekiq.gemfile.lock b/gemfiles/ruby_2.6_rails6_postgres_sidekiq.gemfile.lock index 861023349a3..4ca72a38f38 100644 --- a/gemfiles/ruby_2.6_rails6_postgres_sidekiq.gemfile.lock +++ b/gemfiles/ruby_2.6_rails6_postgres_sidekiq.gemfile.lock @@ -99,8 +99,8 @@ GEM dogstatsd-ruby (5.5.0) erubi (1.12.0) extlz4 (0.3.3) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) globalid (1.1.0) activesupport (>= 5.0) google-protobuf (3.19.1) diff --git a/gemfiles/ruby_2.6_rails6_semantic_logger.gemfile.lock b/gemfiles/ruby_2.6_rails6_semantic_logger.gemfile.lock index 40e0acf08a5..388bcb655fd 100644 --- a/gemfiles/ruby_2.6_rails6_semantic_logger.gemfile.lock +++ b/gemfiles/ruby_2.6_rails6_semantic_logger.gemfile.lock @@ -98,8 +98,8 @@ GEM dogstatsd-ruby (5.5.0) erubi (1.12.0) extlz4 (0.3.3) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) globalid (1.1.0) activesupport (>= 5.0) google-protobuf (3.19.1) diff --git a/gemfiles/ruby_2.6_redis_3.gemfile.lock b/gemfiles/ruby_2.6_redis_3.gemfile.lock index be17d708e7b..d0c2f711edf 100644 --- a/gemfiles/ruby_2.6_redis_3.gemfile.lock +++ b/gemfiles/ruby_2.6_redis_3.gemfile.lock @@ -39,8 +39,8 @@ GEM docile (1.4.0) dogstatsd-ruby (5.5.0) extlz4 (0.3.3) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.19.1) google-protobuf (3.19.1-x86_64-linux) hashdiff (1.0.1) diff --git a/gemfiles/ruby_2.6_redis_4.gemfile.lock b/gemfiles/ruby_2.6_redis_4.gemfile.lock index ea0f0ece6d9..2333b4a4443 100644 --- a/gemfiles/ruby_2.6_redis_4.gemfile.lock +++ b/gemfiles/ruby_2.6_redis_4.gemfile.lock @@ -39,8 +39,8 @@ GEM docile (1.4.0) dogstatsd-ruby (5.5.0) extlz4 (0.3.3) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.19.1) google-protobuf (3.19.1-x86_64-linux) hashdiff (1.0.1) diff --git a/gemfiles/ruby_2.6_redis_5.gemfile.lock b/gemfiles/ruby_2.6_redis_5.gemfile.lock index 0fd6f03857c..386221d7f19 100644 --- a/gemfiles/ruby_2.6_redis_5.gemfile.lock +++ b/gemfiles/ruby_2.6_redis_5.gemfile.lock @@ -40,8 +40,8 @@ GEM docile (1.4.0) dogstatsd-ruby (5.5.0) extlz4 (0.3.3) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.19.1) google-protobuf (3.19.1-x86_64-linux) hashdiff (1.0.1) diff --git a/gemfiles/ruby_2.6_relational_db.gemfile.lock b/gemfiles/ruby_2.6_relational_db.gemfile.lock index 0a020d6413a..60a1b8f55bd 100644 --- a/gemfiles/ruby_2.6_relational_db.gemfile.lock +++ b/gemfiles/ruby_2.6_relational_db.gemfile.lock @@ -56,8 +56,8 @@ GEM docile (1.4.0) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.19.1) google-protobuf (3.19.1-x86_64-linux) hashdiff (1.0.1) diff --git a/gemfiles/ruby_2.6_resque2_redis3.gemfile.lock b/gemfiles/ruby_2.6_resque2_redis3.gemfile.lock index 719906750be..396dfe3ad38 100644 --- a/gemfiles/ruby_2.6_resque2_redis3.gemfile.lock +++ b/gemfiles/ruby_2.6_resque2_redis3.gemfile.lock @@ -39,8 +39,8 @@ GEM docile (1.4.0) dogstatsd-ruby (5.5.0) extlz4 (0.3.3) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.19.1) google-protobuf (3.19.1-x86_64-linux) hashdiff (1.0.1) diff --git a/gemfiles/ruby_2.6_resque2_redis4.gemfile.lock b/gemfiles/ruby_2.6_resque2_redis4.gemfile.lock index e807507d636..6366569972f 100644 --- a/gemfiles/ruby_2.6_resque2_redis4.gemfile.lock +++ b/gemfiles/ruby_2.6_resque2_redis4.gemfile.lock @@ -39,8 +39,8 @@ GEM docile (1.4.0) dogstatsd-ruby (5.5.0) extlz4 (0.3.3) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.19.1) google-protobuf (3.19.1-x86_64-linux) hashdiff (1.0.1) diff --git a/gemfiles/ruby_2.6_sinatra_2.gemfile.lock b/gemfiles/ruby_2.6_sinatra_2.gemfile.lock index 5d701cdbb16..3ac25560fc8 100644 --- a/gemfiles/ruby_2.6_sinatra_2.gemfile.lock +++ b/gemfiles/ruby_2.6_sinatra_2.gemfile.lock @@ -42,8 +42,8 @@ GEM docile (1.4.0) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.19.1) google-protobuf (3.19.1-x86_64-linux) hashdiff (1.1.0) diff --git a/gemfiles/ruby_2.6_sinatra_3.gemfile.lock b/gemfiles/ruby_2.6_sinatra_3.gemfile.lock index 0ab33f08332..43ba34c1071 100644 --- a/gemfiles/ruby_2.6_sinatra_3.gemfile.lock +++ b/gemfiles/ruby_2.6_sinatra_3.gemfile.lock @@ -43,8 +43,8 @@ GEM docile (1.4.0) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.19.1) google-protobuf (3.19.1-x86_64-linux) hashdiff (1.1.0) diff --git a/gemfiles/ruby_2.6_stripe_10.gemfile.lock b/gemfiles/ruby_2.6_stripe_10.gemfile.lock index ea517434080..8cb669fce4f 100644 --- a/gemfiles/ruby_2.6_stripe_10.gemfile.lock +++ b/gemfiles/ruby_2.6_stripe_10.gemfile.lock @@ -42,8 +42,8 @@ GEM docile (1.4.1) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.19.1) google-protobuf (3.19.1-x86_64-linux) hashdiff (1.1.1) diff --git a/gemfiles/ruby_2.6_stripe_11.gemfile.lock b/gemfiles/ruby_2.6_stripe_11.gemfile.lock index 446126637e1..71e50315883 100644 --- a/gemfiles/ruby_2.6_stripe_11.gemfile.lock +++ b/gemfiles/ruby_2.6_stripe_11.gemfile.lock @@ -42,8 +42,8 @@ GEM docile (1.4.1) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.19.1) google-protobuf (3.19.1-x86_64-linux) hashdiff (1.1.1) diff --git a/gemfiles/ruby_2.6_stripe_12.gemfile.lock b/gemfiles/ruby_2.6_stripe_12.gemfile.lock index 257bf0f004b..340bb30376c 100644 --- a/gemfiles/ruby_2.6_stripe_12.gemfile.lock +++ b/gemfiles/ruby_2.6_stripe_12.gemfile.lock @@ -42,8 +42,8 @@ GEM docile (1.4.1) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.19.1) google-protobuf (3.19.1-x86_64-linux) hashdiff (1.1.1) diff --git a/gemfiles/ruby_2.6_stripe_7.gemfile.lock b/gemfiles/ruby_2.6_stripe_7.gemfile.lock index 85c4b6e29f8..30a87d0280f 100644 --- a/gemfiles/ruby_2.6_stripe_7.gemfile.lock +++ b/gemfiles/ruby_2.6_stripe_7.gemfile.lock @@ -42,8 +42,8 @@ GEM docile (1.4.1) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.19.1) google-protobuf (3.19.1-x86_64-linux) hashdiff (1.1.1) diff --git a/gemfiles/ruby_2.6_stripe_8.gemfile.lock b/gemfiles/ruby_2.6_stripe_8.gemfile.lock index 63919f732de..6ec58ff7903 100644 --- a/gemfiles/ruby_2.6_stripe_8.gemfile.lock +++ b/gemfiles/ruby_2.6_stripe_8.gemfile.lock @@ -42,8 +42,8 @@ GEM docile (1.4.1) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.19.1) google-protobuf (3.19.1-x86_64-linux) hashdiff (1.1.1) diff --git a/gemfiles/ruby_2.6_stripe_9.gemfile.lock b/gemfiles/ruby_2.6_stripe_9.gemfile.lock index 882eb9c619c..fd9c234e123 100644 --- a/gemfiles/ruby_2.6_stripe_9.gemfile.lock +++ b/gemfiles/ruby_2.6_stripe_9.gemfile.lock @@ -42,8 +42,8 @@ GEM docile (1.4.1) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.19.1) google-protobuf (3.19.1-x86_64-linux) hashdiff (1.1.1) diff --git a/gemfiles/ruby_2.6_stripe_latest.gemfile.lock b/gemfiles/ruby_2.6_stripe_latest.gemfile.lock index 129e917d21e..81011376f80 100644 --- a/gemfiles/ruby_2.6_stripe_latest.gemfile.lock +++ b/gemfiles/ruby_2.6_stripe_latest.gemfile.lock @@ -42,8 +42,8 @@ GEM docile (1.4.1) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.19.1) google-protobuf (3.19.1-x86_64-linux) hashdiff (1.1.1) diff --git a/gemfiles/ruby_2.6_stripe_min.gemfile.lock b/gemfiles/ruby_2.6_stripe_min.gemfile.lock index 318740b202e..a7c64aa1cc7 100644 --- a/gemfiles/ruby_2.6_stripe_min.gemfile.lock +++ b/gemfiles/ruby_2.6_stripe_min.gemfile.lock @@ -42,8 +42,8 @@ GEM docile (1.4.1) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.19.1) google-protobuf (3.19.1-x86_64-linux) hashdiff (1.1.1) diff --git a/gemfiles/ruby_2.7_activesupport.gemfile.lock b/gemfiles/ruby_2.7_activesupport.gemfile.lock index 023a35bfef9..1de63558cae 100644 --- a/gemfiles/ruby_2.7_activesupport.gemfile.lock +++ b/gemfiles/ruby_2.7_activesupport.gemfile.lock @@ -86,8 +86,8 @@ GEM zeitwerk (~> 2.6) erubi (1.12.0) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.24.3-aarch64-linux) google-protobuf (3.24.3-x86_64-linux) grape (1.8.0) diff --git a/gemfiles/ruby_2.7_aws.gemfile.lock b/gemfiles/ruby_2.7_aws.gemfile.lock index 7b7589a5336..c0198bb3428 100644 --- a/gemfiles/ruby_2.7_aws.gemfile.lock +++ b/gemfiles/ruby_2.7_aws.gemfile.lock @@ -1460,8 +1460,8 @@ GEM docile (1.4.0) dogstatsd-ruby (5.6.0) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.24.2-aarch64-linux) google-protobuf (3.24.2-x86_64-linux) hashdiff (1.0.1) diff --git a/gemfiles/ruby_2.7_contrib.gemfile.lock b/gemfiles/ruby_2.7_contrib.gemfile.lock index 0e85f7b4491..4086bce8e80 100644 --- a/gemfiles/ruby_2.7_contrib.gemfile.lock +++ b/gemfiles/ruby_2.7_contrib.gemfile.lock @@ -46,8 +46,8 @@ GEM docile (1.4.0) dogstatsd-ruby (5.5.0) extlz4 (0.3.3) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.22.0) google-protobuf (3.22.0-x86_64-linux) googleapis-common-protos-types (1.5.0) diff --git a/gemfiles/ruby_2.7_contrib_old.gemfile.lock b/gemfiles/ruby_2.7_contrib_old.gemfile.lock index 55982d3e455..53a21d21354 100644 --- a/gemfiles/ruby_2.7_contrib_old.gemfile.lock +++ b/gemfiles/ruby_2.7_contrib_old.gemfile.lock @@ -49,8 +49,8 @@ GEM multipart-post (>= 1.2, < 3) faraday_middleware (0.12.2) faraday (>= 0.7.4, < 1.0) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.22.0) google-protobuf (3.22.0-x86_64-linux) hashdiff (1.0.1) diff --git a/gemfiles/ruby_2.7_core_old.gemfile.lock b/gemfiles/ruby_2.7_core_old.gemfile.lock index ed802d9732e..30b91105024 100644 --- a/gemfiles/ruby_2.7_core_old.gemfile.lock +++ b/gemfiles/ruby_2.7_core_old.gemfile.lock @@ -39,8 +39,8 @@ GEM docile (1.4.0) dogstatsd-ruby (4.8.3) extlz4 (0.3.3) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.22.0) google-protobuf (3.22.0-x86_64-linux) hashdiff (1.0.1) diff --git a/gemfiles/ruby_2.7_elasticsearch_7.gemfile.lock b/gemfiles/ruby_2.7_elasticsearch_7.gemfile.lock index d22c7037269..af5a049b1e4 100644 --- a/gemfiles/ruby_2.7_elasticsearch_7.gemfile.lock +++ b/gemfiles/ruby_2.7_elasticsearch_7.gemfile.lock @@ -55,8 +55,8 @@ GEM faraday-net_http (>= 2.0, < 3.1) ruby2_keywords (>= 0.0.4) faraday-net_http (3.0.2) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.24.4-aarch64-linux) google-protobuf (3.24.4-x86_64-linux) hashdiff (1.0.1) diff --git a/gemfiles/ruby_2.7_elasticsearch_8.gemfile.lock b/gemfiles/ruby_2.7_elasticsearch_8.gemfile.lock index fafee914163..f9d859fb930 100644 --- a/gemfiles/ruby_2.7_elasticsearch_8.gemfile.lock +++ b/gemfiles/ruby_2.7_elasticsearch_8.gemfile.lock @@ -54,8 +54,8 @@ GEM faraday-net_http (>= 2.0, < 3.1) ruby2_keywords (>= 0.0.4) faraday-net_http (3.0.2) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.24.4-aarch64-linux) google-protobuf (3.24.4-x86_64-linux) hashdiff (1.0.1) diff --git a/gemfiles/ruby_2.7_elasticsearch_latest.gemfile.lock b/gemfiles/ruby_2.7_elasticsearch_latest.gemfile.lock index 08f6cc10a6e..f190b897b34 100644 --- a/gemfiles/ruby_2.7_elasticsearch_latest.gemfile.lock +++ b/gemfiles/ruby_2.7_elasticsearch_latest.gemfile.lock @@ -56,8 +56,8 @@ GEM faraday-net_http (>= 2.0, < 3.1) ruby2_keywords (>= 0.0.4) faraday-net_http (3.0.2) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.4) hashdiff (1.1.1) json (2.7.2) diff --git a/gemfiles/ruby_2.7_graphql_1.13.gemfile.lock b/gemfiles/ruby_2.7_graphql_1.13.gemfile.lock index 917866eae2c..fbb48ea5286 100644 --- a/gemfiles/ruby_2.7_graphql_1.13.gemfile.lock +++ b/gemfiles/ruby_2.7_graphql_1.13.gemfile.lock @@ -104,8 +104,8 @@ GEM dogstatsd-ruby (5.6.1) erubi (1.13.0) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) globalid (1.2.1) activesupport (>= 6.1) google-protobuf (3.25.2-aarch64-linux) diff --git a/gemfiles/ruby_2.7_graphql_2.0.gemfile.lock b/gemfiles/ruby_2.7_graphql_2.0.gemfile.lock index ac87a1dcaf9..2425c91166d 100644 --- a/gemfiles/ruby_2.7_graphql_2.0.gemfile.lock +++ b/gemfiles/ruby_2.7_graphql_2.0.gemfile.lock @@ -104,8 +104,8 @@ GEM dogstatsd-ruby (5.6.1) erubi (1.13.0) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) globalid (1.2.1) activesupport (>= 6.1) google-protobuf (3.25.2-aarch64-linux) diff --git a/gemfiles/ruby_2.7_graphql_2.1.gemfile.lock b/gemfiles/ruby_2.7_graphql_2.1.gemfile.lock index 23a664f5f3c..13e83b102b5 100644 --- a/gemfiles/ruby_2.7_graphql_2.1.gemfile.lock +++ b/gemfiles/ruby_2.7_graphql_2.1.gemfile.lock @@ -104,8 +104,8 @@ GEM dogstatsd-ruby (5.6.1) erubi (1.13.0) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) globalid (1.2.1) activesupport (>= 6.1) google-protobuf (3.25.2-aarch64-linux) diff --git a/gemfiles/ruby_2.7_graphql_2.2.gemfile.lock b/gemfiles/ruby_2.7_graphql_2.2.gemfile.lock index 75b9ebc0882..ca0295254f9 100644 --- a/gemfiles/ruby_2.7_graphql_2.2.gemfile.lock +++ b/gemfiles/ruby_2.7_graphql_2.2.gemfile.lock @@ -104,8 +104,8 @@ GEM dogstatsd-ruby (5.6.1) erubi (1.13.0) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) globalid (1.2.1) activesupport (>= 6.1) google-protobuf (3.25.2-aarch64-linux) diff --git a/gemfiles/ruby_2.7_graphql_2.3.gemfile.lock b/gemfiles/ruby_2.7_graphql_2.3.gemfile.lock index ad9e65e843b..e7189c48a58 100644 --- a/gemfiles/ruby_2.7_graphql_2.3.gemfile.lock +++ b/gemfiles/ruby_2.7_graphql_2.3.gemfile.lock @@ -106,8 +106,8 @@ GEM dogstatsd-ruby (5.6.1) erubi (1.13.0) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) globalid (1.2.1) activesupport (>= 6.1) google-protobuf (3.25.4) diff --git a/gemfiles/ruby_2.7_hanami_1.gemfile.lock b/gemfiles/ruby_2.7_hanami_1.gemfile.lock index 5a141a32aee..f4c86fe80a9 100644 --- a/gemfiles/ruby_2.7_hanami_1.gemfile.lock +++ b/gemfiles/ruby_2.7_hanami_1.gemfile.lock @@ -70,8 +70,8 @@ GEM dry-logic (~> 0.4.2) dry-types (~> 0.12.0) extlz4 (0.3.3) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.22.0) google-protobuf (3.22.0-x86_64-linux) hanami (1.3.5) diff --git a/gemfiles/ruby_2.7_http.gemfile.lock b/gemfiles/ruby_2.7_http.gemfile.lock index 5970a3e2e24..83254e3101f 100644 --- a/gemfiles/ruby_2.7_http.gemfile.lock +++ b/gemfiles/ruby_2.7_http.gemfile.lock @@ -48,8 +48,8 @@ GEM faraday-net_http (>= 2.0, < 3.1) ruby2_keywords (>= 0.0.4) faraday-net_http (3.0.2) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) ffi-compiler (1.0.1) ffi (>= 1.0.0) rake diff --git a/gemfiles/ruby_2.7_opensearch_2.gemfile.lock b/gemfiles/ruby_2.7_opensearch_2.gemfile.lock index ef4e590bb08..3f14f4298ad 100644 --- a/gemfiles/ruby_2.7_opensearch_2.gemfile.lock +++ b/gemfiles/ruby_2.7_opensearch_2.gemfile.lock @@ -46,8 +46,8 @@ GEM faraday-net_http (>= 2.0, < 3.1) ruby2_keywords (>= 0.0.4) faraday-net_http (3.0.2) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.24.4-aarch64-linux) google-protobuf (3.24.4-x86_64-linux) hashdiff (1.0.1) diff --git a/gemfiles/ruby_2.7_opensearch_3.gemfile.lock b/gemfiles/ruby_2.7_opensearch_3.gemfile.lock index b4559509c3d..18b3e764719 100644 --- a/gemfiles/ruby_2.7_opensearch_3.gemfile.lock +++ b/gemfiles/ruby_2.7_opensearch_3.gemfile.lock @@ -46,8 +46,8 @@ GEM faraday-net_http (>= 2.0, < 3.1) ruby2_keywords (>= 0.0.4) faraday-net_http (3.0.2) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.24.4-aarch64-linux) google-protobuf (3.24.4-x86_64-linux) hashdiff (1.0.1) diff --git a/gemfiles/ruby_2.7_opensearch_latest.gemfile.lock b/gemfiles/ruby_2.7_opensearch_latest.gemfile.lock index a7df0f9e65f..b5b7e5235b1 100644 --- a/gemfiles/ruby_2.7_opensearch_latest.gemfile.lock +++ b/gemfiles/ruby_2.7_opensearch_latest.gemfile.lock @@ -48,8 +48,8 @@ GEM faraday-net_http (>= 2.0, < 3.1) ruby2_keywords (>= 0.0.4) faraday-net_http (3.0.2) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.4) hashdiff (1.1.1) json (2.7.2) diff --git a/gemfiles/ruby_2.7_opentelemetry.gemfile.lock b/gemfiles/ruby_2.7_opentelemetry.gemfile.lock index 523d02fc54c..4a841a3f35f 100755 --- a/gemfiles/ruby_2.7_opentelemetry.gemfile.lock +++ b/gemfiles/ruby_2.7_opentelemetry.gemfile.lock @@ -39,8 +39,8 @@ GEM docile (1.4.0) dogstatsd-ruby (5.5.0) extlz4 (0.3.3) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.22.0) google-protobuf (3.22.0-x86_64-linux) hashdiff (1.0.1) diff --git a/gemfiles/ruby_2.7_opentelemetry_otlp.gemfile.lock b/gemfiles/ruby_2.7_opentelemetry_otlp.gemfile.lock index 070d22dad7d..b7b2140958a 100644 --- a/gemfiles/ruby_2.7_opentelemetry_otlp.gemfile.lock +++ b/gemfiles/ruby_2.7_opentelemetry_otlp.gemfile.lock @@ -42,8 +42,8 @@ GEM docile (1.4.0) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.3-aarch64-linux) google-protobuf (3.25.3-x86_64-linux) googleapis-common-protos-types (1.13.0) diff --git a/gemfiles/ruby_2.7_rack_1.gemfile.lock b/gemfiles/ruby_2.7_rack_1.gemfile.lock index 9b8280ac4e7..5bdeb525cd7 100644 --- a/gemfiles/ruby_2.7_rack_1.gemfile.lock +++ b/gemfiles/ruby_2.7_rack_1.gemfile.lock @@ -39,8 +39,8 @@ GEM docile (1.4.0) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.24.3-aarch64-linux) google-protobuf (3.24.3-x86_64-linux) hashdiff (1.0.1) diff --git a/gemfiles/ruby_2.7_rack_2.gemfile.lock b/gemfiles/ruby_2.7_rack_2.gemfile.lock index 0a312a9308c..9b1fa4b909b 100644 --- a/gemfiles/ruby_2.7_rack_2.gemfile.lock +++ b/gemfiles/ruby_2.7_rack_2.gemfile.lock @@ -39,8 +39,8 @@ GEM docile (1.4.0) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.24.3-aarch64-linux) google-protobuf (3.24.3-x86_64-linux) hashdiff (1.0.1) diff --git a/gemfiles/ruby_2.7_rack_3.gemfile.lock b/gemfiles/ruby_2.7_rack_3.gemfile.lock index 9dab83702c5..f7844752f9f 100644 --- a/gemfiles/ruby_2.7_rack_3.gemfile.lock +++ b/gemfiles/ruby_2.7_rack_3.gemfile.lock @@ -39,8 +39,8 @@ GEM docile (1.4.0) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.24.3-aarch64-linux) google-protobuf (3.24.3-x86_64-linux) hashdiff (1.0.1) diff --git a/gemfiles/ruby_2.7_rack_latest.gemfile.lock b/gemfiles/ruby_2.7_rack_latest.gemfile.lock index 50fe15b0fa4..45509b23ead 100644 --- a/gemfiles/ruby_2.7_rack_latest.gemfile.lock +++ b/gemfiles/ruby_2.7_rack_latest.gemfile.lock @@ -42,8 +42,8 @@ GEM docile (1.4.1) dogstatsd-ruby (5.6.2) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.5-aarch64-linux) google-protobuf (3.25.5-x86_64-linux) hashdiff (1.1.1) diff --git a/gemfiles/ruby_2.7_rails5_mysql2.gemfile.lock b/gemfiles/ruby_2.7_rails5_mysql2.gemfile.lock index b127f037bfc..c65c2204823 100644 --- a/gemfiles/ruby_2.7_rails5_mysql2.gemfile.lock +++ b/gemfiles/ruby_2.7_rails5_mysql2.gemfile.lock @@ -85,8 +85,8 @@ GEM dogstatsd-ruby (5.5.0) erubi (1.12.0) extlz4 (0.3.3) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) globalid (1.1.0) activesupport (>= 5.0) google-protobuf (3.22.0) diff --git a/gemfiles/ruby_2.7_rails5_postgres.gemfile.lock b/gemfiles/ruby_2.7_rails5_postgres.gemfile.lock index a582c96a988..0d47a883d6e 100644 --- a/gemfiles/ruby_2.7_rails5_postgres.gemfile.lock +++ b/gemfiles/ruby_2.7_rails5_postgres.gemfile.lock @@ -85,8 +85,8 @@ GEM dogstatsd-ruby (5.5.0) erubi (1.12.0) extlz4 (0.3.3) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) globalid (1.1.0) activesupport (>= 5.0) google-protobuf (3.22.0) diff --git a/gemfiles/ruby_2.7_rails5_postgres_redis.gemfile.lock b/gemfiles/ruby_2.7_rails5_postgres_redis.gemfile.lock index 319541605f7..bcca4c3aa2b 100644 --- a/gemfiles/ruby_2.7_rails5_postgres_redis.gemfile.lock +++ b/gemfiles/ruby_2.7_rails5_postgres_redis.gemfile.lock @@ -85,8 +85,8 @@ GEM dogstatsd-ruby (5.5.0) erubi (1.12.0) extlz4 (0.3.3) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) globalid (1.1.0) activesupport (>= 5.0) google-protobuf (3.22.0) diff --git a/gemfiles/ruby_2.7_rails5_postgres_redis_activesupport.gemfile.lock b/gemfiles/ruby_2.7_rails5_postgres_redis_activesupport.gemfile.lock index 9c332cb3a5b..18e44a6c6d2 100644 --- a/gemfiles/ruby_2.7_rails5_postgres_redis_activesupport.gemfile.lock +++ b/gemfiles/ruby_2.7_rails5_postgres_redis_activesupport.gemfile.lock @@ -85,8 +85,8 @@ GEM dogstatsd-ruby (5.5.0) erubi (1.12.0) extlz4 (0.3.3) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) globalid (1.1.0) activesupport (>= 5.0) google-protobuf (3.22.0) diff --git a/gemfiles/ruby_2.7_rails5_postgres_sidekiq.gemfile.lock b/gemfiles/ruby_2.7_rails5_postgres_sidekiq.gemfile.lock index 5f1c5046abe..1cd49acbae4 100644 --- a/gemfiles/ruby_2.7_rails5_postgres_sidekiq.gemfile.lock +++ b/gemfiles/ruby_2.7_rails5_postgres_sidekiq.gemfile.lock @@ -86,8 +86,8 @@ GEM dogstatsd-ruby (5.5.0) erubi (1.12.0) extlz4 (0.3.3) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) globalid (1.1.0) activesupport (>= 5.0) google-protobuf (3.22.0) diff --git a/gemfiles/ruby_2.7_rails5_semantic_logger.gemfile.lock b/gemfiles/ruby_2.7_rails5_semantic_logger.gemfile.lock index 6fdd5da849a..b6d7e5ef74c 100644 --- a/gemfiles/ruby_2.7_rails5_semantic_logger.gemfile.lock +++ b/gemfiles/ruby_2.7_rails5_semantic_logger.gemfile.lock @@ -85,8 +85,8 @@ GEM dogstatsd-ruby (5.5.0) erubi (1.12.0) extlz4 (0.3.3) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) globalid (1.1.0) activesupport (>= 5.0) google-protobuf (3.22.0) diff --git a/gemfiles/ruby_2.7_rails61_mysql2.gemfile.lock b/gemfiles/ruby_2.7_rails61_mysql2.gemfile.lock index 8e63127b8f1..fa3cebaa870 100644 --- a/gemfiles/ruby_2.7_rails61_mysql2.gemfile.lock +++ b/gemfiles/ruby_2.7_rails61_mysql2.gemfile.lock @@ -102,8 +102,8 @@ GEM dogstatsd-ruby (5.5.0) erubi (1.12.0) extlz4 (0.3.3) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) globalid (1.1.0) activesupport (>= 5.0) google-protobuf (3.22.0) diff --git a/gemfiles/ruby_2.7_rails61_postgres.gemfile.lock b/gemfiles/ruby_2.7_rails61_postgres.gemfile.lock index 720c2e4650b..ac49ad69816 100644 --- a/gemfiles/ruby_2.7_rails61_postgres.gemfile.lock +++ b/gemfiles/ruby_2.7_rails61_postgres.gemfile.lock @@ -102,8 +102,8 @@ GEM dogstatsd-ruby (5.5.0) erubi (1.12.0) extlz4 (0.3.3) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) globalid (1.1.0) activesupport (>= 5.0) google-protobuf (3.22.0) diff --git a/gemfiles/ruby_2.7_rails61_postgres_redis.gemfile.lock b/gemfiles/ruby_2.7_rails61_postgres_redis.gemfile.lock index 9f2e183a422..d72d13090a0 100644 --- a/gemfiles/ruby_2.7_rails61_postgres_redis.gemfile.lock +++ b/gemfiles/ruby_2.7_rails61_postgres_redis.gemfile.lock @@ -102,8 +102,8 @@ GEM dogstatsd-ruby (5.5.0) erubi (1.12.0) extlz4 (0.3.3) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) globalid (1.1.0) activesupport (>= 5.0) google-protobuf (3.22.0) diff --git a/gemfiles/ruby_2.7_rails61_postgres_sidekiq.gemfile.lock b/gemfiles/ruby_2.7_rails61_postgres_sidekiq.gemfile.lock index d20b386733f..20f3dfb7f80 100644 --- a/gemfiles/ruby_2.7_rails61_postgres_sidekiq.gemfile.lock +++ b/gemfiles/ruby_2.7_rails61_postgres_sidekiq.gemfile.lock @@ -103,8 +103,8 @@ GEM dogstatsd-ruby (5.5.0) erubi (1.12.0) extlz4 (0.3.3) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) globalid (1.1.0) activesupport (>= 5.0) google-protobuf (3.22.0) diff --git a/gemfiles/ruby_2.7_rails61_semantic_logger.gemfile.lock b/gemfiles/ruby_2.7_rails61_semantic_logger.gemfile.lock index 0168bf020f1..e750f807cf1 100644 --- a/gemfiles/ruby_2.7_rails61_semantic_logger.gemfile.lock +++ b/gemfiles/ruby_2.7_rails61_semantic_logger.gemfile.lock @@ -102,8 +102,8 @@ GEM dogstatsd-ruby (5.5.0) erubi (1.12.0) extlz4 (0.3.3) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) globalid (1.1.0) activesupport (>= 5.0) google-protobuf (3.22.0) diff --git a/gemfiles/ruby_2.7_rails6_mysql2.gemfile.lock b/gemfiles/ruby_2.7_rails6_mysql2.gemfile.lock index abb77984b30..06690ebe40a 100644 --- a/gemfiles/ruby_2.7_rails6_mysql2.gemfile.lock +++ b/gemfiles/ruby_2.7_rails6_mysql2.gemfile.lock @@ -98,8 +98,8 @@ GEM dogstatsd-ruby (5.5.0) erubi (1.12.0) extlz4 (0.3.3) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) globalid (1.1.0) activesupport (>= 5.0) google-protobuf (3.22.0) diff --git a/gemfiles/ruby_2.7_rails6_postgres.gemfile.lock b/gemfiles/ruby_2.7_rails6_postgres.gemfile.lock index 45f17b94b1c..10170ce0ffb 100644 --- a/gemfiles/ruby_2.7_rails6_postgres.gemfile.lock +++ b/gemfiles/ruby_2.7_rails6_postgres.gemfile.lock @@ -98,8 +98,8 @@ GEM dogstatsd-ruby (5.5.0) erubi (1.12.0) extlz4 (0.3.3) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) globalid (1.1.0) activesupport (>= 5.0) google-protobuf (3.22.0) diff --git a/gemfiles/ruby_2.7_rails6_postgres_redis.gemfile.lock b/gemfiles/ruby_2.7_rails6_postgres_redis.gemfile.lock index 8d20fa116e9..ca4cbf5741a 100644 --- a/gemfiles/ruby_2.7_rails6_postgres_redis.gemfile.lock +++ b/gemfiles/ruby_2.7_rails6_postgres_redis.gemfile.lock @@ -98,8 +98,8 @@ GEM dogstatsd-ruby (5.5.0) erubi (1.12.0) extlz4 (0.3.3) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) globalid (1.1.0) activesupport (>= 5.0) google-protobuf (3.22.0) diff --git a/gemfiles/ruby_2.7_rails6_postgres_redis_activesupport.gemfile.lock b/gemfiles/ruby_2.7_rails6_postgres_redis_activesupport.gemfile.lock index fd1fd20475e..910388c45f3 100644 --- a/gemfiles/ruby_2.7_rails6_postgres_redis_activesupport.gemfile.lock +++ b/gemfiles/ruby_2.7_rails6_postgres_redis_activesupport.gemfile.lock @@ -98,8 +98,8 @@ GEM dogstatsd-ruby (5.5.0) erubi (1.12.0) extlz4 (0.3.3) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) globalid (1.1.0) activesupport (>= 5.0) google-protobuf (3.22.0) diff --git a/gemfiles/ruby_2.7_rails6_postgres_sidekiq.gemfile.lock b/gemfiles/ruby_2.7_rails6_postgres_sidekiq.gemfile.lock index 21390c3506f..b6474f5cea6 100644 --- a/gemfiles/ruby_2.7_rails6_postgres_sidekiq.gemfile.lock +++ b/gemfiles/ruby_2.7_rails6_postgres_sidekiq.gemfile.lock @@ -99,8 +99,8 @@ GEM dogstatsd-ruby (5.5.0) erubi (1.12.0) extlz4 (0.3.3) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) globalid (1.1.0) activesupport (>= 5.0) google-protobuf (3.22.0) diff --git a/gemfiles/ruby_2.7_rails6_semantic_logger.gemfile.lock b/gemfiles/ruby_2.7_rails6_semantic_logger.gemfile.lock index 8721002e0cb..8d1c9b01447 100644 --- a/gemfiles/ruby_2.7_rails6_semantic_logger.gemfile.lock +++ b/gemfiles/ruby_2.7_rails6_semantic_logger.gemfile.lock @@ -98,8 +98,8 @@ GEM dogstatsd-ruby (5.5.0) erubi (1.12.0) extlz4 (0.3.3) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) globalid (1.1.0) activesupport (>= 5.0) google-protobuf (3.22.0) diff --git a/gemfiles/ruby_2.7_redis_3.gemfile.lock b/gemfiles/ruby_2.7_redis_3.gemfile.lock index cbf3585a0cc..8e9e8e8067b 100644 --- a/gemfiles/ruby_2.7_redis_3.gemfile.lock +++ b/gemfiles/ruby_2.7_redis_3.gemfile.lock @@ -39,8 +39,8 @@ GEM docile (1.4.0) dogstatsd-ruby (5.5.0) extlz4 (0.3.3) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.22.0) google-protobuf (3.22.0-x86_64-linux) hashdiff (1.0.1) diff --git a/gemfiles/ruby_2.7_redis_4.gemfile.lock b/gemfiles/ruby_2.7_redis_4.gemfile.lock index e3578c70a73..8a942d798da 100644 --- a/gemfiles/ruby_2.7_redis_4.gemfile.lock +++ b/gemfiles/ruby_2.7_redis_4.gemfile.lock @@ -39,8 +39,8 @@ GEM docile (1.4.0) dogstatsd-ruby (5.5.0) extlz4 (0.3.3) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.22.0) google-protobuf (3.22.0-x86_64-linux) hashdiff (1.0.1) diff --git a/gemfiles/ruby_2.7_redis_5.gemfile.lock b/gemfiles/ruby_2.7_redis_5.gemfile.lock index b61588035c6..71d29591751 100644 --- a/gemfiles/ruby_2.7_redis_5.gemfile.lock +++ b/gemfiles/ruby_2.7_redis_5.gemfile.lock @@ -40,8 +40,8 @@ GEM docile (1.4.0) dogstatsd-ruby (5.5.0) extlz4 (0.3.3) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.22.0) google-protobuf (3.22.0-x86_64-linux) hashdiff (1.0.1) diff --git a/gemfiles/ruby_2.7_relational_db.gemfile.lock b/gemfiles/ruby_2.7_relational_db.gemfile.lock index 57b8d3f19c4..994f28165c8 100644 --- a/gemfiles/ruby_2.7_relational_db.gemfile.lock +++ b/gemfiles/ruby_2.7_relational_db.gemfile.lock @@ -56,8 +56,8 @@ GEM docile (1.4.0) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.24.3-aarch64-linux) google-protobuf (3.24.3-x86_64-linux) hashdiff (1.0.1) diff --git a/gemfiles/ruby_2.7_resque2_redis3.gemfile.lock b/gemfiles/ruby_2.7_resque2_redis3.gemfile.lock index 64c50feb2bf..a550f596869 100644 --- a/gemfiles/ruby_2.7_resque2_redis3.gemfile.lock +++ b/gemfiles/ruby_2.7_resque2_redis3.gemfile.lock @@ -39,8 +39,8 @@ GEM docile (1.4.0) dogstatsd-ruby (5.5.0) extlz4 (0.3.3) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.22.0) google-protobuf (3.22.0-x86_64-linux) hashdiff (1.0.1) diff --git a/gemfiles/ruby_2.7_resque2_redis4.gemfile.lock b/gemfiles/ruby_2.7_resque2_redis4.gemfile.lock index 4a39ffc7df4..3fad0ae3a8d 100644 --- a/gemfiles/ruby_2.7_resque2_redis4.gemfile.lock +++ b/gemfiles/ruby_2.7_resque2_redis4.gemfile.lock @@ -39,8 +39,8 @@ GEM docile (1.4.0) dogstatsd-ruby (5.5.0) extlz4 (0.3.3) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.22.0) google-protobuf (3.22.0-x86_64-linux) hashdiff (1.0.1) diff --git a/gemfiles/ruby_2.7_sinatra_2.gemfile.lock b/gemfiles/ruby_2.7_sinatra_2.gemfile.lock index 3af9f16032d..f8c48cb8380 100644 --- a/gemfiles/ruby_2.7_sinatra_2.gemfile.lock +++ b/gemfiles/ruby_2.7_sinatra_2.gemfile.lock @@ -42,8 +42,8 @@ GEM docile (1.4.0) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.3-aarch64-linux) google-protobuf (3.25.3-x86_64-linux) hashdiff (1.1.0) diff --git a/gemfiles/ruby_2.7_sinatra_3.gemfile.lock b/gemfiles/ruby_2.7_sinatra_3.gemfile.lock index 91d13232b89..f61e6ea3632 100644 --- a/gemfiles/ruby_2.7_sinatra_3.gemfile.lock +++ b/gemfiles/ruby_2.7_sinatra_3.gemfile.lock @@ -43,8 +43,8 @@ GEM docile (1.4.0) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.3-aarch64-linux) google-protobuf (3.25.3-x86_64-linux) hashdiff (1.1.0) diff --git a/gemfiles/ruby_2.7_stripe_10.gemfile.lock b/gemfiles/ruby_2.7_stripe_10.gemfile.lock index f1c8288f646..8533f777a41 100644 --- a/gemfiles/ruby_2.7_stripe_10.gemfile.lock +++ b/gemfiles/ruby_2.7_stripe_10.gemfile.lock @@ -42,8 +42,8 @@ GEM docile (1.4.1) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.4) hashdiff (1.1.1) json (2.7.2) diff --git a/gemfiles/ruby_2.7_stripe_11.gemfile.lock b/gemfiles/ruby_2.7_stripe_11.gemfile.lock index 597e53bf40c..c1a81f54da8 100644 --- a/gemfiles/ruby_2.7_stripe_11.gemfile.lock +++ b/gemfiles/ruby_2.7_stripe_11.gemfile.lock @@ -42,8 +42,8 @@ GEM docile (1.4.1) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.4) hashdiff (1.1.1) json (2.7.2) diff --git a/gemfiles/ruby_2.7_stripe_12.gemfile.lock b/gemfiles/ruby_2.7_stripe_12.gemfile.lock index 1f2628754d7..d71f5134154 100644 --- a/gemfiles/ruby_2.7_stripe_12.gemfile.lock +++ b/gemfiles/ruby_2.7_stripe_12.gemfile.lock @@ -42,8 +42,8 @@ GEM docile (1.4.1) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.4) hashdiff (1.1.1) json (2.7.2) diff --git a/gemfiles/ruby_2.7_stripe_7.gemfile.lock b/gemfiles/ruby_2.7_stripe_7.gemfile.lock index 0e4f2bb5902..25e9a71cb14 100644 --- a/gemfiles/ruby_2.7_stripe_7.gemfile.lock +++ b/gemfiles/ruby_2.7_stripe_7.gemfile.lock @@ -42,8 +42,8 @@ GEM docile (1.4.1) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.4) hashdiff (1.1.1) json (2.7.2) diff --git a/gemfiles/ruby_2.7_stripe_8.gemfile.lock b/gemfiles/ruby_2.7_stripe_8.gemfile.lock index 02bd976784a..322fbd56f9b 100644 --- a/gemfiles/ruby_2.7_stripe_8.gemfile.lock +++ b/gemfiles/ruby_2.7_stripe_8.gemfile.lock @@ -42,8 +42,8 @@ GEM docile (1.4.1) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.4) hashdiff (1.1.1) json (2.7.2) diff --git a/gemfiles/ruby_2.7_stripe_9.gemfile.lock b/gemfiles/ruby_2.7_stripe_9.gemfile.lock index b38a88c6580..fde7e09b375 100644 --- a/gemfiles/ruby_2.7_stripe_9.gemfile.lock +++ b/gemfiles/ruby_2.7_stripe_9.gemfile.lock @@ -42,8 +42,8 @@ GEM docile (1.4.1) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.4) hashdiff (1.1.1) json (2.7.2) diff --git a/gemfiles/ruby_2.7_stripe_latest.gemfile.lock b/gemfiles/ruby_2.7_stripe_latest.gemfile.lock index 83c9c3305ed..5195a06e334 100644 --- a/gemfiles/ruby_2.7_stripe_latest.gemfile.lock +++ b/gemfiles/ruby_2.7_stripe_latest.gemfile.lock @@ -42,8 +42,8 @@ GEM docile (1.4.1) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.4) hashdiff (1.1.1) json (2.7.2) diff --git a/gemfiles/ruby_2.7_stripe_min.gemfile.lock b/gemfiles/ruby_2.7_stripe_min.gemfile.lock index 4a1554cb159..e0f7c268477 100644 --- a/gemfiles/ruby_2.7_stripe_min.gemfile.lock +++ b/gemfiles/ruby_2.7_stripe_min.gemfile.lock @@ -42,8 +42,8 @@ GEM docile (1.4.1) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.5-aarch64-linux) google-protobuf (3.25.5-x86_64-linux) hashdiff (1.1.1) diff --git a/gemfiles/ruby_3.0_activesupport.gemfile.lock b/gemfiles/ruby_3.0_activesupport.gemfile.lock index f79e8db5bf0..191a75f7119 100644 --- a/gemfiles/ruby_3.0_activesupport.gemfile.lock +++ b/gemfiles/ruby_3.0_activesupport.gemfile.lock @@ -85,8 +85,8 @@ GEM zeitwerk (~> 2.6) erubi (1.12.0) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.24.3-aarch64-linux) google-protobuf (3.24.3-x86_64-linux) grape (1.8.0) diff --git a/gemfiles/ruby_3.0_aws.gemfile.lock b/gemfiles/ruby_3.0_aws.gemfile.lock index 1074f886e6e..5edee22a147 100644 --- a/gemfiles/ruby_3.0_aws.gemfile.lock +++ b/gemfiles/ruby_3.0_aws.gemfile.lock @@ -1460,8 +1460,8 @@ GEM docile (1.4.0) dogstatsd-ruby (5.6.0) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.24.2-aarch64-linux) google-protobuf (3.24.2-x86_64-linux) hashdiff (1.0.1) diff --git a/gemfiles/ruby_3.0_contrib.gemfile.lock b/gemfiles/ruby_3.0_contrib.gemfile.lock index 5313785d868..1dd185d15c8 100644 --- a/gemfiles/ruby_3.0_contrib.gemfile.lock +++ b/gemfiles/ruby_3.0_contrib.gemfile.lock @@ -46,8 +46,8 @@ GEM docile (1.4.0) dogstatsd-ruby (5.5.0) extlz4 (0.3.3) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.22.0) google-protobuf (3.22.0-x86_64-linux) googleapis-common-protos-types (1.5.0) diff --git a/gemfiles/ruby_3.0_contrib_old.gemfile.lock b/gemfiles/ruby_3.0_contrib_old.gemfile.lock index 2a36f11745e..97bde2e5fa1 100644 --- a/gemfiles/ruby_3.0_contrib_old.gemfile.lock +++ b/gemfiles/ruby_3.0_contrib_old.gemfile.lock @@ -49,8 +49,8 @@ GEM multipart-post (>= 1.2, < 3) faraday_middleware (0.12.2) faraday (>= 0.7.4, < 1.0) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.22.0) google-protobuf (3.22.0-x86_64-linux) hashdiff (1.0.1) diff --git a/gemfiles/ruby_3.0_core_old.gemfile.lock b/gemfiles/ruby_3.0_core_old.gemfile.lock index 742a57d9e16..0ff786680c1 100644 --- a/gemfiles/ruby_3.0_core_old.gemfile.lock +++ b/gemfiles/ruby_3.0_core_old.gemfile.lock @@ -39,8 +39,8 @@ GEM docile (1.4.0) dogstatsd-ruby (4.8.3) extlz4 (0.3.3) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.22.0) google-protobuf (3.22.0-x86_64-linux) hashdiff (1.0.1) diff --git a/gemfiles/ruby_3.0_elasticsearch_7.gemfile.lock b/gemfiles/ruby_3.0_elasticsearch_7.gemfile.lock index c30113156d8..45b2f54dfd2 100644 --- a/gemfiles/ruby_3.0_elasticsearch_7.gemfile.lock +++ b/gemfiles/ruby_3.0_elasticsearch_7.gemfile.lock @@ -56,8 +56,8 @@ GEM logger faraday-net_http (3.4.0) net-http (>= 0.5.0) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.24.4-aarch64-linux) google-protobuf (3.24.4-x86_64-linux) hashdiff (1.0.1) diff --git a/gemfiles/ruby_3.0_elasticsearch_8.gemfile.lock b/gemfiles/ruby_3.0_elasticsearch_8.gemfile.lock index 99690f81464..1bdfcf65424 100644 --- a/gemfiles/ruby_3.0_elasticsearch_8.gemfile.lock +++ b/gemfiles/ruby_3.0_elasticsearch_8.gemfile.lock @@ -54,8 +54,8 @@ GEM logger faraday-net_http (3.4.0) net-http (>= 0.5.0) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.24.4-aarch64-linux) google-protobuf (3.24.4-x86_64-linux) hashdiff (1.0.1) diff --git a/gemfiles/ruby_3.0_elasticsearch_latest.gemfile.lock b/gemfiles/ruby_3.0_elasticsearch_latest.gemfile.lock index 8bf6fb97f7b..1abdfaf326f 100644 --- a/gemfiles/ruby_3.0_elasticsearch_latest.gemfile.lock +++ b/gemfiles/ruby_3.0_elasticsearch_latest.gemfile.lock @@ -56,8 +56,8 @@ GEM logger faraday-net_http (3.4.0) net-http (>= 0.5.0) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.4-aarch64-linux) google-protobuf (3.25.4-x86_64-linux) hashdiff (1.1.1) diff --git a/gemfiles/ruby_3.0_graphql_1.13.gemfile.lock b/gemfiles/ruby_3.0_graphql_1.13.gemfile.lock index d63d86fa68d..3c5e1d1da6b 100644 --- a/gemfiles/ruby_3.0_graphql_1.13.gemfile.lock +++ b/gemfiles/ruby_3.0_graphql_1.13.gemfile.lock @@ -104,8 +104,8 @@ GEM dogstatsd-ruby (5.6.1) erubi (1.13.0) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) globalid (1.2.1) activesupport (>= 6.1) google-protobuf (3.25.2-aarch64-linux) diff --git a/gemfiles/ruby_3.0_graphql_2.0.gemfile.lock b/gemfiles/ruby_3.0_graphql_2.0.gemfile.lock index d6bb8ab28ce..913ec5adec7 100644 --- a/gemfiles/ruby_3.0_graphql_2.0.gemfile.lock +++ b/gemfiles/ruby_3.0_graphql_2.0.gemfile.lock @@ -104,8 +104,8 @@ GEM dogstatsd-ruby (5.6.1) erubi (1.13.0) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) globalid (1.2.1) activesupport (>= 6.1) google-protobuf (3.25.2-aarch64-linux) diff --git a/gemfiles/ruby_3.0_graphql_2.1.gemfile.lock b/gemfiles/ruby_3.0_graphql_2.1.gemfile.lock index a7b22ac00c1..6cd748d7702 100644 --- a/gemfiles/ruby_3.0_graphql_2.1.gemfile.lock +++ b/gemfiles/ruby_3.0_graphql_2.1.gemfile.lock @@ -104,8 +104,8 @@ GEM dogstatsd-ruby (5.6.1) erubi (1.13.0) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) globalid (1.2.1) activesupport (>= 6.1) google-protobuf (3.25.2-aarch64-linux) diff --git a/gemfiles/ruby_3.0_graphql_2.2.gemfile.lock b/gemfiles/ruby_3.0_graphql_2.2.gemfile.lock index 2c72a63deba..3d921af658e 100644 --- a/gemfiles/ruby_3.0_graphql_2.2.gemfile.lock +++ b/gemfiles/ruby_3.0_graphql_2.2.gemfile.lock @@ -104,8 +104,8 @@ GEM dogstatsd-ruby (5.6.1) erubi (1.13.0) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) globalid (1.2.1) activesupport (>= 6.1) google-protobuf (3.25.2-aarch64-linux) diff --git a/gemfiles/ruby_3.0_graphql_2.3.gemfile.lock b/gemfiles/ruby_3.0_graphql_2.3.gemfile.lock index 54d4bcca64b..8dd2bc0d550 100644 --- a/gemfiles/ruby_3.0_graphql_2.3.gemfile.lock +++ b/gemfiles/ruby_3.0_graphql_2.3.gemfile.lock @@ -106,8 +106,8 @@ GEM dogstatsd-ruby (5.6.1) erubi (1.13.0) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) globalid (1.2.1) activesupport (>= 6.1) google-protobuf (3.25.3-aarch64-linux) diff --git a/gemfiles/ruby_3.0_http.gemfile.lock b/gemfiles/ruby_3.0_http.gemfile.lock index 58176d6f9de..d7c983fe9d2 100644 --- a/gemfiles/ruby_3.0_http.gemfile.lock +++ b/gemfiles/ruby_3.0_http.gemfile.lock @@ -48,8 +48,8 @@ GEM faraday-net_http (>= 2.0, < 3.1) ruby2_keywords (>= 0.0.4) faraday-net_http (3.0.2) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) ffi-compiler (1.0.1) ffi (>= 1.0.0) rake diff --git a/gemfiles/ruby_3.0_opensearch_2.gemfile.lock b/gemfiles/ruby_3.0_opensearch_2.gemfile.lock index ee84248d798..b9d36b05e22 100644 --- a/gemfiles/ruby_3.0_opensearch_2.gemfile.lock +++ b/gemfiles/ruby_3.0_opensearch_2.gemfile.lock @@ -46,8 +46,8 @@ GEM logger faraday-net_http (3.4.0) net-http (>= 0.5.0) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.24.4-aarch64-linux) google-protobuf (3.24.4-x86_64-linux) hashdiff (1.0.1) diff --git a/gemfiles/ruby_3.0_opensearch_3.gemfile.lock b/gemfiles/ruby_3.0_opensearch_3.gemfile.lock index b73385f5a00..9dea66650aa 100644 --- a/gemfiles/ruby_3.0_opensearch_3.gemfile.lock +++ b/gemfiles/ruby_3.0_opensearch_3.gemfile.lock @@ -46,8 +46,8 @@ GEM logger faraday-net_http (3.4.0) net-http (>= 0.5.0) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.24.4-aarch64-linux) google-protobuf (3.24.4-x86_64-linux) hashdiff (1.0.1) diff --git a/gemfiles/ruby_3.0_opensearch_latest.gemfile.lock b/gemfiles/ruby_3.0_opensearch_latest.gemfile.lock index e8582b89645..9a1e1aff6ce 100644 --- a/gemfiles/ruby_3.0_opensearch_latest.gemfile.lock +++ b/gemfiles/ruby_3.0_opensearch_latest.gemfile.lock @@ -48,8 +48,8 @@ GEM logger faraday-net_http (3.4.0) net-http (>= 0.5.0) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.4-aarch64-linux) google-protobuf (3.25.4-x86_64-linux) hashdiff (1.1.1) diff --git a/gemfiles/ruby_3.0_opentelemetry.gemfile.lock b/gemfiles/ruby_3.0_opentelemetry.gemfile.lock index 89352618097..580a2e1f049 100755 --- a/gemfiles/ruby_3.0_opentelemetry.gemfile.lock +++ b/gemfiles/ruby_3.0_opentelemetry.gemfile.lock @@ -39,8 +39,8 @@ GEM docile (1.4.0) dogstatsd-ruby (5.5.0) extlz4 (0.3.3) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.22.0) google-protobuf (3.22.0-x86_64-linux) hashdiff (1.0.1) diff --git a/gemfiles/ruby_3.0_opentelemetry_otlp.gemfile.lock b/gemfiles/ruby_3.0_opentelemetry_otlp.gemfile.lock index 79a81af1a3e..d2e69ae4989 100644 --- a/gemfiles/ruby_3.0_opentelemetry_otlp.gemfile.lock +++ b/gemfiles/ruby_3.0_opentelemetry_otlp.gemfile.lock @@ -42,8 +42,8 @@ GEM docile (1.4.0) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.3-aarch64-linux) google-protobuf (3.25.3-x86_64-linux) googleapis-common-protos-types (1.13.0) diff --git a/gemfiles/ruby_3.0_rack_1.gemfile.lock b/gemfiles/ruby_3.0_rack_1.gemfile.lock index 43424cb158b..22dcb1e6d84 100644 --- a/gemfiles/ruby_3.0_rack_1.gemfile.lock +++ b/gemfiles/ruby_3.0_rack_1.gemfile.lock @@ -39,8 +39,8 @@ GEM docile (1.4.0) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.24.3-aarch64-linux) google-protobuf (3.24.3-x86_64-linux) hashdiff (1.0.1) diff --git a/gemfiles/ruby_3.0_rack_2.gemfile.lock b/gemfiles/ruby_3.0_rack_2.gemfile.lock index 67e01d8daf8..d6dbefa1330 100644 --- a/gemfiles/ruby_3.0_rack_2.gemfile.lock +++ b/gemfiles/ruby_3.0_rack_2.gemfile.lock @@ -39,8 +39,8 @@ GEM docile (1.4.0) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.24.3-aarch64-linux) google-protobuf (3.24.3-x86_64-linux) hashdiff (1.0.1) diff --git a/gemfiles/ruby_3.0_rack_3.gemfile.lock b/gemfiles/ruby_3.0_rack_3.gemfile.lock index d98b6627e05..b581374a1ab 100644 --- a/gemfiles/ruby_3.0_rack_3.gemfile.lock +++ b/gemfiles/ruby_3.0_rack_3.gemfile.lock @@ -39,8 +39,8 @@ GEM docile (1.4.0) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.24.3-aarch64-linux) google-protobuf (3.24.3-x86_64-linux) hashdiff (1.0.1) diff --git a/gemfiles/ruby_3.0_rack_latest.gemfile.lock b/gemfiles/ruby_3.0_rack_latest.gemfile.lock index b992fbe17b8..deac6ab6011 100644 --- a/gemfiles/ruby_3.0_rack_latest.gemfile.lock +++ b/gemfiles/ruby_3.0_rack_latest.gemfile.lock @@ -42,8 +42,8 @@ GEM docile (1.4.1) dogstatsd-ruby (5.6.2) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.5-aarch64-linux) google-protobuf (3.25.5-x86_64-linux) hashdiff (1.1.1) diff --git a/gemfiles/ruby_3.0_rails61_mysql2.gemfile.lock b/gemfiles/ruby_3.0_rails61_mysql2.gemfile.lock index f488041f4b9..9e1c7f7c337 100644 --- a/gemfiles/ruby_3.0_rails61_mysql2.gemfile.lock +++ b/gemfiles/ruby_3.0_rails61_mysql2.gemfile.lock @@ -102,8 +102,8 @@ GEM dogstatsd-ruby (5.5.0) erubi (1.12.0) extlz4 (0.3.3) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) globalid (1.1.0) activesupport (>= 5.0) google-protobuf (3.22.0) diff --git a/gemfiles/ruby_3.0_rails61_postgres.gemfile.lock b/gemfiles/ruby_3.0_rails61_postgres.gemfile.lock index 03e28dbcef3..f6459c0a737 100644 --- a/gemfiles/ruby_3.0_rails61_postgres.gemfile.lock +++ b/gemfiles/ruby_3.0_rails61_postgres.gemfile.lock @@ -102,8 +102,8 @@ GEM dogstatsd-ruby (5.5.0) erubi (1.12.0) extlz4 (0.3.3) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) globalid (1.1.0) activesupport (>= 5.0) google-protobuf (3.22.0) diff --git a/gemfiles/ruby_3.0_rails61_postgres_redis.gemfile.lock b/gemfiles/ruby_3.0_rails61_postgres_redis.gemfile.lock index 6e5eb77a1da..ec5290fdfc1 100644 --- a/gemfiles/ruby_3.0_rails61_postgres_redis.gemfile.lock +++ b/gemfiles/ruby_3.0_rails61_postgres_redis.gemfile.lock @@ -102,8 +102,8 @@ GEM dogstatsd-ruby (5.5.0) erubi (1.12.0) extlz4 (0.3.3) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) globalid (1.1.0) activesupport (>= 5.0) google-protobuf (3.22.0) diff --git a/gemfiles/ruby_3.0_rails61_postgres_sidekiq.gemfile.lock b/gemfiles/ruby_3.0_rails61_postgres_sidekiq.gemfile.lock index 0d1be196484..4ee1d99d3b2 100644 --- a/gemfiles/ruby_3.0_rails61_postgres_sidekiq.gemfile.lock +++ b/gemfiles/ruby_3.0_rails61_postgres_sidekiq.gemfile.lock @@ -103,8 +103,8 @@ GEM dogstatsd-ruby (5.5.0) erubi (1.12.0) extlz4 (0.3.3) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) globalid (1.1.0) activesupport (>= 5.0) google-protobuf (3.22.0) diff --git a/gemfiles/ruby_3.0_rails61_semantic_logger.gemfile.lock b/gemfiles/ruby_3.0_rails61_semantic_logger.gemfile.lock index 0670f5d955c..6f6de925f44 100644 --- a/gemfiles/ruby_3.0_rails61_semantic_logger.gemfile.lock +++ b/gemfiles/ruby_3.0_rails61_semantic_logger.gemfile.lock @@ -102,8 +102,8 @@ GEM dogstatsd-ruby (5.5.0) erubi (1.12.0) extlz4 (0.3.3) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) globalid (1.1.0) activesupport (>= 5.0) google-protobuf (3.22.0) diff --git a/gemfiles/ruby_3.0_rails61_trilogy.gemfile.lock b/gemfiles/ruby_3.0_rails61_trilogy.gemfile.lock index 112f0729181..d5eefd5c090 100644 --- a/gemfiles/ruby_3.0_rails61_trilogy.gemfile.lock +++ b/gemfiles/ruby_3.0_rails61_trilogy.gemfile.lock @@ -106,8 +106,8 @@ GEM dogstatsd-ruby (5.6.1) erubi (1.12.0) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) globalid (1.2.1) activesupport (>= 6.1) google-protobuf (3.25.1-aarch64-linux) diff --git a/gemfiles/ruby_3.0_rails7.gemfile.lock b/gemfiles/ruby_3.0_rails7.gemfile.lock index d51ad375adc..b9ae253aa93 100644 --- a/gemfiles/ruby_3.0_rails7.gemfile.lock +++ b/gemfiles/ruby_3.0_rails7.gemfile.lock @@ -111,8 +111,8 @@ GEM dogstatsd-ruby (5.6.1) erubi (1.13.0) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) globalid (1.2.1) activesupport (>= 6.1) google-protobuf (3.25.4-aarch64-linux) diff --git a/gemfiles/ruby_3.0_rails71.gemfile.lock b/gemfiles/ruby_3.0_rails71.gemfile.lock index 2b3ca2cdf4d..3852d2183df 100644 --- a/gemfiles/ruby_3.0_rails71.gemfile.lock +++ b/gemfiles/ruby_3.0_rails71.gemfile.lock @@ -123,8 +123,8 @@ GEM drb (2.2.1) erubi (1.13.0) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) globalid (1.2.1) activesupport (>= 6.1) google-protobuf (3.25.4-aarch64-linux) diff --git a/gemfiles/ruby_3.0_redis_3.gemfile.lock b/gemfiles/ruby_3.0_redis_3.gemfile.lock index 3f033353302..081eef7c2c0 100644 --- a/gemfiles/ruby_3.0_redis_3.gemfile.lock +++ b/gemfiles/ruby_3.0_redis_3.gemfile.lock @@ -39,8 +39,8 @@ GEM docile (1.4.0) dogstatsd-ruby (5.5.0) extlz4 (0.3.3) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.22.0) google-protobuf (3.22.0-x86_64-linux) hashdiff (1.0.1) diff --git a/gemfiles/ruby_3.0_redis_4.gemfile.lock b/gemfiles/ruby_3.0_redis_4.gemfile.lock index c53da1b3f76..d4cfaf348bb 100644 --- a/gemfiles/ruby_3.0_redis_4.gemfile.lock +++ b/gemfiles/ruby_3.0_redis_4.gemfile.lock @@ -39,8 +39,8 @@ GEM docile (1.4.0) dogstatsd-ruby (5.5.0) extlz4 (0.3.3) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.22.0) google-protobuf (3.22.0-x86_64-linux) hashdiff (1.0.1) diff --git a/gemfiles/ruby_3.0_redis_5.gemfile.lock b/gemfiles/ruby_3.0_redis_5.gemfile.lock index 98fa43caded..99c7f3e29e2 100644 --- a/gemfiles/ruby_3.0_redis_5.gemfile.lock +++ b/gemfiles/ruby_3.0_redis_5.gemfile.lock @@ -40,8 +40,8 @@ GEM docile (1.4.0) dogstatsd-ruby (5.5.0) extlz4 (0.3.3) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.22.0) google-protobuf (3.22.0-x86_64-linux) hashdiff (1.0.1) diff --git a/gemfiles/ruby_3.0_relational_db.gemfile.lock b/gemfiles/ruby_3.0_relational_db.gemfile.lock index 9e155b687f1..2cf52200506 100644 --- a/gemfiles/ruby_3.0_relational_db.gemfile.lock +++ b/gemfiles/ruby_3.0_relational_db.gemfile.lock @@ -55,8 +55,8 @@ GEM docile (1.4.0) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.24.3-aarch64-linux) google-protobuf (3.24.3-x86_64-linux) hashdiff (1.0.1) diff --git a/gemfiles/ruby_3.0_resque2_redis3.gemfile.lock b/gemfiles/ruby_3.0_resque2_redis3.gemfile.lock index 53ce42c2b4f..d1c3d7feb24 100644 --- a/gemfiles/ruby_3.0_resque2_redis3.gemfile.lock +++ b/gemfiles/ruby_3.0_resque2_redis3.gemfile.lock @@ -39,8 +39,8 @@ GEM docile (1.4.0) dogstatsd-ruby (5.5.0) extlz4 (0.3.3) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.22.0) google-protobuf (3.22.0-x86_64-linux) hashdiff (1.0.1) diff --git a/gemfiles/ruby_3.0_resque2_redis4.gemfile.lock b/gemfiles/ruby_3.0_resque2_redis4.gemfile.lock index a8af46d0c47..b8e075be2bd 100644 --- a/gemfiles/ruby_3.0_resque2_redis4.gemfile.lock +++ b/gemfiles/ruby_3.0_resque2_redis4.gemfile.lock @@ -40,8 +40,8 @@ GEM docile (1.4.0) dogstatsd-ruby (5.5.0) extlz4 (0.3.3) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.22.0) google-protobuf (3.22.0-x86_64-linux) hashdiff (1.0.1) diff --git a/gemfiles/ruby_3.0_sinatra_2.gemfile.lock b/gemfiles/ruby_3.0_sinatra_2.gemfile.lock index 73a63eabcc9..e049561308a 100644 --- a/gemfiles/ruby_3.0_sinatra_2.gemfile.lock +++ b/gemfiles/ruby_3.0_sinatra_2.gemfile.lock @@ -42,8 +42,8 @@ GEM docile (1.4.0) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.3-aarch64-linux) google-protobuf (3.25.3-x86_64-linux) hashdiff (1.1.0) diff --git a/gemfiles/ruby_3.0_sinatra_3.gemfile.lock b/gemfiles/ruby_3.0_sinatra_3.gemfile.lock index cf1ebc9fcde..0e2957b068c 100644 --- a/gemfiles/ruby_3.0_sinatra_3.gemfile.lock +++ b/gemfiles/ruby_3.0_sinatra_3.gemfile.lock @@ -43,8 +43,8 @@ GEM docile (1.4.0) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.3-aarch64-linux) google-protobuf (3.25.3-x86_64-linux) hashdiff (1.1.0) diff --git a/gemfiles/ruby_3.0_sinatra_4.gemfile.lock b/gemfiles/ruby_3.0_sinatra_4.gemfile.lock index 7d4fddd2599..5a52dfed468 100644 --- a/gemfiles/ruby_3.0_sinatra_4.gemfile.lock +++ b/gemfiles/ruby_3.0_sinatra_4.gemfile.lock @@ -43,8 +43,8 @@ GEM docile (1.4.0) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.3-aarch64-linux) google-protobuf (3.25.3-x86_64-linux) hashdiff (1.1.0) diff --git a/gemfiles/ruby_3.0_stripe_10.gemfile.lock b/gemfiles/ruby_3.0_stripe_10.gemfile.lock index cf93b688f26..bc7235679ed 100644 --- a/gemfiles/ruby_3.0_stripe_10.gemfile.lock +++ b/gemfiles/ruby_3.0_stripe_10.gemfile.lock @@ -42,8 +42,8 @@ GEM docile (1.4.1) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.4-aarch64-linux) google-protobuf (3.25.4-x86_64-linux) hashdiff (1.1.1) diff --git a/gemfiles/ruby_3.0_stripe_11.gemfile.lock b/gemfiles/ruby_3.0_stripe_11.gemfile.lock index 4cb28e70b49..c7232281ae3 100644 --- a/gemfiles/ruby_3.0_stripe_11.gemfile.lock +++ b/gemfiles/ruby_3.0_stripe_11.gemfile.lock @@ -42,8 +42,8 @@ GEM docile (1.4.1) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.4-aarch64-linux) google-protobuf (3.25.4-x86_64-linux) hashdiff (1.1.1) diff --git a/gemfiles/ruby_3.0_stripe_12.gemfile.lock b/gemfiles/ruby_3.0_stripe_12.gemfile.lock index 0a5dfb38f09..92b2b8dbb18 100644 --- a/gemfiles/ruby_3.0_stripe_12.gemfile.lock +++ b/gemfiles/ruby_3.0_stripe_12.gemfile.lock @@ -42,8 +42,8 @@ GEM docile (1.4.1) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.4-aarch64-linux) google-protobuf (3.25.4-x86_64-linux) hashdiff (1.1.1) diff --git a/gemfiles/ruby_3.0_stripe_7.gemfile.lock b/gemfiles/ruby_3.0_stripe_7.gemfile.lock index dce2b4064ed..5e3e35e6719 100644 --- a/gemfiles/ruby_3.0_stripe_7.gemfile.lock +++ b/gemfiles/ruby_3.0_stripe_7.gemfile.lock @@ -42,8 +42,8 @@ GEM docile (1.4.1) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.4-aarch64-linux) google-protobuf (3.25.4-x86_64-linux) hashdiff (1.1.1) diff --git a/gemfiles/ruby_3.0_stripe_8.gemfile.lock b/gemfiles/ruby_3.0_stripe_8.gemfile.lock index d932b9484b0..efda1eea060 100644 --- a/gemfiles/ruby_3.0_stripe_8.gemfile.lock +++ b/gemfiles/ruby_3.0_stripe_8.gemfile.lock @@ -42,8 +42,8 @@ GEM docile (1.4.1) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.4-aarch64-linux) google-protobuf (3.25.4-x86_64-linux) hashdiff (1.1.1) diff --git a/gemfiles/ruby_3.0_stripe_9.gemfile.lock b/gemfiles/ruby_3.0_stripe_9.gemfile.lock index 8771e44469b..8e53b2984f7 100644 --- a/gemfiles/ruby_3.0_stripe_9.gemfile.lock +++ b/gemfiles/ruby_3.0_stripe_9.gemfile.lock @@ -42,8 +42,8 @@ GEM docile (1.4.1) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.4-aarch64-linux) google-protobuf (3.25.4-x86_64-linux) hashdiff (1.1.1) diff --git a/gemfiles/ruby_3.0_stripe_latest.gemfile.lock b/gemfiles/ruby_3.0_stripe_latest.gemfile.lock index bd9ce9f0f2e..df6be9fa5b3 100644 --- a/gemfiles/ruby_3.0_stripe_latest.gemfile.lock +++ b/gemfiles/ruby_3.0_stripe_latest.gemfile.lock @@ -42,8 +42,8 @@ GEM docile (1.4.1) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.4-aarch64-linux) google-protobuf (3.25.4-x86_64-linux) hashdiff (1.1.1) diff --git a/gemfiles/ruby_3.0_stripe_min.gemfile.lock b/gemfiles/ruby_3.0_stripe_min.gemfile.lock index bd402f476cc..1247490b300 100644 --- a/gemfiles/ruby_3.0_stripe_min.gemfile.lock +++ b/gemfiles/ruby_3.0_stripe_min.gemfile.lock @@ -42,8 +42,8 @@ GEM docile (1.4.1) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.5-aarch64-linux) google-protobuf (3.25.5-x86_64-linux) hashdiff (1.1.1) diff --git a/gemfiles/ruby_3.1_activesupport.gemfile.lock b/gemfiles/ruby_3.1_activesupport.gemfile.lock index f79e8db5bf0..191a75f7119 100644 --- a/gemfiles/ruby_3.1_activesupport.gemfile.lock +++ b/gemfiles/ruby_3.1_activesupport.gemfile.lock @@ -85,8 +85,8 @@ GEM zeitwerk (~> 2.6) erubi (1.12.0) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.24.3-aarch64-linux) google-protobuf (3.24.3-x86_64-linux) grape (1.8.0) diff --git a/gemfiles/ruby_3.1_aws.gemfile.lock b/gemfiles/ruby_3.1_aws.gemfile.lock index 1074f886e6e..5edee22a147 100644 --- a/gemfiles/ruby_3.1_aws.gemfile.lock +++ b/gemfiles/ruby_3.1_aws.gemfile.lock @@ -1460,8 +1460,8 @@ GEM docile (1.4.0) dogstatsd-ruby (5.6.0) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.24.2-aarch64-linux) google-protobuf (3.24.2-x86_64-linux) hashdiff (1.0.1) diff --git a/gemfiles/ruby_3.1_contrib.gemfile.lock b/gemfiles/ruby_3.1_contrib.gemfile.lock index 5313785d868..1dd185d15c8 100644 --- a/gemfiles/ruby_3.1_contrib.gemfile.lock +++ b/gemfiles/ruby_3.1_contrib.gemfile.lock @@ -46,8 +46,8 @@ GEM docile (1.4.0) dogstatsd-ruby (5.5.0) extlz4 (0.3.3) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.22.0) google-protobuf (3.22.0-x86_64-linux) googleapis-common-protos-types (1.5.0) diff --git a/gemfiles/ruby_3.1_contrib_old.gemfile.lock b/gemfiles/ruby_3.1_contrib_old.gemfile.lock index 2a36f11745e..97bde2e5fa1 100644 --- a/gemfiles/ruby_3.1_contrib_old.gemfile.lock +++ b/gemfiles/ruby_3.1_contrib_old.gemfile.lock @@ -49,8 +49,8 @@ GEM multipart-post (>= 1.2, < 3) faraday_middleware (0.12.2) faraday (>= 0.7.4, < 1.0) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.22.0) google-protobuf (3.22.0-x86_64-linux) hashdiff (1.0.1) diff --git a/gemfiles/ruby_3.1_core_old.gemfile.lock b/gemfiles/ruby_3.1_core_old.gemfile.lock index 742a57d9e16..0ff786680c1 100644 --- a/gemfiles/ruby_3.1_core_old.gemfile.lock +++ b/gemfiles/ruby_3.1_core_old.gemfile.lock @@ -39,8 +39,8 @@ GEM docile (1.4.0) dogstatsd-ruby (4.8.3) extlz4 (0.3.3) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.22.0) google-protobuf (3.22.0-x86_64-linux) hashdiff (1.0.1) diff --git a/gemfiles/ruby_3.1_elasticsearch_7.gemfile.lock b/gemfiles/ruby_3.1_elasticsearch_7.gemfile.lock index c30113156d8..45b2f54dfd2 100644 --- a/gemfiles/ruby_3.1_elasticsearch_7.gemfile.lock +++ b/gemfiles/ruby_3.1_elasticsearch_7.gemfile.lock @@ -56,8 +56,8 @@ GEM logger faraday-net_http (3.4.0) net-http (>= 0.5.0) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.24.4-aarch64-linux) google-protobuf (3.24.4-x86_64-linux) hashdiff (1.0.1) diff --git a/gemfiles/ruby_3.1_elasticsearch_8.gemfile.lock b/gemfiles/ruby_3.1_elasticsearch_8.gemfile.lock index 99690f81464..1bdfcf65424 100644 --- a/gemfiles/ruby_3.1_elasticsearch_8.gemfile.lock +++ b/gemfiles/ruby_3.1_elasticsearch_8.gemfile.lock @@ -54,8 +54,8 @@ GEM logger faraday-net_http (3.4.0) net-http (>= 0.5.0) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.24.4-aarch64-linux) google-protobuf (3.24.4-x86_64-linux) hashdiff (1.0.1) diff --git a/gemfiles/ruby_3.1_elasticsearch_latest.gemfile.lock b/gemfiles/ruby_3.1_elasticsearch_latest.gemfile.lock index 8bf6fb97f7b..1abdfaf326f 100644 --- a/gemfiles/ruby_3.1_elasticsearch_latest.gemfile.lock +++ b/gemfiles/ruby_3.1_elasticsearch_latest.gemfile.lock @@ -56,8 +56,8 @@ GEM logger faraday-net_http (3.4.0) net-http (>= 0.5.0) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.4-aarch64-linux) google-protobuf (3.25.4-x86_64-linux) hashdiff (1.1.1) diff --git a/gemfiles/ruby_3.1_graphql_1.13.gemfile.lock b/gemfiles/ruby_3.1_graphql_1.13.gemfile.lock index d63d86fa68d..3c5e1d1da6b 100644 --- a/gemfiles/ruby_3.1_graphql_1.13.gemfile.lock +++ b/gemfiles/ruby_3.1_graphql_1.13.gemfile.lock @@ -104,8 +104,8 @@ GEM dogstatsd-ruby (5.6.1) erubi (1.13.0) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) globalid (1.2.1) activesupport (>= 6.1) google-protobuf (3.25.2-aarch64-linux) diff --git a/gemfiles/ruby_3.1_graphql_2.0.gemfile.lock b/gemfiles/ruby_3.1_graphql_2.0.gemfile.lock index d6bb8ab28ce..913ec5adec7 100644 --- a/gemfiles/ruby_3.1_graphql_2.0.gemfile.lock +++ b/gemfiles/ruby_3.1_graphql_2.0.gemfile.lock @@ -104,8 +104,8 @@ GEM dogstatsd-ruby (5.6.1) erubi (1.13.0) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) globalid (1.2.1) activesupport (>= 6.1) google-protobuf (3.25.2-aarch64-linux) diff --git a/gemfiles/ruby_3.1_graphql_2.1.gemfile.lock b/gemfiles/ruby_3.1_graphql_2.1.gemfile.lock index a7b22ac00c1..6cd748d7702 100644 --- a/gemfiles/ruby_3.1_graphql_2.1.gemfile.lock +++ b/gemfiles/ruby_3.1_graphql_2.1.gemfile.lock @@ -104,8 +104,8 @@ GEM dogstatsd-ruby (5.6.1) erubi (1.13.0) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) globalid (1.2.1) activesupport (>= 6.1) google-protobuf (3.25.2-aarch64-linux) diff --git a/gemfiles/ruby_3.1_graphql_2.2.gemfile.lock b/gemfiles/ruby_3.1_graphql_2.2.gemfile.lock index 2c72a63deba..3d921af658e 100644 --- a/gemfiles/ruby_3.1_graphql_2.2.gemfile.lock +++ b/gemfiles/ruby_3.1_graphql_2.2.gemfile.lock @@ -104,8 +104,8 @@ GEM dogstatsd-ruby (5.6.1) erubi (1.13.0) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) globalid (1.2.1) activesupport (>= 6.1) google-protobuf (3.25.2-aarch64-linux) diff --git a/gemfiles/ruby_3.1_graphql_2.3.gemfile.lock b/gemfiles/ruby_3.1_graphql_2.3.gemfile.lock index 54d4bcca64b..8dd2bc0d550 100644 --- a/gemfiles/ruby_3.1_graphql_2.3.gemfile.lock +++ b/gemfiles/ruby_3.1_graphql_2.3.gemfile.lock @@ -106,8 +106,8 @@ GEM dogstatsd-ruby (5.6.1) erubi (1.13.0) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) globalid (1.2.1) activesupport (>= 6.1) google-protobuf (3.25.3-aarch64-linux) diff --git a/gemfiles/ruby_3.1_http.gemfile.lock b/gemfiles/ruby_3.1_http.gemfile.lock index 58176d6f9de..d7c983fe9d2 100644 --- a/gemfiles/ruby_3.1_http.gemfile.lock +++ b/gemfiles/ruby_3.1_http.gemfile.lock @@ -48,8 +48,8 @@ GEM faraday-net_http (>= 2.0, < 3.1) ruby2_keywords (>= 0.0.4) faraday-net_http (3.0.2) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) ffi-compiler (1.0.1) ffi (>= 1.0.0) rake diff --git a/gemfiles/ruby_3.1_opensearch_2.gemfile.lock b/gemfiles/ruby_3.1_opensearch_2.gemfile.lock index ee84248d798..b9d36b05e22 100644 --- a/gemfiles/ruby_3.1_opensearch_2.gemfile.lock +++ b/gemfiles/ruby_3.1_opensearch_2.gemfile.lock @@ -46,8 +46,8 @@ GEM logger faraday-net_http (3.4.0) net-http (>= 0.5.0) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.24.4-aarch64-linux) google-protobuf (3.24.4-x86_64-linux) hashdiff (1.0.1) diff --git a/gemfiles/ruby_3.1_opensearch_3.gemfile.lock b/gemfiles/ruby_3.1_opensearch_3.gemfile.lock index b73385f5a00..9dea66650aa 100644 --- a/gemfiles/ruby_3.1_opensearch_3.gemfile.lock +++ b/gemfiles/ruby_3.1_opensearch_3.gemfile.lock @@ -46,8 +46,8 @@ GEM logger faraday-net_http (3.4.0) net-http (>= 0.5.0) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.24.4-aarch64-linux) google-protobuf (3.24.4-x86_64-linux) hashdiff (1.0.1) diff --git a/gemfiles/ruby_3.1_opensearch_latest.gemfile.lock b/gemfiles/ruby_3.1_opensearch_latest.gemfile.lock index e8582b89645..9a1e1aff6ce 100644 --- a/gemfiles/ruby_3.1_opensearch_latest.gemfile.lock +++ b/gemfiles/ruby_3.1_opensearch_latest.gemfile.lock @@ -48,8 +48,8 @@ GEM logger faraday-net_http (3.4.0) net-http (>= 0.5.0) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.4-aarch64-linux) google-protobuf (3.25.4-x86_64-linux) hashdiff (1.1.1) diff --git a/gemfiles/ruby_3.1_opentelemetry.gemfile.lock b/gemfiles/ruby_3.1_opentelemetry.gemfile.lock index f4b5b5ba7d3..ed619123a9e 100644 --- a/gemfiles/ruby_3.1_opentelemetry.gemfile.lock +++ b/gemfiles/ruby_3.1_opentelemetry.gemfile.lock @@ -39,9 +39,9 @@ GEM docile (1.4.0) dogstatsd-ruby (5.5.0) extlz4 (0.3.3) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-darwin) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-darwin) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.22.0) google-protobuf (3.22.0-x86_64-darwin) google-protobuf (3.22.0-x86_64-linux) diff --git a/gemfiles/ruby_3.1_opentelemetry_otlp.gemfile.lock b/gemfiles/ruby_3.1_opentelemetry_otlp.gemfile.lock index 79a81af1a3e..d2e69ae4989 100644 --- a/gemfiles/ruby_3.1_opentelemetry_otlp.gemfile.lock +++ b/gemfiles/ruby_3.1_opentelemetry_otlp.gemfile.lock @@ -42,8 +42,8 @@ GEM docile (1.4.0) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.3-aarch64-linux) google-protobuf (3.25.3-x86_64-linux) googleapis-common-protos-types (1.13.0) diff --git a/gemfiles/ruby_3.1_rack_1.gemfile.lock b/gemfiles/ruby_3.1_rack_1.gemfile.lock index 43424cb158b..22dcb1e6d84 100644 --- a/gemfiles/ruby_3.1_rack_1.gemfile.lock +++ b/gemfiles/ruby_3.1_rack_1.gemfile.lock @@ -39,8 +39,8 @@ GEM docile (1.4.0) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.24.3-aarch64-linux) google-protobuf (3.24.3-x86_64-linux) hashdiff (1.0.1) diff --git a/gemfiles/ruby_3.1_rack_2.gemfile.lock b/gemfiles/ruby_3.1_rack_2.gemfile.lock index 67e01d8daf8..d6dbefa1330 100644 --- a/gemfiles/ruby_3.1_rack_2.gemfile.lock +++ b/gemfiles/ruby_3.1_rack_2.gemfile.lock @@ -39,8 +39,8 @@ GEM docile (1.4.0) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.24.3-aarch64-linux) google-protobuf (3.24.3-x86_64-linux) hashdiff (1.0.1) diff --git a/gemfiles/ruby_3.1_rack_3.gemfile.lock b/gemfiles/ruby_3.1_rack_3.gemfile.lock index d98b6627e05..b581374a1ab 100644 --- a/gemfiles/ruby_3.1_rack_3.gemfile.lock +++ b/gemfiles/ruby_3.1_rack_3.gemfile.lock @@ -39,8 +39,8 @@ GEM docile (1.4.0) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.24.3-aarch64-linux) google-protobuf (3.24.3-x86_64-linux) hashdiff (1.0.1) diff --git a/gemfiles/ruby_3.1_rack_latest.gemfile.lock b/gemfiles/ruby_3.1_rack_latest.gemfile.lock index b992fbe17b8..deac6ab6011 100644 --- a/gemfiles/ruby_3.1_rack_latest.gemfile.lock +++ b/gemfiles/ruby_3.1_rack_latest.gemfile.lock @@ -42,8 +42,8 @@ GEM docile (1.4.1) dogstatsd-ruby (5.6.2) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.5-aarch64-linux) google-protobuf (3.25.5-x86_64-linux) hashdiff (1.1.1) diff --git a/gemfiles/ruby_3.1_rails61_mysql2.gemfile.lock b/gemfiles/ruby_3.1_rails61_mysql2.gemfile.lock index f488041f4b9..9e1c7f7c337 100644 --- a/gemfiles/ruby_3.1_rails61_mysql2.gemfile.lock +++ b/gemfiles/ruby_3.1_rails61_mysql2.gemfile.lock @@ -102,8 +102,8 @@ GEM dogstatsd-ruby (5.5.0) erubi (1.12.0) extlz4 (0.3.3) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) globalid (1.1.0) activesupport (>= 5.0) google-protobuf (3.22.0) diff --git a/gemfiles/ruby_3.1_rails61_postgres.gemfile.lock b/gemfiles/ruby_3.1_rails61_postgres.gemfile.lock index 03e28dbcef3..f6459c0a737 100644 --- a/gemfiles/ruby_3.1_rails61_postgres.gemfile.lock +++ b/gemfiles/ruby_3.1_rails61_postgres.gemfile.lock @@ -102,8 +102,8 @@ GEM dogstatsd-ruby (5.5.0) erubi (1.12.0) extlz4 (0.3.3) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) globalid (1.1.0) activesupport (>= 5.0) google-protobuf (3.22.0) diff --git a/gemfiles/ruby_3.1_rails61_postgres_redis.gemfile.lock b/gemfiles/ruby_3.1_rails61_postgres_redis.gemfile.lock index 6e5eb77a1da..ec5290fdfc1 100644 --- a/gemfiles/ruby_3.1_rails61_postgres_redis.gemfile.lock +++ b/gemfiles/ruby_3.1_rails61_postgres_redis.gemfile.lock @@ -102,8 +102,8 @@ GEM dogstatsd-ruby (5.5.0) erubi (1.12.0) extlz4 (0.3.3) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) globalid (1.1.0) activesupport (>= 5.0) google-protobuf (3.22.0) diff --git a/gemfiles/ruby_3.1_rails61_postgres_sidekiq.gemfile.lock b/gemfiles/ruby_3.1_rails61_postgres_sidekiq.gemfile.lock index 0d1be196484..4ee1d99d3b2 100644 --- a/gemfiles/ruby_3.1_rails61_postgres_sidekiq.gemfile.lock +++ b/gemfiles/ruby_3.1_rails61_postgres_sidekiq.gemfile.lock @@ -103,8 +103,8 @@ GEM dogstatsd-ruby (5.5.0) erubi (1.12.0) extlz4 (0.3.3) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) globalid (1.1.0) activesupport (>= 5.0) google-protobuf (3.22.0) diff --git a/gemfiles/ruby_3.1_rails61_semantic_logger.gemfile.lock b/gemfiles/ruby_3.1_rails61_semantic_logger.gemfile.lock index 0670f5d955c..6f6de925f44 100644 --- a/gemfiles/ruby_3.1_rails61_semantic_logger.gemfile.lock +++ b/gemfiles/ruby_3.1_rails61_semantic_logger.gemfile.lock @@ -102,8 +102,8 @@ GEM dogstatsd-ruby (5.5.0) erubi (1.12.0) extlz4 (0.3.3) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) globalid (1.1.0) activesupport (>= 5.0) google-protobuf (3.22.0) diff --git a/gemfiles/ruby_3.1_rails61_trilogy.gemfile.lock b/gemfiles/ruby_3.1_rails61_trilogy.gemfile.lock index 112f0729181..d5eefd5c090 100644 --- a/gemfiles/ruby_3.1_rails61_trilogy.gemfile.lock +++ b/gemfiles/ruby_3.1_rails61_trilogy.gemfile.lock @@ -106,8 +106,8 @@ GEM dogstatsd-ruby (5.6.1) erubi (1.12.0) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) globalid (1.2.1) activesupport (>= 6.1) google-protobuf (3.25.1-aarch64-linux) diff --git a/gemfiles/ruby_3.1_rails7.gemfile.lock b/gemfiles/ruby_3.1_rails7.gemfile.lock index d51ad375adc..b9ae253aa93 100644 --- a/gemfiles/ruby_3.1_rails7.gemfile.lock +++ b/gemfiles/ruby_3.1_rails7.gemfile.lock @@ -111,8 +111,8 @@ GEM dogstatsd-ruby (5.6.1) erubi (1.13.0) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) globalid (1.2.1) activesupport (>= 6.1) google-protobuf (3.25.4-aarch64-linux) diff --git a/gemfiles/ruby_3.1_rails71.gemfile.lock b/gemfiles/ruby_3.1_rails71.gemfile.lock index 2b3ca2cdf4d..3852d2183df 100644 --- a/gemfiles/ruby_3.1_rails71.gemfile.lock +++ b/gemfiles/ruby_3.1_rails71.gemfile.lock @@ -123,8 +123,8 @@ GEM drb (2.2.1) erubi (1.13.0) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) globalid (1.2.1) activesupport (>= 6.1) google-protobuf (3.25.4-aarch64-linux) diff --git a/gemfiles/ruby_3.1_redis_3.gemfile.lock b/gemfiles/ruby_3.1_redis_3.gemfile.lock index 3f033353302..081eef7c2c0 100644 --- a/gemfiles/ruby_3.1_redis_3.gemfile.lock +++ b/gemfiles/ruby_3.1_redis_3.gemfile.lock @@ -39,8 +39,8 @@ GEM docile (1.4.0) dogstatsd-ruby (5.5.0) extlz4 (0.3.3) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.22.0) google-protobuf (3.22.0-x86_64-linux) hashdiff (1.0.1) diff --git a/gemfiles/ruby_3.1_redis_4.gemfile.lock b/gemfiles/ruby_3.1_redis_4.gemfile.lock index c53da1b3f76..d4cfaf348bb 100644 --- a/gemfiles/ruby_3.1_redis_4.gemfile.lock +++ b/gemfiles/ruby_3.1_redis_4.gemfile.lock @@ -39,8 +39,8 @@ GEM docile (1.4.0) dogstatsd-ruby (5.5.0) extlz4 (0.3.3) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.22.0) google-protobuf (3.22.0-x86_64-linux) hashdiff (1.0.1) diff --git a/gemfiles/ruby_3.1_redis_5.gemfile.lock b/gemfiles/ruby_3.1_redis_5.gemfile.lock index 98fa43caded..99c7f3e29e2 100644 --- a/gemfiles/ruby_3.1_redis_5.gemfile.lock +++ b/gemfiles/ruby_3.1_redis_5.gemfile.lock @@ -40,8 +40,8 @@ GEM docile (1.4.0) dogstatsd-ruby (5.5.0) extlz4 (0.3.3) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.22.0) google-protobuf (3.22.0-x86_64-linux) hashdiff (1.0.1) diff --git a/gemfiles/ruby_3.1_relational_db.gemfile.lock b/gemfiles/ruby_3.1_relational_db.gemfile.lock index 9e155b687f1..2cf52200506 100644 --- a/gemfiles/ruby_3.1_relational_db.gemfile.lock +++ b/gemfiles/ruby_3.1_relational_db.gemfile.lock @@ -55,8 +55,8 @@ GEM docile (1.4.0) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.24.3-aarch64-linux) google-protobuf (3.24.3-x86_64-linux) hashdiff (1.0.1) diff --git a/gemfiles/ruby_3.1_resque2_redis3.gemfile.lock b/gemfiles/ruby_3.1_resque2_redis3.gemfile.lock index 53ce42c2b4f..d1c3d7feb24 100644 --- a/gemfiles/ruby_3.1_resque2_redis3.gemfile.lock +++ b/gemfiles/ruby_3.1_resque2_redis3.gemfile.lock @@ -39,8 +39,8 @@ GEM docile (1.4.0) dogstatsd-ruby (5.5.0) extlz4 (0.3.3) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.22.0) google-protobuf (3.22.0-x86_64-linux) hashdiff (1.0.1) diff --git a/gemfiles/ruby_3.1_resque2_redis4.gemfile.lock b/gemfiles/ruby_3.1_resque2_redis4.gemfile.lock index a8af46d0c47..b8e075be2bd 100644 --- a/gemfiles/ruby_3.1_resque2_redis4.gemfile.lock +++ b/gemfiles/ruby_3.1_resque2_redis4.gemfile.lock @@ -40,8 +40,8 @@ GEM docile (1.4.0) dogstatsd-ruby (5.5.0) extlz4 (0.3.3) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.22.0) google-protobuf (3.22.0-x86_64-linux) hashdiff (1.0.1) diff --git a/gemfiles/ruby_3.1_sinatra_2.gemfile.lock b/gemfiles/ruby_3.1_sinatra_2.gemfile.lock index 73a63eabcc9..e049561308a 100644 --- a/gemfiles/ruby_3.1_sinatra_2.gemfile.lock +++ b/gemfiles/ruby_3.1_sinatra_2.gemfile.lock @@ -42,8 +42,8 @@ GEM docile (1.4.0) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.3-aarch64-linux) google-protobuf (3.25.3-x86_64-linux) hashdiff (1.1.0) diff --git a/gemfiles/ruby_3.1_sinatra_3.gemfile.lock b/gemfiles/ruby_3.1_sinatra_3.gemfile.lock index cf1ebc9fcde..0e2957b068c 100644 --- a/gemfiles/ruby_3.1_sinatra_3.gemfile.lock +++ b/gemfiles/ruby_3.1_sinatra_3.gemfile.lock @@ -43,8 +43,8 @@ GEM docile (1.4.0) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.3-aarch64-linux) google-protobuf (3.25.3-x86_64-linux) hashdiff (1.1.0) diff --git a/gemfiles/ruby_3.1_sinatra_4.gemfile.lock b/gemfiles/ruby_3.1_sinatra_4.gemfile.lock index 7d4fddd2599..5a52dfed468 100644 --- a/gemfiles/ruby_3.1_sinatra_4.gemfile.lock +++ b/gemfiles/ruby_3.1_sinatra_4.gemfile.lock @@ -43,8 +43,8 @@ GEM docile (1.4.0) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.3-aarch64-linux) google-protobuf (3.25.3-x86_64-linux) hashdiff (1.1.0) diff --git a/gemfiles/ruby_3.1_stripe_10.gemfile.lock b/gemfiles/ruby_3.1_stripe_10.gemfile.lock index cf93b688f26..bc7235679ed 100644 --- a/gemfiles/ruby_3.1_stripe_10.gemfile.lock +++ b/gemfiles/ruby_3.1_stripe_10.gemfile.lock @@ -42,8 +42,8 @@ GEM docile (1.4.1) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.4-aarch64-linux) google-protobuf (3.25.4-x86_64-linux) hashdiff (1.1.1) diff --git a/gemfiles/ruby_3.1_stripe_11.gemfile.lock b/gemfiles/ruby_3.1_stripe_11.gemfile.lock index 4cb28e70b49..c7232281ae3 100644 --- a/gemfiles/ruby_3.1_stripe_11.gemfile.lock +++ b/gemfiles/ruby_3.1_stripe_11.gemfile.lock @@ -42,8 +42,8 @@ GEM docile (1.4.1) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.4-aarch64-linux) google-protobuf (3.25.4-x86_64-linux) hashdiff (1.1.1) diff --git a/gemfiles/ruby_3.1_stripe_12.gemfile.lock b/gemfiles/ruby_3.1_stripe_12.gemfile.lock index 0a5dfb38f09..92b2b8dbb18 100644 --- a/gemfiles/ruby_3.1_stripe_12.gemfile.lock +++ b/gemfiles/ruby_3.1_stripe_12.gemfile.lock @@ -42,8 +42,8 @@ GEM docile (1.4.1) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.4-aarch64-linux) google-protobuf (3.25.4-x86_64-linux) hashdiff (1.1.1) diff --git a/gemfiles/ruby_3.1_stripe_7.gemfile.lock b/gemfiles/ruby_3.1_stripe_7.gemfile.lock index dce2b4064ed..5e3e35e6719 100644 --- a/gemfiles/ruby_3.1_stripe_7.gemfile.lock +++ b/gemfiles/ruby_3.1_stripe_7.gemfile.lock @@ -42,8 +42,8 @@ GEM docile (1.4.1) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.4-aarch64-linux) google-protobuf (3.25.4-x86_64-linux) hashdiff (1.1.1) diff --git a/gemfiles/ruby_3.1_stripe_8.gemfile.lock b/gemfiles/ruby_3.1_stripe_8.gemfile.lock index d932b9484b0..efda1eea060 100644 --- a/gemfiles/ruby_3.1_stripe_8.gemfile.lock +++ b/gemfiles/ruby_3.1_stripe_8.gemfile.lock @@ -42,8 +42,8 @@ GEM docile (1.4.1) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.4-aarch64-linux) google-protobuf (3.25.4-x86_64-linux) hashdiff (1.1.1) diff --git a/gemfiles/ruby_3.1_stripe_9.gemfile.lock b/gemfiles/ruby_3.1_stripe_9.gemfile.lock index 8771e44469b..8e53b2984f7 100644 --- a/gemfiles/ruby_3.1_stripe_9.gemfile.lock +++ b/gemfiles/ruby_3.1_stripe_9.gemfile.lock @@ -42,8 +42,8 @@ GEM docile (1.4.1) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.4-aarch64-linux) google-protobuf (3.25.4-x86_64-linux) hashdiff (1.1.1) diff --git a/gemfiles/ruby_3.1_stripe_latest.gemfile.lock b/gemfiles/ruby_3.1_stripe_latest.gemfile.lock index bd9ce9f0f2e..df6be9fa5b3 100644 --- a/gemfiles/ruby_3.1_stripe_latest.gemfile.lock +++ b/gemfiles/ruby_3.1_stripe_latest.gemfile.lock @@ -42,8 +42,8 @@ GEM docile (1.4.1) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.4-aarch64-linux) google-protobuf (3.25.4-x86_64-linux) hashdiff (1.1.1) diff --git a/gemfiles/ruby_3.1_stripe_min.gemfile.lock b/gemfiles/ruby_3.1_stripe_min.gemfile.lock index bd402f476cc..1247490b300 100644 --- a/gemfiles/ruby_3.1_stripe_min.gemfile.lock +++ b/gemfiles/ruby_3.1_stripe_min.gemfile.lock @@ -42,8 +42,8 @@ GEM docile (1.4.1) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.5-aarch64-linux) google-protobuf (3.25.5-x86_64-linux) hashdiff (1.1.1) diff --git a/gemfiles/ruby_3.2_activesupport.gemfile.lock b/gemfiles/ruby_3.2_activesupport.gemfile.lock index c8708b42387..2628e1f3598 100644 --- a/gemfiles/ruby_3.2_activesupport.gemfile.lock +++ b/gemfiles/ruby_3.2_activesupport.gemfile.lock @@ -84,8 +84,8 @@ GEM zeitwerk (~> 2.6) erubi (1.12.0) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.24.3-aarch64-linux) google-protobuf (3.24.3-x86_64-linux) grape (1.8.0) diff --git a/gemfiles/ruby_3.2_aws.gemfile.lock b/gemfiles/ruby_3.2_aws.gemfile.lock index d11a4e10919..ae722a6ffc8 100644 --- a/gemfiles/ruby_3.2_aws.gemfile.lock +++ b/gemfiles/ruby_3.2_aws.gemfile.lock @@ -1459,8 +1459,8 @@ GEM docile (1.4.0) dogstatsd-ruby (5.6.0) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.24.2-aarch64-linux) google-protobuf (3.24.2-x86_64-linux) hashdiff (1.0.1) diff --git a/gemfiles/ruby_3.2_contrib.gemfile.lock b/gemfiles/ruby_3.2_contrib.gemfile.lock index 089477925ba..ae02736c469 100644 --- a/gemfiles/ruby_3.2_contrib.gemfile.lock +++ b/gemfiles/ruby_3.2_contrib.gemfile.lock @@ -45,8 +45,8 @@ GEM docile (1.4.0) dogstatsd-ruby (5.5.0) extlz4 (0.3.3) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.22.0) google-protobuf (3.22.0-x86_64-linux) googleapis-common-protos-types (1.5.0) diff --git a/gemfiles/ruby_3.2_contrib_old.gemfile.lock b/gemfiles/ruby_3.2_contrib_old.gemfile.lock index 4e8c631330d..19c0f0b67f6 100644 --- a/gemfiles/ruby_3.2_contrib_old.gemfile.lock +++ b/gemfiles/ruby_3.2_contrib_old.gemfile.lock @@ -48,8 +48,8 @@ GEM multipart-post (>= 1.2, < 3) faraday_middleware (0.12.2) faraday (>= 0.7.4, < 1.0) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.22.0) google-protobuf (3.22.0-x86_64-linux) hashdiff (1.0.1) diff --git a/gemfiles/ruby_3.2_core_old.gemfile.lock b/gemfiles/ruby_3.2_core_old.gemfile.lock index f9b7bfdacf8..800e4187220 100644 --- a/gemfiles/ruby_3.2_core_old.gemfile.lock +++ b/gemfiles/ruby_3.2_core_old.gemfile.lock @@ -38,8 +38,8 @@ GEM docile (1.4.0) dogstatsd-ruby (4.8.3) extlz4 (0.3.3) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.22.0) google-protobuf (3.22.0-x86_64-linux) hashdiff (1.0.1) diff --git a/gemfiles/ruby_3.2_elasticsearch_7.gemfile.lock b/gemfiles/ruby_3.2_elasticsearch_7.gemfile.lock index a001fb09347..f3c1274a16c 100644 --- a/gemfiles/ruby_3.2_elasticsearch_7.gemfile.lock +++ b/gemfiles/ruby_3.2_elasticsearch_7.gemfile.lock @@ -55,8 +55,8 @@ GEM logger faraday-net_http (3.4.0) net-http (>= 0.5.0) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.24.4-aarch64-linux) google-protobuf (3.24.4-x86_64-linux) hashdiff (1.0.1) diff --git a/gemfiles/ruby_3.2_elasticsearch_8.gemfile.lock b/gemfiles/ruby_3.2_elasticsearch_8.gemfile.lock index 9c75f510fce..0209d29bbf6 100644 --- a/gemfiles/ruby_3.2_elasticsearch_8.gemfile.lock +++ b/gemfiles/ruby_3.2_elasticsearch_8.gemfile.lock @@ -53,8 +53,8 @@ GEM logger faraday-net_http (3.4.0) net-http (>= 0.5.0) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.24.4-aarch64-linux) google-protobuf (3.24.4-x86_64-linux) hashdiff (1.0.1) diff --git a/gemfiles/ruby_3.2_elasticsearch_latest.gemfile.lock b/gemfiles/ruby_3.2_elasticsearch_latest.gemfile.lock index cf64d7f6180..defd85770ee 100644 --- a/gemfiles/ruby_3.2_elasticsearch_latest.gemfile.lock +++ b/gemfiles/ruby_3.2_elasticsearch_latest.gemfile.lock @@ -55,8 +55,8 @@ GEM logger faraday-net_http (3.4.0) net-http (>= 0.5.0) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.4-aarch64-linux) google-protobuf (3.25.4-x86_64-linux) hashdiff (1.1.1) diff --git a/gemfiles/ruby_3.2_graphql_1.13.gemfile.lock b/gemfiles/ruby_3.2_graphql_1.13.gemfile.lock index 072f28ea3b7..7a895ea34a2 100644 --- a/gemfiles/ruby_3.2_graphql_1.13.gemfile.lock +++ b/gemfiles/ruby_3.2_graphql_1.13.gemfile.lock @@ -102,8 +102,8 @@ GEM dogstatsd-ruby (5.6.1) erubi (1.12.0) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) globalid (1.2.1) activesupport (>= 6.1) google-protobuf (3.25.2-aarch64-linux) diff --git a/gemfiles/ruby_3.2_graphql_2.0.gemfile.lock b/gemfiles/ruby_3.2_graphql_2.0.gemfile.lock index bde3a7df378..2f8cf94af30 100644 --- a/gemfiles/ruby_3.2_graphql_2.0.gemfile.lock +++ b/gemfiles/ruby_3.2_graphql_2.0.gemfile.lock @@ -102,8 +102,8 @@ GEM dogstatsd-ruby (5.6.1) erubi (1.12.0) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) globalid (1.2.1) activesupport (>= 6.1) google-protobuf (3.25.2-aarch64-linux) diff --git a/gemfiles/ruby_3.2_graphql_2.1.gemfile.lock b/gemfiles/ruby_3.2_graphql_2.1.gemfile.lock index 0d9f9a33817..4287e36bf5c 100644 --- a/gemfiles/ruby_3.2_graphql_2.1.gemfile.lock +++ b/gemfiles/ruby_3.2_graphql_2.1.gemfile.lock @@ -102,8 +102,8 @@ GEM dogstatsd-ruby (5.6.1) erubi (1.12.0) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) globalid (1.2.1) activesupport (>= 6.1) google-protobuf (3.25.2-aarch64-linux) diff --git a/gemfiles/ruby_3.2_graphql_2.2.gemfile.lock b/gemfiles/ruby_3.2_graphql_2.2.gemfile.lock index 609cf1a3704..2e5fe435e13 100644 --- a/gemfiles/ruby_3.2_graphql_2.2.gemfile.lock +++ b/gemfiles/ruby_3.2_graphql_2.2.gemfile.lock @@ -102,8 +102,8 @@ GEM dogstatsd-ruby (5.6.1) erubi (1.12.0) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) globalid (1.2.1) activesupport (>= 6.1) google-protobuf (3.25.2-aarch64-linux) diff --git a/gemfiles/ruby_3.2_graphql_2.3.gemfile.lock b/gemfiles/ruby_3.2_graphql_2.3.gemfile.lock index 1af7a475fc2..0421c5b4c26 100644 --- a/gemfiles/ruby_3.2_graphql_2.3.gemfile.lock +++ b/gemfiles/ruby_3.2_graphql_2.3.gemfile.lock @@ -105,8 +105,8 @@ GEM dogstatsd-ruby (5.6.1) erubi (1.13.0) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) globalid (1.2.1) activesupport (>= 6.1) google-protobuf (3.25.3-aarch64-linux) diff --git a/gemfiles/ruby_3.2_http.gemfile.lock b/gemfiles/ruby_3.2_http.gemfile.lock index d475f2605a9..ec616d7abb3 100644 --- a/gemfiles/ruby_3.2_http.gemfile.lock +++ b/gemfiles/ruby_3.2_http.gemfile.lock @@ -47,8 +47,8 @@ GEM faraday-net_http (>= 2.0, < 3.1) ruby2_keywords (>= 0.0.4) faraday-net_http (3.0.2) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) ffi-compiler (1.0.1) ffi (>= 1.0.0) rake diff --git a/gemfiles/ruby_3.2_opensearch_2.gemfile.lock b/gemfiles/ruby_3.2_opensearch_2.gemfile.lock index d7d755b15a2..35ce702fdfa 100644 --- a/gemfiles/ruby_3.2_opensearch_2.gemfile.lock +++ b/gemfiles/ruby_3.2_opensearch_2.gemfile.lock @@ -45,8 +45,8 @@ GEM logger faraday-net_http (3.4.0) net-http (>= 0.5.0) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.24.4-aarch64-linux) google-protobuf (3.24.4-x86_64-linux) hashdiff (1.0.1) diff --git a/gemfiles/ruby_3.2_opensearch_3.gemfile.lock b/gemfiles/ruby_3.2_opensearch_3.gemfile.lock index 9eb57c54a8c..4f22b25651a 100644 --- a/gemfiles/ruby_3.2_opensearch_3.gemfile.lock +++ b/gemfiles/ruby_3.2_opensearch_3.gemfile.lock @@ -45,8 +45,8 @@ GEM logger faraday-net_http (3.4.0) net-http (>= 0.5.0) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.24.4-aarch64-linux) google-protobuf (3.24.4-x86_64-linux) hashdiff (1.0.1) diff --git a/gemfiles/ruby_3.2_opensearch_latest.gemfile.lock b/gemfiles/ruby_3.2_opensearch_latest.gemfile.lock index d2bb8cf8d5f..2b33fd8f8f7 100644 --- a/gemfiles/ruby_3.2_opensearch_latest.gemfile.lock +++ b/gemfiles/ruby_3.2_opensearch_latest.gemfile.lock @@ -47,8 +47,8 @@ GEM logger faraday-net_http (3.4.0) net-http (>= 0.5.0) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.4-aarch64-linux) google-protobuf (3.25.4-x86_64-linux) hashdiff (1.1.1) diff --git a/gemfiles/ruby_3.2_opentelemetry.gemfile.lock b/gemfiles/ruby_3.2_opentelemetry.gemfile.lock index 3389026486e..a4821bd70cd 100644 --- a/gemfiles/ruby_3.2_opentelemetry.gemfile.lock +++ b/gemfiles/ruby_3.2_opentelemetry.gemfile.lock @@ -38,8 +38,8 @@ GEM docile (1.4.0) dogstatsd-ruby (5.5.0) extlz4 (0.3.3) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.22.0) google-protobuf (3.22.0-x86_64-linux) hashdiff (1.0.1) diff --git a/gemfiles/ruby_3.2_opentelemetry_otlp.gemfile.lock b/gemfiles/ruby_3.2_opentelemetry_otlp.gemfile.lock index be128eb20d2..43dbc52fe9a 100644 --- a/gemfiles/ruby_3.2_opentelemetry_otlp.gemfile.lock +++ b/gemfiles/ruby_3.2_opentelemetry_otlp.gemfile.lock @@ -41,8 +41,8 @@ GEM docile (1.4.0) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.3-aarch64-linux) google-protobuf (3.25.3-x86_64-linux) googleapis-common-protos-types (1.13.0) diff --git a/gemfiles/ruby_3.2_rack_1.gemfile.lock b/gemfiles/ruby_3.2_rack_1.gemfile.lock index 9d404eb3457..bb12af61a5e 100644 --- a/gemfiles/ruby_3.2_rack_1.gemfile.lock +++ b/gemfiles/ruby_3.2_rack_1.gemfile.lock @@ -38,8 +38,8 @@ GEM docile (1.4.0) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.24.3-aarch64-linux) google-protobuf (3.24.3-x86_64-linux) hashdiff (1.0.1) diff --git a/gemfiles/ruby_3.2_rack_2.gemfile.lock b/gemfiles/ruby_3.2_rack_2.gemfile.lock index b4bd478e79a..e77065b8140 100644 --- a/gemfiles/ruby_3.2_rack_2.gemfile.lock +++ b/gemfiles/ruby_3.2_rack_2.gemfile.lock @@ -38,8 +38,8 @@ GEM docile (1.4.0) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.24.3-aarch64-linux) google-protobuf (3.24.3-x86_64-linux) hashdiff (1.0.1) diff --git a/gemfiles/ruby_3.2_rack_3.gemfile.lock b/gemfiles/ruby_3.2_rack_3.gemfile.lock index fa018713386..801ff399a4e 100644 --- a/gemfiles/ruby_3.2_rack_3.gemfile.lock +++ b/gemfiles/ruby_3.2_rack_3.gemfile.lock @@ -38,8 +38,8 @@ GEM docile (1.4.0) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.24.3-aarch64-linux) google-protobuf (3.24.3-x86_64-linux) hashdiff (1.0.1) diff --git a/gemfiles/ruby_3.2_rack_latest.gemfile.lock b/gemfiles/ruby_3.2_rack_latest.gemfile.lock index 481b4fd483b..22ebed57cbe 100644 --- a/gemfiles/ruby_3.2_rack_latest.gemfile.lock +++ b/gemfiles/ruby_3.2_rack_latest.gemfile.lock @@ -41,8 +41,8 @@ GEM docile (1.4.1) dogstatsd-ruby (5.6.2) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.5-aarch64-linux) google-protobuf (3.25.5-x86_64-linux) hashdiff (1.1.1) diff --git a/gemfiles/ruby_3.2_rails61_mysql2.gemfile.lock b/gemfiles/ruby_3.2_rails61_mysql2.gemfile.lock index 1e11a38a41c..9ac6c871a88 100644 --- a/gemfiles/ruby_3.2_rails61_mysql2.gemfile.lock +++ b/gemfiles/ruby_3.2_rails61_mysql2.gemfile.lock @@ -101,8 +101,8 @@ GEM dogstatsd-ruby (5.5.0) erubi (1.12.0) extlz4 (0.3.3) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) globalid (1.1.0) activesupport (>= 5.0) google-protobuf (3.22.0) diff --git a/gemfiles/ruby_3.2_rails61_postgres.gemfile.lock b/gemfiles/ruby_3.2_rails61_postgres.gemfile.lock index 7b5c0017fe9..162bc9c3593 100644 --- a/gemfiles/ruby_3.2_rails61_postgres.gemfile.lock +++ b/gemfiles/ruby_3.2_rails61_postgres.gemfile.lock @@ -101,8 +101,8 @@ GEM dogstatsd-ruby (5.5.0) erubi (1.12.0) extlz4 (0.3.3) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) globalid (1.1.0) activesupport (>= 5.0) google-protobuf (3.22.0) diff --git a/gemfiles/ruby_3.2_rails61_postgres_redis.gemfile.lock b/gemfiles/ruby_3.2_rails61_postgres_redis.gemfile.lock index 8cdea59f519..3af72b7fab4 100644 --- a/gemfiles/ruby_3.2_rails61_postgres_redis.gemfile.lock +++ b/gemfiles/ruby_3.2_rails61_postgres_redis.gemfile.lock @@ -101,8 +101,8 @@ GEM dogstatsd-ruby (5.5.0) erubi (1.12.0) extlz4 (0.3.3) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) globalid (1.1.0) activesupport (>= 5.0) google-protobuf (3.22.0) diff --git a/gemfiles/ruby_3.2_rails61_postgres_sidekiq.gemfile.lock b/gemfiles/ruby_3.2_rails61_postgres_sidekiq.gemfile.lock index bc338cc7186..3d0e51d7846 100644 --- a/gemfiles/ruby_3.2_rails61_postgres_sidekiq.gemfile.lock +++ b/gemfiles/ruby_3.2_rails61_postgres_sidekiq.gemfile.lock @@ -102,8 +102,8 @@ GEM dogstatsd-ruby (5.5.0) erubi (1.12.0) extlz4 (0.3.3) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) globalid (1.1.0) activesupport (>= 5.0) google-protobuf (3.22.0) diff --git a/gemfiles/ruby_3.2_rails61_semantic_logger.gemfile.lock b/gemfiles/ruby_3.2_rails61_semantic_logger.gemfile.lock index d84e4883104..a010a04923b 100644 --- a/gemfiles/ruby_3.2_rails61_semantic_logger.gemfile.lock +++ b/gemfiles/ruby_3.2_rails61_semantic_logger.gemfile.lock @@ -101,8 +101,8 @@ GEM dogstatsd-ruby (5.5.0) erubi (1.12.0) extlz4 (0.3.3) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) globalid (1.1.0) activesupport (>= 5.0) google-protobuf (3.22.0) diff --git a/gemfiles/ruby_3.2_rails61_trilogy.gemfile.lock b/gemfiles/ruby_3.2_rails61_trilogy.gemfile.lock index 3ea30f5304a..2256e718ac2 100644 --- a/gemfiles/ruby_3.2_rails61_trilogy.gemfile.lock +++ b/gemfiles/ruby_3.2_rails61_trilogy.gemfile.lock @@ -105,8 +105,8 @@ GEM dogstatsd-ruby (5.6.1) erubi (1.12.0) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) globalid (1.2.1) activesupport (>= 6.1) google-protobuf (3.25.1-aarch64-linux) diff --git a/gemfiles/ruby_3.2_rails7.gemfile.lock b/gemfiles/ruby_3.2_rails7.gemfile.lock index 96a5323f62e..85393b027e5 100644 --- a/gemfiles/ruby_3.2_rails7.gemfile.lock +++ b/gemfiles/ruby_3.2_rails7.gemfile.lock @@ -110,8 +110,8 @@ GEM dogstatsd-ruby (5.6.1) erubi (1.13.0) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) globalid (1.2.1) activesupport (>= 6.1) google-protobuf (3.25.4-aarch64-linux) diff --git a/gemfiles/ruby_3.2_rails71.gemfile.lock b/gemfiles/ruby_3.2_rails71.gemfile.lock index 1921bc6e914..e68534abf12 100644 --- a/gemfiles/ruby_3.2_rails71.gemfile.lock +++ b/gemfiles/ruby_3.2_rails71.gemfile.lock @@ -122,8 +122,8 @@ GEM drb (2.2.1) erubi (1.13.0) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) globalid (1.2.1) activesupport (>= 6.1) google-protobuf (3.25.4-aarch64-linux) diff --git a/gemfiles/ruby_3.2_redis_3.gemfile.lock b/gemfiles/ruby_3.2_redis_3.gemfile.lock index 95d354efe2e..2baf69079aa 100644 --- a/gemfiles/ruby_3.2_redis_3.gemfile.lock +++ b/gemfiles/ruby_3.2_redis_3.gemfile.lock @@ -38,8 +38,8 @@ GEM docile (1.4.0) dogstatsd-ruby (5.5.0) extlz4 (0.3.3) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.22.0) google-protobuf (3.22.0-x86_64-linux) hashdiff (1.0.1) diff --git a/gemfiles/ruby_3.2_redis_4.gemfile.lock b/gemfiles/ruby_3.2_redis_4.gemfile.lock index 706b2482f6d..4489e40a93d 100644 --- a/gemfiles/ruby_3.2_redis_4.gemfile.lock +++ b/gemfiles/ruby_3.2_redis_4.gemfile.lock @@ -38,8 +38,8 @@ GEM docile (1.4.0) dogstatsd-ruby (5.5.0) extlz4 (0.3.3) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.22.0) google-protobuf (3.22.0-x86_64-linux) hashdiff (1.0.1) diff --git a/gemfiles/ruby_3.2_redis_5.gemfile.lock b/gemfiles/ruby_3.2_redis_5.gemfile.lock index 99df2ae4129..e10bf8cdfac 100644 --- a/gemfiles/ruby_3.2_redis_5.gemfile.lock +++ b/gemfiles/ruby_3.2_redis_5.gemfile.lock @@ -39,8 +39,8 @@ GEM docile (1.4.0) dogstatsd-ruby (5.5.0) extlz4 (0.3.3) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.22.0) google-protobuf (3.22.0-x86_64-linux) hashdiff (1.0.1) diff --git a/gemfiles/ruby_3.2_relational_db.gemfile.lock b/gemfiles/ruby_3.2_relational_db.gemfile.lock index 5119a42cc10..8ba867eec20 100644 --- a/gemfiles/ruby_3.2_relational_db.gemfile.lock +++ b/gemfiles/ruby_3.2_relational_db.gemfile.lock @@ -54,8 +54,8 @@ GEM docile (1.4.0) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.24.3-aarch64-linux) google-protobuf (3.24.3-x86_64-linux) hashdiff (1.0.1) diff --git a/gemfiles/ruby_3.2_resque2_redis3.gemfile.lock b/gemfiles/ruby_3.2_resque2_redis3.gemfile.lock index 152191842bb..5766ff1dc87 100644 --- a/gemfiles/ruby_3.2_resque2_redis3.gemfile.lock +++ b/gemfiles/ruby_3.2_resque2_redis3.gemfile.lock @@ -38,8 +38,8 @@ GEM docile (1.4.0) dogstatsd-ruby (5.5.0) extlz4 (0.3.3) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.22.0) google-protobuf (3.22.0-x86_64-linux) hashdiff (1.0.1) diff --git a/gemfiles/ruby_3.2_resque2_redis4.gemfile.lock b/gemfiles/ruby_3.2_resque2_redis4.gemfile.lock index cadb5388f59..58f0c7f71ef 100644 --- a/gemfiles/ruby_3.2_resque2_redis4.gemfile.lock +++ b/gemfiles/ruby_3.2_resque2_redis4.gemfile.lock @@ -39,8 +39,8 @@ GEM docile (1.4.0) dogstatsd-ruby (5.5.0) extlz4 (0.3.3) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.22.0) google-protobuf (3.22.0-x86_64-linux) hashdiff (1.0.1) diff --git a/gemfiles/ruby_3.2_sinatra_2.gemfile.lock b/gemfiles/ruby_3.2_sinatra_2.gemfile.lock index b36a3eb5884..fabb61e67b1 100644 --- a/gemfiles/ruby_3.2_sinatra_2.gemfile.lock +++ b/gemfiles/ruby_3.2_sinatra_2.gemfile.lock @@ -41,8 +41,8 @@ GEM docile (1.4.0) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.3-aarch64-linux) google-protobuf (3.25.3-x86_64-linux) hashdiff (1.1.0) diff --git a/gemfiles/ruby_3.2_sinatra_3.gemfile.lock b/gemfiles/ruby_3.2_sinatra_3.gemfile.lock index 6f5645a41b1..d77a3cbfca7 100644 --- a/gemfiles/ruby_3.2_sinatra_3.gemfile.lock +++ b/gemfiles/ruby_3.2_sinatra_3.gemfile.lock @@ -42,8 +42,8 @@ GEM docile (1.4.0) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.3-aarch64-linux) google-protobuf (3.25.3-x86_64-linux) hashdiff (1.1.0) diff --git a/gemfiles/ruby_3.2_sinatra_4.gemfile.lock b/gemfiles/ruby_3.2_sinatra_4.gemfile.lock index 703528887d0..909e7fc6c71 100644 --- a/gemfiles/ruby_3.2_sinatra_4.gemfile.lock +++ b/gemfiles/ruby_3.2_sinatra_4.gemfile.lock @@ -42,8 +42,8 @@ GEM docile (1.4.0) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.3-aarch64-linux) google-protobuf (3.25.3-x86_64-linux) hashdiff (1.1.0) diff --git a/gemfiles/ruby_3.2_stripe_10.gemfile.lock b/gemfiles/ruby_3.2_stripe_10.gemfile.lock index fb376f0740d..1607ed87575 100644 --- a/gemfiles/ruby_3.2_stripe_10.gemfile.lock +++ b/gemfiles/ruby_3.2_stripe_10.gemfile.lock @@ -41,8 +41,8 @@ GEM docile (1.4.1) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.4-aarch64-linux) google-protobuf (3.25.4-x86_64-linux) hashdiff (1.1.1) diff --git a/gemfiles/ruby_3.2_stripe_11.gemfile.lock b/gemfiles/ruby_3.2_stripe_11.gemfile.lock index 1e569f8d9ed..3a612068c4e 100644 --- a/gemfiles/ruby_3.2_stripe_11.gemfile.lock +++ b/gemfiles/ruby_3.2_stripe_11.gemfile.lock @@ -41,8 +41,8 @@ GEM docile (1.4.1) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.4-aarch64-linux) google-protobuf (3.25.4-x86_64-linux) hashdiff (1.1.1) diff --git a/gemfiles/ruby_3.2_stripe_12.gemfile.lock b/gemfiles/ruby_3.2_stripe_12.gemfile.lock index 4e37685019b..297668c2e78 100644 --- a/gemfiles/ruby_3.2_stripe_12.gemfile.lock +++ b/gemfiles/ruby_3.2_stripe_12.gemfile.lock @@ -41,8 +41,8 @@ GEM docile (1.4.1) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.4-aarch64-linux) google-protobuf (3.25.4-x86_64-linux) hashdiff (1.1.1) diff --git a/gemfiles/ruby_3.2_stripe_7.gemfile.lock b/gemfiles/ruby_3.2_stripe_7.gemfile.lock index 43a4b14e842..9bdd1cfc2c3 100644 --- a/gemfiles/ruby_3.2_stripe_7.gemfile.lock +++ b/gemfiles/ruby_3.2_stripe_7.gemfile.lock @@ -41,8 +41,8 @@ GEM docile (1.4.1) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.4-aarch64-linux) google-protobuf (3.25.4-x86_64-linux) hashdiff (1.1.1) diff --git a/gemfiles/ruby_3.2_stripe_8.gemfile.lock b/gemfiles/ruby_3.2_stripe_8.gemfile.lock index 8745811725f..cebf0ffd8aa 100644 --- a/gemfiles/ruby_3.2_stripe_8.gemfile.lock +++ b/gemfiles/ruby_3.2_stripe_8.gemfile.lock @@ -41,8 +41,8 @@ GEM docile (1.4.1) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.4-aarch64-linux) google-protobuf (3.25.4-x86_64-linux) hashdiff (1.1.1) diff --git a/gemfiles/ruby_3.2_stripe_9.gemfile.lock b/gemfiles/ruby_3.2_stripe_9.gemfile.lock index 68af5fbbf11..5df781aedd2 100644 --- a/gemfiles/ruby_3.2_stripe_9.gemfile.lock +++ b/gemfiles/ruby_3.2_stripe_9.gemfile.lock @@ -41,8 +41,8 @@ GEM docile (1.4.1) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.4-aarch64-linux) google-protobuf (3.25.4-x86_64-linux) hashdiff (1.1.1) diff --git a/gemfiles/ruby_3.2_stripe_latest.gemfile.lock b/gemfiles/ruby_3.2_stripe_latest.gemfile.lock index e236ddad855..e43304b637b 100644 --- a/gemfiles/ruby_3.2_stripe_latest.gemfile.lock +++ b/gemfiles/ruby_3.2_stripe_latest.gemfile.lock @@ -41,8 +41,8 @@ GEM docile (1.4.1) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.4-aarch64-linux) google-protobuf (3.25.4-x86_64-linux) hashdiff (1.1.1) diff --git a/gemfiles/ruby_3.2_stripe_min.gemfile.lock b/gemfiles/ruby_3.2_stripe_min.gemfile.lock index fccd509980f..91ed6faf882 100644 --- a/gemfiles/ruby_3.2_stripe_min.gemfile.lock +++ b/gemfiles/ruby_3.2_stripe_min.gemfile.lock @@ -41,8 +41,8 @@ GEM docile (1.4.1) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.5-aarch64-linux) google-protobuf (3.25.5-x86_64-linux) hashdiff (1.1.1) diff --git a/gemfiles/ruby_3.3_activesupport.gemfile.lock b/gemfiles/ruby_3.3_activesupport.gemfile.lock index 5b18691d7a6..b87598ebe3f 100644 --- a/gemfiles/ruby_3.3_activesupport.gemfile.lock +++ b/gemfiles/ruby_3.3_activesupport.gemfile.lock @@ -84,8 +84,8 @@ GEM zeitwerk (~> 2.6) erubi (1.12.0) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.24.3) grape (1.8.0) activesupport (>= 5) diff --git a/gemfiles/ruby_3.3_aws.gemfile.lock b/gemfiles/ruby_3.3_aws.gemfile.lock index 47eb6ef2eb6..537465c3330 100644 --- a/gemfiles/ruby_3.3_aws.gemfile.lock +++ b/gemfiles/ruby_3.3_aws.gemfile.lock @@ -1459,8 +1459,8 @@ GEM docile (1.4.0) dogstatsd-ruby (5.6.0) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.24.2) hashdiff (1.0.1) jmespath (1.6.2) diff --git a/gemfiles/ruby_3.3_contrib.gemfile.lock b/gemfiles/ruby_3.3_contrib.gemfile.lock index 584e5bbb826..2a0d0e12bd0 100644 --- a/gemfiles/ruby_3.3_contrib.gemfile.lock +++ b/gemfiles/ruby_3.3_contrib.gemfile.lock @@ -45,8 +45,8 @@ GEM docile (1.4.0) dogstatsd-ruby (5.5.0) extlz4 (0.3.3) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.5-aarch64-linux) google-protobuf (3.25.5-x86_64-linux) googleapis-common-protos-types (1.16.0) diff --git a/gemfiles/ruby_3.3_contrib_old.gemfile.lock b/gemfiles/ruby_3.3_contrib_old.gemfile.lock index 2b8fcbe894f..546783a204d 100644 --- a/gemfiles/ruby_3.3_contrib_old.gemfile.lock +++ b/gemfiles/ruby_3.3_contrib_old.gemfile.lock @@ -48,8 +48,8 @@ GEM multipart-post (>= 1.2, < 3) faraday_middleware (0.12.2) faraday (>= 0.7.4, < 1.0) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.23.1) hashdiff (1.0.1) hitimes (1.3.1) diff --git a/gemfiles/ruby_3.3_core_old.gemfile.lock b/gemfiles/ruby_3.3_core_old.gemfile.lock index f6c72cba67a..21db79ab199 100644 --- a/gemfiles/ruby_3.3_core_old.gemfile.lock +++ b/gemfiles/ruby_3.3_core_old.gemfile.lock @@ -38,8 +38,8 @@ GEM docile (1.4.0) dogstatsd-ruby (4.8.3) extlz4 (0.3.3) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.23.1) hashdiff (1.0.1) json (2.6.3) diff --git a/gemfiles/ruby_3.3_elasticsearch_7.gemfile.lock b/gemfiles/ruby_3.3_elasticsearch_7.gemfile.lock index 86429ca171f..ef7599b7d29 100644 --- a/gemfiles/ruby_3.3_elasticsearch_7.gemfile.lock +++ b/gemfiles/ruby_3.3_elasticsearch_7.gemfile.lock @@ -55,8 +55,8 @@ GEM logger faraday-net_http (3.4.0) net-http (>= 0.5.0) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.24.4) hashdiff (1.0.1) json (2.9.1) diff --git a/gemfiles/ruby_3.3_elasticsearch_8.gemfile.lock b/gemfiles/ruby_3.3_elasticsearch_8.gemfile.lock index fdd54302dc4..355a3f249a0 100644 --- a/gemfiles/ruby_3.3_elasticsearch_8.gemfile.lock +++ b/gemfiles/ruby_3.3_elasticsearch_8.gemfile.lock @@ -53,8 +53,8 @@ GEM logger faraday-net_http (3.4.0) net-http (>= 0.5.0) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.24.4) hashdiff (1.0.1) json (2.9.1) diff --git a/gemfiles/ruby_3.3_elasticsearch_latest.gemfile.lock b/gemfiles/ruby_3.3_elasticsearch_latest.gemfile.lock index cf64d7f6180..defd85770ee 100644 --- a/gemfiles/ruby_3.3_elasticsearch_latest.gemfile.lock +++ b/gemfiles/ruby_3.3_elasticsearch_latest.gemfile.lock @@ -55,8 +55,8 @@ GEM logger faraday-net_http (3.4.0) net-http (>= 0.5.0) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.4-aarch64-linux) google-protobuf (3.25.4-x86_64-linux) hashdiff (1.1.1) diff --git a/gemfiles/ruby_3.3_graphql_1.13.gemfile.lock b/gemfiles/ruby_3.3_graphql_1.13.gemfile.lock index 0046116d95c..4de515a95a8 100644 --- a/gemfiles/ruby_3.3_graphql_1.13.gemfile.lock +++ b/gemfiles/ruby_3.3_graphql_1.13.gemfile.lock @@ -103,8 +103,8 @@ GEM dogstatsd-ruby (5.6.1) erubi (1.13.0) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) globalid (1.2.1) activesupport (>= 6.1) google-protobuf (3.25.2) diff --git a/gemfiles/ruby_3.3_graphql_2.0.gemfile.lock b/gemfiles/ruby_3.3_graphql_2.0.gemfile.lock index f85ce27a55f..c7c2bdb71ab 100644 --- a/gemfiles/ruby_3.3_graphql_2.0.gemfile.lock +++ b/gemfiles/ruby_3.3_graphql_2.0.gemfile.lock @@ -103,8 +103,8 @@ GEM dogstatsd-ruby (5.6.1) erubi (1.13.0) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) globalid (1.2.1) activesupport (>= 6.1) google-protobuf (3.25.2) diff --git a/gemfiles/ruby_3.3_graphql_2.1.gemfile.lock b/gemfiles/ruby_3.3_graphql_2.1.gemfile.lock index 47543a59e9e..eb5d0bef907 100644 --- a/gemfiles/ruby_3.3_graphql_2.1.gemfile.lock +++ b/gemfiles/ruby_3.3_graphql_2.1.gemfile.lock @@ -103,8 +103,8 @@ GEM dogstatsd-ruby (5.6.1) erubi (1.13.0) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) globalid (1.2.1) activesupport (>= 6.1) google-protobuf (3.25.2) diff --git a/gemfiles/ruby_3.3_graphql_2.2.gemfile.lock b/gemfiles/ruby_3.3_graphql_2.2.gemfile.lock index d93e7442cdc..484485f14dc 100644 --- a/gemfiles/ruby_3.3_graphql_2.2.gemfile.lock +++ b/gemfiles/ruby_3.3_graphql_2.2.gemfile.lock @@ -103,8 +103,8 @@ GEM dogstatsd-ruby (5.6.1) erubi (1.13.0) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) globalid (1.2.1) activesupport (>= 6.1) google-protobuf (3.25.2) diff --git a/gemfiles/ruby_3.3_graphql_2.3.gemfile.lock b/gemfiles/ruby_3.3_graphql_2.3.gemfile.lock index 1af7a475fc2..0421c5b4c26 100644 --- a/gemfiles/ruby_3.3_graphql_2.3.gemfile.lock +++ b/gemfiles/ruby_3.3_graphql_2.3.gemfile.lock @@ -105,8 +105,8 @@ GEM dogstatsd-ruby (5.6.1) erubi (1.13.0) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) globalid (1.2.1) activesupport (>= 6.1) google-protobuf (3.25.3-aarch64-linux) diff --git a/gemfiles/ruby_3.3_http.gemfile.lock b/gemfiles/ruby_3.3_http.gemfile.lock index 611dfb014e5..6d68c918e3e 100644 --- a/gemfiles/ruby_3.3_http.gemfile.lock +++ b/gemfiles/ruby_3.3_http.gemfile.lock @@ -47,8 +47,8 @@ GEM faraday-net_http (>= 2.0, < 3.1) ruby2_keywords (>= 0.0.4) faraday-net_http (3.0.2) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) ffi-compiler (1.0.1) ffi (>= 1.0.0) rake diff --git a/gemfiles/ruby_3.3_opensearch_2.gemfile.lock b/gemfiles/ruby_3.3_opensearch_2.gemfile.lock index e8b86074744..cd8e915adde 100644 --- a/gemfiles/ruby_3.3_opensearch_2.gemfile.lock +++ b/gemfiles/ruby_3.3_opensearch_2.gemfile.lock @@ -45,8 +45,8 @@ GEM logger faraday-net_http (3.4.0) net-http (>= 0.5.0) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.24.4) hashdiff (1.0.1) json (2.9.1) diff --git a/gemfiles/ruby_3.3_opensearch_3.gemfile.lock b/gemfiles/ruby_3.3_opensearch_3.gemfile.lock index 4ea021ef1d3..52594de46cc 100644 --- a/gemfiles/ruby_3.3_opensearch_3.gemfile.lock +++ b/gemfiles/ruby_3.3_opensearch_3.gemfile.lock @@ -45,8 +45,8 @@ GEM logger faraday-net_http (3.4.0) net-http (>= 0.5.0) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.24.4) hashdiff (1.0.1) json (2.9.1) diff --git a/gemfiles/ruby_3.3_opensearch_latest.gemfile.lock b/gemfiles/ruby_3.3_opensearch_latest.gemfile.lock index d2bb8cf8d5f..2b33fd8f8f7 100644 --- a/gemfiles/ruby_3.3_opensearch_latest.gemfile.lock +++ b/gemfiles/ruby_3.3_opensearch_latest.gemfile.lock @@ -47,8 +47,8 @@ GEM logger faraday-net_http (3.4.0) net-http (>= 0.5.0) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.4-aarch64-linux) google-protobuf (3.25.4-x86_64-linux) hashdiff (1.1.1) diff --git a/gemfiles/ruby_3.3_opentelemetry.gemfile.lock b/gemfiles/ruby_3.3_opentelemetry.gemfile.lock index c18f307a5fe..db5dcd14f9f 100644 --- a/gemfiles/ruby_3.3_opentelemetry.gemfile.lock +++ b/gemfiles/ruby_3.3_opentelemetry.gemfile.lock @@ -38,8 +38,8 @@ GEM docile (1.4.0) dogstatsd-ruby (5.5.0) extlz4 (0.3.3) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.23.1) hashdiff (1.0.1) json (2.6.3) diff --git a/gemfiles/ruby_3.3_opentelemetry_otlp.gemfile.lock b/gemfiles/ruby_3.3_opentelemetry_otlp.gemfile.lock index be128eb20d2..43dbc52fe9a 100644 --- a/gemfiles/ruby_3.3_opentelemetry_otlp.gemfile.lock +++ b/gemfiles/ruby_3.3_opentelemetry_otlp.gemfile.lock @@ -41,8 +41,8 @@ GEM docile (1.4.0) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.3-aarch64-linux) google-protobuf (3.25.3-x86_64-linux) googleapis-common-protos-types (1.13.0) diff --git a/gemfiles/ruby_3.3_rack_2.gemfile.lock b/gemfiles/ruby_3.3_rack_2.gemfile.lock index 384f80aed37..d0d8992bf32 100644 --- a/gemfiles/ruby_3.3_rack_2.gemfile.lock +++ b/gemfiles/ruby_3.3_rack_2.gemfile.lock @@ -38,8 +38,8 @@ GEM docile (1.4.0) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.24.3) hashdiff (1.0.1) json (2.6.3) diff --git a/gemfiles/ruby_3.3_rack_3.gemfile.lock b/gemfiles/ruby_3.3_rack_3.gemfile.lock index 44e4864c588..49b2f1b98c5 100644 --- a/gemfiles/ruby_3.3_rack_3.gemfile.lock +++ b/gemfiles/ruby_3.3_rack_3.gemfile.lock @@ -38,8 +38,8 @@ GEM docile (1.4.0) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.24.3) hashdiff (1.0.1) json (2.6.3) diff --git a/gemfiles/ruby_3.3_rack_latest.gemfile.lock b/gemfiles/ruby_3.3_rack_latest.gemfile.lock index 481b4fd483b..22ebed57cbe 100644 --- a/gemfiles/ruby_3.3_rack_latest.gemfile.lock +++ b/gemfiles/ruby_3.3_rack_latest.gemfile.lock @@ -41,8 +41,8 @@ GEM docile (1.4.1) dogstatsd-ruby (5.6.2) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.5-aarch64-linux) google-protobuf (3.25.5-x86_64-linux) hashdiff (1.1.1) diff --git a/gemfiles/ruby_3.3_rails61_mysql2.gemfile.lock b/gemfiles/ruby_3.3_rails61_mysql2.gemfile.lock index af848e391d7..45e9c3bf47d 100644 --- a/gemfiles/ruby_3.3_rails61_mysql2.gemfile.lock +++ b/gemfiles/ruby_3.3_rails61_mysql2.gemfile.lock @@ -101,8 +101,8 @@ GEM dogstatsd-ruby (5.5.0) erubi (1.12.0) extlz4 (0.3.3) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) globalid (1.1.0) activesupport (>= 5.0) google-protobuf (3.23.1) diff --git a/gemfiles/ruby_3.3_rails61_postgres.gemfile.lock b/gemfiles/ruby_3.3_rails61_postgres.gemfile.lock index 1e2bd0f65ab..156c0eaaa55 100644 --- a/gemfiles/ruby_3.3_rails61_postgres.gemfile.lock +++ b/gemfiles/ruby_3.3_rails61_postgres.gemfile.lock @@ -101,8 +101,8 @@ GEM dogstatsd-ruby (5.5.0) erubi (1.12.0) extlz4 (0.3.3) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) globalid (1.1.0) activesupport (>= 5.0) google-protobuf (3.23.1) diff --git a/gemfiles/ruby_3.3_rails61_postgres_redis.gemfile.lock b/gemfiles/ruby_3.3_rails61_postgres_redis.gemfile.lock index 28d7c7a83ca..e5f77a69109 100644 --- a/gemfiles/ruby_3.3_rails61_postgres_redis.gemfile.lock +++ b/gemfiles/ruby_3.3_rails61_postgres_redis.gemfile.lock @@ -101,8 +101,8 @@ GEM dogstatsd-ruby (5.5.0) erubi (1.12.0) extlz4 (0.3.3) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) globalid (1.1.0) activesupport (>= 5.0) google-protobuf (3.23.1) diff --git a/gemfiles/ruby_3.3_rails61_postgres_sidekiq.gemfile.lock b/gemfiles/ruby_3.3_rails61_postgres_sidekiq.gemfile.lock index e61e95cdd34..6d75912d1fe 100644 --- a/gemfiles/ruby_3.3_rails61_postgres_sidekiq.gemfile.lock +++ b/gemfiles/ruby_3.3_rails61_postgres_sidekiq.gemfile.lock @@ -102,8 +102,8 @@ GEM dogstatsd-ruby (5.5.0) erubi (1.12.0) extlz4 (0.3.3) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) globalid (1.1.0) activesupport (>= 5.0) google-protobuf (3.23.1) diff --git a/gemfiles/ruby_3.3_rails61_semantic_logger.gemfile.lock b/gemfiles/ruby_3.3_rails61_semantic_logger.gemfile.lock index f7427098c44..b757c6568c9 100644 --- a/gemfiles/ruby_3.3_rails61_semantic_logger.gemfile.lock +++ b/gemfiles/ruby_3.3_rails61_semantic_logger.gemfile.lock @@ -101,8 +101,8 @@ GEM dogstatsd-ruby (5.5.0) erubi (1.12.0) extlz4 (0.3.3) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) globalid (1.1.0) activesupport (>= 5.0) google-protobuf (3.23.1) diff --git a/gemfiles/ruby_3.3_rails61_trilogy.gemfile.lock b/gemfiles/ruby_3.3_rails61_trilogy.gemfile.lock index 90576186023..6c2d767d4d6 100644 --- a/gemfiles/ruby_3.3_rails61_trilogy.gemfile.lock +++ b/gemfiles/ruby_3.3_rails61_trilogy.gemfile.lock @@ -105,8 +105,8 @@ GEM dogstatsd-ruby (5.6.1) erubi (1.12.0) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) globalid (1.2.1) activesupport (>= 6.1) google-protobuf (3.25.1) diff --git a/gemfiles/ruby_3.3_rails7.gemfile.lock b/gemfiles/ruby_3.3_rails7.gemfile.lock index 96a5323f62e..85393b027e5 100644 --- a/gemfiles/ruby_3.3_rails7.gemfile.lock +++ b/gemfiles/ruby_3.3_rails7.gemfile.lock @@ -110,8 +110,8 @@ GEM dogstatsd-ruby (5.6.1) erubi (1.13.0) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) globalid (1.2.1) activesupport (>= 6.1) google-protobuf (3.25.4-aarch64-linux) diff --git a/gemfiles/ruby_3.3_rails71.gemfile.lock b/gemfiles/ruby_3.3_rails71.gemfile.lock index 1921bc6e914..e68534abf12 100644 --- a/gemfiles/ruby_3.3_rails71.gemfile.lock +++ b/gemfiles/ruby_3.3_rails71.gemfile.lock @@ -122,8 +122,8 @@ GEM drb (2.2.1) erubi (1.13.0) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) globalid (1.2.1) activesupport (>= 6.1) google-protobuf (3.25.4-aarch64-linux) diff --git a/gemfiles/ruby_3.3_redis_3.gemfile.lock b/gemfiles/ruby_3.3_redis_3.gemfile.lock index 0a8c3b6a01d..dd7d045007a 100644 --- a/gemfiles/ruby_3.3_redis_3.gemfile.lock +++ b/gemfiles/ruby_3.3_redis_3.gemfile.lock @@ -38,8 +38,8 @@ GEM docile (1.4.0) dogstatsd-ruby (5.5.0) extlz4 (0.3.3) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.23.1) hashdiff (1.0.1) json (2.6.3) diff --git a/gemfiles/ruby_3.3_redis_4.gemfile.lock b/gemfiles/ruby_3.3_redis_4.gemfile.lock index 0b4cd72910d..6eac77b8a77 100644 --- a/gemfiles/ruby_3.3_redis_4.gemfile.lock +++ b/gemfiles/ruby_3.3_redis_4.gemfile.lock @@ -38,8 +38,8 @@ GEM docile (1.4.0) dogstatsd-ruby (5.5.0) extlz4 (0.3.3) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.23.1) hashdiff (1.0.1) json (2.6.3) diff --git a/gemfiles/ruby_3.3_redis_5.gemfile.lock b/gemfiles/ruby_3.3_redis_5.gemfile.lock index d97e5742910..a6292f47138 100644 --- a/gemfiles/ruby_3.3_redis_5.gemfile.lock +++ b/gemfiles/ruby_3.3_redis_5.gemfile.lock @@ -39,8 +39,8 @@ GEM docile (1.4.0) dogstatsd-ruby (5.5.0) extlz4 (0.3.3) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.23.1) hashdiff (1.0.1) json (2.6.3) diff --git a/gemfiles/ruby_3.3_relational_db.gemfile.lock b/gemfiles/ruby_3.3_relational_db.gemfile.lock index eb2e94bf519..05865bded3e 100644 --- a/gemfiles/ruby_3.3_relational_db.gemfile.lock +++ b/gemfiles/ruby_3.3_relational_db.gemfile.lock @@ -54,8 +54,8 @@ GEM docile (1.4.0) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.24.3) hashdiff (1.0.1) i18n (1.14.1) diff --git a/gemfiles/ruby_3.3_resque2_redis3.gemfile.lock b/gemfiles/ruby_3.3_resque2_redis3.gemfile.lock index 68ebe3db28c..9c3bf24a7d9 100644 --- a/gemfiles/ruby_3.3_resque2_redis3.gemfile.lock +++ b/gemfiles/ruby_3.3_resque2_redis3.gemfile.lock @@ -38,8 +38,8 @@ GEM docile (1.4.0) dogstatsd-ruby (5.5.0) extlz4 (0.3.3) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.23.1) hashdiff (1.0.1) json (2.6.3) diff --git a/gemfiles/ruby_3.3_resque2_redis4.gemfile.lock b/gemfiles/ruby_3.3_resque2_redis4.gemfile.lock index c29ee7751f6..d15124aac59 100644 --- a/gemfiles/ruby_3.3_resque2_redis4.gemfile.lock +++ b/gemfiles/ruby_3.3_resque2_redis4.gemfile.lock @@ -39,8 +39,8 @@ GEM docile (1.4.0) dogstatsd-ruby (5.5.0) extlz4 (0.3.3) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.23.1) hashdiff (1.0.1) json (2.6.3) diff --git a/gemfiles/ruby_3.3_sinatra_2.gemfile.lock b/gemfiles/ruby_3.3_sinatra_2.gemfile.lock index b36a3eb5884..fabb61e67b1 100644 --- a/gemfiles/ruby_3.3_sinatra_2.gemfile.lock +++ b/gemfiles/ruby_3.3_sinatra_2.gemfile.lock @@ -41,8 +41,8 @@ GEM docile (1.4.0) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.3-aarch64-linux) google-protobuf (3.25.3-x86_64-linux) hashdiff (1.1.0) diff --git a/gemfiles/ruby_3.3_sinatra_3.gemfile.lock b/gemfiles/ruby_3.3_sinatra_3.gemfile.lock index 6f5645a41b1..d77a3cbfca7 100644 --- a/gemfiles/ruby_3.3_sinatra_3.gemfile.lock +++ b/gemfiles/ruby_3.3_sinatra_3.gemfile.lock @@ -42,8 +42,8 @@ GEM docile (1.4.0) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.3-aarch64-linux) google-protobuf (3.25.3-x86_64-linux) hashdiff (1.1.0) diff --git a/gemfiles/ruby_3.3_sinatra_4.gemfile.lock b/gemfiles/ruby_3.3_sinatra_4.gemfile.lock index 703528887d0..909e7fc6c71 100644 --- a/gemfiles/ruby_3.3_sinatra_4.gemfile.lock +++ b/gemfiles/ruby_3.3_sinatra_4.gemfile.lock @@ -42,8 +42,8 @@ GEM docile (1.4.0) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.3-aarch64-linux) google-protobuf (3.25.3-x86_64-linux) hashdiff (1.1.0) diff --git a/gemfiles/ruby_3.3_stripe_10.gemfile.lock b/gemfiles/ruby_3.3_stripe_10.gemfile.lock index fb376f0740d..1607ed87575 100644 --- a/gemfiles/ruby_3.3_stripe_10.gemfile.lock +++ b/gemfiles/ruby_3.3_stripe_10.gemfile.lock @@ -41,8 +41,8 @@ GEM docile (1.4.1) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.4-aarch64-linux) google-protobuf (3.25.4-x86_64-linux) hashdiff (1.1.1) diff --git a/gemfiles/ruby_3.3_stripe_11.gemfile.lock b/gemfiles/ruby_3.3_stripe_11.gemfile.lock index 1e569f8d9ed..3a612068c4e 100644 --- a/gemfiles/ruby_3.3_stripe_11.gemfile.lock +++ b/gemfiles/ruby_3.3_stripe_11.gemfile.lock @@ -41,8 +41,8 @@ GEM docile (1.4.1) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.4-aarch64-linux) google-protobuf (3.25.4-x86_64-linux) hashdiff (1.1.1) diff --git a/gemfiles/ruby_3.3_stripe_12.gemfile.lock b/gemfiles/ruby_3.3_stripe_12.gemfile.lock index 4e37685019b..297668c2e78 100644 --- a/gemfiles/ruby_3.3_stripe_12.gemfile.lock +++ b/gemfiles/ruby_3.3_stripe_12.gemfile.lock @@ -41,8 +41,8 @@ GEM docile (1.4.1) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.4-aarch64-linux) google-protobuf (3.25.4-x86_64-linux) hashdiff (1.1.1) diff --git a/gemfiles/ruby_3.3_stripe_7.gemfile.lock b/gemfiles/ruby_3.3_stripe_7.gemfile.lock index 43a4b14e842..9bdd1cfc2c3 100644 --- a/gemfiles/ruby_3.3_stripe_7.gemfile.lock +++ b/gemfiles/ruby_3.3_stripe_7.gemfile.lock @@ -41,8 +41,8 @@ GEM docile (1.4.1) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.4-aarch64-linux) google-protobuf (3.25.4-x86_64-linux) hashdiff (1.1.1) diff --git a/gemfiles/ruby_3.3_stripe_8.gemfile.lock b/gemfiles/ruby_3.3_stripe_8.gemfile.lock index 8745811725f..cebf0ffd8aa 100644 --- a/gemfiles/ruby_3.3_stripe_8.gemfile.lock +++ b/gemfiles/ruby_3.3_stripe_8.gemfile.lock @@ -41,8 +41,8 @@ GEM docile (1.4.1) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.4-aarch64-linux) google-protobuf (3.25.4-x86_64-linux) hashdiff (1.1.1) diff --git a/gemfiles/ruby_3.3_stripe_9.gemfile.lock b/gemfiles/ruby_3.3_stripe_9.gemfile.lock index 68af5fbbf11..5df781aedd2 100644 --- a/gemfiles/ruby_3.3_stripe_9.gemfile.lock +++ b/gemfiles/ruby_3.3_stripe_9.gemfile.lock @@ -41,8 +41,8 @@ GEM docile (1.4.1) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.4-aarch64-linux) google-protobuf (3.25.4-x86_64-linux) hashdiff (1.1.1) diff --git a/gemfiles/ruby_3.3_stripe_latest.gemfile.lock b/gemfiles/ruby_3.3_stripe_latest.gemfile.lock index e236ddad855..e43304b637b 100644 --- a/gemfiles/ruby_3.3_stripe_latest.gemfile.lock +++ b/gemfiles/ruby_3.3_stripe_latest.gemfile.lock @@ -41,8 +41,8 @@ GEM docile (1.4.1) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.4-aarch64-linux) google-protobuf (3.25.4-x86_64-linux) hashdiff (1.1.1) diff --git a/gemfiles/ruby_3.3_stripe_min.gemfile.lock b/gemfiles/ruby_3.3_stripe_min.gemfile.lock index fccd509980f..91ed6faf882 100644 --- a/gemfiles/ruby_3.3_stripe_min.gemfile.lock +++ b/gemfiles/ruby_3.3_stripe_min.gemfile.lock @@ -41,8 +41,8 @@ GEM docile (1.4.1) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) - ffi (1.17.0-aarch64-linux-gnu) - ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.5-aarch64-linux) google-protobuf (3.25.5-x86_64-linux) hashdiff (1.1.1) diff --git a/gemfiles/ruby_3.4_activesupport.gemfile.lock b/gemfiles/ruby_3.4_activesupport.gemfile.lock index c4a46291810..5b59f490f78 100644 --- a/gemfiles/ruby_3.4_activesupport.gemfile.lock +++ b/gemfiles/ruby_3.4_activesupport.gemfile.lock @@ -99,7 +99,8 @@ GEM zeitwerk (~> 2.6) erubi (1.13.0) extlz4 (0.3.4) - ffi (1.17.0) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.3) grape (2.1.2) activesupport (>= 6) diff --git a/gemfiles/ruby_3.4_aws.gemfile.lock b/gemfiles/ruby_3.4_aws.gemfile.lock index 1a68c8be039..b9f7b275633 100644 --- a/gemfiles/ruby_3.4_aws.gemfile.lock +++ b/gemfiles/ruby_3.4_aws.gemfile.lock @@ -1590,7 +1590,8 @@ GEM docile (1.4.0) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) - ffi (1.17.0) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.3) hashdiff (1.1.0) jmespath (1.6.2) diff --git a/gemfiles/ruby_3.4_contrib.gemfile.lock b/gemfiles/ruby_3.4_contrib.gemfile.lock index df998e8e4bf..ded35903d3f 100644 --- a/gemfiles/ruby_3.4_contrib.gemfile.lock +++ b/gemfiles/ruby_3.4_contrib.gemfile.lock @@ -49,7 +49,8 @@ GEM docile (1.4.0) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) - ffi (1.17.0) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.3) googleapis-common-protos-types (1.15.0) google-protobuf (>= 3.18, < 5.a) diff --git a/gemfiles/ruby_3.4_contrib_old.gemfile.lock b/gemfiles/ruby_3.4_contrib_old.gemfile.lock index a47f824e3d3..6ae6ebc7d45 100644 --- a/gemfiles/ruby_3.4_contrib_old.gemfile.lock +++ b/gemfiles/ruby_3.4_contrib_old.gemfile.lock @@ -52,7 +52,8 @@ GEM multipart-post (>= 1.2, < 3) faraday_middleware (0.12.2) faraday (>= 0.7.4, < 1.0) - ffi (1.17.0) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.3) hashdiff (1.1.0) hitimes (1.3.1) diff --git a/gemfiles/ruby_3.4_core_old.gemfile.lock b/gemfiles/ruby_3.4_core_old.gemfile.lock index 84b9fb016eb..c8c37244120 100644 --- a/gemfiles/ruby_3.4_core_old.gemfile.lock +++ b/gemfiles/ruby_3.4_core_old.gemfile.lock @@ -42,7 +42,8 @@ GEM docile (1.4.0) dogstatsd-ruby (4.8.3) extlz4 (0.3.4) - ffi (1.17.0) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.3) hashdiff (1.1.0) json (2.7.2) diff --git a/gemfiles/ruby_3.4_elasticsearch_7.gemfile.lock b/gemfiles/ruby_3.4_elasticsearch_7.gemfile.lock index 518ba2bd4ea..13ddfa935f8 100644 --- a/gemfiles/ruby_3.4_elasticsearch_7.gemfile.lock +++ b/gemfiles/ruby_3.4_elasticsearch_7.gemfile.lock @@ -57,7 +57,8 @@ GEM logger faraday-net_http (3.4.0) net-http (>= 0.5.0) - ffi (1.17.0) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.3) hashdiff (1.1.0) json (2.9.1) diff --git a/gemfiles/ruby_3.4_elasticsearch_8.gemfile.lock b/gemfiles/ruby_3.4_elasticsearch_8.gemfile.lock index dd39d2036fb..e6d4ac857d5 100644 --- a/gemfiles/ruby_3.4_elasticsearch_8.gemfile.lock +++ b/gemfiles/ruby_3.4_elasticsearch_8.gemfile.lock @@ -56,7 +56,8 @@ GEM logger faraday-net_http (3.4.0) net-http (>= 0.5.0) - ffi (1.17.0) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.3) hashdiff (1.1.0) json (2.9.1) diff --git a/gemfiles/ruby_3.4_elasticsearch_latest.gemfile.lock b/gemfiles/ruby_3.4_elasticsearch_latest.gemfile.lock index a8efec5d19c..a70ec127b71 100644 --- a/gemfiles/ruby_3.4_elasticsearch_latest.gemfile.lock +++ b/gemfiles/ruby_3.4_elasticsearch_latest.gemfile.lock @@ -56,7 +56,8 @@ GEM logger faraday-net_http (3.4.0) net-http (>= 0.5.0) - ffi (1.17.0) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.4) hashdiff (1.1.1) json (2.9.1) diff --git a/gemfiles/ruby_3.4_graphql_1.13.gemfile.lock b/gemfiles/ruby_3.4_graphql_1.13.gemfile.lock index 41bc5e725dc..c35771eb843 100644 --- a/gemfiles/ruby_3.4_graphql_1.13.gemfile.lock +++ b/gemfiles/ruby_3.4_graphql_1.13.gemfile.lock @@ -105,7 +105,8 @@ GEM dogstatsd-ruby (5.6.1) erubi (1.13.0) extlz4 (0.3.4) - ffi (1.17.0) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) globalid (1.2.1) activesupport (>= 6.1) google-protobuf (3.25.3) diff --git a/gemfiles/ruby_3.4_graphql_2.0.gemfile.lock b/gemfiles/ruby_3.4_graphql_2.0.gemfile.lock index ab0390ad394..58754e1f45f 100644 --- a/gemfiles/ruby_3.4_graphql_2.0.gemfile.lock +++ b/gemfiles/ruby_3.4_graphql_2.0.gemfile.lock @@ -105,7 +105,8 @@ GEM dogstatsd-ruby (5.6.1) erubi (1.13.0) extlz4 (0.3.4) - ffi (1.17.0) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) globalid (1.2.1) activesupport (>= 6.1) google-protobuf (3.25.3) diff --git a/gemfiles/ruby_3.4_graphql_2.1.gemfile.lock b/gemfiles/ruby_3.4_graphql_2.1.gemfile.lock index 954ed12a904..95488eaa0b8 100644 --- a/gemfiles/ruby_3.4_graphql_2.1.gemfile.lock +++ b/gemfiles/ruby_3.4_graphql_2.1.gemfile.lock @@ -105,7 +105,8 @@ GEM dogstatsd-ruby (5.6.1) erubi (1.13.0) extlz4 (0.3.4) - ffi (1.17.0) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) globalid (1.2.1) activesupport (>= 6.1) google-protobuf (3.25.3) diff --git a/gemfiles/ruby_3.4_graphql_2.2.gemfile.lock b/gemfiles/ruby_3.4_graphql_2.2.gemfile.lock index abbb5921da2..b096b4776ad 100644 --- a/gemfiles/ruby_3.4_graphql_2.2.gemfile.lock +++ b/gemfiles/ruby_3.4_graphql_2.2.gemfile.lock @@ -105,7 +105,8 @@ GEM dogstatsd-ruby (5.6.1) erubi (1.13.0) extlz4 (0.3.4) - ffi (1.17.0) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) globalid (1.2.1) activesupport (>= 6.1) google-protobuf (3.25.3) diff --git a/gemfiles/ruby_3.4_graphql_2.3.gemfile.lock b/gemfiles/ruby_3.4_graphql_2.3.gemfile.lock index 9fd62652b3d..d1cc3fb86f9 100644 --- a/gemfiles/ruby_3.4_graphql_2.3.gemfile.lock +++ b/gemfiles/ruby_3.4_graphql_2.3.gemfile.lock @@ -105,7 +105,8 @@ GEM dogstatsd-ruby (5.6.1) erubi (1.13.0) extlz4 (0.3.4) - ffi (1.17.0) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) globalid (1.2.1) activesupport (>= 6.1) google-protobuf (3.25.3) diff --git a/gemfiles/ruby_3.4_http.gemfile.lock b/gemfiles/ruby_3.4_http.gemfile.lock index e3ccb3ab6a6..a8cfde20109 100644 --- a/gemfiles/ruby_3.4_http.gemfile.lock +++ b/gemfiles/ruby_3.4_http.gemfile.lock @@ -50,7 +50,8 @@ GEM faraday-net_http (>= 2.0, < 3.2) faraday-net_http (3.1.0) net-http - ffi (1.17.0) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) ffi-compiler (1.3.2) ffi (>= 1.15.5) rake diff --git a/gemfiles/ruby_3.4_opensearch_2.gemfile.lock b/gemfiles/ruby_3.4_opensearch_2.gemfile.lock index fbe94e88416..67f3f05b742 100644 --- a/gemfiles/ruby_3.4_opensearch_2.gemfile.lock +++ b/gemfiles/ruby_3.4_opensearch_2.gemfile.lock @@ -48,7 +48,8 @@ GEM logger faraday-net_http (3.4.0) net-http (>= 0.5.0) - ffi (1.17.0) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.3) hashdiff (1.1.0) json (2.9.1) diff --git a/gemfiles/ruby_3.4_opensearch_3.gemfile.lock b/gemfiles/ruby_3.4_opensearch_3.gemfile.lock index bd49940dd79..9b6d24d2213 100644 --- a/gemfiles/ruby_3.4_opensearch_3.gemfile.lock +++ b/gemfiles/ruby_3.4_opensearch_3.gemfile.lock @@ -48,7 +48,8 @@ GEM logger faraday-net_http (3.4.0) net-http (>= 0.5.0) - ffi (1.17.0) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.3) hashdiff (1.1.0) json (2.9.1) diff --git a/gemfiles/ruby_3.4_opensearch_latest.gemfile.lock b/gemfiles/ruby_3.4_opensearch_latest.gemfile.lock index b5252634c3f..4fb33d10c44 100644 --- a/gemfiles/ruby_3.4_opensearch_latest.gemfile.lock +++ b/gemfiles/ruby_3.4_opensearch_latest.gemfile.lock @@ -48,7 +48,8 @@ GEM logger faraday-net_http (3.4.0) net-http (>= 0.5.0) - ffi (1.17.0) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.4) hashdiff (1.1.1) json (2.9.1) diff --git a/gemfiles/ruby_3.4_opentelemetry.gemfile.lock b/gemfiles/ruby_3.4_opentelemetry.gemfile.lock index c8aef7ddd35..230650eb0a8 100644 --- a/gemfiles/ruby_3.4_opentelemetry.gemfile.lock +++ b/gemfiles/ruby_3.4_opentelemetry.gemfile.lock @@ -42,7 +42,8 @@ GEM docile (1.4.0) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) - ffi (1.17.0) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.3) hashdiff (1.1.0) json (2.7.2) diff --git a/gemfiles/ruby_3.4_opentelemetry_otlp.gemfile.lock b/gemfiles/ruby_3.4_opentelemetry_otlp.gemfile.lock index 78db044daa4..9a4ebc3f567 100644 --- a/gemfiles/ruby_3.4_opentelemetry_otlp.gemfile.lock +++ b/gemfiles/ruby_3.4_opentelemetry_otlp.gemfile.lock @@ -42,7 +42,8 @@ GEM docile (1.4.1) dogstatsd-ruby (5.6.2) extlz4 (0.3.4) - ffi (1.17.0) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.5) googleapis-common-protos-types (1.16.0) google-protobuf (>= 3.18, < 5.a) diff --git a/gemfiles/ruby_3.4_rack_2.gemfile.lock b/gemfiles/ruby_3.4_rack_2.gemfile.lock index bcfa63671f1..d7b262f02d1 100644 --- a/gemfiles/ruby_3.4_rack_2.gemfile.lock +++ b/gemfiles/ruby_3.4_rack_2.gemfile.lock @@ -42,7 +42,8 @@ GEM docile (1.4.0) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) - ffi (1.17.0) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.3) hashdiff (1.1.0) json (2.7.2) diff --git a/gemfiles/ruby_3.4_rack_3.gemfile.lock b/gemfiles/ruby_3.4_rack_3.gemfile.lock index 9af02fb4158..04298188eeb 100644 --- a/gemfiles/ruby_3.4_rack_3.gemfile.lock +++ b/gemfiles/ruby_3.4_rack_3.gemfile.lock @@ -42,7 +42,8 @@ GEM docile (1.4.0) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) - ffi (1.17.0) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.3) hashdiff (1.1.0) json (2.7.2) diff --git a/gemfiles/ruby_3.4_rack_latest.gemfile.lock b/gemfiles/ruby_3.4_rack_latest.gemfile.lock index ddbe1a2a65e..3e946ca83e9 100644 --- a/gemfiles/ruby_3.4_rack_latest.gemfile.lock +++ b/gemfiles/ruby_3.4_rack_latest.gemfile.lock @@ -42,7 +42,8 @@ GEM docile (1.4.1) dogstatsd-ruby (5.6.2) extlz4 (0.3.4) - ffi (1.17.0) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.5) hashdiff (1.1.1) json (2.7.2) diff --git a/gemfiles/ruby_3.4_rails61_mysql2.gemfile.lock b/gemfiles/ruby_3.4_rails61_mysql2.gemfile.lock index 7f4dcac9b39..63b93e30555 100644 --- a/gemfiles/ruby_3.4_rails61_mysql2.gemfile.lock +++ b/gemfiles/ruby_3.4_rails61_mysql2.gemfile.lock @@ -105,7 +105,8 @@ GEM dogstatsd-ruby (5.6.1) erubi (1.13.0) extlz4 (0.3.4) - ffi (1.17.0) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) globalid (1.2.1) activesupport (>= 6.1) google-protobuf (3.25.3) diff --git a/gemfiles/ruby_3.4_rails61_postgres.gemfile.lock b/gemfiles/ruby_3.4_rails61_postgres.gemfile.lock index d6472b2a812..2cd1b693f13 100644 --- a/gemfiles/ruby_3.4_rails61_postgres.gemfile.lock +++ b/gemfiles/ruby_3.4_rails61_postgres.gemfile.lock @@ -105,7 +105,8 @@ GEM dogstatsd-ruby (5.6.1) erubi (1.13.0) extlz4 (0.3.4) - ffi (1.17.0) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) globalid (1.2.1) activesupport (>= 6.1) google-protobuf (3.25.3) diff --git a/gemfiles/ruby_3.4_rails61_postgres_redis.gemfile.lock b/gemfiles/ruby_3.4_rails61_postgres_redis.gemfile.lock index 853fe2afe0b..84c99af15b3 100644 --- a/gemfiles/ruby_3.4_rails61_postgres_redis.gemfile.lock +++ b/gemfiles/ruby_3.4_rails61_postgres_redis.gemfile.lock @@ -105,7 +105,8 @@ GEM dogstatsd-ruby (5.6.1) erubi (1.13.0) extlz4 (0.3.4) - ffi (1.17.0) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) globalid (1.2.1) activesupport (>= 6.1) google-protobuf (3.25.3) diff --git a/gemfiles/ruby_3.4_rails61_postgres_sidekiq.gemfile.lock b/gemfiles/ruby_3.4_rails61_postgres_sidekiq.gemfile.lock index a3795dddbcb..6073885e0fe 100644 --- a/gemfiles/ruby_3.4_rails61_postgres_sidekiq.gemfile.lock +++ b/gemfiles/ruby_3.4_rails61_postgres_sidekiq.gemfile.lock @@ -106,7 +106,8 @@ GEM dogstatsd-ruby (5.6.1) erubi (1.13.0) extlz4 (0.3.4) - ffi (1.17.0) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) globalid (1.2.1) activesupport (>= 6.1) google-protobuf (3.25.3) diff --git a/gemfiles/ruby_3.4_rails61_semantic_logger.gemfile.lock b/gemfiles/ruby_3.4_rails61_semantic_logger.gemfile.lock index 29776284dd4..de877f71354 100644 --- a/gemfiles/ruby_3.4_rails61_semantic_logger.gemfile.lock +++ b/gemfiles/ruby_3.4_rails61_semantic_logger.gemfile.lock @@ -105,7 +105,8 @@ GEM dogstatsd-ruby (5.6.1) erubi (1.13.0) extlz4 (0.3.4) - ffi (1.17.0) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) globalid (1.2.1) activesupport (>= 6.1) google-protobuf (3.25.3) diff --git a/gemfiles/ruby_3.4_rails61_trilogy.gemfile.lock b/gemfiles/ruby_3.4_rails61_trilogy.gemfile.lock index 3417f522d57..ab08653594e 100644 --- a/gemfiles/ruby_3.4_rails61_trilogy.gemfile.lock +++ b/gemfiles/ruby_3.4_rails61_trilogy.gemfile.lock @@ -108,7 +108,8 @@ GEM dogstatsd-ruby (5.6.1) erubi (1.13.0) extlz4 (0.3.4) - ffi (1.17.0) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) globalid (1.2.1) activesupport (>= 6.1) google-protobuf (3.25.3) diff --git a/gemfiles/ruby_3.4_rails7.gemfile.lock b/gemfiles/ruby_3.4_rails7.gemfile.lock index 23e47c46e81..e199d2d3ccd 100644 --- a/gemfiles/ruby_3.4_rails7.gemfile.lock +++ b/gemfiles/ruby_3.4_rails7.gemfile.lock @@ -111,7 +111,9 @@ GEM dogstatsd-ruby (5.6.1) erubi (1.13.0) extlz4 (0.3.4) - ffi (1.17.0) + ffi (1.17.1) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) globalid (1.2.1) activesupport (>= 6.1) google-protobuf (3.25.4) diff --git a/gemfiles/ruby_3.4_rails71.gemfile.lock b/gemfiles/ruby_3.4_rails71.gemfile.lock index 3bf31d83ce7..1924514ec68 100644 --- a/gemfiles/ruby_3.4_rails71.gemfile.lock +++ b/gemfiles/ruby_3.4_rails71.gemfile.lock @@ -122,7 +122,9 @@ GEM drb (2.2.1) erubi (1.13.0) extlz4 (0.3.4) - ffi (1.17.0) + ffi (1.17.1) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) globalid (1.2.1) activesupport (>= 6.1) google-protobuf (3.25.4) diff --git a/gemfiles/ruby_3.4_redis_3.gemfile.lock b/gemfiles/ruby_3.4_redis_3.gemfile.lock index 379c806e722..09552b04eea 100644 --- a/gemfiles/ruby_3.4_redis_3.gemfile.lock +++ b/gemfiles/ruby_3.4_redis_3.gemfile.lock @@ -42,7 +42,8 @@ GEM docile (1.4.0) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) - ffi (1.17.0) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.3) hashdiff (1.1.0) json (2.7.2) diff --git a/gemfiles/ruby_3.4_redis_4.gemfile.lock b/gemfiles/ruby_3.4_redis_4.gemfile.lock index 8786579f576..7690df3ffd0 100644 --- a/gemfiles/ruby_3.4_redis_4.gemfile.lock +++ b/gemfiles/ruby_3.4_redis_4.gemfile.lock @@ -42,7 +42,8 @@ GEM docile (1.4.0) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) - ffi (1.17.0) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.3) hashdiff (1.1.0) json (2.7.2) diff --git a/gemfiles/ruby_3.4_redis_5.gemfile.lock b/gemfiles/ruby_3.4_redis_5.gemfile.lock index 1d0286608d0..fb97f298ab7 100644 --- a/gemfiles/ruby_3.4_redis_5.gemfile.lock +++ b/gemfiles/ruby_3.4_redis_5.gemfile.lock @@ -43,7 +43,8 @@ GEM docile (1.4.0) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) - ffi (1.17.0) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.3) hashdiff (1.1.0) json (2.7.2) diff --git a/gemfiles/ruby_3.4_relational_db.gemfile.lock b/gemfiles/ruby_3.4_relational_db.gemfile.lock index 0f9c10999b0..3656091e8c5 100644 --- a/gemfiles/ruby_3.4_relational_db.gemfile.lock +++ b/gemfiles/ruby_3.4_relational_db.gemfile.lock @@ -57,7 +57,8 @@ GEM docile (1.4.1) dogstatsd-ruby (5.6.3) extlz4 (0.3.4) - ffi (1.17.0) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.5) hashdiff (1.1.2) i18n (1.14.6) diff --git a/gemfiles/ruby_3.4_resque2_redis3.gemfile.lock b/gemfiles/ruby_3.4_resque2_redis3.gemfile.lock index 2181d0b81d1..2cd023229c8 100644 --- a/gemfiles/ruby_3.4_resque2_redis3.gemfile.lock +++ b/gemfiles/ruby_3.4_resque2_redis3.gemfile.lock @@ -42,7 +42,8 @@ GEM docile (1.4.0) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) - ffi (1.17.0) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.3) hashdiff (1.1.0) json (2.7.2) diff --git a/gemfiles/ruby_3.4_resque2_redis4.gemfile.lock b/gemfiles/ruby_3.4_resque2_redis4.gemfile.lock index 8480cc29f1e..093599c7c0a 100644 --- a/gemfiles/ruby_3.4_resque2_redis4.gemfile.lock +++ b/gemfiles/ruby_3.4_resque2_redis4.gemfile.lock @@ -43,7 +43,8 @@ GEM docile (1.4.0) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) - ffi (1.17.0) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.3) hashdiff (1.1.0) json (2.7.2) diff --git a/gemfiles/ruby_3.4_sinatra_2.gemfile.lock b/gemfiles/ruby_3.4_sinatra_2.gemfile.lock index 7dd32ba1e29..83790a8e472 100644 --- a/gemfiles/ruby_3.4_sinatra_2.gemfile.lock +++ b/gemfiles/ruby_3.4_sinatra_2.gemfile.lock @@ -42,7 +42,8 @@ GEM docile (1.4.0) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) - ffi (1.17.0) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.3) hashdiff (1.1.0) json (2.7.2) diff --git a/gemfiles/ruby_3.4_sinatra_3.gemfile.lock b/gemfiles/ruby_3.4_sinatra_3.gemfile.lock index 31412a6cf53..82f1f82ff8b 100644 --- a/gemfiles/ruby_3.4_sinatra_3.gemfile.lock +++ b/gemfiles/ruby_3.4_sinatra_3.gemfile.lock @@ -42,7 +42,8 @@ GEM docile (1.4.0) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) - ffi (1.17.0) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.3) hashdiff (1.1.0) json (2.7.2) diff --git a/gemfiles/ruby_3.4_sinatra_4.gemfile.lock b/gemfiles/ruby_3.4_sinatra_4.gemfile.lock index e85be404281..596e98f4f60 100644 --- a/gemfiles/ruby_3.4_sinatra_4.gemfile.lock +++ b/gemfiles/ruby_3.4_sinatra_4.gemfile.lock @@ -42,7 +42,8 @@ GEM docile (1.4.0) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) - ffi (1.17.0) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.3) hashdiff (1.1.0) json (2.7.2) diff --git a/gemfiles/ruby_3.4_stripe_10.gemfile.lock b/gemfiles/ruby_3.4_stripe_10.gemfile.lock index 6bb9b782b1b..18ae9c366b7 100644 --- a/gemfiles/ruby_3.4_stripe_10.gemfile.lock +++ b/gemfiles/ruby_3.4_stripe_10.gemfile.lock @@ -42,7 +42,8 @@ GEM docile (1.4.1) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) - ffi (1.17.0) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.4) hashdiff (1.1.1) json (2.7.2) diff --git a/gemfiles/ruby_3.4_stripe_11.gemfile.lock b/gemfiles/ruby_3.4_stripe_11.gemfile.lock index 090dc7b61d3..766ac2b427c 100644 --- a/gemfiles/ruby_3.4_stripe_11.gemfile.lock +++ b/gemfiles/ruby_3.4_stripe_11.gemfile.lock @@ -42,7 +42,8 @@ GEM docile (1.4.1) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) - ffi (1.17.0) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.4) hashdiff (1.1.1) json (2.7.2) diff --git a/gemfiles/ruby_3.4_stripe_12.gemfile.lock b/gemfiles/ruby_3.4_stripe_12.gemfile.lock index cad39c3e5f5..962ff5cccd5 100644 --- a/gemfiles/ruby_3.4_stripe_12.gemfile.lock +++ b/gemfiles/ruby_3.4_stripe_12.gemfile.lock @@ -42,7 +42,8 @@ GEM docile (1.4.1) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) - ffi (1.17.0) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.4) hashdiff (1.1.1) json (2.7.2) diff --git a/gemfiles/ruby_3.4_stripe_7.gemfile.lock b/gemfiles/ruby_3.4_stripe_7.gemfile.lock index 058c1577101..75b520d21cb 100644 --- a/gemfiles/ruby_3.4_stripe_7.gemfile.lock +++ b/gemfiles/ruby_3.4_stripe_7.gemfile.lock @@ -42,7 +42,8 @@ GEM docile (1.4.1) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) - ffi (1.17.0) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.4) hashdiff (1.1.1) json (2.7.2) diff --git a/gemfiles/ruby_3.4_stripe_8.gemfile.lock b/gemfiles/ruby_3.4_stripe_8.gemfile.lock index a81bba9fae0..c5040074f9f 100644 --- a/gemfiles/ruby_3.4_stripe_8.gemfile.lock +++ b/gemfiles/ruby_3.4_stripe_8.gemfile.lock @@ -42,7 +42,8 @@ GEM docile (1.4.1) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) - ffi (1.17.0) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.4) hashdiff (1.1.1) json (2.7.2) diff --git a/gemfiles/ruby_3.4_stripe_9.gemfile.lock b/gemfiles/ruby_3.4_stripe_9.gemfile.lock index e62a943ea07..b869b0882e2 100644 --- a/gemfiles/ruby_3.4_stripe_9.gemfile.lock +++ b/gemfiles/ruby_3.4_stripe_9.gemfile.lock @@ -42,7 +42,8 @@ GEM docile (1.4.1) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) - ffi (1.17.0) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.4) hashdiff (1.1.1) json (2.7.2) diff --git a/gemfiles/ruby_3.4_stripe_latest.gemfile.lock b/gemfiles/ruby_3.4_stripe_latest.gemfile.lock index 1aca6905be3..f96b793a9c0 100644 --- a/gemfiles/ruby_3.4_stripe_latest.gemfile.lock +++ b/gemfiles/ruby_3.4_stripe_latest.gemfile.lock @@ -42,7 +42,8 @@ GEM docile (1.4.1) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) - ffi (1.17.0) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.4) hashdiff (1.1.1) json (2.7.2) diff --git a/gemfiles/ruby_3.4_stripe_min.gemfile.lock b/gemfiles/ruby_3.4_stripe_min.gemfile.lock index a0db08d178c..530600e1941 100644 --- a/gemfiles/ruby_3.4_stripe_min.gemfile.lock +++ b/gemfiles/ruby_3.4_stripe_min.gemfile.lock @@ -42,7 +42,8 @@ GEM docile (1.4.1) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) - ffi (1.17.0) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.5) hashdiff (1.1.1) json (2.7.2) From 9605f99ab77df674563ffb538959fe9a40cf835e Mon Sep 17 00:00:00 2001 From: Oleg Pudeyev <156273877+p-datadog@users.noreply.github.com> Date: Mon, 6 Jan 2025 10:40:43 -0500 Subject: [PATCH 110/161] Fix case & grammar in issue template (#4244) --- .github/ISSUE_TEMPLATE/bug_report.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.yaml b/.github/ISSUE_TEMPLATE/bug_report.yaml index d7a5eb59de8..19c39f398d9 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yaml +++ b/.github/ISSUE_TEMPLATE/bug_report.yaml @@ -65,7 +65,7 @@ body: - type: textarea attributes: - label: How does Datadog Help You + label: How does Datadog help you? description: "Optionally, tell us why and how you're using datadog, and what your overall experience with it is!" validations: required: false From d5f88ea553c974e00c35ba92b764cdaa750bf7c8 Mon Sep 17 00:00:00 2001 From: Oleg Pudeyev <156273877+p-datadog@users.noreply.github.com> Date: Tue, 7 Jan 2025 10:58:33 -0500 Subject: [PATCH 111/161] DEBUG-3305 remove dependency on benchmark (#4259) --- lib/datadog/di/instrumenter.rb | 25 ++++++++++++------------- 1 file changed, 12 insertions(+), 13 deletions(-) diff --git a/lib/datadog/di/instrumenter.rb b/lib/datadog/di/instrumenter.rb index b1f8f0f599a..96df68465f8 100644 --- a/lib/datadog/di/instrumenter.rb +++ b/lib/datadog/di/instrumenter.rb @@ -1,8 +1,8 @@ # frozen_string_literal: true -# rubocop:disable Lint/AssignmentInCondition +require_relative '../core/utils/time' -require 'benchmark' +# rubocop:disable Lint/AssignmentInCondition module Datadog module DI @@ -115,22 +115,21 @@ def hook_method(probe, &block) depth: probe.max_capture_depth || settings.dynamic_instrumentation.max_capture_depth, attribute_count: probe.max_capture_attribute_count || settings.dynamic_instrumentation.max_capture_attribute_count) end - rv = nil + start_time = Core::Utils::Time.get_time # Under Ruby 2.6 we cannot just call super(*args, **kwargs) # for methods defined via method_missing. - duration = Benchmark.realtime do # steep:ignore - rv = if args.any? - if kwargs.any? - super(*args, **kwargs, &target_block) - else - super(*args, &target_block) - end - elsif kwargs.any? - super(**kwargs, &target_block) + rv = if args.any? + if kwargs.any? + super(*args, **kwargs, &target_block) else - super(&target_block) + super(*args, &target_block) end + elsif kwargs.any? + super(**kwargs, &target_block) + else + super(&target_block) end + duration = Core::Utils::Time.get_time - start_time # The method itself is not part of the stack trace because # we are getting the stack trace from outside of the method. # Add the method in manually as the top frame. From c3cd4482577add31b21588ca7790e6b9c8f06d15 Mon Sep 17 00:00:00 2001 From: Quinna Halim Date: Tue, 7 Jan 2025 21:13:45 -0500 Subject: [PATCH 112/161] add supported versions workflow (#4210) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * add supported version script and table * update script * rubocop lint * modify script locations, add description to md table * improve table output * wip * refactor code * wip * add supported versions * add branch for testing * remove json to avoid merge conflict issues * update PR body * Update .github/scripts/generate_table_versions.rb Co-authored-by: Steven Bouwkamp * switch to use gem declarations instead of hardcoded mappings * linting checks * cleanup comments * refactor code * cleanup code * Combine duplicate option table rows The documentation for instrumenting rake had two rows for the same option key. This consolidates those entries into a single row. * Enable type checking for AgentSettingsResolver/AgentSettings Steep doesn't seem to be a big fan of Structs so I just went ahead and turned the `AgentSettings` into a regular class that's equivalent to the struct we had before. (In particular, I decided to still keep every field as optional). Ideally this would be a `Data` class, but we're far from dropping support for Rubies that don't have it. * Move url building behavior from `AgentBaseUrl` to `AgentSettings` This is preparation to also share this behavior with profiling. * Refactor crashtracking to use `AgentSettings#url` The behavior from the old `AgentBaseUrl` is now contained in `AgentSettings` so we can clean up the extra logic. * [PROF-11078] Fix profiling exception when agent url is an ipv6 address **What does this PR do?** This PR builds atop #4237 and fixes a similar-ish issue in the profiler caused by the same mishandling of ipv6 addresses. In particular, when provided with an ipv6 address in the agent url, the profiler would fail with an exception: ``` $ env DD_AGENT_HOST=2001:db8:1::2 DD_PROFILING_ENABLED=true \ bundle exec ddprofrb exec ruby -e "sleep 2" dd-trace-rb/lib/datadog/profiling/http_transport.rb:27:in `initialize': Failed to initialize transport: invalid authority (ArgumentError) ``` **Motivation:** Luckily we didn't have any customers using this, as it fails immediately and loudly, but it's still a bug on a configuration that should be supported. **Additional Notes:** Since we had similar buggy logic copy-pasted in crashtracking and profiling (crashtracking had been fixed in #4237) I chose to extract out the relevant logic into the `AgentSettings` class, so that both can reuse it. **How to test the change?** I've added unit test coverage for this issue to profiling, and the snippet above can be used to end-to-end test it's working fine. Here's how it looks on my machine now: ``` E, [2025-01-02T17:32:32.398756 #359317] ERROR -- datadog: [datadog] (dd-trace-rb/lib/datadog/profiling/http_transport.rb:68:in `export') Failed to report profiling data (agent: http://[2001:db8:1::2]:8126/): failed ddog_prof_Exporter_send: error trying to connect: tcp connect error: Network is unreachable (os error 101): tcp connect error: Network is unreachable (os error 101): Network is unreachable (os error 101) ``` E.g. we correctly try to connect to the dummy address, and fail :) (Note: The error message is a bit ugly AND repeats itself a bit. That's being tracked separately in https://github.com/DataDog/libdatadog/issues/283 ) * Implement `==` for new `AgentSettings` class Forgot this one, some of our tests relied on it! * use Ruby 3.4.1 for test-memcheck GHA * Update exceptions file with another variant of thread creation memory leak Since our exceptions match on the stack, they are affected by internal naming changes, and it looks like a new `ruby_xcalloc_body` function is now showing up in the stack. * Introduce Ruby 3.5 gemfile variant for testing with dev builds This is waaay incomplete in terms of adding support for Ruby 3.5 but should get us going for ASAN testing for now. * Update list of files used to compute cache checksum In practice this shouldn't make a difference, since the final lockfiles are supposed to be a superset of the root-level gemfile BUT the `Appraisals` file no longer exists anyway and "just in case" let's have it anyway as it seems more correct. * Bump Ruby 3.4 integration image to stable version * Remove workaround for strscan issue This is not expected to be an issue in 3.5 (and is probably fixed for 3.4 as well, but I'll leave that for a separate PR to not affect the appraisals). * Add unsafe api calls checker to track down issues such as #4195 This checker is used to detect accidental thread scheduling switching points happening during profiling sampling. See the bigger comment in unsafe_api_calls_check.h . I was able to check that this checker correctly triggers for the bug in #4195, and also the bug I'm going to fix next, which is the use of `rb_hash_lookup` in the otel context reading code. * Fix going into Ruby code when looking up otel context `rb_hash_lookup` calls `#hash` on the key being looked up so it's safe to use unless during sampling. This can cause the same issue as we saw in #4195 leading to ``` [BUG] unexpected situation - recordd:1 current:0 -- C level backtrace information ------------------------------------------- ruby(rb_print_backtrace+0x11) [0x55ba03ccf90f] vm_dump.c:820 ruby(rb_vm_bugreport) vm_dump.c:1151 ruby(bug_report_end+0x0) [0x55ba03e91607] error.c:1042 ruby(rb_bug_without_die) error.c:1042 ruby(die+0x0) [0x55ba03ac0998] error.c:1050 ruby(rb_bug) error.c:1052 ruby(disallow_reentry+0x0) [0x55ba03ab6dcc] vm_sync.c:226 ruby(rb_ec_vm_lock_rec_check+0x1a) [0x55ba03cb17aa] eval_intern.h:144 ruby(rb_ec_tag_state) eval_intern.h:155 ruby(rb_vm_exec) vm.c:2484 ruby(vm_invoke_proc+0x201) [0x55ba03cb62b1] vm.c:1509 ruby(rb_vm_invoke_proc+0x33) [0x55ba03cb65d3] vm.c:1728 ruby(thread_do_start_proc+0x176) [0x55ba03c63516] thread.c:598 ruby(thread_do_start+0x12) [0x55ba03c648a2] thread.c:615 ruby(thread_start_func_2) thread.c:672 ruby(nt_start+0x107) [0x55ba03c65137] thread_pthread.c:2187 /lib/x86_64-linux-gnu/libpthread.so.0(start_thread+0xd9) [0x7ff360b66609] /lib/x86_64-linux-gnu/libc.so.6(clone+0x43) [0x7ff360a70353] ``` * Avoid trying to sample allocations when VM is raising exception During my experiments to reproduce issues around allocation profiling, I've noted that the VM is in an especially delicate state during exception raising, so let's just decline to sample in this situation. * Update tests with new signatures for test methods * Check if symbol is static before calling SYM2ID on it It occurs to me that if a symbol is dynamic, we were causing it to become a static symbol (e.g. making it never be able to be garbage collected). This can be very bad! And also, we know the symbol we're looking for must be a static symbol because if nothing else, our initialization caused it to become a static symbol. Thus, if we see a dynamic symbol, we can stop there, since by definition it won't be the symbol we're looking after. This is... really awkward to add a specific unit test for, so I've just relied on our existing test coverage to show that this has not affected the correctness of our otel code. * Document that unsafe api calls checker is only for test code * Add 3.4 support * Update DevelopmentGuide * Remove `racc` gem from 3.3 and 3.4 appraisal files * [🤖] Lock Dependency: https://github.com/DataDog/dd-trace-rb/actions/runs/12595964519 * Remove strscan specification in 3.4 gemfile * [🤖] Lock Dependency: https://github.com/DataDog/dd-trace-rb/actions/runs/12595969993 * add hardcoded update workflow file --------- Co-authored-by: Steven Bouwkamp Co-authored-by: Bradley Schaefer Co-authored-by: Ivo Anjo Co-authored-by: Andrey Marchenko Co-authored-by: Sarah Chen Co-authored-by: ivoanjo --- .github/scripts/find_gem_version_bounds.rb | 149 ++++++++++++++++++ .github/scripts/generate_table_versions.rb | 21 +++ .../workflows/generate-supported-versions.yml | 49 ++++++ .../contrib/action_cable/integration.rb | 3 + .../contrib/action_mailer/integration.rb | 4 + .../contrib/action_pack/integration.rb | 3 + .../contrib/action_view/integration.rb | 3 + .../tracing/contrib/active_job/integration.rb | 3 + .../contrib/active_record/integration.rb | 4 + .../contrib/active_support/integration.rb | 3 + .../tracing/contrib/aws/integration.rb | 3 + .../contrib/concurrent_ruby/integration.rb | 3 + .../tracing/contrib/httprb/integration.rb | 3 + .../tracing/contrib/kafka/integration.rb | 3 + .../tracing/contrib/mongodb/integration.rb | 3 + .../tracing/contrib/opensearch/integration.rb | 3 + .../tracing/contrib/presto/integration.rb | 3 + .../contrib/rest_client/integration.rb | 3 + 18 files changed, 266 insertions(+) create mode 100644 .github/scripts/find_gem_version_bounds.rb create mode 100644 .github/scripts/generate_table_versions.rb create mode 100644 .github/workflows/generate-supported-versions.yml diff --git a/.github/scripts/find_gem_version_bounds.rb b/.github/scripts/find_gem_version_bounds.rb new file mode 100644 index 00000000000..93daee54981 --- /dev/null +++ b/.github/scripts/find_gem_version_bounds.rb @@ -0,0 +1,149 @@ +require 'pathname' +require 'rubygems' +require 'json' +require 'bundler' + +lib = File.expand_path('lib', __dir__) +$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) +require 'datadog' + +class GemfileProcessor + SPECIAL_CASES = { + "opensearch" => "OpenSearch" # special case because opensearch = OpenSearch not Opensearch + }.freeze + EXCLUDED_INTEGRATIONS = ["configuration", "propagation", "utils"].freeze + + def initialize(directory: 'gemfiles/', contrib_dir: 'lib/datadog/tracing/contrib/') + @directory = directory + @contrib_dir = contrib_dir + @min_gems = { 'ruby' => {}, 'jruby' => {} } + @max_gems = { 'ruby' => {}, 'jruby' => {} } + @integration_json_mapping = {} + end + + def process + parse_gemfiles + process_integrations + include_hardcoded_versions + write_output + end + + private + + + def parse_gemfiles(directory = 'gemfiles/') + gemfiles = Dir.glob(File.join(@directory, '*')) + gemfiles.each do |gemfile_name| + runtime = File.basename(gemfile_name).split('_').first # ruby or jruby + next unless %w[ruby jruby].include?(runtime) + # parse the gemfile + if gemfile_name.end_with?(".gemfile") + process_gemfile(gemfile_name, runtime) + elsif gemfile_name.end_with?('.gemfile.lock') + process_lockfile(gemfile_name, runtime) + end + end + + end + + def process_gemfile(gemfile_name, runtime) + begin + definition = Bundler::Definition.build(gemfile_name, nil, nil) + definition.dependencies.each do |dependency| + gem_name = dependency.name + version = dependency.requirement.to_s + update_gem_versions(runtime, gem_name, version) + end + rescue Bundler::GemfileError => e + puts "Error reading Gemfile: #{e.message}" + end + end + + def process_lockfile(gemfile_name, runtime) + lockfile_contents = File.read(gemfile_name) + parser = Bundler::LockfileParser.new(lockfile_contents) + parser.specs.each do |spec| + gem_name = spec.name + version = spec.version.to_s + update_gem_versions(runtime, gem_name, version) + end + end + + def update_gem_versions(runtime, gem_name, version) + return unless version_valid?(version) + + gem_version = Gem::Version.new(version) + + # Update minimum gems + if @min_gems[runtime][gem_name].nil? || gem_version < Gem::Version.new(@min_gems[runtime][gem_name]) + @min_gems[runtime][gem_name] = version + end + + # Update maximum gems + if @max_gems[runtime][gem_name].nil? || gem_version > Gem::Version.new(@max_gems[runtime][gem_name]) + @max_gems[runtime][gem_name] = version + end + end + + # Helper: Validate the version format + def version_valid?(version) + return false if version.nil? || version.strip.empty? + + Gem::Version.new(version) + true + rescue ArgumentError + false + end + + + def process_integrations + integrations = Datadog::Tracing::Contrib::REGISTRY.map(&:name).map(&:to_s) + integrations.each do |integration| + next if EXCLUDED_INTEGRATIONS.include?(integration) + + integration_name = resolve_integration_name(integration) + + @integration_json_mapping[integration] = [ + @min_gems['ruby'][integration_name], + @max_gems['ruby'][integration_name], + @min_gems['jruby'][integration_name], + @max_gems['jruby'][integration_name] + ] + end + end + + def include_hardcoded_versions + # `httpx` is maintained externally + @integration_json_mapping['httpx'] = [ + '0.11', # Min version Ruby + '0.11', # Max version Ruby + nil, # Min version JRuby + nil # Max version JRuby + ] + + # `makara` is part of `activerecord` + @integration_json_mapping['makara'] = [ + '0.3.5', # Min version Ruby + '0.3.5', # Max version Ruby + nil, # Min version JRuby + nil # Max version JRuby + ] + end + + def resolve_integration_name(integration) + mod_name = SPECIAL_CASES[integration] || integration.split('_').map(&:capitalize).join + module_name = "Datadog::Tracing::Contrib::#{mod_name}" + integration_module = Object.const_get(module_name)::Integration + integration_module.respond_to?(:gem_name) ? integration_module.gem_name : integration + rescue NameError, NoMethodError + puts "Fallback for #{integration}: module or gem_name not found." + integration + end + + def write_output + @integration_json_mapping = @integration_json_mapping.sort.to_h + File.write("gem_output.json", JSON.pretty_generate(@integration_json_mapping)) + end +end + +GemfileProcessor.new.process \ No newline at end of file diff --git a/.github/scripts/generate_table_versions.rb b/.github/scripts/generate_table_versions.rb new file mode 100644 index 00000000000..bbc8ef62dcd --- /dev/null +++ b/.github/scripts/generate_table_versions.rb @@ -0,0 +1,21 @@ +require 'json' + +input_file = 'gem_output.json' +output_file = 'integration_versions.md' + +data = JSON.parse(File.read(input_file)) + +comment = "# Integrations\n\n" +header = "| Integration | Ruby Min | Ruby Max | JRuby Min | JRuby Max |\n" +separator = "|-------------|----------|-----------|----------|----------|\n" +rows = data.map do |integration_name, versions| + ruby_min, ruby_max, jruby_min, jruby_max = versions.map { |v| v || "None" } + "| #{integration_name} | #{ruby_min} | #{ruby_max} | #{jruby_min} | #{jruby_max} |" +end + +File.open(output_file, 'w') do |file| + file.puts comment + file.puts header + file.puts separator + rows.each { |row| file.puts row } +end diff --git a/.github/workflows/generate-supported-versions.yml b/.github/workflows/generate-supported-versions.yml new file mode 100644 index 00000000000..ae64be78c6f --- /dev/null +++ b/.github/workflows/generate-supported-versions.yml @@ -0,0 +1,49 @@ +name: "Generate Supported Versions" + +on: + workflow_dispatch: + + +concurrency: + group: ${{ github.workflow }} + cancel-in-progress: true + +jobs: + build: + runs-on: ubuntu-22.04 + permissions: + contents: read + steps: + - name: Checkout code + uses: actions/checkout@v4 + + - name: Set up Ruby + uses: ruby/setup-ruby@v1 + with: + bundler-cache: true # runs bundle install + ruby-version: "3.3" + + - name: Update latest + run: bundle exec ruby .github/scripts/find_gem_version_bounds.rb + + - name: Generate versions table + run: ruby .github/scripts/generate_table_versions.rb + + - run: git diff + + - name: Create Pull Request + id: cpr + uses: peter-evans/create-pull-request@v7 + with: + token: ${{ secrets.GHA_PAT }} + branch: auto-generate/update-supported-versions + title: '[🤖] Update Supported Versions' + base: master + labels: dev/internal, integrations + commit-message: "Test creating supported versions" + delete-branch: true + body: | + This is a PR to update the table for supported integration versions. + Workflow run: [Generate Supported Versions](https://github.com/DataDog/dd-trace-rb/actions/workflows/generate-supported-versions.yml) + This should be tied to tracer releases, or triggered manually. + diff --git a/lib/datadog/tracing/contrib/action_cable/integration.rb b/lib/datadog/tracing/contrib/action_cable/integration.rb index fa1086e74ac..1699238dd4c 100644 --- a/lib/datadog/tracing/contrib/action_cable/integration.rb +++ b/lib/datadog/tracing/contrib/action_cable/integration.rb @@ -17,6 +17,9 @@ class Integration # @public_api Changing the integration name or integration options can cause breaking changes register_as :action_cable, auto_patch: false + def self.gem_name + 'actioncable' + end def self.version Gem.loaded_specs['actioncable'] && Gem.loaded_specs['actioncable'].version diff --git a/lib/datadog/tracing/contrib/action_mailer/integration.rb b/lib/datadog/tracing/contrib/action_mailer/integration.rb index fc9b4e5a980..07fef8095af 100644 --- a/lib/datadog/tracing/contrib/action_mailer/integration.rb +++ b/lib/datadog/tracing/contrib/action_mailer/integration.rb @@ -18,6 +18,10 @@ class Integration # @public_api Changing the integration name or integration options can cause breaking changes register_as :action_mailer, auto_patch: false + def self.gem_name + 'actionmailer' + end + def self.version Gem.loaded_specs['actionmailer'] && Gem.loaded_specs['actionmailer'].version end diff --git a/lib/datadog/tracing/contrib/action_pack/integration.rb b/lib/datadog/tracing/contrib/action_pack/integration.rb index 881d9ce273c..c0efa9196dc 100644 --- a/lib/datadog/tracing/contrib/action_pack/integration.rb +++ b/lib/datadog/tracing/contrib/action_pack/integration.rb @@ -18,6 +18,9 @@ class Integration # @public_api Changing the integration name or integration options can cause breaking changes register_as :action_pack, auto_patch: false + def self.gem_name + 'actionpack' + end def self.version Gem.loaded_specs['actionpack'] && Gem.loaded_specs['actionpack'].version diff --git a/lib/datadog/tracing/contrib/action_view/integration.rb b/lib/datadog/tracing/contrib/action_view/integration.rb index c56240be1f4..48dd75fe94c 100644 --- a/lib/datadog/tracing/contrib/action_view/integration.rb +++ b/lib/datadog/tracing/contrib/action_view/integration.rb @@ -18,6 +18,9 @@ class Integration # @public_api Changing the integration name or integration options can cause breaking changes register_as :action_view, auto_patch: false + def self.gem_name + 'actionview' + end def self.version # ActionView is its own gem in Rails 4.1+ diff --git a/lib/datadog/tracing/contrib/active_job/integration.rb b/lib/datadog/tracing/contrib/active_job/integration.rb index 89718a647f2..73b912a894f 100644 --- a/lib/datadog/tracing/contrib/active_job/integration.rb +++ b/lib/datadog/tracing/contrib/active_job/integration.rb @@ -17,6 +17,9 @@ class Integration # @public_api Changing the integration name or integration options can cause breaking changes register_as :active_job, auto_patch: false + def self.gem_name + 'activejob' + end def self.version Gem.loaded_specs['activejob'] && Gem.loaded_specs['activejob'].version diff --git a/lib/datadog/tracing/contrib/active_record/integration.rb b/lib/datadog/tracing/contrib/active_record/integration.rb index d5fd2294aae..f9ac1048453 100644 --- a/lib/datadog/tracing/contrib/active_record/integration.rb +++ b/lib/datadog/tracing/contrib/active_record/integration.rb @@ -22,6 +22,10 @@ class Integration # @public_api Changing the integration name or integration options can cause breaking changes register_as :active_record, auto_patch: false + def self.gem_name + 'activerecord' + end + def self.version Gem.loaded_specs['activerecord'] && Gem.loaded_specs['activerecord'].version end diff --git a/lib/datadog/tracing/contrib/active_support/integration.rb b/lib/datadog/tracing/contrib/active_support/integration.rb index 9cf29c4b1c5..e335a6349a1 100644 --- a/lib/datadog/tracing/contrib/active_support/integration.rb +++ b/lib/datadog/tracing/contrib/active_support/integration.rb @@ -19,6 +19,9 @@ class Integration # @public_api Changing the integration name or integration options can cause breaking changes register_as :active_support, auto_patch: false + def self.gem_name + 'activesupport' + end def self.version Gem.loaded_specs['activesupport'] && Gem.loaded_specs['activesupport'].version diff --git a/lib/datadog/tracing/contrib/aws/integration.rb b/lib/datadog/tracing/contrib/aws/integration.rb index b3a631bcb4a..167ea1be49a 100644 --- a/lib/datadog/tracing/contrib/aws/integration.rb +++ b/lib/datadog/tracing/contrib/aws/integration.rb @@ -16,6 +16,9 @@ class Integration # @public_api Changing the integration name or integration options can cause breaking changes register_as :aws, auto_patch: true + def self.gem_name + 'aws-sdk-core' + end def self.version if Gem.loaded_specs['aws-sdk'] diff --git a/lib/datadog/tracing/contrib/concurrent_ruby/integration.rb b/lib/datadog/tracing/contrib/concurrent_ruby/integration.rb index 17ac1daf8ca..e82414273a3 100644 --- a/lib/datadog/tracing/contrib/concurrent_ruby/integration.rb +++ b/lib/datadog/tracing/contrib/concurrent_ruby/integration.rb @@ -16,6 +16,9 @@ class Integration # @public_api Changing the integration name or integration options can cause breaking changes register_as :concurrent_ruby + def self.gem_name + 'concurrent-ruby' + end def self.version Gem.loaded_specs['concurrent-ruby'] && Gem.loaded_specs['concurrent-ruby'].version diff --git a/lib/datadog/tracing/contrib/httprb/integration.rb b/lib/datadog/tracing/contrib/httprb/integration.rb index ba4dfd727dd..a5dd5fcc708 100644 --- a/lib/datadog/tracing/contrib/httprb/integration.rb +++ b/lib/datadog/tracing/contrib/httprb/integration.rb @@ -17,6 +17,9 @@ class Integration # @public_api Changing the integration name or integration options can cause breaking changes register_as :httprb + def self.gem_name + 'http' + end def self.version Gem.loaded_specs['http'] && Gem.loaded_specs['http'].version diff --git a/lib/datadog/tracing/contrib/kafka/integration.rb b/lib/datadog/tracing/contrib/kafka/integration.rb index ce708f50123..d0e934cb06d 100644 --- a/lib/datadog/tracing/contrib/kafka/integration.rb +++ b/lib/datadog/tracing/contrib/kafka/integration.rb @@ -16,6 +16,9 @@ class Integration # @public_api Changing the integration name or integration options can cause breaking changes register_as :kafka, auto_patch: false + def self.gem_name + 'ruby-kafka' + end def self.version Gem.loaded_specs['ruby-kafka'] && Gem.loaded_specs['ruby-kafka'].version diff --git a/lib/datadog/tracing/contrib/mongodb/integration.rb b/lib/datadog/tracing/contrib/mongodb/integration.rb index 4a31fedbb3d..e4ad350ea62 100644 --- a/lib/datadog/tracing/contrib/mongodb/integration.rb +++ b/lib/datadog/tracing/contrib/mongodb/integration.rb @@ -17,6 +17,9 @@ class Integration # @public_api Changing the integration name or integration options can cause breaking changes register_as :mongo, auto_patch: true + def self.gem_name + 'mongo' + end def self.version Gem.loaded_specs['mongo'] && Gem.loaded_specs['mongo'].version diff --git a/lib/datadog/tracing/contrib/opensearch/integration.rb b/lib/datadog/tracing/contrib/opensearch/integration.rb index 0bf906cb07e..d0863e1efe8 100644 --- a/lib/datadog/tracing/contrib/opensearch/integration.rb +++ b/lib/datadog/tracing/contrib/opensearch/integration.rb @@ -16,6 +16,9 @@ class Integration # @public_api Changing the integration name or integration options can cause breaking changes register_as :opensearch, auto_patch: true + def self.gem_name + 'opensearch-ruby' + end def self.version Gem.loaded_specs['opensearch-ruby'] \ diff --git a/lib/datadog/tracing/contrib/presto/integration.rb b/lib/datadog/tracing/contrib/presto/integration.rb index 63c55c9bdc4..7bfae3d42a2 100644 --- a/lib/datadog/tracing/contrib/presto/integration.rb +++ b/lib/datadog/tracing/contrib/presto/integration.rb @@ -16,6 +16,9 @@ class Integration # @public_api Changing the integration name or integration options can cause breaking changes register_as :presto + def self.gem_name + 'presto-client' + end def self.version Gem.loaded_specs['presto-client'] && Gem.loaded_specs['presto-client'].version diff --git a/lib/datadog/tracing/contrib/rest_client/integration.rb b/lib/datadog/tracing/contrib/rest_client/integration.rb index 04ee5339733..d3dc0bf3c30 100644 --- a/lib/datadog/tracing/contrib/rest_client/integration.rb +++ b/lib/datadog/tracing/contrib/rest_client/integration.rb @@ -16,6 +16,9 @@ class Integration # @public_api Changing the integration name or integration options can cause breaking changes register_as :rest_client + def self.gem_name + 'rest-client' + end def self.version Gem.loaded_specs['rest-client'] && Gem.loaded_specs['rest-client'].version From 9440c03b5b4694978143a62e3fcda9263cf05fc5 Mon Sep 17 00:00:00 2001 From: Oleg Pudeyev <156273877+p-datadog@users.noreply.github.com> Date: Wed, 8 Jan 2025 00:00:57 -0500 Subject: [PATCH 113/161] DEBUG-3182 move Rails utils to core (#4261) --- Steepfile | 2 +- lib/datadog/{tracing => core}/contrib/rails/utils.rb | 4 +--- lib/datadog/tracing/contrib/action_cable/integration.rb | 4 ++-- lib/datadog/tracing/contrib/action_mailer/integration.rb | 4 ++-- lib/datadog/tracing/contrib/action_pack/integration.rb | 4 ++-- lib/datadog/tracing/contrib/action_view/integration.rb | 4 ++-- lib/datadog/tracing/contrib/active_job/integration.rb | 4 ++-- lib/datadog/tracing/contrib/active_record/integration.rb | 4 ++-- lib/datadog/tracing/contrib/active_support/integration.rb | 4 ++-- lib/datadog/tracing/contrib/auto_instrument.rb | 4 ++-- lib/datadog/tracing/contrib/rack/integration.rb | 4 ++-- lib/datadog/tracing/contrib/rails/framework.rb | 4 ++-- lib/datadog/tracing/contrib/rails/patcher.rb | 2 +- sig/datadog/{tracing => core}/contrib/rails/utils.rbs | 6 +++--- spec/datadog/{tracing => core}/contrib/rails/utils_spec.rb | 4 ++-- spec/datadog/tracing/contrib/auto_instrument_examples.rb | 4 ++-- 16 files changed, 30 insertions(+), 32 deletions(-) rename lib/datadog/{tracing => core}/contrib/rails/utils.rb (91%) rename sig/datadog/{tracing => core}/contrib/rails/utils.rbs (50%) rename spec/datadog/{tracing => core}/contrib/rails/utils_spec.rb (81%) diff --git a/Steepfile b/Steepfile index d2cce9c3ef6..ffb73d3e43a 100644 --- a/Steepfile +++ b/Steepfile @@ -89,6 +89,7 @@ target :datadog do ignore 'lib/datadog/core/configuration/option_definition_set.rb' ignore 'lib/datadog/core/configuration/options.rb' ignore 'lib/datadog/core/configuration/settings.rb' + ignore 'lib/datadog/core/contrib/rails/utils.rb' ignore 'lib/datadog/core/diagnostics/health.rb' ignore 'lib/datadog/core/encoding.rb' ignore 'lib/datadog/core/environment/container.rb' @@ -426,7 +427,6 @@ target :datadog do ignore 'lib/datadog/tracing/contrib/rails/middlewares.rb' ignore 'lib/datadog/tracing/contrib/rails/patcher.rb' ignore 'lib/datadog/tracing/contrib/rails/railtie.rb' - ignore 'lib/datadog/tracing/contrib/rails/utils.rb' ignore 'lib/datadog/tracing/contrib/rake/configuration/settings.rb' ignore 'lib/datadog/tracing/contrib/rake/ext.rb' ignore 'lib/datadog/tracing/contrib/rake/instrumentation.rb' diff --git a/lib/datadog/tracing/contrib/rails/utils.rb b/lib/datadog/core/contrib/rails/utils.rb similarity index 91% rename from lib/datadog/tracing/contrib/rails/utils.rb rename to lib/datadog/core/contrib/rails/utils.rb index 1e77a5dbaee..864f8ab3c9f 100644 --- a/lib/datadog/tracing/contrib/rails/utils.rb +++ b/lib/datadog/core/contrib/rails/utils.rb @@ -1,9 +1,7 @@ # frozen_string_literal: true -require_relative '../analytics' - module Datadog - module Tracing + module Core module Contrib module Rails # common utilities for Rails diff --git a/lib/datadog/tracing/contrib/action_cable/integration.rb b/lib/datadog/tracing/contrib/action_cable/integration.rb index 1699238dd4c..3b48ecedc64 100644 --- a/lib/datadog/tracing/contrib/action_cable/integration.rb +++ b/lib/datadog/tracing/contrib/action_cable/integration.rb @@ -3,7 +3,7 @@ require_relative '../integration' require_relative 'configuration/settings' require_relative 'patcher' -require_relative '../rails/utils' +require_relative '../../../core/contrib/rails/utils' module Datadog module Tracing @@ -36,7 +36,7 @@ def self.compatible? # enabled by rails integration so should only auto instrument # if detected that it is being used without rails def auto_instrument? - !Contrib::Rails::Utils.railtie_supported? + !Core::Contrib::Rails::Utils.railtie_supported? end def new_configuration diff --git a/lib/datadog/tracing/contrib/action_mailer/integration.rb b/lib/datadog/tracing/contrib/action_mailer/integration.rb index 07fef8095af..e9c394c68d5 100644 --- a/lib/datadog/tracing/contrib/action_mailer/integration.rb +++ b/lib/datadog/tracing/contrib/action_mailer/integration.rb @@ -3,7 +3,7 @@ require_relative 'configuration/settings' require_relative 'patcher' require_relative '../integration' -require_relative '../rails/utils' +require_relative '../../../core/contrib/rails/utils' module Datadog module Tracing @@ -37,7 +37,7 @@ def self.compatible? # enabled by rails integration so should only auto instrument # if detected that it is being used without rails def auto_instrument? - !Contrib::Rails::Utils.railtie_supported? + !Core::Contrib::Rails::Utils.railtie_supported? end def new_configuration diff --git a/lib/datadog/tracing/contrib/action_pack/integration.rb b/lib/datadog/tracing/contrib/action_pack/integration.rb index c0efa9196dc..17a2b5810d2 100644 --- a/lib/datadog/tracing/contrib/action_pack/integration.rb +++ b/lib/datadog/tracing/contrib/action_pack/integration.rb @@ -4,7 +4,7 @@ require_relative 'patcher' require_relative '../integration' require_relative '../rails/ext' -require_relative '../rails/utils' +require_relative '../../../core/contrib/rails/utils' module Datadog module Tracing @@ -37,7 +37,7 @@ def self.compatible? # enabled by rails integration so should only auto instrument # if detected that it is being used without rails def auto_instrument? - !Contrib::Rails::Utils.railtie_supported? + !Core::Contrib::Rails::Utils.railtie_supported? end def new_configuration diff --git a/lib/datadog/tracing/contrib/action_view/integration.rb b/lib/datadog/tracing/contrib/action_view/integration.rb index 48dd75fe94c..a4f2c6e270a 100644 --- a/lib/datadog/tracing/contrib/action_view/integration.rb +++ b/lib/datadog/tracing/contrib/action_view/integration.rb @@ -4,7 +4,7 @@ require_relative 'patcher' require_relative '../integration' require_relative '../rails/ext' -require_relative '../rails/utils' +require_relative '../../../core/contrib/rails/utils' module Datadog module Tracing @@ -44,7 +44,7 @@ def self.compatible? # enabled by rails integration so should only auto instrument # if detected that it is being used without rails def auto_instrument? - !Contrib::Rails::Utils.railtie_supported? + !Core::Contrib::Rails::Utils.railtie_supported? end def new_configuration diff --git a/lib/datadog/tracing/contrib/active_job/integration.rb b/lib/datadog/tracing/contrib/active_job/integration.rb index 73b912a894f..45b1900ede6 100644 --- a/lib/datadog/tracing/contrib/active_job/integration.rb +++ b/lib/datadog/tracing/contrib/active_job/integration.rb @@ -3,7 +3,7 @@ require_relative 'configuration/settings' require_relative 'patcher' require_relative '../integration' -require_relative '../rails/utils' +require_relative '../../../core/contrib/rails/utils' module Datadog module Tracing @@ -36,7 +36,7 @@ def self.compatible? # enabled by rails integration so should only auto instrument # if detected that it is being used without rails def auto_instrument? - !Contrib::Rails::Utils.railtie_supported? + !Core::Contrib::Rails::Utils.railtie_supported? end def new_configuration diff --git a/lib/datadog/tracing/contrib/active_record/integration.rb b/lib/datadog/tracing/contrib/active_record/integration.rb index f9ac1048453..6b3dbf4d33b 100644 --- a/lib/datadog/tracing/contrib/active_record/integration.rb +++ b/lib/datadog/tracing/contrib/active_record/integration.rb @@ -7,7 +7,7 @@ require_relative '../component' require_relative '../integration' require_relative '../rails/ext' -require_relative '../rails/utils' +require_relative '../../../core/contrib/rails/utils' module Datadog module Tracing @@ -41,7 +41,7 @@ def self.compatible? # enabled by rails integration so should only auto instrument # if detected that it is being used without rails def auto_instrument? - !Contrib::Rails::Utils.railtie_supported? + !Core::Contrib::Rails::Utils.railtie_supported? end def new_configuration diff --git a/lib/datadog/tracing/contrib/active_support/integration.rb b/lib/datadog/tracing/contrib/active_support/integration.rb index e335a6349a1..c546a02ddbf 100644 --- a/lib/datadog/tracing/contrib/active_support/integration.rb +++ b/lib/datadog/tracing/contrib/active_support/integration.rb @@ -5,7 +5,7 @@ require_relative 'patcher' require_relative 'cache/redis' require_relative '../rails/ext' -require_relative '../rails/utils' +require_relative '../../../core/contrib/rails/utils' module Datadog module Tracing @@ -38,7 +38,7 @@ def self.compatible? # enabled by rails integration so should only auto instrument # if detected that it is being used without rails def auto_instrument? - !Contrib::Rails::Utils.railtie_supported? + !Core::Contrib::Rails::Utils.railtie_supported? end def new_configuration diff --git a/lib/datadog/tracing/contrib/auto_instrument.rb b/lib/datadog/tracing/contrib/auto_instrument.rb index 98556045be1..23988c2e2f6 100644 --- a/lib/datadog/tracing/contrib/auto_instrument.rb +++ b/lib/datadog/tracing/contrib/auto_instrument.rb @@ -9,10 +9,10 @@ module Tracing module Contrib # Auto-activate instrumentation def self.auto_instrument! - require_relative 'rails/utils' + require_relative '../../core/contrib/rails/utils' # Defer to Rails if this is a Rails application - if Datadog::Tracing::Contrib::Rails::Utils.railtie_supported? + if Datadog::Core::Contrib::Rails::Utils.railtie_supported? require_relative 'rails/auto_instrument_railtie' else AutoInstrument.patch_all! diff --git a/lib/datadog/tracing/contrib/rack/integration.rb b/lib/datadog/tracing/contrib/rack/integration.rb index febd5526690..72166753885 100644 --- a/lib/datadog/tracing/contrib/rack/integration.rb +++ b/lib/datadog/tracing/contrib/rack/integration.rb @@ -3,7 +3,7 @@ require_relative '../integration' require_relative 'configuration/settings' require_relative 'patcher' -require_relative '../rails/utils' +require_relative '../../../core/contrib/rails/utils' module Datadog module Tracing @@ -33,7 +33,7 @@ def self.compatible? # enabled by rails integration so should only auto instrument # if detected that it is being used without rails def auto_instrument? - !Contrib::Rails::Utils.railtie_supported? + !Core::Contrib::Rails::Utils.railtie_supported? end def new_configuration diff --git a/lib/datadog/tracing/contrib/rails/framework.rb b/lib/datadog/tracing/contrib/rails/framework.rb index 6a36cb0168b..66f03dd3da9 100644 --- a/lib/datadog/tracing/contrib/rails/framework.rb +++ b/lib/datadog/tracing/contrib/rails/framework.rb @@ -9,7 +9,7 @@ require_relative '../grape/endpoint' require_relative '../lograge/integration' require_relative 'ext' -require_relative 'utils' +require_relative '../../../core/contrib/rails/utils' require_relative '../semantic_logger/integration' module Datadog @@ -41,7 +41,7 @@ def self.setup # being executed, but here we know better, get it from Rails config. # Don't set this if service has been explicitly provided by the user. if datadog_config.service_without_fallback.nil? - datadog_config.service = rails_config[:service_name] || Utils.app_name + datadog_config.service = rails_config[:service_name] || Core::Contrib::Rails::Utils.app_name end activate_rack!(datadog_config, rails_config) diff --git a/lib/datadog/tracing/contrib/rails/patcher.rb b/lib/datadog/tracing/contrib/rails/patcher.rb index a3e34d3ff85..0fadc07735c 100644 --- a/lib/datadog/tracing/contrib/rails/patcher.rb +++ b/lib/datadog/tracing/contrib/rails/patcher.rb @@ -6,7 +6,7 @@ require_relative 'log_injection' require_relative 'middlewares' require_relative 'runner' -require_relative 'utils' +require_relative '../../../core/contrib/rails/utils' require_relative '../semantic_logger/patcher' module Datadog diff --git a/sig/datadog/tracing/contrib/rails/utils.rbs b/sig/datadog/core/contrib/rails/utils.rbs similarity index 50% rename from sig/datadog/tracing/contrib/rails/utils.rbs rename to sig/datadog/core/contrib/rails/utils.rbs index a683874122f..49db36402bc 100644 --- a/sig/datadog/tracing/contrib/rails/utils.rbs +++ b/sig/datadog/core/contrib/rails/utils.rbs @@ -1,11 +1,11 @@ module Datadog - module Tracing + module Core module Contrib module Rails module Utils - def self.app_name: () -> untyped + def self.app_name: () -> String - def self.railtie_supported?: () -> untyped + def self.railtie_supported?: () -> bool end end end diff --git a/spec/datadog/tracing/contrib/rails/utils_spec.rb b/spec/datadog/core/contrib/rails/utils_spec.rb similarity index 81% rename from spec/datadog/tracing/contrib/rails/utils_spec.rb rename to spec/datadog/core/contrib/rails/utils_spec.rb index 66a08af7d76..b3f04ed32bc 100644 --- a/spec/datadog/tracing/contrib/rails/utils_spec.rb +++ b/spec/datadog/core/contrib/rails/utils_spec.rb @@ -1,7 +1,7 @@ -require 'lib/datadog/tracing/contrib/rails/utils' +require 'lib/datadog/core/contrib/rails/utils' require 'rails/version' -RSpec.describe Datadog::Tracing::Contrib::Rails::Utils do +RSpec.describe Datadog::Core::Contrib::Rails::Utils do describe 'railtie_supported?' do subject(:railtie_supported?) { described_class.railtie_supported? } diff --git a/spec/datadog/tracing/contrib/auto_instrument_examples.rb b/spec/datadog/tracing/contrib/auto_instrument_examples.rb index 5dc2950a1cd..499cd95fb16 100644 --- a/spec/datadog/tracing/contrib/auto_instrument_examples.rb +++ b/spec/datadog/tracing/contrib/auto_instrument_examples.rb @@ -4,7 +4,7 @@ context 'outside of a rails application' do before do - allow(Datadog::Tracing::Contrib::Rails::Utils).to receive(:railtie_supported?).and_return(false) + allow(Datadog::Core::Contrib::Rails::Utils).to receive(:railtie_supported?).and_return(false) end it { is_expected.to be(true) } @@ -12,7 +12,7 @@ context 'when within a rails application' do before do - allow(Datadog::Tracing::Contrib::Rails::Utils).to receive(:railtie_supported?).and_return(true) + allow(Datadog::Core::Contrib::Rails::Utils).to receive(:railtie_supported?).and_return(true) end it { is_expected.to be(false) } From 3137dfb27d561a10ceb41612411718bab96b3e4f Mon Sep 17 00:00:00 2001 From: Oleg Pudeyev <156273877+p-datadog@users.noreply.github.com> Date: Wed, 8 Jan 2025 09:02:15 -0500 Subject: [PATCH 114/161] DEBUG-3251 dependency inject logger into DI component (#4262) Co-authored-by: Oleg Pudeyev --- lib/datadog/core/configuration/components.rb | 2 +- lib/datadog/di/component.rb | 20 +++++++++---------- sig/datadog/di/component.rbs | 8 ++++---- spec/datadog/di/component_spec.rb | 11 +++++++--- .../everything_from_remote_config_spec.rb | 13 +++++++++++- .../di/integration/instrumentation_spec.rb | 6 +++++- 6 files changed, 40 insertions(+), 20 deletions(-) diff --git a/lib/datadog/core/configuration/components.rb b/lib/datadog/core/configuration/components.rb index bf154311b43..c4f8301541d 100644 --- a/lib/datadog/core/configuration/components.rb +++ b/lib/datadog/core/configuration/components.rb @@ -113,7 +113,7 @@ def initialize(settings) @runtime_metrics = self.class.build_runtime_metrics_worker(settings) @health_metrics = self.class.build_health_metrics(settings) @appsec = Datadog::AppSec::Component.build_appsec_component(settings, telemetry: telemetry) - @dynamic_instrumentation = Datadog::DI::Component.build(settings, agent_settings, telemetry: telemetry) + @dynamic_instrumentation = Datadog::DI::Component.build(settings, agent_settings, @logger, telemetry: telemetry) self.class.configure_tracing(settings) end diff --git a/lib/datadog/di/component.rb b/lib/datadog/di/component.rb index 8ef93e626d4..797449c077d 100644 --- a/lib/datadog/di/component.rb +++ b/lib/datadog/di/component.rb @@ -16,22 +16,22 @@ module DI # resources and installed tracepoints upon shutdown. class Component class << self - def build(settings, agent_settings, telemetry: nil) + def build(settings, agent_settings, logger, telemetry: nil) return unless settings.respond_to?(:dynamic_instrumentation) && settings.dynamic_instrumentation.enabled unless settings.respond_to?(:remote) && settings.remote.enabled - Datadog.logger.debug("Dynamic Instrumentation could not be enabled because Remote Configuration Management is not available. To enable Remote Configuration, see https://docs.datadoghq.com/agent/remote_config") + logger.debug("Dynamic Instrumentation could not be enabled because Remote Configuration Management is not available. To enable Remote Configuration, see https://docs.datadoghq.com/agent/remote_config") return end - return unless environment_supported?(settings) + return unless environment_supported?(settings, logger) - new(settings, agent_settings, Datadog.logger, code_tracker: DI.code_tracker, telemetry: telemetry).tap do |component| + new(settings, agent_settings, logger, code_tracker: DI.code_tracker, telemetry: telemetry).tap do |component| DI.add_current_component(component) end end - def build!(settings, agent_settings, telemetry: nil) + def build!(settings, agent_settings, logger, telemetry: nil) unless settings.respond_to?(:dynamic_instrumentation) && settings.dynamic_instrumentation.enabled raise "Requested DI component but DI is not enabled in settings" end @@ -40,27 +40,27 @@ def build!(settings, agent_settings, telemetry: nil) raise "Requested DI component but remote config is not enabled in settings" end - unless environment_supported?(settings) + unless environment_supported?(settings, logger) raise "DI does not support the environment (development or Ruby version too low or not MRI)" end - new(settings, agent_settings, Datadog.logger, code_tracker: DI.code_tracker, telemetry: telemetry) + new(settings, agent_settings, logger, code_tracker: DI.code_tracker, telemetry: telemetry) end # Checks whether the runtime environment is supported by # dynamic instrumentation. Currently we only require that, if Rails # is used, that Rails environment is not development because # DI does not currently support code unloading and reloading. - def environment_supported?(settings) + def environment_supported?(settings, logger) # TODO add tests? unless settings.dynamic_instrumentation.internal.development if Datadog::Core::Environment::Execution.development? - Datadog.logger.debug("Not enabling dynamic instrumentation because we are in development environment") + logger.debug("Not enabling dynamic instrumentation because we are in development environment") return false end end if RUBY_ENGINE != 'ruby' || RUBY_VERSION < '2.6' - Datadog.logger.debug("Not enabling dynamic instrumentation because of unsupported Ruby version") + logger.debug("Not enabling dynamic instrumentation because of unsupported Ruby version") return false end true diff --git a/sig/datadog/di/component.rbs b/sig/datadog/di/component.rbs index 27794388c27..eb64ddab7cf 100644 --- a/sig/datadog/di/component.rbs +++ b/sig/datadog/di/component.rbs @@ -23,12 +23,12 @@ module Datadog @probe_manager: untyped - def self.build: (untyped settings, untyped agent_settings, ?telemetry: untyped?) -> (nil | untyped) + def self.build: (untyped settings, untyped agent_settings, Core::Logger logger, ?telemetry: untyped?) -> (nil | untyped) - def self.build!: (untyped settings, untyped agent_settings, ?telemetry: untyped?) -> untyped - def self.environment_supported?: (untyped settings) -> (false | true) + def self.build!: (untyped settings, untyped agent_settings, Core::Logger logger, ?telemetry: untyped?) -> untyped + def self.environment_supported?: (untyped settings, Core::Logger logger) -> (false | true) - def initialize: (untyped settings, untyped agent_settings, untyped logger, ?code_tracker: untyped?, ?telemetry: untyped?) -> void + def initialize: (untyped settings, untyped agent_settings, Core::Logger logger, ?code_tracker: untyped?, ?telemetry: untyped?) -> void attr_reader settings: untyped diff --git a/spec/datadog/di/component_spec.rb b/spec/datadog/di/component_spec.rb index 49620913aa8..0453fc8e4a8 100644 --- a/spec/datadog/di/component_spec.rb +++ b/spec/datadog/di/component_spec.rb @@ -16,6 +16,10 @@ instance_double_agent_settings end + let(:logger) do + instance_double(Logger) + end + context 'when dynamic instrumentation is enabled' do let(:dynamic_instrumentation_enabled) { true } @@ -32,7 +36,7 @@ end it 'returns a Datadog::DI::Component instance' do - component = described_class.build(settings, agent_settings) + component = described_class.build(settings, agent_settings, logger) expect(component).to be_a(described_class) component.shutdown! end @@ -44,7 +48,8 @@ end it 'returns nil' do - component = described_class.build(settings, agent_settings) + expect(logger).to receive(:debug).with(/Dynamic Instrumentation could not be enabled because Remote Configuration Management is not available/) + component = described_class.build(settings, agent_settings, logger) expect(component).to be nil end end @@ -54,7 +59,7 @@ let(:dynamic_instrumentation_enabled) { false } it 'returns nil' do - component = described_class.build(settings, agent_settings) + component = described_class.build(settings, agent_settings, logger) expect(component).to be nil end end diff --git a/spec/datadog/di/integration/everything_from_remote_config_spec.rb b/spec/datadog/di/integration/everything_from_remote_config_spec.rb index faf3570fcf9..499793a286e 100644 --- a/spec/datadog/di/integration/everything_from_remote_config_spec.rb +++ b/spec/datadog/di/integration/everything_from_remote_config_spec.rb @@ -23,6 +23,8 @@ def target_method let(:telemetry) { instance_double(Datadog::Core::Telemetry::Component) } + let(:logger) { instance_double(Logger) } + let(:repository) { Datadog::Core::Remote::Configuration::Repository.new } let(:transaction) do @@ -59,7 +61,7 @@ def target_method let(:receiver) { remote.receivers(telemetry)[0] } let(:component) do - Datadog::DI::Component.build!(settings, agent_settings) + Datadog::DI::Component.build!(settings, agent_settings, logger) end let(:propagate_all_exceptions) { true } @@ -239,6 +241,8 @@ def do_rc end it 'adds a probe to pending list' do + expect(logger).to receive(:info).with(/Received probe from RC:/) + do_rc expect(payloads).to be_a(Array) @@ -268,6 +272,8 @@ def assert_received_and_installed end it 'instruments code and adds probe to installed list' do + expect(logger).to receive(:info).with(/Received probe from RC:/) + do_rc assert_received_and_installed @@ -276,6 +282,8 @@ def assert_received_and_installed context 'and target method is invoked' do it 'notifies about execution' do + expect(logger).to receive(:info).with(/Received probe from RC:/) + do_rc assert_received_and_installed @@ -317,6 +325,9 @@ def assert_received_and_installed end it 'installs the second, known, probe' do + expect(logger).to receive(:warn).with(/Unrecognized probe type:/) + expect(logger).to receive(:info).with(/Received probe from RC:/) + do_rc assert_received_and_installed diff --git a/spec/datadog/di/integration/instrumentation_spec.rb b/spec/datadog/di/integration/instrumentation_spec.rb index 4f4a8b60d53..28720fd1995 100644 --- a/spec/datadog/di/integration/instrumentation_spec.rb +++ b/spec/datadog/di/integration/instrumentation_spec.rb @@ -59,8 +59,12 @@ def mutating_method(greeting) instance_double_agent_settings end + let(:logger) do + instance_double(Logger) + end + let(:component) do - Datadog::DI::Component.build!(settings, agent_settings) + Datadog::DI::Component.build!(settings, agent_settings, logger) end let(:expected_installed_payload) do From b86820e8c76764ad3fa540af151061a60cd154b7 Mon Sep 17 00:00:00 2001 From: Oleg Pudeyev <156273877+p-datadog@users.noreply.github.com> Date: Wed, 8 Jan 2025 09:32:51 -0500 Subject: [PATCH 115/161] Move simplecov patch to an overlay in our tree instead of using a forked simplecov repo (#4263) --- Rakefile | 1 + gemfiles/jruby_9.2_activesupport.gemfile | 2 +- gemfiles/jruby_9.2_activesupport.gemfile.lock | 16 ++++------- gemfiles/jruby_9.2_aws.gemfile | 2 +- gemfiles/jruby_9.2_aws.gemfile.lock | 16 ++++------- gemfiles/jruby_9.2_contrib.gemfile | 2 +- gemfiles/jruby_9.2_contrib.gemfile.lock | 16 ++++------- gemfiles/jruby_9.2_contrib_old.gemfile | 2 +- gemfiles/jruby_9.2_contrib_old.gemfile.lock | 16 ++++------- gemfiles/jruby_9.2_core_old.gemfile | 2 +- gemfiles/jruby_9.2_core_old.gemfile.lock | 16 ++++------- gemfiles/jruby_9.2_elasticsearch_7.gemfile | 2 +- .../jruby_9.2_elasticsearch_7.gemfile.lock | 16 ++++------- gemfiles/jruby_9.2_elasticsearch_8.gemfile | 2 +- .../jruby_9.2_elasticsearch_8.gemfile.lock | 16 ++++------- .../jruby_9.2_elasticsearch_latest.gemfile | 2 +- ...ruby_9.2_elasticsearch_latest.gemfile.lock | 16 ++++------- gemfiles/jruby_9.2_graphql_2.0.gemfile | 2 +- gemfiles/jruby_9.2_graphql_2.0.gemfile.lock | 16 ++++------- gemfiles/jruby_9.2_http.gemfile | 2 +- gemfiles/jruby_9.2_http.gemfile.lock | 16 ++++------- gemfiles/jruby_9.2_opensearch_2.gemfile | 2 +- gemfiles/jruby_9.2_opensearch_2.gemfile.lock | 16 ++++------- gemfiles/jruby_9.2_opensearch_3.gemfile | 2 +- gemfiles/jruby_9.2_opensearch_3.gemfile.lock | 16 ++++------- gemfiles/jruby_9.2_opensearch_latest.gemfile | 2 +- .../jruby_9.2_opensearch_latest.gemfile.lock | 16 ++++------- gemfiles/jruby_9.2_rack_1.gemfile | 2 +- gemfiles/jruby_9.2_rack_1.gemfile.lock | 16 ++++------- gemfiles/jruby_9.2_rack_2.gemfile | 2 +- gemfiles/jruby_9.2_rack_2.gemfile.lock | 16 ++++------- gemfiles/jruby_9.2_rack_3.gemfile | 2 +- gemfiles/jruby_9.2_rack_3.gemfile.lock | 16 ++++------- gemfiles/jruby_9.2_rack_latest.gemfile | 2 +- gemfiles/jruby_9.2_rack_latest.gemfile.lock | 16 ++++------- gemfiles/jruby_9.2_rails5_mysql2.gemfile | 2 +- gemfiles/jruby_9.2_rails5_mysql2.gemfile.lock | 16 ++++------- gemfiles/jruby_9.2_rails5_postgres.gemfile | 2 +- .../jruby_9.2_rails5_postgres.gemfile.lock | 16 ++++------- .../jruby_9.2_rails5_postgres_redis.gemfile | 2 +- ...uby_9.2_rails5_postgres_redis.gemfile.lock | 16 ++++------- ...ails5_postgres_redis_activesupport.gemfile | 2 +- ..._postgres_redis_activesupport.gemfile.lock | 16 ++++------- .../jruby_9.2_rails5_postgres_sidekiq.gemfile | 2 +- ...y_9.2_rails5_postgres_sidekiq.gemfile.lock | 16 ++++------- .../jruby_9.2_rails5_semantic_logger.gemfile | 2 +- ...by_9.2_rails5_semantic_logger.gemfile.lock | 16 ++++------- gemfiles/jruby_9.2_rails61_mysql2.gemfile | 2 +- .../jruby_9.2_rails61_mysql2.gemfile.lock | 16 ++++------- gemfiles/jruby_9.2_rails61_postgres.gemfile | 2 +- .../jruby_9.2_rails61_postgres.gemfile.lock | 16 ++++------- .../jruby_9.2_rails61_postgres_redis.gemfile | 2 +- ...by_9.2_rails61_postgres_redis.gemfile.lock | 16 ++++------- ...jruby_9.2_rails61_postgres_sidekiq.gemfile | 2 +- ..._9.2_rails61_postgres_sidekiq.gemfile.lock | 16 ++++------- .../jruby_9.2_rails61_semantic_logger.gemfile | 2 +- ...y_9.2_rails61_semantic_logger.gemfile.lock | 16 ++++------- gemfiles/jruby_9.2_rails6_mysql2.gemfile | 2 +- gemfiles/jruby_9.2_rails6_mysql2.gemfile.lock | 16 ++++------- gemfiles/jruby_9.2_rails6_postgres.gemfile | 2 +- .../jruby_9.2_rails6_postgres.gemfile.lock | 16 ++++------- .../jruby_9.2_rails6_postgres_redis.gemfile | 2 +- ...uby_9.2_rails6_postgres_redis.gemfile.lock | 16 ++++------- ...ails6_postgres_redis_activesupport.gemfile | 2 +- ..._postgres_redis_activesupport.gemfile.lock | 16 ++++------- .../jruby_9.2_rails6_postgres_sidekiq.gemfile | 2 +- ...y_9.2_rails6_postgres_sidekiq.gemfile.lock | 16 ++++------- .../jruby_9.2_rails6_semantic_logger.gemfile | 2 +- ...by_9.2_rails6_semantic_logger.gemfile.lock | 16 ++++------- gemfiles/jruby_9.2_rails_old_redis.gemfile | 2 +- gemfiles/jruby_9.2_redis_3.gemfile | 2 +- gemfiles/jruby_9.2_redis_3.gemfile.lock | 16 ++++------- gemfiles/jruby_9.2_redis_4.gemfile | 2 +- gemfiles/jruby_9.2_redis_4.gemfile.lock | 16 ++++------- gemfiles/jruby_9.2_redis_5.gemfile | 2 +- gemfiles/jruby_9.2_redis_5.gemfile.lock | 16 ++++------- gemfiles/jruby_9.2_relational_db.gemfile | 2 +- gemfiles/jruby_9.2_relational_db.gemfile.lock | 16 ++++------- gemfiles/jruby_9.2_resque2_redis3.gemfile | 2 +- .../jruby_9.2_resque2_redis3.gemfile.lock | 16 ++++------- gemfiles/jruby_9.2_resque2_redis4.gemfile | 2 +- .../jruby_9.2_resque2_redis4.gemfile.lock | 16 ++++------- gemfiles/jruby_9.2_sinatra_2.gemfile | 2 +- gemfiles/jruby_9.2_sinatra_2.gemfile.lock | 16 ++++------- gemfiles/jruby_9.2_stripe_10.gemfile | 2 +- gemfiles/jruby_9.2_stripe_10.gemfile.lock | 16 ++++------- gemfiles/jruby_9.2_stripe_11.gemfile | 2 +- gemfiles/jruby_9.2_stripe_11.gemfile.lock | 16 ++++------- gemfiles/jruby_9.2_stripe_12.gemfile | 2 +- gemfiles/jruby_9.2_stripe_12.gemfile.lock | 16 ++++------- gemfiles/jruby_9.2_stripe_7.gemfile | 2 +- gemfiles/jruby_9.2_stripe_7.gemfile.lock | 16 ++++------- gemfiles/jruby_9.2_stripe_8.gemfile | 2 +- gemfiles/jruby_9.2_stripe_8.gemfile.lock | 16 ++++------- gemfiles/jruby_9.2_stripe_9.gemfile | 2 +- gemfiles/jruby_9.2_stripe_9.gemfile.lock | 16 ++++------- gemfiles/jruby_9.2_stripe_latest.gemfile | 2 +- gemfiles/jruby_9.2_stripe_latest.gemfile.lock | 16 ++++------- gemfiles/jruby_9.2_stripe_min.gemfile | 2 +- gemfiles/jruby_9.2_stripe_min.gemfile.lock | 16 ++++------- gemfiles/jruby_9.3_activesupport.gemfile | 2 +- gemfiles/jruby_9.3_activesupport.gemfile.lock | 16 ++++------- gemfiles/jruby_9.3_aws.gemfile | 2 +- gemfiles/jruby_9.3_aws.gemfile.lock | 16 ++++------- gemfiles/jruby_9.3_contrib.gemfile | 2 +- gemfiles/jruby_9.3_contrib.gemfile.lock | 16 ++++------- gemfiles/jruby_9.3_contrib_old.gemfile | 2 +- gemfiles/jruby_9.3_contrib_old.gemfile.lock | 16 ++++------- gemfiles/jruby_9.3_core_old.gemfile | 2 +- gemfiles/jruby_9.3_core_old.gemfile.lock | 16 ++++------- gemfiles/jruby_9.3_elasticsearch_7.gemfile | 2 +- .../jruby_9.3_elasticsearch_7.gemfile.lock | 16 ++++------- gemfiles/jruby_9.3_elasticsearch_8.gemfile | 2 +- .../jruby_9.3_elasticsearch_8.gemfile.lock | 16 ++++------- .../jruby_9.3_elasticsearch_latest.gemfile | 2 +- ...ruby_9.3_elasticsearch_latest.gemfile.lock | 16 ++++------- gemfiles/jruby_9.3_graphql_1.13.gemfile | 2 +- gemfiles/jruby_9.3_graphql_1.13.gemfile.lock | 16 ++++------- gemfiles/jruby_9.3_graphql_2.0.gemfile | 2 +- gemfiles/jruby_9.3_graphql_2.0.gemfile.lock | 16 ++++------- gemfiles/jruby_9.3_http.gemfile | 2 +- gemfiles/jruby_9.3_http.gemfile.lock | 16 ++++------- gemfiles/jruby_9.3_opensearch_2.gemfile | 2 +- gemfiles/jruby_9.3_opensearch_2.gemfile.lock | 16 ++++------- gemfiles/jruby_9.3_opensearch_3.gemfile | 2 +- gemfiles/jruby_9.3_opensearch_3.gemfile.lock | 16 ++++------- gemfiles/jruby_9.3_opensearch_latest.gemfile | 2 +- .../jruby_9.3_opensearch_latest.gemfile.lock | 16 ++++------- gemfiles/jruby_9.3_rack_1.gemfile | 2 +- gemfiles/jruby_9.3_rack_1.gemfile.lock | 16 ++++------- gemfiles/jruby_9.3_rack_2.gemfile | 2 +- gemfiles/jruby_9.3_rack_2.gemfile.lock | 16 ++++------- gemfiles/jruby_9.3_rack_3.gemfile | 2 +- gemfiles/jruby_9.3_rack_3.gemfile.lock | 16 ++++------- gemfiles/jruby_9.3_rack_latest.gemfile | 2 +- gemfiles/jruby_9.3_rack_latest.gemfile.lock | 16 ++++------- gemfiles/jruby_9.3_rails5_mysql2.gemfile | 2 +- gemfiles/jruby_9.3_rails5_mysql2.gemfile.lock | 16 ++++------- gemfiles/jruby_9.3_rails5_postgres.gemfile | 2 +- .../jruby_9.3_rails5_postgres.gemfile.lock | 16 ++++------- .../jruby_9.3_rails5_postgres_redis.gemfile | 2 +- ...uby_9.3_rails5_postgres_redis.gemfile.lock | 16 ++++------- ...ails5_postgres_redis_activesupport.gemfile | 2 +- ..._postgres_redis_activesupport.gemfile.lock | 16 ++++------- .../jruby_9.3_rails5_postgres_sidekiq.gemfile | 2 +- ...y_9.3_rails5_postgres_sidekiq.gemfile.lock | 16 ++++------- .../jruby_9.3_rails5_semantic_logger.gemfile | 2 +- ...by_9.3_rails5_semantic_logger.gemfile.lock | 16 ++++------- gemfiles/jruby_9.3_rails61_mysql2.gemfile | 2 +- .../jruby_9.3_rails61_mysql2.gemfile.lock | 16 ++++------- gemfiles/jruby_9.3_rails61_postgres.gemfile | 2 +- .../jruby_9.3_rails61_postgres.gemfile.lock | 16 ++++------- .../jruby_9.3_rails61_postgres_redis.gemfile | 2 +- ...by_9.3_rails61_postgres_redis.gemfile.lock | 16 ++++------- ...jruby_9.3_rails61_postgres_sidekiq.gemfile | 2 +- ..._9.3_rails61_postgres_sidekiq.gemfile.lock | 16 ++++------- .../jruby_9.3_rails61_semantic_logger.gemfile | 2 +- ...y_9.3_rails61_semantic_logger.gemfile.lock | 16 ++++------- gemfiles/jruby_9.3_rails6_mysql2.gemfile | 2 +- gemfiles/jruby_9.3_rails6_mysql2.gemfile.lock | 16 ++++------- gemfiles/jruby_9.3_rails6_postgres.gemfile | 2 +- .../jruby_9.3_rails6_postgres.gemfile.lock | 16 ++++------- .../jruby_9.3_rails6_postgres_redis.gemfile | 2 +- ...uby_9.3_rails6_postgres_redis.gemfile.lock | 16 ++++------- ...ails6_postgres_redis_activesupport.gemfile | 2 +- ..._postgres_redis_activesupport.gemfile.lock | 16 ++++------- .../jruby_9.3_rails6_postgres_sidekiq.gemfile | 2 +- ...y_9.3_rails6_postgres_sidekiq.gemfile.lock | 16 ++++------- .../jruby_9.3_rails6_semantic_logger.gemfile | 2 +- ...by_9.3_rails6_semantic_logger.gemfile.lock | 16 ++++------- gemfiles/jruby_9.3_rails_old_redis.gemfile | 2 +- gemfiles/jruby_9.3_redis_3.gemfile | 2 +- gemfiles/jruby_9.3_redis_3.gemfile.lock | 16 ++++------- gemfiles/jruby_9.3_redis_4.gemfile | 2 +- gemfiles/jruby_9.3_redis_4.gemfile.lock | 16 ++++------- gemfiles/jruby_9.3_redis_5.gemfile | 2 +- gemfiles/jruby_9.3_redis_5.gemfile.lock | 16 ++++------- gemfiles/jruby_9.3_relational_db.gemfile | 2 +- gemfiles/jruby_9.3_relational_db.gemfile.lock | 16 ++++------- gemfiles/jruby_9.3_resque2_redis3.gemfile | 2 +- .../jruby_9.3_resque2_redis3.gemfile.lock | 16 ++++------- gemfiles/jruby_9.3_resque2_redis4.gemfile | 2 +- .../jruby_9.3_resque2_redis4.gemfile.lock | 16 ++++------- gemfiles/jruby_9.3_sinatra_2.gemfile | 2 +- gemfiles/jruby_9.3_sinatra_2.gemfile.lock | 16 ++++------- gemfiles/jruby_9.3_sinatra_3.gemfile | 2 +- gemfiles/jruby_9.3_sinatra_3.gemfile.lock | 16 ++++------- gemfiles/jruby_9.3_stripe_10.gemfile | 2 +- gemfiles/jruby_9.3_stripe_10.gemfile.lock | 16 ++++------- gemfiles/jruby_9.3_stripe_11.gemfile | 2 +- gemfiles/jruby_9.3_stripe_11.gemfile.lock | 16 ++++------- gemfiles/jruby_9.3_stripe_12.gemfile | 2 +- gemfiles/jruby_9.3_stripe_12.gemfile.lock | 16 ++++------- gemfiles/jruby_9.3_stripe_7.gemfile | 2 +- gemfiles/jruby_9.3_stripe_7.gemfile.lock | 16 ++++------- gemfiles/jruby_9.3_stripe_8.gemfile | 2 +- gemfiles/jruby_9.3_stripe_8.gemfile.lock | 16 ++++------- gemfiles/jruby_9.3_stripe_9.gemfile | 2 +- gemfiles/jruby_9.3_stripe_9.gemfile.lock | 16 ++++------- gemfiles/jruby_9.3_stripe_latest.gemfile | 2 +- gemfiles/jruby_9.3_stripe_latest.gemfile.lock | 16 ++++------- gemfiles/jruby_9.3_stripe_min.gemfile | 2 +- gemfiles/jruby_9.3_stripe_min.gemfile.lock | 16 ++++------- gemfiles/jruby_9.4_activesupport.gemfile | 2 +- gemfiles/jruby_9.4_activesupport.gemfile.lock | 16 ++++------- gemfiles/jruby_9.4_aws.gemfile | 2 +- gemfiles/jruby_9.4_aws.gemfile.lock | 16 ++++------- gemfiles/jruby_9.4_contrib.gemfile | 2 +- gemfiles/jruby_9.4_contrib.gemfile.lock | 16 ++++------- gemfiles/jruby_9.4_contrib_old.gemfile | 2 +- gemfiles/jruby_9.4_contrib_old.gemfile.lock | 16 ++++------- gemfiles/jruby_9.4_core_old.gemfile | 2 +- gemfiles/jruby_9.4_core_old.gemfile.lock | 16 ++++------- gemfiles/jruby_9.4_elasticsearch_7.gemfile | 2 +- .../jruby_9.4_elasticsearch_7.gemfile.lock | 16 ++++------- gemfiles/jruby_9.4_elasticsearch_8.gemfile | 2 +- .../jruby_9.4_elasticsearch_8.gemfile.lock | 16 ++++------- .../jruby_9.4_elasticsearch_latest.gemfile | 2 +- ...ruby_9.4_elasticsearch_latest.gemfile.lock | 16 ++++------- gemfiles/jruby_9.4_graphql_1.13.gemfile | 2 +- gemfiles/jruby_9.4_graphql_1.13.gemfile.lock | 16 ++++------- gemfiles/jruby_9.4_graphql_2.0.gemfile | 2 +- gemfiles/jruby_9.4_graphql_2.0.gemfile.lock | 16 ++++------- gemfiles/jruby_9.4_graphql_2.1.gemfile | 2 +- gemfiles/jruby_9.4_graphql_2.1.gemfile.lock | 16 ++++------- gemfiles/jruby_9.4_graphql_2.2.gemfile | 2 +- gemfiles/jruby_9.4_graphql_2.2.gemfile.lock | 16 ++++------- gemfiles/jruby_9.4_graphql_2.3.gemfile | 2 +- gemfiles/jruby_9.4_graphql_2.3.gemfile.lock | 16 ++++------- gemfiles/jruby_9.4_http.gemfile | 2 +- gemfiles/jruby_9.4_http.gemfile.lock | 16 ++++------- gemfiles/jruby_9.4_opensearch_2.gemfile | 2 +- gemfiles/jruby_9.4_opensearch_2.gemfile.lock | 16 ++++------- gemfiles/jruby_9.4_opensearch_3.gemfile | 2 +- gemfiles/jruby_9.4_opensearch_3.gemfile.lock | 16 ++++------- gemfiles/jruby_9.4_opensearch_latest.gemfile | 2 +- .../jruby_9.4_opensearch_latest.gemfile.lock | 16 ++++------- gemfiles/jruby_9.4_rack_1.gemfile | 2 +- gemfiles/jruby_9.4_rack_1.gemfile.lock | 16 ++++------- gemfiles/jruby_9.4_rack_2.gemfile | 2 +- gemfiles/jruby_9.4_rack_2.gemfile.lock | 16 ++++------- gemfiles/jruby_9.4_rack_3.gemfile | 2 +- gemfiles/jruby_9.4_rack_3.gemfile.lock | 16 ++++------- gemfiles/jruby_9.4_rack_latest.gemfile | 2 +- gemfiles/jruby_9.4_rack_latest.gemfile.lock | 16 ++++------- gemfiles/jruby_9.4_rails61_mysql2.gemfile | 2 +- .../jruby_9.4_rails61_mysql2.gemfile.lock | 16 ++++------- gemfiles/jruby_9.4_rails61_postgres.gemfile | 2 +- .../jruby_9.4_rails61_postgres.gemfile.lock | 16 ++++------- .../jruby_9.4_rails61_postgres_redis.gemfile | 2 +- ...by_9.4_rails61_postgres_redis.gemfile.lock | 16 ++++------- ...jruby_9.4_rails61_postgres_sidekiq.gemfile | 2 +- ..._9.4_rails61_postgres_sidekiq.gemfile.lock | 16 ++++------- .../jruby_9.4_rails61_semantic_logger.gemfile | 2 +- ...y_9.4_rails61_semantic_logger.gemfile.lock | 16 ++++------- gemfiles/jruby_9.4_rails_old_redis.gemfile | 2 +- gemfiles/jruby_9.4_redis_3.gemfile | 2 +- gemfiles/jruby_9.4_redis_3.gemfile.lock | 16 ++++------- gemfiles/jruby_9.4_redis_4.gemfile | 2 +- gemfiles/jruby_9.4_redis_4.gemfile.lock | 16 ++++------- gemfiles/jruby_9.4_redis_5.gemfile | 2 +- gemfiles/jruby_9.4_redis_5.gemfile.lock | 16 ++++------- gemfiles/jruby_9.4_relational_db.gemfile | 2 +- gemfiles/jruby_9.4_relational_db.gemfile.lock | 16 ++++------- gemfiles/jruby_9.4_resque2_redis3.gemfile | 2 +- .../jruby_9.4_resque2_redis3.gemfile.lock | 16 ++++------- gemfiles/jruby_9.4_resque2_redis4.gemfile | 2 +- .../jruby_9.4_resque2_redis4.gemfile.lock | 16 ++++------- gemfiles/jruby_9.4_sinatra_2.gemfile | 2 +- gemfiles/jruby_9.4_sinatra_2.gemfile.lock | 16 ++++------- gemfiles/jruby_9.4_sinatra_3.gemfile | 2 +- gemfiles/jruby_9.4_sinatra_3.gemfile.lock | 16 ++++------- gemfiles/jruby_9.4_sinatra_4.gemfile | 2 +- gemfiles/jruby_9.4_sinatra_4.gemfile.lock | 16 ++++------- gemfiles/jruby_9.4_stripe_10.gemfile | 2 +- gemfiles/jruby_9.4_stripe_10.gemfile.lock | 16 ++++------- gemfiles/jruby_9.4_stripe_11.gemfile | 2 +- gemfiles/jruby_9.4_stripe_11.gemfile.lock | 16 ++++------- gemfiles/jruby_9.4_stripe_12.gemfile | 2 +- gemfiles/jruby_9.4_stripe_12.gemfile.lock | 16 ++++------- gemfiles/jruby_9.4_stripe_7.gemfile | 2 +- gemfiles/jruby_9.4_stripe_7.gemfile.lock | 16 ++++------- gemfiles/jruby_9.4_stripe_8.gemfile | 2 +- gemfiles/jruby_9.4_stripe_8.gemfile.lock | 16 ++++------- gemfiles/jruby_9.4_stripe_9.gemfile | 2 +- gemfiles/jruby_9.4_stripe_9.gemfile.lock | 16 ++++------- gemfiles/jruby_9.4_stripe_latest.gemfile | 2 +- gemfiles/jruby_9.4_stripe_latest.gemfile.lock | 16 ++++------- gemfiles/jruby_9.4_stripe_min.gemfile | 2 +- gemfiles/jruby_9.4_stripe_min.gemfile.lock | 16 ++++------- gemfiles/ruby_2.5_activesupport.gemfile | 2 +- gemfiles/ruby_2.5_activesupport.gemfile.lock | 16 ++++------- gemfiles/ruby_2.5_aws.gemfile | 2 +- gemfiles/ruby_2.5_aws.gemfile.lock | 16 ++++------- gemfiles/ruby_2.5_contrib.gemfile | 2 +- gemfiles/ruby_2.5_contrib.gemfile.lock | 16 ++++------- gemfiles/ruby_2.5_contrib_old.gemfile | 2 +- gemfiles/ruby_2.5_contrib_old.gemfile.lock | 16 ++++------- gemfiles/ruby_2.5_core_old.gemfile | 2 +- gemfiles/ruby_2.5_core_old.gemfile.lock | 16 ++++------- gemfiles/ruby_2.5_elasticsearch_7.gemfile | 2 +- .../ruby_2.5_elasticsearch_7.gemfile.lock | 16 ++++------- gemfiles/ruby_2.5_elasticsearch_8.gemfile | 2 +- .../ruby_2.5_elasticsearch_8.gemfile.lock | 16 ++++------- .../ruby_2.5_elasticsearch_latest.gemfile | 2 +- ...ruby_2.5_elasticsearch_latest.gemfile.lock | 16 ++++------- gemfiles/ruby_2.5_graphql_2.0.gemfile | 2 +- gemfiles/ruby_2.5_graphql_2.0.gemfile.lock | 16 ++++------- gemfiles/ruby_2.5_hanami_1.gemfile | 2 +- gemfiles/ruby_2.5_hanami_1.gemfile.lock | 16 ++++------- gemfiles/ruby_2.5_http.gemfile | 2 +- gemfiles/ruby_2.5_http.gemfile.lock | 16 ++++------- gemfiles/ruby_2.5_opensearch_2.gemfile | 2 +- gemfiles/ruby_2.5_opensearch_2.gemfile.lock | 16 ++++------- gemfiles/ruby_2.5_opensearch_3.gemfile | 2 +- gemfiles/ruby_2.5_opensearch_3.gemfile.lock | 16 ++++------- gemfiles/ruby_2.5_opensearch_latest.gemfile | 2 +- .../ruby_2.5_opensearch_latest.gemfile.lock | 16 ++++------- gemfiles/ruby_2.5_rack_1.gemfile | 2 +- gemfiles/ruby_2.5_rack_1.gemfile.lock | 16 ++++------- gemfiles/ruby_2.5_rack_2.gemfile | 2 +- gemfiles/ruby_2.5_rack_2.gemfile.lock | 16 ++++------- gemfiles/ruby_2.5_rack_3.gemfile | 2 +- gemfiles/ruby_2.5_rack_3.gemfile.lock | 16 ++++------- gemfiles/ruby_2.5_rack_latest.gemfile | 2 +- gemfiles/ruby_2.5_rack_latest.gemfile.lock | 16 ++++------- gemfiles/ruby_2.5_rails4_mysql2.gemfile | 2 +- gemfiles/ruby_2.5_rails4_mysql2.gemfile.lock | 16 ++++------- gemfiles/ruby_2.5_rails4_postgres.gemfile | 2 +- .../ruby_2.5_rails4_postgres.gemfile.lock | 16 ++++------- .../ruby_2.5_rails4_postgres_redis.gemfile | 2 +- ...uby_2.5_rails4_postgres_redis.gemfile.lock | 16 ++++------- .../ruby_2.5_rails4_postgres_sidekiq.gemfile | 2 +- ...y_2.5_rails4_postgres_sidekiq.gemfile.lock | 16 ++++------- .../ruby_2.5_rails4_semantic_logger.gemfile | 2 +- ...by_2.5_rails4_semantic_logger.gemfile.lock | 16 ++++------- gemfiles/ruby_2.5_rails5_mysql2.gemfile | 2 +- gemfiles/ruby_2.5_rails5_mysql2.gemfile.lock | 16 ++++------- gemfiles/ruby_2.5_rails5_postgres.gemfile | 2 +- .../ruby_2.5_rails5_postgres.gemfile.lock | 16 ++++------- .../ruby_2.5_rails5_postgres_redis.gemfile | 2 +- ...uby_2.5_rails5_postgres_redis.gemfile.lock | 16 ++++------- ...ails5_postgres_redis_activesupport.gemfile | 2 +- ..._postgres_redis_activesupport.gemfile.lock | 16 ++++------- .../ruby_2.5_rails5_postgres_sidekiq.gemfile | 2 +- ...y_2.5_rails5_postgres_sidekiq.gemfile.lock | 16 ++++------- .../ruby_2.5_rails5_semantic_logger.gemfile | 2 +- ...by_2.5_rails5_semantic_logger.gemfile.lock | 16 ++++------- gemfiles/ruby_2.5_rails61_mysql2.gemfile | 2 +- gemfiles/ruby_2.5_rails61_mysql2.gemfile.lock | 16 ++++------- gemfiles/ruby_2.5_rails61_postgres.gemfile | 2 +- .../ruby_2.5_rails61_postgres.gemfile.lock | 16 ++++------- .../ruby_2.5_rails61_postgres_redis.gemfile | 2 +- ...by_2.5_rails61_postgres_redis.gemfile.lock | 16 ++++------- .../ruby_2.5_rails61_postgres_sidekiq.gemfile | 2 +- ..._2.5_rails61_postgres_sidekiq.gemfile.lock | 16 ++++------- .../ruby_2.5_rails61_semantic_logger.gemfile | 2 +- ...y_2.5_rails61_semantic_logger.gemfile.lock | 16 ++++------- gemfiles/ruby_2.5_rails6_mysql2.gemfile | 2 +- gemfiles/ruby_2.5_rails6_mysql2.gemfile.lock | 16 ++++------- gemfiles/ruby_2.5_rails6_postgres.gemfile | 2 +- .../ruby_2.5_rails6_postgres.gemfile.lock | 16 ++++------- .../ruby_2.5_rails6_postgres_redis.gemfile | 2 +- ...uby_2.5_rails6_postgres_redis.gemfile.lock | 16 ++++------- ...ails6_postgres_redis_activesupport.gemfile | 2 +- ..._postgres_redis_activesupport.gemfile.lock | 16 ++++------- .../ruby_2.5_rails6_postgres_sidekiq.gemfile | 2 +- ...y_2.5_rails6_postgres_sidekiq.gemfile.lock | 16 ++++------- .../ruby_2.5_rails6_semantic_logger.gemfile | 2 +- ...by_2.5_rails6_semantic_logger.gemfile.lock | 16 ++++------- gemfiles/ruby_2.5_rails_old_redis.gemfile | 2 +- gemfiles/ruby_2.5_redis_3.gemfile | 2 +- gemfiles/ruby_2.5_redis_3.gemfile.lock | 16 ++++------- gemfiles/ruby_2.5_redis_4.gemfile | 2 +- gemfiles/ruby_2.5_redis_4.gemfile.lock | 16 ++++------- gemfiles/ruby_2.5_redis_5.gemfile | 2 +- gemfiles/ruby_2.5_redis_5.gemfile.lock | 16 ++++------- gemfiles/ruby_2.5_relational_db.gemfile | 2 +- gemfiles/ruby_2.5_relational_db.gemfile.lock | 16 ++++------- gemfiles/ruby_2.5_resque2_redis3.gemfile | 2 +- gemfiles/ruby_2.5_resque2_redis3.gemfile.lock | 16 ++++------- gemfiles/ruby_2.5_resque2_redis4.gemfile | 2 +- gemfiles/ruby_2.5_resque2_redis4.gemfile.lock | 16 ++++------- gemfiles/ruby_2.5_sinatra_2.gemfile | 2 +- gemfiles/ruby_2.5_sinatra_2.gemfile.lock | 16 ++++------- gemfiles/ruby_2.5_stripe_10.gemfile | 2 +- gemfiles/ruby_2.5_stripe_10.gemfile.lock | 16 ++++------- gemfiles/ruby_2.5_stripe_11.gemfile | 2 +- gemfiles/ruby_2.5_stripe_11.gemfile.lock | 16 ++++------- gemfiles/ruby_2.5_stripe_12.gemfile | 2 +- gemfiles/ruby_2.5_stripe_12.gemfile.lock | 16 ++++------- gemfiles/ruby_2.5_stripe_7.gemfile | 2 +- gemfiles/ruby_2.5_stripe_7.gemfile.lock | 16 ++++------- gemfiles/ruby_2.5_stripe_8.gemfile | 2 +- gemfiles/ruby_2.5_stripe_8.gemfile.lock | 16 ++++------- gemfiles/ruby_2.5_stripe_9.gemfile | 2 +- gemfiles/ruby_2.5_stripe_9.gemfile.lock | 16 ++++------- gemfiles/ruby_2.5_stripe_latest.gemfile | 2 +- gemfiles/ruby_2.5_stripe_latest.gemfile.lock | 16 ++++------- gemfiles/ruby_2.5_stripe_min.gemfile | 2 +- gemfiles/ruby_2.5_stripe_min.gemfile.lock | 16 ++++------- gemfiles/ruby_2.6_activesupport.gemfile | 2 +- gemfiles/ruby_2.6_activesupport.gemfile.lock | 16 ++++------- gemfiles/ruby_2.6_aws.gemfile | 2 +- gemfiles/ruby_2.6_aws.gemfile.lock | 16 ++++------- gemfiles/ruby_2.6_contrib.gemfile | 2 +- gemfiles/ruby_2.6_contrib.gemfile.lock | 16 ++++------- gemfiles/ruby_2.6_contrib_old.gemfile | 2 +- gemfiles/ruby_2.6_contrib_old.gemfile.lock | 16 ++++------- gemfiles/ruby_2.6_core_old.gemfile | 2 +- gemfiles/ruby_2.6_core_old.gemfile.lock | 16 ++++------- gemfiles/ruby_2.6_elasticsearch_7.gemfile | 2 +- .../ruby_2.6_elasticsearch_7.gemfile.lock | 16 ++++------- gemfiles/ruby_2.6_elasticsearch_8.gemfile | 2 +- .../ruby_2.6_elasticsearch_8.gemfile.lock | 16 ++++------- .../ruby_2.6_elasticsearch_latest.gemfile | 2 +- ...ruby_2.6_elasticsearch_latest.gemfile.lock | 16 ++++------- gemfiles/ruby_2.6_graphql_1.13.gemfile | 2 +- gemfiles/ruby_2.6_graphql_1.13.gemfile.lock | 16 ++++------- gemfiles/ruby_2.6_graphql_2.0.gemfile | 2 +- gemfiles/ruby_2.6_graphql_2.0.gemfile.lock | 16 ++++------- gemfiles/ruby_2.6_hanami_1.gemfile | 2 +- gemfiles/ruby_2.6_hanami_1.gemfile.lock | 16 ++++------- gemfiles/ruby_2.6_http.gemfile | 2 +- gemfiles/ruby_2.6_http.gemfile.lock | 16 ++++------- gemfiles/ruby_2.6_opensearch_2.gemfile | 2 +- gemfiles/ruby_2.6_opensearch_2.gemfile.lock | 16 ++++------- gemfiles/ruby_2.6_opensearch_3.gemfile | 2 +- gemfiles/ruby_2.6_opensearch_3.gemfile.lock | 16 ++++------- gemfiles/ruby_2.6_opensearch_latest.gemfile | 2 +- .../ruby_2.6_opensearch_latest.gemfile.lock | 16 ++++------- gemfiles/ruby_2.6_opentelemetry.gemfile | 2 +- gemfiles/ruby_2.6_opentelemetry.gemfile.lock | 16 ++++------- gemfiles/ruby_2.6_opentelemetry_otlp.gemfile | 2 +- .../ruby_2.6_opentelemetry_otlp.gemfile.lock | 16 ++++------- gemfiles/ruby_2.6_rack_1.gemfile | 2 +- gemfiles/ruby_2.6_rack_1.gemfile.lock | 16 ++++------- gemfiles/ruby_2.6_rack_2.gemfile | 2 +- gemfiles/ruby_2.6_rack_2.gemfile.lock | 16 ++++------- gemfiles/ruby_2.6_rack_3.gemfile | 2 +- gemfiles/ruby_2.6_rack_3.gemfile.lock | 16 ++++------- gemfiles/ruby_2.6_rack_latest.gemfile | 2 +- gemfiles/ruby_2.6_rack_latest.gemfile.lock | 16 ++++------- gemfiles/ruby_2.6_rails5_mysql2.gemfile | 2 +- gemfiles/ruby_2.6_rails5_mysql2.gemfile.lock | 16 ++++------- gemfiles/ruby_2.6_rails5_postgres.gemfile | 2 +- .../ruby_2.6_rails5_postgres.gemfile.lock | 16 ++++------- .../ruby_2.6_rails5_postgres_redis.gemfile | 2 +- ...uby_2.6_rails5_postgres_redis.gemfile.lock | 16 ++++------- ...ails5_postgres_redis_activesupport.gemfile | 2 +- ..._postgres_redis_activesupport.gemfile.lock | 16 ++++------- .../ruby_2.6_rails5_postgres_sidekiq.gemfile | 2 +- ...y_2.6_rails5_postgres_sidekiq.gemfile.lock | 16 ++++------- .../ruby_2.6_rails5_semantic_logger.gemfile | 2 +- ...by_2.6_rails5_semantic_logger.gemfile.lock | 16 ++++------- gemfiles/ruby_2.6_rails61_mysql2.gemfile | 2 +- gemfiles/ruby_2.6_rails61_mysql2.gemfile.lock | 16 ++++------- gemfiles/ruby_2.6_rails61_postgres.gemfile | 2 +- .../ruby_2.6_rails61_postgres.gemfile.lock | 16 ++++------- .../ruby_2.6_rails61_postgres_redis.gemfile | 2 +- ...by_2.6_rails61_postgres_redis.gemfile.lock | 16 ++++------- .../ruby_2.6_rails61_postgres_sidekiq.gemfile | 2 +- ..._2.6_rails61_postgres_sidekiq.gemfile.lock | 16 ++++------- .../ruby_2.6_rails61_semantic_logger.gemfile | 2 +- ...y_2.6_rails61_semantic_logger.gemfile.lock | 16 ++++------- gemfiles/ruby_2.6_rails6_mysql2.gemfile | 2 +- gemfiles/ruby_2.6_rails6_mysql2.gemfile.lock | 16 ++++------- gemfiles/ruby_2.6_rails6_postgres.gemfile | 2 +- .../ruby_2.6_rails6_postgres.gemfile.lock | 16 ++++------- .../ruby_2.6_rails6_postgres_redis.gemfile | 2 +- ...uby_2.6_rails6_postgres_redis.gemfile.lock | 16 ++++------- ...ails6_postgres_redis_activesupport.gemfile | 2 +- ..._postgres_redis_activesupport.gemfile.lock | 16 ++++------- .../ruby_2.6_rails6_postgres_sidekiq.gemfile | 2 +- ...y_2.6_rails6_postgres_sidekiq.gemfile.lock | 16 ++++------- .../ruby_2.6_rails6_semantic_logger.gemfile | 2 +- ...by_2.6_rails6_semantic_logger.gemfile.lock | 16 ++++------- gemfiles/ruby_2.6_rails_old_redis.gemfile | 2 +- gemfiles/ruby_2.6_redis_3.gemfile | 2 +- gemfiles/ruby_2.6_redis_3.gemfile.lock | 16 ++++------- gemfiles/ruby_2.6_redis_4.gemfile | 2 +- gemfiles/ruby_2.6_redis_4.gemfile.lock | 16 ++++------- gemfiles/ruby_2.6_redis_5.gemfile | 2 +- gemfiles/ruby_2.6_redis_5.gemfile.lock | 16 ++++------- gemfiles/ruby_2.6_relational_db.gemfile | 2 +- gemfiles/ruby_2.6_relational_db.gemfile.lock | 16 ++++------- gemfiles/ruby_2.6_resque2_redis3.gemfile | 2 +- gemfiles/ruby_2.6_resque2_redis3.gemfile.lock | 16 ++++------- gemfiles/ruby_2.6_resque2_redis4.gemfile | 2 +- gemfiles/ruby_2.6_resque2_redis4.gemfile.lock | 16 ++++------- gemfiles/ruby_2.6_sinatra_2.gemfile | 2 +- gemfiles/ruby_2.6_sinatra_2.gemfile.lock | 16 ++++------- gemfiles/ruby_2.6_sinatra_3.gemfile | 2 +- gemfiles/ruby_2.6_sinatra_3.gemfile.lock | 16 ++++------- gemfiles/ruby_2.6_stripe_10.gemfile | 2 +- gemfiles/ruby_2.6_stripe_10.gemfile.lock | 16 ++++------- gemfiles/ruby_2.6_stripe_11.gemfile | 2 +- gemfiles/ruby_2.6_stripe_11.gemfile.lock | 16 ++++------- gemfiles/ruby_2.6_stripe_12.gemfile | 2 +- gemfiles/ruby_2.6_stripe_12.gemfile.lock | 16 ++++------- gemfiles/ruby_2.6_stripe_7.gemfile | 2 +- gemfiles/ruby_2.6_stripe_7.gemfile.lock | 16 ++++------- gemfiles/ruby_2.6_stripe_8.gemfile | 2 +- gemfiles/ruby_2.6_stripe_8.gemfile.lock | 16 ++++------- gemfiles/ruby_2.6_stripe_9.gemfile | 2 +- gemfiles/ruby_2.6_stripe_9.gemfile.lock | 16 ++++------- gemfiles/ruby_2.6_stripe_latest.gemfile | 2 +- gemfiles/ruby_2.6_stripe_latest.gemfile.lock | 16 ++++------- gemfiles/ruby_2.6_stripe_min.gemfile | 2 +- gemfiles/ruby_2.6_stripe_min.gemfile.lock | 16 ++++------- gemfiles/ruby_2.7_activesupport.gemfile | 2 +- gemfiles/ruby_2.7_activesupport.gemfile.lock | 16 ++++------- gemfiles/ruby_2.7_aws.gemfile | 2 +- gemfiles/ruby_2.7_aws.gemfile.lock | 16 ++++------- gemfiles/ruby_2.7_contrib.gemfile | 2 +- gemfiles/ruby_2.7_contrib.gemfile.lock | 16 ++++------- gemfiles/ruby_2.7_contrib_old.gemfile | 2 +- gemfiles/ruby_2.7_contrib_old.gemfile.lock | 16 ++++------- gemfiles/ruby_2.7_core_old.gemfile | 2 +- gemfiles/ruby_2.7_core_old.gemfile.lock | 16 ++++------- gemfiles/ruby_2.7_elasticsearch_7.gemfile | 2 +- .../ruby_2.7_elasticsearch_7.gemfile.lock | 16 ++++------- gemfiles/ruby_2.7_elasticsearch_8.gemfile | 2 +- .../ruby_2.7_elasticsearch_8.gemfile.lock | 16 ++++------- .../ruby_2.7_elasticsearch_latest.gemfile | 2 +- ...ruby_2.7_elasticsearch_latest.gemfile.lock | 16 ++++------- gemfiles/ruby_2.7_graphql_1.13.gemfile | 2 +- gemfiles/ruby_2.7_graphql_1.13.gemfile.lock | 16 ++++------- gemfiles/ruby_2.7_graphql_2.0.gemfile | 2 +- gemfiles/ruby_2.7_graphql_2.0.gemfile.lock | 16 ++++------- gemfiles/ruby_2.7_graphql_2.1.gemfile | 2 +- gemfiles/ruby_2.7_graphql_2.1.gemfile.lock | 16 ++++------- gemfiles/ruby_2.7_graphql_2.2.gemfile | 2 +- gemfiles/ruby_2.7_graphql_2.2.gemfile.lock | 16 ++++------- gemfiles/ruby_2.7_graphql_2.3.gemfile | 2 +- gemfiles/ruby_2.7_graphql_2.3.gemfile.lock | 16 ++++------- gemfiles/ruby_2.7_hanami_1.gemfile | 2 +- gemfiles/ruby_2.7_hanami_1.gemfile.lock | 16 ++++------- gemfiles/ruby_2.7_http.gemfile | 2 +- gemfiles/ruby_2.7_http.gemfile.lock | 16 ++++------- gemfiles/ruby_2.7_opensearch_2.gemfile | 2 +- gemfiles/ruby_2.7_opensearch_2.gemfile.lock | 16 ++++------- gemfiles/ruby_2.7_opensearch_3.gemfile | 2 +- gemfiles/ruby_2.7_opensearch_3.gemfile.lock | 16 ++++------- gemfiles/ruby_2.7_opensearch_latest.gemfile | 2 +- .../ruby_2.7_opensearch_latest.gemfile.lock | 16 ++++------- gemfiles/ruby_2.7_opentelemetry.gemfile | 2 +- gemfiles/ruby_2.7_opentelemetry.gemfile.lock | 16 ++++------- gemfiles/ruby_2.7_opentelemetry_otlp.gemfile | 2 +- .../ruby_2.7_opentelemetry_otlp.gemfile.lock | 16 ++++------- gemfiles/ruby_2.7_rack_1.gemfile | 2 +- gemfiles/ruby_2.7_rack_1.gemfile.lock | 16 ++++------- gemfiles/ruby_2.7_rack_2.gemfile | 2 +- gemfiles/ruby_2.7_rack_2.gemfile.lock | 16 ++++------- gemfiles/ruby_2.7_rack_3.gemfile | 2 +- gemfiles/ruby_2.7_rack_3.gemfile.lock | 16 ++++------- gemfiles/ruby_2.7_rack_latest.gemfile | 2 +- gemfiles/ruby_2.7_rack_latest.gemfile.lock | 16 ++++------- gemfiles/ruby_2.7_rails5_mysql2.gemfile | 2 +- gemfiles/ruby_2.7_rails5_mysql2.gemfile.lock | 16 ++++------- gemfiles/ruby_2.7_rails5_postgres.gemfile | 2 +- .../ruby_2.7_rails5_postgres.gemfile.lock | 16 ++++------- .../ruby_2.7_rails5_postgres_redis.gemfile | 2 +- ...uby_2.7_rails5_postgres_redis.gemfile.lock | 16 ++++------- ...ails5_postgres_redis_activesupport.gemfile | 2 +- ..._postgres_redis_activesupport.gemfile.lock | 16 ++++------- .../ruby_2.7_rails5_postgres_sidekiq.gemfile | 2 +- ...y_2.7_rails5_postgres_sidekiq.gemfile.lock | 16 ++++------- .../ruby_2.7_rails5_semantic_logger.gemfile | 2 +- ...by_2.7_rails5_semantic_logger.gemfile.lock | 16 ++++------- gemfiles/ruby_2.7_rails61_mysql2.gemfile | 2 +- gemfiles/ruby_2.7_rails61_mysql2.gemfile.lock | 16 ++++------- gemfiles/ruby_2.7_rails61_postgres.gemfile | 2 +- .../ruby_2.7_rails61_postgres.gemfile.lock | 16 ++++------- .../ruby_2.7_rails61_postgres_redis.gemfile | 2 +- ...by_2.7_rails61_postgres_redis.gemfile.lock | 16 ++++------- .../ruby_2.7_rails61_postgres_sidekiq.gemfile | 2 +- ..._2.7_rails61_postgres_sidekiq.gemfile.lock | 16 ++++------- .../ruby_2.7_rails61_semantic_logger.gemfile | 2 +- ...y_2.7_rails61_semantic_logger.gemfile.lock | 16 ++++------- gemfiles/ruby_2.7_rails6_mysql2.gemfile | 2 +- gemfiles/ruby_2.7_rails6_mysql2.gemfile.lock | 16 ++++------- gemfiles/ruby_2.7_rails6_postgres.gemfile | 2 +- .../ruby_2.7_rails6_postgres.gemfile.lock | 16 ++++------- .../ruby_2.7_rails6_postgres_redis.gemfile | 2 +- ...uby_2.7_rails6_postgres_redis.gemfile.lock | 16 ++++------- ...ails6_postgres_redis_activesupport.gemfile | 2 +- ..._postgres_redis_activesupport.gemfile.lock | 16 ++++------- .../ruby_2.7_rails6_postgres_sidekiq.gemfile | 2 +- ...y_2.7_rails6_postgres_sidekiq.gemfile.lock | 16 ++++------- .../ruby_2.7_rails6_semantic_logger.gemfile | 2 +- ...by_2.7_rails6_semantic_logger.gemfile.lock | 16 ++++------- gemfiles/ruby_2.7_rails_old_redis.gemfile | 2 +- gemfiles/ruby_2.7_redis_3.gemfile | 2 +- gemfiles/ruby_2.7_redis_3.gemfile.lock | 16 ++++------- gemfiles/ruby_2.7_redis_4.gemfile | 2 +- gemfiles/ruby_2.7_redis_4.gemfile.lock | 16 ++++------- gemfiles/ruby_2.7_redis_5.gemfile | 2 +- gemfiles/ruby_2.7_redis_5.gemfile.lock | 16 ++++------- gemfiles/ruby_2.7_relational_db.gemfile | 2 +- gemfiles/ruby_2.7_relational_db.gemfile.lock | 16 ++++------- gemfiles/ruby_2.7_resque2_redis3.gemfile | 2 +- gemfiles/ruby_2.7_resque2_redis3.gemfile.lock | 16 ++++------- gemfiles/ruby_2.7_resque2_redis4.gemfile | 2 +- gemfiles/ruby_2.7_resque2_redis4.gemfile.lock | 16 ++++------- gemfiles/ruby_2.7_sinatra_2.gemfile | 2 +- gemfiles/ruby_2.7_sinatra_2.gemfile.lock | 16 ++++------- gemfiles/ruby_2.7_sinatra_3.gemfile | 2 +- gemfiles/ruby_2.7_sinatra_3.gemfile.lock | 16 ++++------- gemfiles/ruby_2.7_stripe_10.gemfile | 2 +- gemfiles/ruby_2.7_stripe_10.gemfile.lock | 16 ++++------- gemfiles/ruby_2.7_stripe_11.gemfile | 2 +- gemfiles/ruby_2.7_stripe_11.gemfile.lock | 16 ++++------- gemfiles/ruby_2.7_stripe_12.gemfile | 2 +- gemfiles/ruby_2.7_stripe_12.gemfile.lock | 16 ++++------- gemfiles/ruby_2.7_stripe_7.gemfile | 2 +- gemfiles/ruby_2.7_stripe_7.gemfile.lock | 16 ++++------- gemfiles/ruby_2.7_stripe_8.gemfile | 2 +- gemfiles/ruby_2.7_stripe_8.gemfile.lock | 16 ++++------- gemfiles/ruby_2.7_stripe_9.gemfile | 2 +- gemfiles/ruby_2.7_stripe_9.gemfile.lock | 16 ++++------- gemfiles/ruby_2.7_stripe_latest.gemfile | 2 +- gemfiles/ruby_2.7_stripe_latest.gemfile.lock | 16 ++++------- gemfiles/ruby_2.7_stripe_min.gemfile | 2 +- gemfiles/ruby_2.7_stripe_min.gemfile.lock | 16 ++++------- gemfiles/ruby_3.0_activesupport.gemfile | 2 +- gemfiles/ruby_3.0_activesupport.gemfile.lock | 16 ++++------- gemfiles/ruby_3.0_aws.gemfile | 2 +- gemfiles/ruby_3.0_aws.gemfile.lock | 16 ++++------- gemfiles/ruby_3.0_contrib.gemfile | 2 +- gemfiles/ruby_3.0_contrib.gemfile.lock | 16 ++++------- gemfiles/ruby_3.0_contrib_old.gemfile | 2 +- gemfiles/ruby_3.0_contrib_old.gemfile.lock | 16 ++++------- gemfiles/ruby_3.0_core_old.gemfile | 2 +- gemfiles/ruby_3.0_core_old.gemfile.lock | 16 ++++------- gemfiles/ruby_3.0_elasticsearch_7.gemfile | 2 +- .../ruby_3.0_elasticsearch_7.gemfile.lock | 16 ++++------- gemfiles/ruby_3.0_elasticsearch_8.gemfile | 2 +- .../ruby_3.0_elasticsearch_8.gemfile.lock | 16 ++++------- .../ruby_3.0_elasticsearch_latest.gemfile | 2 +- ...ruby_3.0_elasticsearch_latest.gemfile.lock | 16 ++++------- gemfiles/ruby_3.0_graphql_1.13.gemfile | 2 +- gemfiles/ruby_3.0_graphql_1.13.gemfile.lock | 16 ++++------- gemfiles/ruby_3.0_graphql_2.0.gemfile | 2 +- gemfiles/ruby_3.0_graphql_2.0.gemfile.lock | 16 ++++------- gemfiles/ruby_3.0_graphql_2.1.gemfile | 2 +- gemfiles/ruby_3.0_graphql_2.1.gemfile.lock | 16 ++++------- gemfiles/ruby_3.0_graphql_2.2.gemfile | 2 +- gemfiles/ruby_3.0_graphql_2.2.gemfile.lock | 16 ++++------- gemfiles/ruby_3.0_graphql_2.3.gemfile | 2 +- gemfiles/ruby_3.0_graphql_2.3.gemfile.lock | 16 ++++------- gemfiles/ruby_3.0_http.gemfile | 2 +- gemfiles/ruby_3.0_http.gemfile.lock | 16 ++++------- gemfiles/ruby_3.0_opensearch_2.gemfile | 2 +- gemfiles/ruby_3.0_opensearch_2.gemfile.lock | 16 ++++------- gemfiles/ruby_3.0_opensearch_3.gemfile | 2 +- gemfiles/ruby_3.0_opensearch_3.gemfile.lock | 16 ++++------- gemfiles/ruby_3.0_opensearch_latest.gemfile | 2 +- .../ruby_3.0_opensearch_latest.gemfile.lock | 16 ++++------- gemfiles/ruby_3.0_opentelemetry.gemfile | 2 +- gemfiles/ruby_3.0_opentelemetry.gemfile.lock | 16 ++++------- gemfiles/ruby_3.0_opentelemetry_otlp.gemfile | 2 +- .../ruby_3.0_opentelemetry_otlp.gemfile.lock | 16 ++++------- gemfiles/ruby_3.0_rack_1.gemfile | 2 +- gemfiles/ruby_3.0_rack_1.gemfile.lock | 16 ++++------- gemfiles/ruby_3.0_rack_2.gemfile | 2 +- gemfiles/ruby_3.0_rack_2.gemfile.lock | 16 ++++------- gemfiles/ruby_3.0_rack_3.gemfile | 2 +- gemfiles/ruby_3.0_rack_3.gemfile.lock | 16 ++++------- gemfiles/ruby_3.0_rack_latest.gemfile | 2 +- gemfiles/ruby_3.0_rack_latest.gemfile.lock | 16 ++++------- gemfiles/ruby_3.0_rails61_mysql2.gemfile | 2 +- gemfiles/ruby_3.0_rails61_mysql2.gemfile.lock | 16 ++++------- gemfiles/ruby_3.0_rails61_postgres.gemfile | 2 +- .../ruby_3.0_rails61_postgres.gemfile.lock | 16 ++++------- .../ruby_3.0_rails61_postgres_redis.gemfile | 2 +- ...by_3.0_rails61_postgres_redis.gemfile.lock | 16 ++++------- .../ruby_3.0_rails61_postgres_sidekiq.gemfile | 2 +- ..._3.0_rails61_postgres_sidekiq.gemfile.lock | 16 ++++------- .../ruby_3.0_rails61_semantic_logger.gemfile | 2 +- ...y_3.0_rails61_semantic_logger.gemfile.lock | 16 ++++------- gemfiles/ruby_3.0_rails61_trilogy.gemfile | 2 +- .../ruby_3.0_rails61_trilogy.gemfile.lock | 16 ++++------- gemfiles/ruby_3.0_rails7.gemfile | 2 +- gemfiles/ruby_3.0_rails7.gemfile.lock | 16 ++++------- gemfiles/ruby_3.0_rails71.gemfile | 2 +- gemfiles/ruby_3.0_rails71.gemfile.lock | 16 ++++------- gemfiles/ruby_3.0_rails_old_redis.gemfile | 2 +- gemfiles/ruby_3.0_redis_3.gemfile | 2 +- gemfiles/ruby_3.0_redis_3.gemfile.lock | 16 ++++------- gemfiles/ruby_3.0_redis_4.gemfile | 2 +- gemfiles/ruby_3.0_redis_4.gemfile.lock | 16 ++++------- gemfiles/ruby_3.0_redis_5.gemfile | 2 +- gemfiles/ruby_3.0_redis_5.gemfile.lock | 16 ++++------- gemfiles/ruby_3.0_relational_db.gemfile | 2 +- gemfiles/ruby_3.0_relational_db.gemfile.lock | 16 ++++------- gemfiles/ruby_3.0_resque2_redis3.gemfile | 2 +- gemfiles/ruby_3.0_resque2_redis3.gemfile.lock | 16 ++++------- gemfiles/ruby_3.0_resque2_redis4.gemfile | 2 +- gemfiles/ruby_3.0_resque2_redis4.gemfile.lock | 16 ++++------- gemfiles/ruby_3.0_sinatra_2.gemfile | 2 +- gemfiles/ruby_3.0_sinatra_2.gemfile.lock | 16 ++++------- gemfiles/ruby_3.0_sinatra_3.gemfile | 2 +- gemfiles/ruby_3.0_sinatra_3.gemfile.lock | 16 ++++------- gemfiles/ruby_3.0_sinatra_4.gemfile | 2 +- gemfiles/ruby_3.0_sinatra_4.gemfile.lock | 16 ++++------- gemfiles/ruby_3.0_stripe_10.gemfile | 2 +- gemfiles/ruby_3.0_stripe_10.gemfile.lock | 16 ++++------- gemfiles/ruby_3.0_stripe_11.gemfile | 2 +- gemfiles/ruby_3.0_stripe_11.gemfile.lock | 16 ++++------- gemfiles/ruby_3.0_stripe_12.gemfile | 2 +- gemfiles/ruby_3.0_stripe_12.gemfile.lock | 16 ++++------- gemfiles/ruby_3.0_stripe_7.gemfile | 2 +- gemfiles/ruby_3.0_stripe_7.gemfile.lock | 16 ++++------- gemfiles/ruby_3.0_stripe_8.gemfile | 2 +- gemfiles/ruby_3.0_stripe_8.gemfile.lock | 16 ++++------- gemfiles/ruby_3.0_stripe_9.gemfile | 2 +- gemfiles/ruby_3.0_stripe_9.gemfile.lock | 16 ++++------- gemfiles/ruby_3.0_stripe_latest.gemfile | 2 +- gemfiles/ruby_3.0_stripe_latest.gemfile.lock | 16 ++++------- gemfiles/ruby_3.0_stripe_min.gemfile | 2 +- gemfiles/ruby_3.0_stripe_min.gemfile.lock | 16 ++++------- gemfiles/ruby_3.1_activesupport.gemfile | 2 +- gemfiles/ruby_3.1_activesupport.gemfile.lock | 16 ++++------- gemfiles/ruby_3.1_aws.gemfile | 2 +- gemfiles/ruby_3.1_aws.gemfile.lock | 16 ++++------- gemfiles/ruby_3.1_contrib.gemfile | 2 +- gemfiles/ruby_3.1_contrib.gemfile.lock | 16 ++++------- gemfiles/ruby_3.1_contrib_old.gemfile | 2 +- gemfiles/ruby_3.1_contrib_old.gemfile.lock | 16 ++++------- gemfiles/ruby_3.1_core_old.gemfile | 2 +- gemfiles/ruby_3.1_core_old.gemfile.lock | 16 ++++------- gemfiles/ruby_3.1_elasticsearch_7.gemfile | 2 +- .../ruby_3.1_elasticsearch_7.gemfile.lock | 16 ++++------- gemfiles/ruby_3.1_elasticsearch_8.gemfile | 2 +- .../ruby_3.1_elasticsearch_8.gemfile.lock | 16 ++++------- .../ruby_3.1_elasticsearch_latest.gemfile | 2 +- ...ruby_3.1_elasticsearch_latest.gemfile.lock | 16 ++++------- gemfiles/ruby_3.1_graphql_1.13.gemfile | 2 +- gemfiles/ruby_3.1_graphql_1.13.gemfile.lock | 16 ++++------- gemfiles/ruby_3.1_graphql_2.0.gemfile | 2 +- gemfiles/ruby_3.1_graphql_2.0.gemfile.lock | 16 ++++------- gemfiles/ruby_3.1_graphql_2.1.gemfile | 2 +- gemfiles/ruby_3.1_graphql_2.1.gemfile.lock | 16 ++++------- gemfiles/ruby_3.1_graphql_2.2.gemfile | 2 +- gemfiles/ruby_3.1_graphql_2.2.gemfile.lock | 16 ++++------- gemfiles/ruby_3.1_graphql_2.3.gemfile | 2 +- gemfiles/ruby_3.1_graphql_2.3.gemfile.lock | 16 ++++------- gemfiles/ruby_3.1_http.gemfile | 2 +- gemfiles/ruby_3.1_http.gemfile.lock | 16 ++++------- gemfiles/ruby_3.1_opensearch_2.gemfile | 2 +- gemfiles/ruby_3.1_opensearch_2.gemfile.lock | 16 ++++------- gemfiles/ruby_3.1_opensearch_3.gemfile | 2 +- gemfiles/ruby_3.1_opensearch_3.gemfile.lock | 16 ++++------- gemfiles/ruby_3.1_opensearch_latest.gemfile | 2 +- .../ruby_3.1_opensearch_latest.gemfile.lock | 16 ++++------- gemfiles/ruby_3.1_opentelemetry.gemfile | 2 +- gemfiles/ruby_3.1_opentelemetry.gemfile.lock | 16 ++++------- gemfiles/ruby_3.1_opentelemetry_otlp.gemfile | 2 +- .../ruby_3.1_opentelemetry_otlp.gemfile.lock | 16 ++++------- gemfiles/ruby_3.1_rack_1.gemfile | 2 +- gemfiles/ruby_3.1_rack_1.gemfile.lock | 16 ++++------- gemfiles/ruby_3.1_rack_2.gemfile | 2 +- gemfiles/ruby_3.1_rack_2.gemfile.lock | 16 ++++------- gemfiles/ruby_3.1_rack_3.gemfile | 2 +- gemfiles/ruby_3.1_rack_3.gemfile.lock | 16 ++++------- gemfiles/ruby_3.1_rack_latest.gemfile | 2 +- gemfiles/ruby_3.1_rack_latest.gemfile.lock | 16 ++++------- gemfiles/ruby_3.1_rails61_mysql2.gemfile | 2 +- gemfiles/ruby_3.1_rails61_mysql2.gemfile.lock | 16 ++++------- gemfiles/ruby_3.1_rails61_postgres.gemfile | 2 +- .../ruby_3.1_rails61_postgres.gemfile.lock | 16 ++++------- .../ruby_3.1_rails61_postgres_redis.gemfile | 2 +- ...by_3.1_rails61_postgres_redis.gemfile.lock | 16 ++++------- .../ruby_3.1_rails61_postgres_sidekiq.gemfile | 2 +- ..._3.1_rails61_postgres_sidekiq.gemfile.lock | 16 ++++------- .../ruby_3.1_rails61_semantic_logger.gemfile | 2 +- ...y_3.1_rails61_semantic_logger.gemfile.lock | 16 ++++------- gemfiles/ruby_3.1_rails61_trilogy.gemfile | 2 +- .../ruby_3.1_rails61_trilogy.gemfile.lock | 16 ++++------- gemfiles/ruby_3.1_rails7.gemfile | 2 +- gemfiles/ruby_3.1_rails7.gemfile.lock | 16 ++++------- gemfiles/ruby_3.1_rails71.gemfile | 2 +- gemfiles/ruby_3.1_rails71.gemfile.lock | 16 ++++------- gemfiles/ruby_3.1_rails_old_redis.gemfile | 2 +- gemfiles/ruby_3.1_redis_3.gemfile | 2 +- gemfiles/ruby_3.1_redis_3.gemfile.lock | 16 ++++------- gemfiles/ruby_3.1_redis_4.gemfile | 2 +- gemfiles/ruby_3.1_redis_4.gemfile.lock | 16 ++++------- gemfiles/ruby_3.1_redis_5.gemfile | 2 +- gemfiles/ruby_3.1_redis_5.gemfile.lock | 16 ++++------- gemfiles/ruby_3.1_relational_db.gemfile | 2 +- gemfiles/ruby_3.1_relational_db.gemfile.lock | 16 ++++------- gemfiles/ruby_3.1_resque2_redis3.gemfile | 2 +- gemfiles/ruby_3.1_resque2_redis3.gemfile.lock | 16 ++++------- gemfiles/ruby_3.1_resque2_redis4.gemfile | 2 +- gemfiles/ruby_3.1_resque2_redis4.gemfile.lock | 16 ++++------- gemfiles/ruby_3.1_sinatra_2.gemfile | 2 +- gemfiles/ruby_3.1_sinatra_2.gemfile.lock | 16 ++++------- gemfiles/ruby_3.1_sinatra_3.gemfile | 2 +- gemfiles/ruby_3.1_sinatra_3.gemfile.lock | 16 ++++------- gemfiles/ruby_3.1_sinatra_4.gemfile | 2 +- gemfiles/ruby_3.1_sinatra_4.gemfile.lock | 16 ++++------- gemfiles/ruby_3.1_stripe_10.gemfile | 2 +- gemfiles/ruby_3.1_stripe_10.gemfile.lock | 16 ++++------- gemfiles/ruby_3.1_stripe_11.gemfile | 2 +- gemfiles/ruby_3.1_stripe_11.gemfile.lock | 16 ++++------- gemfiles/ruby_3.1_stripe_12.gemfile | 2 +- gemfiles/ruby_3.1_stripe_12.gemfile.lock | 16 ++++------- gemfiles/ruby_3.1_stripe_7.gemfile | 2 +- gemfiles/ruby_3.1_stripe_7.gemfile.lock | 16 ++++------- gemfiles/ruby_3.1_stripe_8.gemfile | 2 +- gemfiles/ruby_3.1_stripe_8.gemfile.lock | 16 ++++------- gemfiles/ruby_3.1_stripe_9.gemfile | 2 +- gemfiles/ruby_3.1_stripe_9.gemfile.lock | 16 ++++------- gemfiles/ruby_3.1_stripe_latest.gemfile | 2 +- gemfiles/ruby_3.1_stripe_latest.gemfile.lock | 16 ++++------- gemfiles/ruby_3.1_stripe_min.gemfile | 2 +- gemfiles/ruby_3.1_stripe_min.gemfile.lock | 16 ++++------- gemfiles/ruby_3.2_activesupport.gemfile | 2 +- gemfiles/ruby_3.2_activesupport.gemfile.lock | 16 ++++------- gemfiles/ruby_3.2_aws.gemfile | 2 +- gemfiles/ruby_3.2_aws.gemfile.lock | 16 ++++------- gemfiles/ruby_3.2_contrib.gemfile | 2 +- gemfiles/ruby_3.2_contrib.gemfile.lock | 16 ++++------- gemfiles/ruby_3.2_contrib_old.gemfile | 2 +- gemfiles/ruby_3.2_contrib_old.gemfile.lock | 16 ++++------- gemfiles/ruby_3.2_core_old.gemfile | 2 +- gemfiles/ruby_3.2_core_old.gemfile.lock | 16 ++++------- gemfiles/ruby_3.2_elasticsearch_7.gemfile | 2 +- .../ruby_3.2_elasticsearch_7.gemfile.lock | 16 ++++------- gemfiles/ruby_3.2_elasticsearch_8.gemfile | 2 +- .../ruby_3.2_elasticsearch_8.gemfile.lock | 16 ++++------- .../ruby_3.2_elasticsearch_latest.gemfile | 2 +- ...ruby_3.2_elasticsearch_latest.gemfile.lock | 16 ++++------- gemfiles/ruby_3.2_graphql_1.13.gemfile | 2 +- gemfiles/ruby_3.2_graphql_1.13.gemfile.lock | 16 ++++------- gemfiles/ruby_3.2_graphql_2.0.gemfile | 2 +- gemfiles/ruby_3.2_graphql_2.0.gemfile.lock | 16 ++++------- gemfiles/ruby_3.2_graphql_2.1.gemfile | 2 +- gemfiles/ruby_3.2_graphql_2.1.gemfile.lock | 16 ++++------- gemfiles/ruby_3.2_graphql_2.2.gemfile | 2 +- gemfiles/ruby_3.2_graphql_2.2.gemfile.lock | 16 ++++------- gemfiles/ruby_3.2_graphql_2.3.gemfile | 2 +- gemfiles/ruby_3.2_graphql_2.3.gemfile.lock | 16 ++++------- gemfiles/ruby_3.2_http.gemfile | 2 +- gemfiles/ruby_3.2_http.gemfile.lock | 16 ++++------- gemfiles/ruby_3.2_opensearch_2.gemfile | 2 +- gemfiles/ruby_3.2_opensearch_2.gemfile.lock | 16 ++++------- gemfiles/ruby_3.2_opensearch_3.gemfile | 2 +- gemfiles/ruby_3.2_opensearch_3.gemfile.lock | 16 ++++------- gemfiles/ruby_3.2_opensearch_latest.gemfile | 2 +- .../ruby_3.2_opensearch_latest.gemfile.lock | 16 ++++------- gemfiles/ruby_3.2_opentelemetry.gemfile | 2 +- gemfiles/ruby_3.2_opentelemetry.gemfile.lock | 16 ++++------- gemfiles/ruby_3.2_opentelemetry_otlp.gemfile | 2 +- .../ruby_3.2_opentelemetry_otlp.gemfile.lock | 16 ++++------- gemfiles/ruby_3.2_rack_1.gemfile | 2 +- gemfiles/ruby_3.2_rack_1.gemfile.lock | 16 ++++------- gemfiles/ruby_3.2_rack_2.gemfile | 2 +- gemfiles/ruby_3.2_rack_2.gemfile.lock | 16 ++++------- gemfiles/ruby_3.2_rack_3.gemfile | 2 +- gemfiles/ruby_3.2_rack_3.gemfile.lock | 16 ++++------- gemfiles/ruby_3.2_rack_latest.gemfile | 2 +- gemfiles/ruby_3.2_rack_latest.gemfile.lock | 16 ++++------- gemfiles/ruby_3.2_rails61_mysql2.gemfile | 2 +- gemfiles/ruby_3.2_rails61_mysql2.gemfile.lock | 16 ++++------- gemfiles/ruby_3.2_rails61_postgres.gemfile | 2 +- .../ruby_3.2_rails61_postgres.gemfile.lock | 16 ++++------- .../ruby_3.2_rails61_postgres_redis.gemfile | 2 +- ...by_3.2_rails61_postgres_redis.gemfile.lock | 16 ++++------- .../ruby_3.2_rails61_postgres_sidekiq.gemfile | 2 +- ..._3.2_rails61_postgres_sidekiq.gemfile.lock | 16 ++++------- .../ruby_3.2_rails61_semantic_logger.gemfile | 2 +- ...y_3.2_rails61_semantic_logger.gemfile.lock | 16 ++++------- gemfiles/ruby_3.2_rails61_trilogy.gemfile | 2 +- .../ruby_3.2_rails61_trilogy.gemfile.lock | 16 ++++------- gemfiles/ruby_3.2_rails7.gemfile | 2 +- gemfiles/ruby_3.2_rails7.gemfile.lock | 16 ++++------- gemfiles/ruby_3.2_rails71.gemfile | 2 +- gemfiles/ruby_3.2_rails71.gemfile.lock | 16 ++++------- gemfiles/ruby_3.2_rails_old_redis.gemfile | 2 +- gemfiles/ruby_3.2_redis_3.gemfile | 2 +- gemfiles/ruby_3.2_redis_3.gemfile.lock | 16 ++++------- gemfiles/ruby_3.2_redis_4.gemfile | 2 +- gemfiles/ruby_3.2_redis_4.gemfile.lock | 16 ++++------- gemfiles/ruby_3.2_redis_5.gemfile | 2 +- gemfiles/ruby_3.2_redis_5.gemfile.lock | 16 ++++------- gemfiles/ruby_3.2_relational_db.gemfile | 2 +- gemfiles/ruby_3.2_relational_db.gemfile.lock | 16 ++++------- gemfiles/ruby_3.2_resque2_redis3.gemfile | 2 +- gemfiles/ruby_3.2_resque2_redis3.gemfile.lock | 16 ++++------- gemfiles/ruby_3.2_resque2_redis4.gemfile | 2 +- gemfiles/ruby_3.2_resque2_redis4.gemfile.lock | 16 ++++------- gemfiles/ruby_3.2_sinatra_2.gemfile | 2 +- gemfiles/ruby_3.2_sinatra_2.gemfile.lock | 16 ++++------- gemfiles/ruby_3.2_sinatra_3.gemfile | 2 +- gemfiles/ruby_3.2_sinatra_3.gemfile.lock | 16 ++++------- gemfiles/ruby_3.2_sinatra_4.gemfile | 2 +- gemfiles/ruby_3.2_sinatra_4.gemfile.lock | 16 ++++------- gemfiles/ruby_3.2_stripe_10.gemfile | 2 +- gemfiles/ruby_3.2_stripe_10.gemfile.lock | 16 ++++------- gemfiles/ruby_3.2_stripe_11.gemfile | 2 +- gemfiles/ruby_3.2_stripe_11.gemfile.lock | 16 ++++------- gemfiles/ruby_3.2_stripe_12.gemfile | 2 +- gemfiles/ruby_3.2_stripe_12.gemfile.lock | 16 ++++------- gemfiles/ruby_3.2_stripe_7.gemfile | 2 +- gemfiles/ruby_3.2_stripe_7.gemfile.lock | 16 ++++------- gemfiles/ruby_3.2_stripe_8.gemfile | 2 +- gemfiles/ruby_3.2_stripe_8.gemfile.lock | 16 ++++------- gemfiles/ruby_3.2_stripe_9.gemfile | 2 +- gemfiles/ruby_3.2_stripe_9.gemfile.lock | 16 ++++------- gemfiles/ruby_3.2_stripe_latest.gemfile | 2 +- gemfiles/ruby_3.2_stripe_latest.gemfile.lock | 16 ++++------- gemfiles/ruby_3.2_stripe_min.gemfile | 2 +- gemfiles/ruby_3.2_stripe_min.gemfile.lock | 16 ++++------- gemfiles/ruby_3.3_activesupport.gemfile | 2 +- gemfiles/ruby_3.3_activesupport.gemfile.lock | 16 ++++------- gemfiles/ruby_3.3_aws.gemfile | 2 +- gemfiles/ruby_3.3_aws.gemfile.lock | 16 ++++------- gemfiles/ruby_3.3_contrib.gemfile | 2 +- gemfiles/ruby_3.3_contrib.gemfile.lock | 16 ++++------- gemfiles/ruby_3.3_contrib_old.gemfile | 2 +- gemfiles/ruby_3.3_contrib_old.gemfile.lock | 16 ++++------- gemfiles/ruby_3.3_core_old.gemfile | 2 +- gemfiles/ruby_3.3_core_old.gemfile.lock | 16 ++++------- gemfiles/ruby_3.3_elasticsearch_7.gemfile | 2 +- .../ruby_3.3_elasticsearch_7.gemfile.lock | 16 ++++------- gemfiles/ruby_3.3_elasticsearch_8.gemfile | 2 +- .../ruby_3.3_elasticsearch_8.gemfile.lock | 16 ++++------- .../ruby_3.3_elasticsearch_latest.gemfile | 2 +- ...ruby_3.3_elasticsearch_latest.gemfile.lock | 16 ++++------- gemfiles/ruby_3.3_graphql_1.13.gemfile | 2 +- gemfiles/ruby_3.3_graphql_1.13.gemfile.lock | 16 ++++------- gemfiles/ruby_3.3_graphql_2.0.gemfile | 2 +- gemfiles/ruby_3.3_graphql_2.0.gemfile.lock | 16 ++++------- gemfiles/ruby_3.3_graphql_2.1.gemfile | 2 +- gemfiles/ruby_3.3_graphql_2.1.gemfile.lock | 16 ++++------- gemfiles/ruby_3.3_graphql_2.2.gemfile | 2 +- gemfiles/ruby_3.3_graphql_2.2.gemfile.lock | 16 ++++------- gemfiles/ruby_3.3_graphql_2.3.gemfile | 2 +- gemfiles/ruby_3.3_graphql_2.3.gemfile.lock | 16 ++++------- gemfiles/ruby_3.3_http.gemfile | 2 +- gemfiles/ruby_3.3_http.gemfile.lock | 16 ++++------- gemfiles/ruby_3.3_opensearch_2.gemfile | 2 +- gemfiles/ruby_3.3_opensearch_2.gemfile.lock | 16 ++++------- gemfiles/ruby_3.3_opensearch_3.gemfile | 2 +- gemfiles/ruby_3.3_opensearch_3.gemfile.lock | 16 ++++------- gemfiles/ruby_3.3_opensearch_latest.gemfile | 2 +- .../ruby_3.3_opensearch_latest.gemfile.lock | 16 ++++------- gemfiles/ruby_3.3_opentelemetry.gemfile | 2 +- gemfiles/ruby_3.3_opentelemetry.gemfile.lock | 16 ++++------- gemfiles/ruby_3.3_opentelemetry_otlp.gemfile | 2 +- .../ruby_3.3_opentelemetry_otlp.gemfile.lock | 16 ++++------- gemfiles/ruby_3.3_rack_2.gemfile | 2 +- gemfiles/ruby_3.3_rack_2.gemfile.lock | 16 ++++------- gemfiles/ruby_3.3_rack_3.gemfile | 2 +- gemfiles/ruby_3.3_rack_3.gemfile.lock | 16 ++++------- gemfiles/ruby_3.3_rack_latest.gemfile | 2 +- gemfiles/ruby_3.3_rack_latest.gemfile.lock | 16 ++++------- gemfiles/ruby_3.3_rails61_mysql2.gemfile | 2 +- gemfiles/ruby_3.3_rails61_mysql2.gemfile.lock | 16 ++++------- gemfiles/ruby_3.3_rails61_postgres.gemfile | 2 +- .../ruby_3.3_rails61_postgres.gemfile.lock | 16 ++++------- .../ruby_3.3_rails61_postgres_redis.gemfile | 2 +- ...by_3.3_rails61_postgres_redis.gemfile.lock | 16 ++++------- .../ruby_3.3_rails61_postgres_sidekiq.gemfile | 2 +- ..._3.3_rails61_postgres_sidekiq.gemfile.lock | 16 ++++------- .../ruby_3.3_rails61_semantic_logger.gemfile | 2 +- ...y_3.3_rails61_semantic_logger.gemfile.lock | 16 ++++------- gemfiles/ruby_3.3_rails61_trilogy.gemfile | 2 +- .../ruby_3.3_rails61_trilogy.gemfile.lock | 16 ++++------- gemfiles/ruby_3.3_rails7.gemfile | 2 +- gemfiles/ruby_3.3_rails7.gemfile.lock | 16 ++++------- gemfiles/ruby_3.3_rails71.gemfile | 2 +- gemfiles/ruby_3.3_rails71.gemfile.lock | 16 ++++------- gemfiles/ruby_3.3_rails_old_redis.gemfile | 2 +- gemfiles/ruby_3.3_redis_3.gemfile | 2 +- gemfiles/ruby_3.3_redis_3.gemfile.lock | 16 ++++------- gemfiles/ruby_3.3_redis_4.gemfile | 2 +- gemfiles/ruby_3.3_redis_4.gemfile.lock | 16 ++++------- gemfiles/ruby_3.3_redis_5.gemfile | 2 +- gemfiles/ruby_3.3_redis_5.gemfile.lock | 16 ++++------- gemfiles/ruby_3.3_relational_db.gemfile | 2 +- gemfiles/ruby_3.3_relational_db.gemfile.lock | 16 ++++------- gemfiles/ruby_3.3_resque2_redis3.gemfile | 2 +- gemfiles/ruby_3.3_resque2_redis3.gemfile.lock | 16 ++++------- gemfiles/ruby_3.3_resque2_redis4.gemfile | 2 +- gemfiles/ruby_3.3_resque2_redis4.gemfile.lock | 16 ++++------- gemfiles/ruby_3.3_sinatra_2.gemfile | 2 +- gemfiles/ruby_3.3_sinatra_2.gemfile.lock | 16 ++++------- gemfiles/ruby_3.3_sinatra_3.gemfile | 2 +- gemfiles/ruby_3.3_sinatra_3.gemfile.lock | 16 ++++------- gemfiles/ruby_3.3_sinatra_4.gemfile | 2 +- gemfiles/ruby_3.3_sinatra_4.gemfile.lock | 16 ++++------- gemfiles/ruby_3.3_stripe_10.gemfile | 2 +- gemfiles/ruby_3.3_stripe_10.gemfile.lock | 16 ++++------- gemfiles/ruby_3.3_stripe_11.gemfile | 2 +- gemfiles/ruby_3.3_stripe_11.gemfile.lock | 16 ++++------- gemfiles/ruby_3.3_stripe_12.gemfile | 2 +- gemfiles/ruby_3.3_stripe_12.gemfile.lock | 16 ++++------- gemfiles/ruby_3.3_stripe_7.gemfile | 2 +- gemfiles/ruby_3.3_stripe_7.gemfile.lock | 16 ++++------- gemfiles/ruby_3.3_stripe_8.gemfile | 2 +- gemfiles/ruby_3.3_stripe_8.gemfile.lock | 16 ++++------- gemfiles/ruby_3.3_stripe_9.gemfile | 2 +- gemfiles/ruby_3.3_stripe_9.gemfile.lock | 16 ++++------- gemfiles/ruby_3.3_stripe_latest.gemfile | 2 +- gemfiles/ruby_3.3_stripe_latest.gemfile.lock | 16 ++++------- gemfiles/ruby_3.3_stripe_min.gemfile | 2 +- gemfiles/ruby_3.3_stripe_min.gemfile.lock | 16 ++++------- gemfiles/ruby_3.4_activesupport.gemfile | 2 +- gemfiles/ruby_3.4_activesupport.gemfile.lock | 16 ++++------- gemfiles/ruby_3.4_aws.gemfile | 2 +- gemfiles/ruby_3.4_aws.gemfile.lock | 16 ++++------- gemfiles/ruby_3.4_contrib.gemfile | 2 +- gemfiles/ruby_3.4_contrib.gemfile.lock | 16 ++++------- gemfiles/ruby_3.4_contrib_old.gemfile | 2 +- gemfiles/ruby_3.4_contrib_old.gemfile.lock | 16 ++++------- gemfiles/ruby_3.4_core_old.gemfile | 2 +- gemfiles/ruby_3.4_core_old.gemfile.lock | 16 ++++------- gemfiles/ruby_3.4_elasticsearch_7.gemfile | 2 +- .../ruby_3.4_elasticsearch_7.gemfile.lock | 16 ++++------- gemfiles/ruby_3.4_elasticsearch_8.gemfile | 2 +- .../ruby_3.4_elasticsearch_8.gemfile.lock | 16 ++++------- .../ruby_3.4_elasticsearch_latest.gemfile | 2 +- ...ruby_3.4_elasticsearch_latest.gemfile.lock | 16 ++++------- gemfiles/ruby_3.4_graphql_1.13.gemfile | 2 +- gemfiles/ruby_3.4_graphql_1.13.gemfile.lock | 16 ++++------- gemfiles/ruby_3.4_graphql_2.0.gemfile | 2 +- gemfiles/ruby_3.4_graphql_2.0.gemfile.lock | 16 ++++------- gemfiles/ruby_3.4_graphql_2.1.gemfile | 2 +- gemfiles/ruby_3.4_graphql_2.1.gemfile.lock | 16 ++++------- gemfiles/ruby_3.4_graphql_2.2.gemfile | 2 +- gemfiles/ruby_3.4_graphql_2.2.gemfile.lock | 16 ++++------- gemfiles/ruby_3.4_graphql_2.3.gemfile | 2 +- gemfiles/ruby_3.4_graphql_2.3.gemfile.lock | 16 ++++------- gemfiles/ruby_3.4_http.gemfile | 2 +- gemfiles/ruby_3.4_http.gemfile.lock | 16 ++++------- gemfiles/ruby_3.4_opensearch_2.gemfile | 2 +- gemfiles/ruby_3.4_opensearch_2.gemfile.lock | 16 ++++------- gemfiles/ruby_3.4_opensearch_3.gemfile | 2 +- gemfiles/ruby_3.4_opensearch_3.gemfile.lock | 16 ++++------- gemfiles/ruby_3.4_opensearch_latest.gemfile | 2 +- .../ruby_3.4_opensearch_latest.gemfile.lock | 16 ++++------- gemfiles/ruby_3.4_opentelemetry.gemfile | 2 +- gemfiles/ruby_3.4_opentelemetry.gemfile.lock | 16 ++++------- gemfiles/ruby_3.4_opentelemetry_otlp.gemfile | 2 +- .../ruby_3.4_opentelemetry_otlp.gemfile.lock | 16 ++++------- gemfiles/ruby_3.4_rack_2.gemfile | 2 +- gemfiles/ruby_3.4_rack_2.gemfile.lock | 16 ++++------- gemfiles/ruby_3.4_rack_3.gemfile | 2 +- gemfiles/ruby_3.4_rack_3.gemfile.lock | 16 ++++------- gemfiles/ruby_3.4_rack_latest.gemfile | 2 +- gemfiles/ruby_3.4_rack_latest.gemfile.lock | 16 ++++------- gemfiles/ruby_3.4_rails61_mysql2.gemfile | 2 +- gemfiles/ruby_3.4_rails61_mysql2.gemfile.lock | 16 ++++------- gemfiles/ruby_3.4_rails61_postgres.gemfile | 2 +- .../ruby_3.4_rails61_postgres.gemfile.lock | 16 ++++------- .../ruby_3.4_rails61_postgres_redis.gemfile | 2 +- ...by_3.4_rails61_postgres_redis.gemfile.lock | 16 ++++------- .../ruby_3.4_rails61_postgres_sidekiq.gemfile | 2 +- ..._3.4_rails61_postgres_sidekiq.gemfile.lock | 16 ++++------- .../ruby_3.4_rails61_semantic_logger.gemfile | 2 +- ...y_3.4_rails61_semantic_logger.gemfile.lock | 16 ++++------- gemfiles/ruby_3.4_rails61_trilogy.gemfile | 2 +- .../ruby_3.4_rails61_trilogy.gemfile.lock | 16 ++++------- gemfiles/ruby_3.4_rails7.gemfile | 2 +- gemfiles/ruby_3.4_rails7.gemfile.lock | 16 ++++------- gemfiles/ruby_3.4_rails71.gemfile | 2 +- gemfiles/ruby_3.4_rails71.gemfile.lock | 16 ++++------- gemfiles/ruby_3.4_rails_old_redis.gemfile | 2 +- gemfiles/ruby_3.4_redis_3.gemfile | 2 +- gemfiles/ruby_3.4_redis_3.gemfile.lock | 16 ++++------- gemfiles/ruby_3.4_redis_4.gemfile | 2 +- gemfiles/ruby_3.4_redis_4.gemfile.lock | 16 ++++------- gemfiles/ruby_3.4_redis_5.gemfile | 2 +- gemfiles/ruby_3.4_redis_5.gemfile.lock | 16 ++++------- gemfiles/ruby_3.4_relational_db.gemfile | 2 +- gemfiles/ruby_3.4_relational_db.gemfile.lock | 16 ++++------- gemfiles/ruby_3.4_resque2_redis3.gemfile | 2 +- gemfiles/ruby_3.4_resque2_redis3.gemfile.lock | 16 ++++------- gemfiles/ruby_3.4_resque2_redis4.gemfile | 2 +- gemfiles/ruby_3.4_resque2_redis4.gemfile.lock | 16 ++++------- gemfiles/ruby_3.4_sinatra_2.gemfile | 2 +- gemfiles/ruby_3.4_sinatra_2.gemfile.lock | 16 ++++------- gemfiles/ruby_3.4_sinatra_3.gemfile | 2 +- gemfiles/ruby_3.4_sinatra_3.gemfile.lock | 16 ++++------- gemfiles/ruby_3.4_sinatra_4.gemfile | 2 +- gemfiles/ruby_3.4_sinatra_4.gemfile.lock | 16 ++++------- gemfiles/ruby_3.4_stripe_10.gemfile | 2 +- gemfiles/ruby_3.4_stripe_10.gemfile.lock | 16 ++++------- gemfiles/ruby_3.4_stripe_11.gemfile | 2 +- gemfiles/ruby_3.4_stripe_11.gemfile.lock | 16 ++++------- gemfiles/ruby_3.4_stripe_12.gemfile | 2 +- gemfiles/ruby_3.4_stripe_12.gemfile.lock | 16 ++++------- gemfiles/ruby_3.4_stripe_7.gemfile | 2 +- gemfiles/ruby_3.4_stripe_7.gemfile.lock | 16 ++++------- gemfiles/ruby_3.4_stripe_8.gemfile | 2 +- gemfiles/ruby_3.4_stripe_8.gemfile.lock | 16 ++++------- gemfiles/ruby_3.4_stripe_9.gemfile | 2 +- gemfiles/ruby_3.4_stripe_9.gemfile.lock | 16 ++++------- gemfiles/ruby_3.4_stripe_latest.gemfile | 2 +- gemfiles/ruby_3.4_stripe_latest.gemfile.lock | 16 ++++------- gemfiles/ruby_3.4_stripe_min.gemfile | 2 +- gemfiles/ruby_3.4_stripe_min.gemfile.lock | 16 ++++------- jruby-9.2.gemfile | 5 +--- jruby-9.3.gemfile | 5 +--- jruby-9.4.gemfile | 5 +--- ruby-2.5.gemfile | 5 +--- ruby-2.6.gemfile | 5 +--- ruby-2.7.gemfile | 5 +--- ruby-3.0.gemfile | 5 +--- ruby-3.1.gemfile | 5 +--- ruby-3.2.gemfile | 5 +--- ruby-3.3.gemfile | 5 +--- ruby-3.4.gemfile | 5 +--- ruby-3.5.gemfile | 5 +--- spec/spec_helper.rb | 1 + spec/support/simplecov_fix.rb | 28 +++++++++++++++++++ 1120 files changed, 3335 insertions(+), 6623 deletions(-) create mode 100644 spec/support/simplecov_fix.rb diff --git a/Rakefile b/Rakefile index 0f5a522a447..34abf15649c 100644 --- a/Rakefile +++ b/Rakefile @@ -402,6 +402,7 @@ namespace :coverage do # Generates one report for each Ruby version task :report_per_ruby_version do require 'simplecov' + require_relative 'spec/support/simplecov_fix' versions = Dir["#{ENV.fetch('COVERAGE_DIR', 'coverage')}/versions/*"].map { |f| File.basename(f) } versions.map do |version| diff --git a/gemfiles/jruby_9.2_activesupport.gemfile b/gemfiles/jruby_9.2_activesupport.gemfile index 7b447a4efd1..352e079e15d 100644 --- a/gemfiles/jruby_9.2_activesupport.gemfile +++ b/gemfiles/jruby_9.2_activesupport.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.2_activesupport.gemfile.lock b/gemfiles/jruby_9.2_activesupport.gemfile.lock index 1f37736408a..813b28e4236 100644 --- a/gemfiles/jruby_9.2_activesupport.gemfile.lock +++ b/gemfiles/jruby_9.2_activesupport.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -184,6 +174,10 @@ GEM ruby-kafka (1.5.0) digest-crc ruby2_keywords (0.0.5) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -232,7 +226,7 @@ DEPENDENCIES rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) ruby-kafka (>= 0.7.10) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/jruby_9.2_aws.gemfile b/gemfiles/jruby_9.2_aws.gemfile index 97ff0705f53..6c9a4988ba4 100644 --- a/gemfiles/jruby_9.2_aws.gemfile +++ b/gemfiles/jruby_9.2_aws.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.2_aws.gemfile.lock b/gemfiles/jruby_9.2_aws.gemfile.lock index b5010a2d76d..c21809665a1 100644 --- a/gemfiles/jruby_9.2_aws.gemfile.lock +++ b/gemfiles/jruby_9.2_aws.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -1502,6 +1492,10 @@ GEM aws-sdk-core (>= 2) concurrent-ruby thor + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -1541,7 +1535,7 @@ DEPENDENCIES rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) shoryuken - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/jruby_9.2_contrib.gemfile b/gemfiles/jruby_9.2_contrib.gemfile index c793f3ca92b..259dd7fada2 100644 --- a/gemfiles/jruby_9.2_contrib.gemfile +++ b/gemfiles/jruby_9.2_contrib.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.2_contrib.gemfile.lock b/gemfiles/jruby_9.2_contrib.gemfile.lock index 8170f1b7ba8..0aa56a7ee1a 100644 --- a/gemfiles/jruby_9.2_contrib.gemfile.lock +++ b/gemfiles/jruby_9.2_contrib.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -118,6 +108,10 @@ GEM rack (~> 2.0) redis (>= 4.5.0, < 5) sigdump (0.2.5) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -180,7 +174,7 @@ DEPENDENCIES rspec_junit_formatter (>= 0.5.1) semantic_logger (~> 4.0) sidekiq - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sneakers (>= 2.12.0) sucker_punch diff --git a/gemfiles/jruby_9.2_contrib_old.gemfile b/gemfiles/jruby_9.2_contrib_old.gemfile index 76e4d705f1b..e6e722154f9 100644 --- a/gemfiles/jruby_9.2_contrib_old.gemfile +++ b/gemfiles/jruby_9.2_contrib_old.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.2_contrib_old.gemfile.lock b/gemfiles/jruby_9.2_contrib_old.gemfile.lock index 66e746a8673..3572501204a 100644 --- a/gemfiles/jruby_9.2_contrib_old.gemfile.lock +++ b/gemfiles/jruby_9.2_contrib_old.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -90,6 +80,10 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby-debug-base (0.11.0-java) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -131,7 +125,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/jruby_9.2_core_old.gemfile b/gemfiles/jruby_9.2_core_old.gemfile index 0595213ef19..4b556852f84 100644 --- a/gemfiles/jruby_9.2_core_old.gemfile +++ b/gemfiles/jruby_9.2_core_old.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.2_core_old.gemfile.lock b/gemfiles/jruby_9.2_core_old.gemfile.lock index e5f7c1e960f..52d7b6a59fc 100644 --- a/gemfiles/jruby_9.2_core_old.gemfile.lock +++ b/gemfiles/jruby_9.2_core_old.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -77,6 +67,10 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby-debug-base (0.11.0-java) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -113,7 +107,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/jruby_9.2_elasticsearch_7.gemfile b/gemfiles/jruby_9.2_elasticsearch_7.gemfile index e3768872b23..4f90b94b745 100644 --- a/gemfiles/jruby_9.2_elasticsearch_7.gemfile +++ b/gemfiles/jruby_9.2_elasticsearch_7.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.2_elasticsearch_7.gemfile.lock b/gemfiles/jruby_9.2_elasticsearch_7.gemfile.lock index 287047c262c..3eb3faa892c 100644 --- a/gemfiles/jruby_9.2_elasticsearch_7.gemfile.lock +++ b/gemfiles/jruby_9.2_elasticsearch_7.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -115,6 +105,10 @@ GEM rspec-core (>= 2, < 4, != 2.12.0) ruby-debug-base (0.11.0-java) ruby2_keywords (0.0.5) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -152,7 +146,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/jruby_9.2_elasticsearch_8.gemfile b/gemfiles/jruby_9.2_elasticsearch_8.gemfile index fb67f4b15e4..449c9ac82d3 100644 --- a/gemfiles/jruby_9.2_elasticsearch_8.gemfile +++ b/gemfiles/jruby_9.2_elasticsearch_8.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.2_elasticsearch_8.gemfile.lock b/gemfiles/jruby_9.2_elasticsearch_8.gemfile.lock index dffc23160cd..ecfecf0eed5 100644 --- a/gemfiles/jruby_9.2_elasticsearch_8.gemfile.lock +++ b/gemfiles/jruby_9.2_elasticsearch_8.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -113,6 +103,10 @@ GEM rspec-core (>= 2, < 4, != 2.12.0) ruby-debug-base (0.11.0-java) ruby2_keywords (0.0.5) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -150,7 +144,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/jruby_9.2_elasticsearch_latest.gemfile b/gemfiles/jruby_9.2_elasticsearch_latest.gemfile index da808845b0c..f076ec51da6 100644 --- a/gemfiles/jruby_9.2_elasticsearch_latest.gemfile +++ b/gemfiles/jruby_9.2_elasticsearch_latest.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.2_elasticsearch_latest.gemfile.lock b/gemfiles/jruby_9.2_elasticsearch_latest.gemfile.lock index cd7ff91d60e..b9dee844200 100644 --- a/gemfiles/jruby_9.2_elasticsearch_latest.gemfile.lock +++ b/gemfiles/jruby_9.2_elasticsearch_latest.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -114,6 +104,10 @@ GEM rspec-core (>= 2, < 4, != 2.12.0) ruby-debug-base (0.11.0-java) ruby2_keywords (0.0.5) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -150,7 +144,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/jruby_9.2_graphql_2.0.gemfile b/gemfiles/jruby_9.2_graphql_2.0.gemfile index c5b7a946300..7e796e9df6a 100644 --- a/gemfiles/jruby_9.2_graphql_2.0.gemfile +++ b/gemfiles/jruby_9.2_graphql_2.0.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.2_graphql_2.0.gemfile.lock b/gemfiles/jruby_9.2_graphql_2.0.gemfile.lock index 83473fe7a75..9945d2d2f76 100644 --- a/gemfiles/jruby_9.2_graphql_2.0.gemfile.lock +++ b/gemfiles/jruby_9.2_graphql_2.0.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -214,6 +204,10 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby-debug-base (0.11.0-java) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -269,7 +263,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/jruby_9.2_http.gemfile b/gemfiles/jruby_9.2_http.gemfile index d948a2fcf4a..7f0c5f78f8b 100644 --- a/gemfiles/jruby_9.2_http.gemfile +++ b/gemfiles/jruby_9.2_http.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.2_http.gemfile.lock b/gemfiles/jruby_9.2_http.gemfile.lock index 69da049a128..c54dbfff7c9 100644 --- a/gemfiles/jruby_9.2_http.gemfile.lock +++ b/gemfiles/jruby_9.2_http.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -131,6 +121,10 @@ GEM rspec-core (>= 2, < 4, != 2.12.0) ruby-debug-base (0.11.0-java) ruby2_keywords (0.0.5) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -176,7 +170,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) typhoeus warning (~> 1) diff --git a/gemfiles/jruby_9.2_opensearch_2.gemfile b/gemfiles/jruby_9.2_opensearch_2.gemfile index 7c407bf4f2b..cd851d3320c 100644 --- a/gemfiles/jruby_9.2_opensearch_2.gemfile +++ b/gemfiles/jruby_9.2_opensearch_2.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.2_opensearch_2.gemfile.lock b/gemfiles/jruby_9.2_opensearch_2.gemfile.lock index b2691fe8c84..f9278f898d6 100644 --- a/gemfiles/jruby_9.2_opensearch_2.gemfile.lock +++ b/gemfiles/jruby_9.2_opensearch_2.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -113,6 +103,10 @@ GEM rspec-core (>= 2, < 4, != 2.12.0) ruby-debug-base (0.11.0-java) ruby2_keywords (0.0.5) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -150,7 +144,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/jruby_9.2_opensearch_3.gemfile b/gemfiles/jruby_9.2_opensearch_3.gemfile index a5f61ca152e..0a4ce6a7696 100644 --- a/gemfiles/jruby_9.2_opensearch_3.gemfile +++ b/gemfiles/jruby_9.2_opensearch_3.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.2_opensearch_3.gemfile.lock b/gemfiles/jruby_9.2_opensearch_3.gemfile.lock index 432115661b8..8b023501904 100644 --- a/gemfiles/jruby_9.2_opensearch_3.gemfile.lock +++ b/gemfiles/jruby_9.2_opensearch_3.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -108,6 +98,10 @@ GEM rspec-core (>= 2, < 4, != 2.12.0) ruby-debug-base (0.11.0-java) ruby2_keywords (0.0.5) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -145,7 +139,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/jruby_9.2_opensearch_latest.gemfile b/gemfiles/jruby_9.2_opensearch_latest.gemfile index 5b51dbad2d0..1a569f23dd3 100644 --- a/gemfiles/jruby_9.2_opensearch_latest.gemfile +++ b/gemfiles/jruby_9.2_opensearch_latest.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.2_opensearch_latest.gemfile.lock b/gemfiles/jruby_9.2_opensearch_latest.gemfile.lock index be60061472a..08bffb537c9 100644 --- a/gemfiles/jruby_9.2_opensearch_latest.gemfile.lock +++ b/gemfiles/jruby_9.2_opensearch_latest.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -109,6 +99,10 @@ GEM rspec-core (>= 2, < 4, != 2.12.0) ruby-debug-base (0.11.0-java) ruby2_keywords (0.0.5) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -145,7 +139,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/jruby_9.2_rack_1.gemfile b/gemfiles/jruby_9.2_rack_1.gemfile index c6208f3ecca..d1e5f089eed 100644 --- a/gemfiles/jruby_9.2_rack_1.gemfile +++ b/gemfiles/jruby_9.2_rack_1.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.2_rack_1.gemfile.lock b/gemfiles/jruby_9.2_rack_1.gemfile.lock index fc08acf68f1..fc5ab7deaae 100644 --- a/gemfiles/jruby_9.2_rack_1.gemfile.lock +++ b/gemfiles/jruby_9.2_rack_1.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -82,6 +72,10 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby-debug-base (0.11.0-java) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -121,7 +115,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/jruby_9.2_rack_2.gemfile b/gemfiles/jruby_9.2_rack_2.gemfile index b0484c283f7..3a477a041e3 100644 --- a/gemfiles/jruby_9.2_rack_2.gemfile +++ b/gemfiles/jruby_9.2_rack_2.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.2_rack_2.gemfile.lock b/gemfiles/jruby_9.2_rack_2.gemfile.lock index e70c1ffa419..25cdcd88771 100644 --- a/gemfiles/jruby_9.2_rack_2.gemfile.lock +++ b/gemfiles/jruby_9.2_rack_2.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -82,6 +72,10 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby-debug-base (0.11.0-java) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -121,7 +115,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/jruby_9.2_rack_3.gemfile b/gemfiles/jruby_9.2_rack_3.gemfile index e0856fea341..aca27f9ad27 100644 --- a/gemfiles/jruby_9.2_rack_3.gemfile +++ b/gemfiles/jruby_9.2_rack_3.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.2_rack_3.gemfile.lock b/gemfiles/jruby_9.2_rack_3.gemfile.lock index 6e40b093aae..15b99b87344 100644 --- a/gemfiles/jruby_9.2_rack_3.gemfile.lock +++ b/gemfiles/jruby_9.2_rack_3.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -82,6 +72,10 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby-debug-base (0.11.0-java) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -121,7 +115,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/jruby_9.2_rack_latest.gemfile b/gemfiles/jruby_9.2_rack_latest.gemfile index ae147026f3f..651ea9fe890 100644 --- a/gemfiles/jruby_9.2_rack_latest.gemfile +++ b/gemfiles/jruby_9.2_rack_latest.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.2_rack_latest.gemfile.lock b/gemfiles/jruby_9.2_rack_latest.gemfile.lock index 11060d7171f..c55229bb362 100644 --- a/gemfiles/jruby_9.2_rack_latest.gemfile.lock +++ b/gemfiles/jruby_9.2_rack_latest.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -85,6 +75,10 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby-debug-base (0.11.0-java) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -123,7 +117,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/jruby_9.2_rails5_mysql2.gemfile b/gemfiles/jruby_9.2_rails5_mysql2.gemfile index 18ba737405b..88f7e435e0a 100644 --- a/gemfiles/jruby_9.2_rails5_mysql2.gemfile +++ b/gemfiles/jruby_9.2_rails5_mysql2.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.2_rails5_mysql2.gemfile.lock b/gemfiles/jruby_9.2_rails5_mysql2.gemfile.lock index a59d47005cd..52f7ee41928 100644 --- a/gemfiles/jruby_9.2_rails5_mysql2.gemfile.lock +++ b/gemfiles/jruby_9.2_rails5_mysql2.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -178,6 +168,10 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby-debug-base (0.11.0-java) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -233,7 +227,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/jruby_9.2_rails5_postgres.gemfile b/gemfiles/jruby_9.2_rails5_postgres.gemfile index f1822d68983..cb48547d37b 100644 --- a/gemfiles/jruby_9.2_rails5_postgres.gemfile +++ b/gemfiles/jruby_9.2_rails5_postgres.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.2_rails5_postgres.gemfile.lock b/gemfiles/jruby_9.2_rails5_postgres.gemfile.lock index 8e6fdfafad9..384f41f764e 100644 --- a/gemfiles/jruby_9.2_rails5_postgres.gemfile.lock +++ b/gemfiles/jruby_9.2_rails5_postgres.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -196,6 +186,10 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby-debug-base (0.11.0-java) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -251,7 +245,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/jruby_9.2_rails5_postgres_redis.gemfile b/gemfiles/jruby_9.2_rails5_postgres_redis.gemfile index 0edbfc0ed57..3f39efc3266 100644 --- a/gemfiles/jruby_9.2_rails5_postgres_redis.gemfile +++ b/gemfiles/jruby_9.2_rails5_postgres_redis.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.2_rails5_postgres_redis.gemfile.lock b/gemfiles/jruby_9.2_rails5_postgres_redis.gemfile.lock index 2bef5b56ead..32a277500ba 100644 --- a/gemfiles/jruby_9.2_rails5_postgres_redis.gemfile.lock +++ b/gemfiles/jruby_9.2_rails5_postgres_redis.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -201,6 +191,10 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby-debug-base (0.11.0-java) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -257,7 +251,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/jruby_9.2_rails5_postgres_redis_activesupport.gemfile b/gemfiles/jruby_9.2_rails5_postgres_redis_activesupport.gemfile index ba4c81c38c7..bb19b7c1c70 100644 --- a/gemfiles/jruby_9.2_rails5_postgres_redis_activesupport.gemfile +++ b/gemfiles/jruby_9.2_rails5_postgres_redis_activesupport.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.2_rails5_postgres_redis_activesupport.gemfile.lock b/gemfiles/jruby_9.2_rails5_postgres_redis_activesupport.gemfile.lock index 4f4295aab55..247efbad744 100644 --- a/gemfiles/jruby_9.2_rails5_postgres_redis_activesupport.gemfile.lock +++ b/gemfiles/jruby_9.2_rails5_postgres_redis_activesupport.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -213,6 +203,10 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby-debug-base (0.11.0-java) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -271,7 +265,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/jruby_9.2_rails5_postgres_sidekiq.gemfile b/gemfiles/jruby_9.2_rails5_postgres_sidekiq.gemfile index f0f0edbe8dd..1baf868c4e4 100644 --- a/gemfiles/jruby_9.2_rails5_postgres_sidekiq.gemfile +++ b/gemfiles/jruby_9.2_rails5_postgres_sidekiq.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.2_rails5_postgres_sidekiq.gemfile.lock b/gemfiles/jruby_9.2_rails5_postgres_sidekiq.gemfile.lock index 42bc3254b6f..2783d2b39d0 100644 --- a/gemfiles/jruby_9.2_rails5_postgres_sidekiq.gemfile.lock +++ b/gemfiles/jruby_9.2_rails5_postgres_sidekiq.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -202,6 +192,10 @@ GEM connection_pool (>= 2.2.5, < 3) rack (~> 2.0) redis (>= 4.5.0, < 5) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -259,7 +253,7 @@ DEPENDENCIES rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) sidekiq - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/jruby_9.2_rails5_semantic_logger.gemfile b/gemfiles/jruby_9.2_rails5_semantic_logger.gemfile index 5ad53630d63..680d01ca78a 100644 --- a/gemfiles/jruby_9.2_rails5_semantic_logger.gemfile +++ b/gemfiles/jruby_9.2_rails5_semantic_logger.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.2_rails5_semantic_logger.gemfile.lock b/gemfiles/jruby_9.2_rails5_semantic_logger.gemfile.lock index 71836358c22..d06b6873410 100644 --- a/gemfiles/jruby_9.2_rails5_semantic_logger.gemfile.lock +++ b/gemfiles/jruby_9.2_rails5_semantic_logger.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -195,6 +185,10 @@ GEM ruby-debug-base (0.11.0-java) semantic_logger (4.12.0) concurrent-ruby (~> 1.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -250,7 +244,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/jruby_9.2_rails61_mysql2.gemfile b/gemfiles/jruby_9.2_rails61_mysql2.gemfile index e77d6619319..4a2361e36b8 100644 --- a/gemfiles/jruby_9.2_rails61_mysql2.gemfile +++ b/gemfiles/jruby_9.2_rails61_mysql2.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.2_rails61_mysql2.gemfile.lock b/gemfiles/jruby_9.2_rails61_mysql2.gemfile.lock index 5b88027a2d1..9cbd8272cff 100644 --- a/gemfiles/jruby_9.2_rails61_mysql2.gemfile.lock +++ b/gemfiles/jruby_9.2_rails61_mysql2.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -197,6 +187,10 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby-debug-base (0.11.0-java) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -252,7 +246,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/jruby_9.2_rails61_postgres.gemfile b/gemfiles/jruby_9.2_rails61_postgres.gemfile index b88355777d9..212f137e34b 100644 --- a/gemfiles/jruby_9.2_rails61_postgres.gemfile +++ b/gemfiles/jruby_9.2_rails61_postgres.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.2_rails61_postgres.gemfile.lock b/gemfiles/jruby_9.2_rails61_postgres.gemfile.lock index 84156f500a3..dab7f2493c8 100644 --- a/gemfiles/jruby_9.2_rails61_postgres.gemfile.lock +++ b/gemfiles/jruby_9.2_rails61_postgres.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -215,6 +205,10 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby-debug-base (0.11.0-java) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -270,7 +264,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/jruby_9.2_rails61_postgres_redis.gemfile b/gemfiles/jruby_9.2_rails61_postgres_redis.gemfile index bbea97f0eff..0aa5e9f2753 100644 --- a/gemfiles/jruby_9.2_rails61_postgres_redis.gemfile +++ b/gemfiles/jruby_9.2_rails61_postgres_redis.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.2_rails61_postgres_redis.gemfile.lock b/gemfiles/jruby_9.2_rails61_postgres_redis.gemfile.lock index 455289fb4e3..6b4237ef684 100644 --- a/gemfiles/jruby_9.2_rails61_postgres_redis.gemfile.lock +++ b/gemfiles/jruby_9.2_rails61_postgres_redis.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -220,6 +210,10 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby-debug-base (0.11.0-java) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -276,7 +270,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/jruby_9.2_rails61_postgres_sidekiq.gemfile b/gemfiles/jruby_9.2_rails61_postgres_sidekiq.gemfile index 9325a3abf47..b364dbebfac 100644 --- a/gemfiles/jruby_9.2_rails61_postgres_sidekiq.gemfile +++ b/gemfiles/jruby_9.2_rails61_postgres_sidekiq.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.2_rails61_postgres_sidekiq.gemfile.lock b/gemfiles/jruby_9.2_rails61_postgres_sidekiq.gemfile.lock index b5f5347c4cb..f45d279bb86 100644 --- a/gemfiles/jruby_9.2_rails61_postgres_sidekiq.gemfile.lock +++ b/gemfiles/jruby_9.2_rails61_postgres_sidekiq.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -221,6 +211,10 @@ GEM connection_pool (>= 2.2.5, < 3) rack (~> 2.0) redis (>= 4.5.0, < 5) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -277,7 +271,7 @@ DEPENDENCIES rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) sidekiq (>= 6.1.2) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/jruby_9.2_rails61_semantic_logger.gemfile b/gemfiles/jruby_9.2_rails61_semantic_logger.gemfile index d1ebd6c2f09..6205acc46f9 100644 --- a/gemfiles/jruby_9.2_rails61_semantic_logger.gemfile +++ b/gemfiles/jruby_9.2_rails61_semantic_logger.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.2_rails61_semantic_logger.gemfile.lock b/gemfiles/jruby_9.2_rails61_semantic_logger.gemfile.lock index 6b05b5e1805..ef200bb5c79 100644 --- a/gemfiles/jruby_9.2_rails61_semantic_logger.gemfile.lock +++ b/gemfiles/jruby_9.2_rails61_semantic_logger.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -214,6 +204,10 @@ GEM ruby-debug-base (0.11.0-java) semantic_logger (4.12.0) concurrent-ruby (~> 1.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -269,7 +263,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/jruby_9.2_rails6_mysql2.gemfile b/gemfiles/jruby_9.2_rails6_mysql2.gemfile index f0cb6535efd..236c3c0a339 100644 --- a/gemfiles/jruby_9.2_rails6_mysql2.gemfile +++ b/gemfiles/jruby_9.2_rails6_mysql2.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.2_rails6_mysql2.gemfile.lock b/gemfiles/jruby_9.2_rails6_mysql2.gemfile.lock index 6d3703d4832..37e8ceeb616 100644 --- a/gemfiles/jruby_9.2_rails6_mysql2.gemfile.lock +++ b/gemfiles/jruby_9.2_rails6_mysql2.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -193,6 +183,10 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby-debug-base (0.11.0-java) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -249,7 +243,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/jruby_9.2_rails6_postgres.gemfile b/gemfiles/jruby_9.2_rails6_postgres.gemfile index 50e45944e82..72ef9d1e7bc 100644 --- a/gemfiles/jruby_9.2_rails6_postgres.gemfile +++ b/gemfiles/jruby_9.2_rails6_postgres.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.2_rails6_postgres.gemfile.lock b/gemfiles/jruby_9.2_rails6_postgres.gemfile.lock index c2958359820..6901dcd191b 100644 --- a/gemfiles/jruby_9.2_rails6_postgres.gemfile.lock +++ b/gemfiles/jruby_9.2_rails6_postgres.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -211,6 +201,10 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby-debug-base (0.11.0-java) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -267,7 +261,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/jruby_9.2_rails6_postgres_redis.gemfile b/gemfiles/jruby_9.2_rails6_postgres_redis.gemfile index 5be05e91831..7ec2eb13c0f 100644 --- a/gemfiles/jruby_9.2_rails6_postgres_redis.gemfile +++ b/gemfiles/jruby_9.2_rails6_postgres_redis.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.2_rails6_postgres_redis.gemfile.lock b/gemfiles/jruby_9.2_rails6_postgres_redis.gemfile.lock index 1fc442e286b..25b00434d47 100644 --- a/gemfiles/jruby_9.2_rails6_postgres_redis.gemfile.lock +++ b/gemfiles/jruby_9.2_rails6_postgres_redis.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -216,6 +206,10 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby-debug-base (0.11.0-java) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -273,7 +267,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/jruby_9.2_rails6_postgres_redis_activesupport.gemfile b/gemfiles/jruby_9.2_rails6_postgres_redis_activesupport.gemfile index 69ba5bfbf88..34545314cc0 100644 --- a/gemfiles/jruby_9.2_rails6_postgres_redis_activesupport.gemfile +++ b/gemfiles/jruby_9.2_rails6_postgres_redis_activesupport.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.2_rails6_postgres_redis_activesupport.gemfile.lock b/gemfiles/jruby_9.2_rails6_postgres_redis_activesupport.gemfile.lock index ec916b932c1..2dcae434fb8 100644 --- a/gemfiles/jruby_9.2_rails6_postgres_redis_activesupport.gemfile.lock +++ b/gemfiles/jruby_9.2_rails6_postgres_redis_activesupport.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -228,6 +218,10 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby-debug-base (0.11.0-java) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -287,7 +281,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/jruby_9.2_rails6_postgres_sidekiq.gemfile b/gemfiles/jruby_9.2_rails6_postgres_sidekiq.gemfile index d3896e386f8..ab20acd3c63 100644 --- a/gemfiles/jruby_9.2_rails6_postgres_sidekiq.gemfile +++ b/gemfiles/jruby_9.2_rails6_postgres_sidekiq.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.2_rails6_postgres_sidekiq.gemfile.lock b/gemfiles/jruby_9.2_rails6_postgres_sidekiq.gemfile.lock index 4e893ec937b..49ec02ec154 100644 --- a/gemfiles/jruby_9.2_rails6_postgres_sidekiq.gemfile.lock +++ b/gemfiles/jruby_9.2_rails6_postgres_sidekiq.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -217,6 +207,10 @@ GEM connection_pool (>= 2.2.5, < 3) rack (~> 2.0) redis (>= 4.5.0, < 5) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -275,7 +269,7 @@ DEPENDENCIES rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) sidekiq - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/jruby_9.2_rails6_semantic_logger.gemfile b/gemfiles/jruby_9.2_rails6_semantic_logger.gemfile index 30148b041db..e2cb4989e5c 100644 --- a/gemfiles/jruby_9.2_rails6_semantic_logger.gemfile +++ b/gemfiles/jruby_9.2_rails6_semantic_logger.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.2_rails6_semantic_logger.gemfile.lock b/gemfiles/jruby_9.2_rails6_semantic_logger.gemfile.lock index 52c3fd53c1e..ee28a3fcce6 100644 --- a/gemfiles/jruby_9.2_rails6_semantic_logger.gemfile.lock +++ b/gemfiles/jruby_9.2_rails6_semantic_logger.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -210,6 +200,10 @@ GEM ruby-debug-base (0.11.0-java) semantic_logger (4.12.0) concurrent-ruby (~> 1.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -266,7 +260,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/jruby_9.2_rails_old_redis.gemfile b/gemfiles/jruby_9.2_rails_old_redis.gemfile index 6657e68abe1..a839e79b61f 100644 --- a/gemfiles/jruby_9.2_rails_old_redis.gemfile +++ b/gemfiles/jruby_9.2_rails_old_redis.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.2_redis_3.gemfile b/gemfiles/jruby_9.2_redis_3.gemfile index f1bb5253623..5f179afa342 100644 --- a/gemfiles/jruby_9.2_redis_3.gemfile +++ b/gemfiles/jruby_9.2_redis_3.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.2_redis_3.gemfile.lock b/gemfiles/jruby_9.2_redis_3.gemfile.lock index 6343e70c980..ec184a53af1 100644 --- a/gemfiles/jruby_9.2_redis_3.gemfile.lock +++ b/gemfiles/jruby_9.2_redis_3.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -78,6 +68,10 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby-debug-base (0.11.0-java) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -115,7 +109,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/jruby_9.2_redis_4.gemfile b/gemfiles/jruby_9.2_redis_4.gemfile index aed46fc586c..e90a14494fb 100644 --- a/gemfiles/jruby_9.2_redis_4.gemfile +++ b/gemfiles/jruby_9.2_redis_4.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.2_redis_4.gemfile.lock b/gemfiles/jruby_9.2_redis_4.gemfile.lock index 90e3620a513..d0c6074e0fe 100644 --- a/gemfiles/jruby_9.2_redis_4.gemfile.lock +++ b/gemfiles/jruby_9.2_redis_4.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -78,6 +68,10 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby-debug-base (0.11.0-java) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -115,7 +109,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/jruby_9.2_redis_5.gemfile b/gemfiles/jruby_9.2_redis_5.gemfile index 40db1b0d85b..b5824c32d8a 100644 --- a/gemfiles/jruby_9.2_redis_5.gemfile +++ b/gemfiles/jruby_9.2_redis_5.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.2_redis_5.gemfile.lock b/gemfiles/jruby_9.2_redis_5.gemfile.lock index de1502cf808..3b00bac2324 100644 --- a/gemfiles/jruby_9.2_redis_5.gemfile.lock +++ b/gemfiles/jruby_9.2_redis_5.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -82,6 +72,10 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby-debug-base (0.11.0-java) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -119,7 +113,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/jruby_9.2_relational_db.gemfile b/gemfiles/jruby_9.2_relational_db.gemfile index 587964f7e09..98eef26d00e 100644 --- a/gemfiles/jruby_9.2_relational_db.gemfile +++ b/gemfiles/jruby_9.2_relational_db.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.2_relational_db.gemfile.lock b/gemfiles/jruby_9.2_relational_db.gemfile.lock index 2e7d061cfab..20ce04c901f 100644 --- a/gemfiles/jruby_9.2_relational_db.gemfile.lock +++ b/gemfiles/jruby_9.2_relational_db.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -116,6 +106,10 @@ GEM ruby-debug-base (0.11.0-java) sequel (5.83.1) bigdecimal + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -163,7 +157,7 @@ DEPENDENCIES rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) sequel - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/jruby_9.2_resque2_redis3.gemfile b/gemfiles/jruby_9.2_resque2_redis3.gemfile index 33ffad2594f..46496c90d8d 100644 --- a/gemfiles/jruby_9.2_resque2_redis3.gemfile +++ b/gemfiles/jruby_9.2_resque2_redis3.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.2_resque2_redis3.gemfile.lock b/gemfiles/jruby_9.2_resque2_redis3.gemfile.lock index b9dff458923..7c11266e07f 100644 --- a/gemfiles/jruby_9.2_resque2_redis3.gemfile.lock +++ b/gemfiles/jruby_9.2_resque2_redis3.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -93,6 +83,10 @@ GEM rspec-core (>= 2, < 4, != 2.12.0) ruby-debug-base (0.11.0-java) ruby2_keywords (0.0.5) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -137,7 +131,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/jruby_9.2_resque2_redis4.gemfile b/gemfiles/jruby_9.2_resque2_redis4.gemfile index 93ab0c3d986..e965c8b5722 100644 --- a/gemfiles/jruby_9.2_resque2_redis4.gemfile +++ b/gemfiles/jruby_9.2_resque2_redis4.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.2_resque2_redis4.gemfile.lock b/gemfiles/jruby_9.2_resque2_redis4.gemfile.lock index c103c157190..ebcb53b5996 100644 --- a/gemfiles/jruby_9.2_resque2_redis4.gemfile.lock +++ b/gemfiles/jruby_9.2_resque2_redis4.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -97,6 +87,10 @@ GEM rspec-core (>= 2, < 4, != 2.12.0) ruby-debug-base (0.11.0-java) ruby2_keywords (0.0.5) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -141,7 +135,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/jruby_9.2_sinatra_2.gemfile b/gemfiles/jruby_9.2_sinatra_2.gemfile index 9eb256527b0..3c2eedb98ef 100644 --- a/gemfiles/jruby_9.2_sinatra_2.gemfile +++ b/gemfiles/jruby_9.2_sinatra_2.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.2_sinatra_2.gemfile.lock b/gemfiles/jruby_9.2_sinatra_2.gemfile.lock index 320bdbbdab8..cad6924e248 100644 --- a/gemfiles/jruby_9.2_sinatra_2.gemfile.lock +++ b/gemfiles/jruby_9.2_sinatra_2.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -91,6 +81,10 @@ GEM rspec-core (>= 2, < 4, != 2.12.0) ruby-debug-base (0.11.0-java) ruby2_keywords (0.0.5) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -135,7 +129,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sinatra (~> 2) warning (~> 1) diff --git a/gemfiles/jruby_9.2_stripe_10.gemfile b/gemfiles/jruby_9.2_stripe_10.gemfile index e4d4add446b..2ab238b25d4 100644 --- a/gemfiles/jruby_9.2_stripe_10.gemfile +++ b/gemfiles/jruby_9.2_stripe_10.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.2_stripe_10.gemfile.lock b/gemfiles/jruby_9.2_stripe_10.gemfile.lock index 89d1ec37f1c..86d70a66797 100644 --- a/gemfiles/jruby_9.2_stripe_10.gemfile.lock +++ b/gemfiles/jruby_9.2_stripe_10.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -81,6 +71,10 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby-debug-base (0.11.0-java) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -118,7 +112,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 10) warning (~> 1) diff --git a/gemfiles/jruby_9.2_stripe_11.gemfile b/gemfiles/jruby_9.2_stripe_11.gemfile index de452e3c290..0ce879b28e4 100644 --- a/gemfiles/jruby_9.2_stripe_11.gemfile +++ b/gemfiles/jruby_9.2_stripe_11.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.2_stripe_11.gemfile.lock b/gemfiles/jruby_9.2_stripe_11.gemfile.lock index 8e1cd792b6d..64f0236ee94 100644 --- a/gemfiles/jruby_9.2_stripe_11.gemfile.lock +++ b/gemfiles/jruby_9.2_stripe_11.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -81,6 +71,10 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby-debug-base (0.11.0-java) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -118,7 +112,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 11) warning (~> 1) diff --git a/gemfiles/jruby_9.2_stripe_12.gemfile b/gemfiles/jruby_9.2_stripe_12.gemfile index db37ea5e032..37742d718d0 100644 --- a/gemfiles/jruby_9.2_stripe_12.gemfile +++ b/gemfiles/jruby_9.2_stripe_12.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.2_stripe_12.gemfile.lock b/gemfiles/jruby_9.2_stripe_12.gemfile.lock index d8150b4628f..22fd2f30b54 100644 --- a/gemfiles/jruby_9.2_stripe_12.gemfile.lock +++ b/gemfiles/jruby_9.2_stripe_12.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -81,6 +71,10 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby-debug-base (0.11.0-java) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -118,7 +112,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 12) warning (~> 1) diff --git a/gemfiles/jruby_9.2_stripe_7.gemfile b/gemfiles/jruby_9.2_stripe_7.gemfile index 495a5906290..b57ca37efcc 100644 --- a/gemfiles/jruby_9.2_stripe_7.gemfile +++ b/gemfiles/jruby_9.2_stripe_7.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.2_stripe_7.gemfile.lock b/gemfiles/jruby_9.2_stripe_7.gemfile.lock index 4f8bcc70492..68db845d18d 100644 --- a/gemfiles/jruby_9.2_stripe_7.gemfile.lock +++ b/gemfiles/jruby_9.2_stripe_7.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -81,6 +71,10 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby-debug-base (0.11.0-java) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -118,7 +112,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 7) warning (~> 1) diff --git a/gemfiles/jruby_9.2_stripe_8.gemfile b/gemfiles/jruby_9.2_stripe_8.gemfile index 2e8104b8447..4e5f5f74408 100644 --- a/gemfiles/jruby_9.2_stripe_8.gemfile +++ b/gemfiles/jruby_9.2_stripe_8.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.2_stripe_8.gemfile.lock b/gemfiles/jruby_9.2_stripe_8.gemfile.lock index 92c0f0000e0..441533e11b6 100644 --- a/gemfiles/jruby_9.2_stripe_8.gemfile.lock +++ b/gemfiles/jruby_9.2_stripe_8.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -81,6 +71,10 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby-debug-base (0.11.0-java) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -118,7 +112,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 8) warning (~> 1) diff --git a/gemfiles/jruby_9.2_stripe_9.gemfile b/gemfiles/jruby_9.2_stripe_9.gemfile index 661a40e7b5e..cf79371164b 100644 --- a/gemfiles/jruby_9.2_stripe_9.gemfile +++ b/gemfiles/jruby_9.2_stripe_9.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.2_stripe_9.gemfile.lock b/gemfiles/jruby_9.2_stripe_9.gemfile.lock index 5df16e5dbf8..8587f3562eb 100644 --- a/gemfiles/jruby_9.2_stripe_9.gemfile.lock +++ b/gemfiles/jruby_9.2_stripe_9.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -81,6 +71,10 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby-debug-base (0.11.0-java) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -118,7 +112,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 9) warning (~> 1) diff --git a/gemfiles/jruby_9.2_stripe_latest.gemfile b/gemfiles/jruby_9.2_stripe_latest.gemfile index 41e075cf84c..65b1abda99d 100644 --- a/gemfiles/jruby_9.2_stripe_latest.gemfile +++ b/gemfiles/jruby_9.2_stripe_latest.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.2_stripe_latest.gemfile.lock b/gemfiles/jruby_9.2_stripe_latest.gemfile.lock index 802e2bcd643..fa22f4fea67 100644 --- a/gemfiles/jruby_9.2_stripe_latest.gemfile.lock +++ b/gemfiles/jruby_9.2_stripe_latest.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -80,6 +70,10 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby-debug-base (0.11.0-java) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -116,7 +110,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) stripe warning (~> 1) diff --git a/gemfiles/jruby_9.2_stripe_min.gemfile b/gemfiles/jruby_9.2_stripe_min.gemfile index 7d2f60f29fa..10309f0512e 100644 --- a/gemfiles/jruby_9.2_stripe_min.gemfile +++ b/gemfiles/jruby_9.2_stripe_min.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.2_stripe_min.gemfile.lock b/gemfiles/jruby_9.2_stripe_min.gemfile.lock index b32ad3c432c..e04cd66ca3e 100644 --- a/gemfiles/jruby_9.2_stripe_min.gemfile.lock +++ b/gemfiles/jruby_9.2_stripe_min.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -80,6 +70,10 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby-debug-base (0.11.0-java) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -116,7 +110,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) stripe (= 5.15.0) warning (~> 1) diff --git a/gemfiles/jruby_9.3_activesupport.gemfile b/gemfiles/jruby_9.3_activesupport.gemfile index 10d911a5d83..caa9dea0040 100644 --- a/gemfiles/jruby_9.3_activesupport.gemfile +++ b/gemfiles/jruby_9.3_activesupport.gemfile @@ -23,7 +23,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.3_activesupport.gemfile.lock b/gemfiles/jruby_9.3_activesupport.gemfile.lock index 8c67f757ce5..2392bca3bed 100644 --- a/gemfiles/jruby_9.3_activesupport.gemfile.lock +++ b/gemfiles/jruby_9.3_activesupport.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -216,6 +206,10 @@ GEM digest-crc ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -270,7 +264,7 @@ DEPENDENCIES rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) ruby-kafka (>= 0.7.10) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/jruby_9.3_aws.gemfile b/gemfiles/jruby_9.3_aws.gemfile index bb04a8f3b4b..04be9facbf7 100644 --- a/gemfiles/jruby_9.3_aws.gemfile +++ b/gemfiles/jruby_9.3_aws.gemfile @@ -23,7 +23,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.3_aws.gemfile.lock b/gemfiles/jruby_9.3_aws.gemfile.lock index a2ab56c2531..6f9eaee5ca4 100644 --- a/gemfiles/jruby_9.3_aws.gemfile.lock +++ b/gemfiles/jruby_9.3_aws.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -1534,6 +1524,10 @@ GEM aws-sdk-core (>= 2) concurrent-ruby thor + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -1578,7 +1572,7 @@ DEPENDENCIES rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) shoryuken - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/jruby_9.3_contrib.gemfile b/gemfiles/jruby_9.3_contrib.gemfile index ade3ca433cd..61abd879e58 100644 --- a/gemfiles/jruby_9.3_contrib.gemfile +++ b/gemfiles/jruby_9.3_contrib.gemfile @@ -23,7 +23,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.3_contrib.gemfile.lock b/gemfiles/jruby_9.3_contrib.gemfile.lock index 7e5f3dcb603..a37f4fc147a 100644 --- a/gemfiles/jruby_9.3_contrib.gemfile.lock +++ b/gemfiles/jruby_9.3_contrib.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -148,6 +138,10 @@ GEM rack (~> 2.0) redis (>= 4.5.0, < 5) sigdump (0.2.4) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -214,7 +208,7 @@ DEPENDENCIES rubocop-rspec (~> 2.20, < 2.21) semantic_logger (~> 4.0) sidekiq (~> 6.5) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sneakers (>= 2.12.0) sucker_punch diff --git a/gemfiles/jruby_9.3_contrib_old.gemfile b/gemfiles/jruby_9.3_contrib_old.gemfile index 5a313944a56..cb161fdd849 100644 --- a/gemfiles/jruby_9.3_contrib_old.gemfile +++ b/gemfiles/jruby_9.3_contrib_old.gemfile @@ -23,7 +23,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.3_contrib_old.gemfile.lock b/gemfiles/jruby_9.3_contrib_old.gemfile.lock index fe2c3709e57..747485ff399 100644 --- a/gemfiles/jruby_9.3_contrib_old.gemfile.lock +++ b/gemfiles/jruby_9.3_contrib_old.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -122,6 +112,10 @@ GEM rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -168,7 +162,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/jruby_9.3_core_old.gemfile b/gemfiles/jruby_9.3_core_old.gemfile index a116d183148..5a92773428c 100644 --- a/gemfiles/jruby_9.3_core_old.gemfile +++ b/gemfiles/jruby_9.3_core_old.gemfile @@ -23,7 +23,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.3_core_old.gemfile.lock b/gemfiles/jruby_9.3_core_old.gemfile.lock index 5d149003505..8a9376dd957 100644 --- a/gemfiles/jruby_9.3_core_old.gemfile.lock +++ b/gemfiles/jruby_9.3_core_old.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -109,6 +99,10 @@ GEM rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -150,7 +144,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/jruby_9.3_elasticsearch_7.gemfile b/gemfiles/jruby_9.3_elasticsearch_7.gemfile index e69d78c73ec..6805077a993 100644 --- a/gemfiles/jruby_9.3_elasticsearch_7.gemfile +++ b/gemfiles/jruby_9.3_elasticsearch_7.gemfile @@ -23,7 +23,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.3_elasticsearch_7.gemfile.lock b/gemfiles/jruby_9.3_elasticsearch_7.gemfile.lock index b0fa99a4e5b..fdb61982b89 100644 --- a/gemfiles/jruby_9.3_elasticsearch_7.gemfile.lock +++ b/gemfiles/jruby_9.3_elasticsearch_7.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -128,6 +118,10 @@ GEM ruby-debug-base (0.11.0-java) ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -170,7 +164,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/jruby_9.3_elasticsearch_8.gemfile b/gemfiles/jruby_9.3_elasticsearch_8.gemfile index 37118042f12..69c7b4da0d9 100644 --- a/gemfiles/jruby_9.3_elasticsearch_8.gemfile +++ b/gemfiles/jruby_9.3_elasticsearch_8.gemfile @@ -23,7 +23,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.3_elasticsearch_8.gemfile.lock b/gemfiles/jruby_9.3_elasticsearch_8.gemfile.lock index 87e7bbc4d1e..8b502e0c0f9 100644 --- a/gemfiles/jruby_9.3_elasticsearch_8.gemfile.lock +++ b/gemfiles/jruby_9.3_elasticsearch_8.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -127,6 +117,10 @@ GEM ruby-debug-base (0.11.0-java) ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -169,7 +163,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/jruby_9.3_elasticsearch_latest.gemfile b/gemfiles/jruby_9.3_elasticsearch_latest.gemfile index 929f301154f..7031271e77e 100644 --- a/gemfiles/jruby_9.3_elasticsearch_latest.gemfile +++ b/gemfiles/jruby_9.3_elasticsearch_latest.gemfile @@ -23,7 +23,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.3_elasticsearch_latest.gemfile.lock b/gemfiles/jruby_9.3_elasticsearch_latest.gemfile.lock index cd92e849ecc..63b1bab0325 100644 --- a/gemfiles/jruby_9.3_elasticsearch_latest.gemfile.lock +++ b/gemfiles/jruby_9.3_elasticsearch_latest.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -128,6 +118,10 @@ GEM ruby-debug-base (0.11.0-java) ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -169,7 +163,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/jruby_9.3_graphql_1.13.gemfile b/gemfiles/jruby_9.3_graphql_1.13.gemfile index 32bf07d4cd8..0fd41438d1c 100644 --- a/gemfiles/jruby_9.3_graphql_1.13.gemfile +++ b/gemfiles/jruby_9.3_graphql_1.13.gemfile @@ -23,7 +23,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.3_graphql_1.13.gemfile.lock b/gemfiles/jruby_9.3_graphql_1.13.gemfile.lock index 101a8dc516d..92c24d0a661 100644 --- a/gemfiles/jruby_9.3_graphql_1.13.gemfile.lock +++ b/gemfiles/jruby_9.3_graphql_1.13.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -240,6 +230,10 @@ GEM rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -300,7 +294,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/jruby_9.3_graphql_2.0.gemfile b/gemfiles/jruby_9.3_graphql_2.0.gemfile index c3aafc61ea7..f464e4ccdb2 100644 --- a/gemfiles/jruby_9.3_graphql_2.0.gemfile +++ b/gemfiles/jruby_9.3_graphql_2.0.gemfile @@ -23,7 +23,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.3_graphql_2.0.gemfile.lock b/gemfiles/jruby_9.3_graphql_2.0.gemfile.lock index c666092be52..3a277386255 100644 --- a/gemfiles/jruby_9.3_graphql_2.0.gemfile.lock +++ b/gemfiles/jruby_9.3_graphql_2.0.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -240,6 +230,10 @@ GEM rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -300,7 +294,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/jruby_9.3_http.gemfile b/gemfiles/jruby_9.3_http.gemfile index 751661b4ab5..0998dd57356 100644 --- a/gemfiles/jruby_9.3_http.gemfile +++ b/gemfiles/jruby_9.3_http.gemfile @@ -23,7 +23,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.3_http.gemfile.lock b/gemfiles/jruby_9.3_http.gemfile.lock index 5d88d7f530b..b9bb0a29a93 100644 --- a/gemfiles/jruby_9.3_http.gemfile.lock +++ b/gemfiles/jruby_9.3_http.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -143,6 +133,10 @@ GEM ruby-debug-base (0.11.0-java) ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -193,7 +187,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) typhoeus warning (~> 1) diff --git a/gemfiles/jruby_9.3_opensearch_2.gemfile b/gemfiles/jruby_9.3_opensearch_2.gemfile index 29056de75c2..ba519b5bd90 100644 --- a/gemfiles/jruby_9.3_opensearch_2.gemfile +++ b/gemfiles/jruby_9.3_opensearch_2.gemfile @@ -23,7 +23,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.3_opensearch_2.gemfile.lock b/gemfiles/jruby_9.3_opensearch_2.gemfile.lock index 46cd5d33e1d..cdcd2bc1ae8 100644 --- a/gemfiles/jruby_9.3_opensearch_2.gemfile.lock +++ b/gemfiles/jruby_9.3_opensearch_2.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -127,6 +117,10 @@ GEM ruby-debug-base (0.11.0-java) ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -169,7 +163,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/jruby_9.3_opensearch_3.gemfile b/gemfiles/jruby_9.3_opensearch_3.gemfile index b7dcbe0a2fb..1b869b7ccbc 100644 --- a/gemfiles/jruby_9.3_opensearch_3.gemfile +++ b/gemfiles/jruby_9.3_opensearch_3.gemfile @@ -23,7 +23,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.3_opensearch_3.gemfile.lock b/gemfiles/jruby_9.3_opensearch_3.gemfile.lock index 5856baadd3e..77ab48808e1 100644 --- a/gemfiles/jruby_9.3_opensearch_3.gemfile.lock +++ b/gemfiles/jruby_9.3_opensearch_3.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -122,6 +112,10 @@ GEM ruby-debug-base (0.11.0-java) ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -164,7 +158,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/jruby_9.3_opensearch_latest.gemfile b/gemfiles/jruby_9.3_opensearch_latest.gemfile index ea58aa2ec66..c17f59f4ccd 100644 --- a/gemfiles/jruby_9.3_opensearch_latest.gemfile +++ b/gemfiles/jruby_9.3_opensearch_latest.gemfile @@ -23,7 +23,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.3_opensearch_latest.gemfile.lock b/gemfiles/jruby_9.3_opensearch_latest.gemfile.lock index fdb09719818..0a690420913 100644 --- a/gemfiles/jruby_9.3_opensearch_latest.gemfile.lock +++ b/gemfiles/jruby_9.3_opensearch_latest.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -123,6 +113,10 @@ GEM ruby-debug-base (0.11.0-java) ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -164,7 +158,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/jruby_9.3_rack_1.gemfile b/gemfiles/jruby_9.3_rack_1.gemfile index de385195ba9..76013c9b5e5 100644 --- a/gemfiles/jruby_9.3_rack_1.gemfile +++ b/gemfiles/jruby_9.3_rack_1.gemfile @@ -23,7 +23,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.3_rack_1.gemfile.lock b/gemfiles/jruby_9.3_rack_1.gemfile.lock index 28f81bcc662..b4230fd1ccc 100644 --- a/gemfiles/jruby_9.3_rack_1.gemfile.lock +++ b/gemfiles/jruby_9.3_rack_1.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -114,6 +104,10 @@ GEM rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -158,7 +152,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/jruby_9.3_rack_2.gemfile b/gemfiles/jruby_9.3_rack_2.gemfile index 5917a831182..7b23bd4c29c 100644 --- a/gemfiles/jruby_9.3_rack_2.gemfile +++ b/gemfiles/jruby_9.3_rack_2.gemfile @@ -23,7 +23,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.3_rack_2.gemfile.lock b/gemfiles/jruby_9.3_rack_2.gemfile.lock index 1a5b9d71b94..813a7eb3212 100644 --- a/gemfiles/jruby_9.3_rack_2.gemfile.lock +++ b/gemfiles/jruby_9.3_rack_2.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -114,6 +104,10 @@ GEM rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -158,7 +152,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/jruby_9.3_rack_3.gemfile b/gemfiles/jruby_9.3_rack_3.gemfile index 78e146ec851..d939a58ee75 100644 --- a/gemfiles/jruby_9.3_rack_3.gemfile +++ b/gemfiles/jruby_9.3_rack_3.gemfile @@ -23,7 +23,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.3_rack_3.gemfile.lock b/gemfiles/jruby_9.3_rack_3.gemfile.lock index cdb43ace357..e9628f1db39 100644 --- a/gemfiles/jruby_9.3_rack_3.gemfile.lock +++ b/gemfiles/jruby_9.3_rack_3.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -114,6 +104,10 @@ GEM rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -158,7 +152,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/jruby_9.3_rack_latest.gemfile b/gemfiles/jruby_9.3_rack_latest.gemfile index 05ec792dce6..218f599c4f2 100644 --- a/gemfiles/jruby_9.3_rack_latest.gemfile +++ b/gemfiles/jruby_9.3_rack_latest.gemfile @@ -23,7 +23,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.3_rack_latest.gemfile.lock b/gemfiles/jruby_9.3_rack_latest.gemfile.lock index 8e7de425e01..d1b163e8048 100644 --- a/gemfiles/jruby_9.3_rack_latest.gemfile.lock +++ b/gemfiles/jruby_9.3_rack_latest.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -117,6 +107,10 @@ GEM rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -160,7 +154,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/jruby_9.3_rails5_mysql2.gemfile b/gemfiles/jruby_9.3_rails5_mysql2.gemfile index a57371a2a45..033796f4229 100644 --- a/gemfiles/jruby_9.3_rails5_mysql2.gemfile +++ b/gemfiles/jruby_9.3_rails5_mysql2.gemfile @@ -23,7 +23,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.3_rails5_mysql2.gemfile.lock b/gemfiles/jruby_9.3_rails5_mysql2.gemfile.lock index 5ae228949ad..c63e5aaec0f 100644 --- a/gemfiles/jruby_9.3_rails5_mysql2.gemfile.lock +++ b/gemfiles/jruby_9.3_rails5_mysql2.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -222,6 +212,10 @@ GEM rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -281,7 +275,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/jruby_9.3_rails5_postgres.gemfile b/gemfiles/jruby_9.3_rails5_postgres.gemfile index 6872c25c4e5..a98d882fdc5 100644 --- a/gemfiles/jruby_9.3_rails5_postgres.gemfile +++ b/gemfiles/jruby_9.3_rails5_postgres.gemfile @@ -23,7 +23,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.3_rails5_postgres.gemfile.lock b/gemfiles/jruby_9.3_rails5_postgres.gemfile.lock index eb1b33d1f72..fd45b5b7b00 100644 --- a/gemfiles/jruby_9.3_rails5_postgres.gemfile.lock +++ b/gemfiles/jruby_9.3_rails5_postgres.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -222,6 +212,10 @@ GEM rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -281,7 +275,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/jruby_9.3_rails5_postgres_redis.gemfile b/gemfiles/jruby_9.3_rails5_postgres_redis.gemfile index 1772a7a9abe..30993738c31 100644 --- a/gemfiles/jruby_9.3_rails5_postgres_redis.gemfile +++ b/gemfiles/jruby_9.3_rails5_postgres_redis.gemfile @@ -23,7 +23,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.3_rails5_postgres_redis.gemfile.lock b/gemfiles/jruby_9.3_rails5_postgres_redis.gemfile.lock index 0c22a6702ff..a516f6f9383 100644 --- a/gemfiles/jruby_9.3_rails5_postgres_redis.gemfile.lock +++ b/gemfiles/jruby_9.3_rails5_postgres_redis.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -223,6 +213,10 @@ GEM rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -283,7 +277,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/jruby_9.3_rails5_postgres_redis_activesupport.gemfile b/gemfiles/jruby_9.3_rails5_postgres_redis_activesupport.gemfile index 47a620a5382..17b3f40824c 100644 --- a/gemfiles/jruby_9.3_rails5_postgres_redis_activesupport.gemfile +++ b/gemfiles/jruby_9.3_rails5_postgres_redis_activesupport.gemfile @@ -23,7 +23,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.3_rails5_postgres_redis_activesupport.gemfile.lock b/gemfiles/jruby_9.3_rails5_postgres_redis_activesupport.gemfile.lock index 4cd20e2ddcf..95f3d18e578 100644 --- a/gemfiles/jruby_9.3_rails5_postgres_redis_activesupport.gemfile.lock +++ b/gemfiles/jruby_9.3_rails5_postgres_redis_activesupport.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -239,6 +229,10 @@ GEM rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -301,7 +295,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/jruby_9.3_rails5_postgres_sidekiq.gemfile b/gemfiles/jruby_9.3_rails5_postgres_sidekiq.gemfile index d4450059c12..30e87d56f54 100644 --- a/gemfiles/jruby_9.3_rails5_postgres_sidekiq.gemfile +++ b/gemfiles/jruby_9.3_rails5_postgres_sidekiq.gemfile @@ -23,7 +23,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.3_rails5_postgres_sidekiq.gemfile.lock b/gemfiles/jruby_9.3_rails5_postgres_sidekiq.gemfile.lock index 3768f1b6b70..7d15696c948 100644 --- a/gemfiles/jruby_9.3_rails5_postgres_sidekiq.gemfile.lock +++ b/gemfiles/jruby_9.3_rails5_postgres_sidekiq.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -228,6 +218,10 @@ GEM connection_pool (>= 2.2.5, < 3) rack (~> 2.0) redis (>= 4.5.0, < 5) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -289,7 +283,7 @@ DEPENDENCIES rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) sidekiq - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/jruby_9.3_rails5_semantic_logger.gemfile b/gemfiles/jruby_9.3_rails5_semantic_logger.gemfile index 51ebc29e042..8281cda2434 100644 --- a/gemfiles/jruby_9.3_rails5_semantic_logger.gemfile +++ b/gemfiles/jruby_9.3_rails5_semantic_logger.gemfile @@ -23,7 +23,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.3_rails5_semantic_logger.gemfile.lock b/gemfiles/jruby_9.3_rails5_semantic_logger.gemfile.lock index ffb002ebaa1..64bee287658 100644 --- a/gemfiles/jruby_9.3_rails5_semantic_logger.gemfile.lock +++ b/gemfiles/jruby_9.3_rails5_semantic_logger.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -221,6 +211,10 @@ GEM ruby-progressbar (1.13.0) semantic_logger (4.12.0) concurrent-ruby (~> 1.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -280,7 +274,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/jruby_9.3_rails61_mysql2.gemfile b/gemfiles/jruby_9.3_rails61_mysql2.gemfile index 5ea6a86d62c..61ec8cb90c4 100644 --- a/gemfiles/jruby_9.3_rails61_mysql2.gemfile +++ b/gemfiles/jruby_9.3_rails61_mysql2.gemfile @@ -23,7 +23,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.3_rails61_mysql2.gemfile.lock b/gemfiles/jruby_9.3_rails61_mysql2.gemfile.lock index 136b3a36efb..f2ce37e120b 100644 --- a/gemfiles/jruby_9.3_rails61_mysql2.gemfile.lock +++ b/gemfiles/jruby_9.3_rails61_mysql2.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -241,6 +231,10 @@ GEM rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -300,7 +294,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/jruby_9.3_rails61_postgres.gemfile b/gemfiles/jruby_9.3_rails61_postgres.gemfile index 535b6d47d3a..f09ebcce73d 100644 --- a/gemfiles/jruby_9.3_rails61_postgres.gemfile +++ b/gemfiles/jruby_9.3_rails61_postgres.gemfile @@ -23,7 +23,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.3_rails61_postgres.gemfile.lock b/gemfiles/jruby_9.3_rails61_postgres.gemfile.lock index 5ad044a1224..dcc7c8cf64d 100644 --- a/gemfiles/jruby_9.3_rails61_postgres.gemfile.lock +++ b/gemfiles/jruby_9.3_rails61_postgres.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -241,6 +231,10 @@ GEM rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -300,7 +294,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/jruby_9.3_rails61_postgres_redis.gemfile b/gemfiles/jruby_9.3_rails61_postgres_redis.gemfile index 09c2f7d68e1..01c2b985466 100644 --- a/gemfiles/jruby_9.3_rails61_postgres_redis.gemfile +++ b/gemfiles/jruby_9.3_rails61_postgres_redis.gemfile @@ -23,7 +23,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.3_rails61_postgres_redis.gemfile.lock b/gemfiles/jruby_9.3_rails61_postgres_redis.gemfile.lock index ace5125f4e8..65bdc38703b 100644 --- a/gemfiles/jruby_9.3_rails61_postgres_redis.gemfile.lock +++ b/gemfiles/jruby_9.3_rails61_postgres_redis.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -242,6 +232,10 @@ GEM rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -302,7 +296,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/jruby_9.3_rails61_postgres_sidekiq.gemfile b/gemfiles/jruby_9.3_rails61_postgres_sidekiq.gemfile index 870b795c7f4..ba931710032 100644 --- a/gemfiles/jruby_9.3_rails61_postgres_sidekiq.gemfile +++ b/gemfiles/jruby_9.3_rails61_postgres_sidekiq.gemfile @@ -23,7 +23,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.3_rails61_postgres_sidekiq.gemfile.lock b/gemfiles/jruby_9.3_rails61_postgres_sidekiq.gemfile.lock index 9122128d4ad..4d4290151c1 100644 --- a/gemfiles/jruby_9.3_rails61_postgres_sidekiq.gemfile.lock +++ b/gemfiles/jruby_9.3_rails61_postgres_sidekiq.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -247,6 +237,10 @@ GEM connection_pool (>= 2.2.5, < 3) rack (~> 2.0) redis (>= 4.5.0, < 5) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -307,7 +301,7 @@ DEPENDENCIES rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) sidekiq (>= 6.1.2) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/jruby_9.3_rails61_semantic_logger.gemfile b/gemfiles/jruby_9.3_rails61_semantic_logger.gemfile index 625c72ca19e..740e9c2e112 100644 --- a/gemfiles/jruby_9.3_rails61_semantic_logger.gemfile +++ b/gemfiles/jruby_9.3_rails61_semantic_logger.gemfile @@ -23,7 +23,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.3_rails61_semantic_logger.gemfile.lock b/gemfiles/jruby_9.3_rails61_semantic_logger.gemfile.lock index 99af65286f9..7a420684bd8 100644 --- a/gemfiles/jruby_9.3_rails61_semantic_logger.gemfile.lock +++ b/gemfiles/jruby_9.3_rails61_semantic_logger.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -240,6 +230,10 @@ GEM ruby-progressbar (1.13.0) semantic_logger (4.12.0) concurrent-ruby (~> 1.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -299,7 +293,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/jruby_9.3_rails6_mysql2.gemfile b/gemfiles/jruby_9.3_rails6_mysql2.gemfile index af40cac7099..248da64d3a2 100644 --- a/gemfiles/jruby_9.3_rails6_mysql2.gemfile +++ b/gemfiles/jruby_9.3_rails6_mysql2.gemfile @@ -23,7 +23,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.3_rails6_mysql2.gemfile.lock b/gemfiles/jruby_9.3_rails6_mysql2.gemfile.lock index a5034be0d00..0c8444e0baa 100644 --- a/gemfiles/jruby_9.3_rails6_mysql2.gemfile.lock +++ b/gemfiles/jruby_9.3_rails6_mysql2.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -237,6 +227,10 @@ GEM rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -297,7 +291,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/jruby_9.3_rails6_postgres.gemfile b/gemfiles/jruby_9.3_rails6_postgres.gemfile index 106bc5d1e20..498b1bce57d 100644 --- a/gemfiles/jruby_9.3_rails6_postgres.gemfile +++ b/gemfiles/jruby_9.3_rails6_postgres.gemfile @@ -23,7 +23,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.3_rails6_postgres.gemfile.lock b/gemfiles/jruby_9.3_rails6_postgres.gemfile.lock index d275dba8721..f3bdb2cedb1 100644 --- a/gemfiles/jruby_9.3_rails6_postgres.gemfile.lock +++ b/gemfiles/jruby_9.3_rails6_postgres.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -237,6 +227,10 @@ GEM rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -297,7 +291,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/jruby_9.3_rails6_postgres_redis.gemfile b/gemfiles/jruby_9.3_rails6_postgres_redis.gemfile index 6b6bbeda4f7..a2ba50a91fa 100644 --- a/gemfiles/jruby_9.3_rails6_postgres_redis.gemfile +++ b/gemfiles/jruby_9.3_rails6_postgres_redis.gemfile @@ -23,7 +23,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.3_rails6_postgres_redis.gemfile.lock b/gemfiles/jruby_9.3_rails6_postgres_redis.gemfile.lock index 512c0a44002..a92862df794 100644 --- a/gemfiles/jruby_9.3_rails6_postgres_redis.gemfile.lock +++ b/gemfiles/jruby_9.3_rails6_postgres_redis.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -238,6 +228,10 @@ GEM rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -299,7 +293,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/jruby_9.3_rails6_postgres_redis_activesupport.gemfile b/gemfiles/jruby_9.3_rails6_postgres_redis_activesupport.gemfile index e5c4669d413..87ae8bd7ea5 100644 --- a/gemfiles/jruby_9.3_rails6_postgres_redis_activesupport.gemfile +++ b/gemfiles/jruby_9.3_rails6_postgres_redis_activesupport.gemfile @@ -23,7 +23,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.3_rails6_postgres_redis_activesupport.gemfile.lock b/gemfiles/jruby_9.3_rails6_postgres_redis_activesupport.gemfile.lock index be5440589b8..5fbd53774d7 100644 --- a/gemfiles/jruby_9.3_rails6_postgres_redis_activesupport.gemfile.lock +++ b/gemfiles/jruby_9.3_rails6_postgres_redis_activesupport.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -254,6 +244,10 @@ GEM rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -317,7 +311,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/jruby_9.3_rails6_postgres_sidekiq.gemfile b/gemfiles/jruby_9.3_rails6_postgres_sidekiq.gemfile index 19c0912631a..b7f34736e29 100644 --- a/gemfiles/jruby_9.3_rails6_postgres_sidekiq.gemfile +++ b/gemfiles/jruby_9.3_rails6_postgres_sidekiq.gemfile @@ -23,7 +23,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.3_rails6_postgres_sidekiq.gemfile.lock b/gemfiles/jruby_9.3_rails6_postgres_sidekiq.gemfile.lock index b9b15ebcd8f..08e89aaf739 100644 --- a/gemfiles/jruby_9.3_rails6_postgres_sidekiq.gemfile.lock +++ b/gemfiles/jruby_9.3_rails6_postgres_sidekiq.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -243,6 +233,10 @@ GEM connection_pool (>= 2.2.5, < 3) rack (~> 2.0) redis (>= 4.5.0, < 5) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -305,7 +299,7 @@ DEPENDENCIES rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) sidekiq - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/jruby_9.3_rails6_semantic_logger.gemfile b/gemfiles/jruby_9.3_rails6_semantic_logger.gemfile index 670e252bde8..a03f4b03fab 100644 --- a/gemfiles/jruby_9.3_rails6_semantic_logger.gemfile +++ b/gemfiles/jruby_9.3_rails6_semantic_logger.gemfile @@ -23,7 +23,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.3_rails6_semantic_logger.gemfile.lock b/gemfiles/jruby_9.3_rails6_semantic_logger.gemfile.lock index 5ee6238f7e0..732470afe57 100644 --- a/gemfiles/jruby_9.3_rails6_semantic_logger.gemfile.lock +++ b/gemfiles/jruby_9.3_rails6_semantic_logger.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -236,6 +226,10 @@ GEM ruby-progressbar (1.13.0) semantic_logger (4.12.0) concurrent-ruby (~> 1.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -296,7 +290,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/jruby_9.3_rails_old_redis.gemfile b/gemfiles/jruby_9.3_rails_old_redis.gemfile index 6bd798b0f8a..27f0816fe3b 100644 --- a/gemfiles/jruby_9.3_rails_old_redis.gemfile +++ b/gemfiles/jruby_9.3_rails_old_redis.gemfile @@ -23,7 +23,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.3_redis_3.gemfile b/gemfiles/jruby_9.3_redis_3.gemfile index a89f890d4ab..73d4f8c8417 100644 --- a/gemfiles/jruby_9.3_redis_3.gemfile +++ b/gemfiles/jruby_9.3_redis_3.gemfile @@ -23,7 +23,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.3_redis_3.gemfile.lock b/gemfiles/jruby_9.3_redis_3.gemfile.lock index 65ee0d4f084..938668ceb55 100644 --- a/gemfiles/jruby_9.3_redis_3.gemfile.lock +++ b/gemfiles/jruby_9.3_redis_3.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -110,6 +100,10 @@ GEM rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -152,7 +146,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/jruby_9.3_redis_4.gemfile b/gemfiles/jruby_9.3_redis_4.gemfile index d3c28df0864..3a6f531faeb 100644 --- a/gemfiles/jruby_9.3_redis_4.gemfile +++ b/gemfiles/jruby_9.3_redis_4.gemfile @@ -23,7 +23,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.3_redis_4.gemfile.lock b/gemfiles/jruby_9.3_redis_4.gemfile.lock index d919ca368fe..83755a7bd9e 100644 --- a/gemfiles/jruby_9.3_redis_4.gemfile.lock +++ b/gemfiles/jruby_9.3_redis_4.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -110,6 +100,10 @@ GEM rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -152,7 +146,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/jruby_9.3_redis_5.gemfile b/gemfiles/jruby_9.3_redis_5.gemfile index 3b861870955..84c84eb6d72 100644 --- a/gemfiles/jruby_9.3_redis_5.gemfile +++ b/gemfiles/jruby_9.3_redis_5.gemfile @@ -23,7 +23,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.3_redis_5.gemfile.lock b/gemfiles/jruby_9.3_redis_5.gemfile.lock index 9db646edc53..f06f5d404df 100644 --- a/gemfiles/jruby_9.3_redis_5.gemfile.lock +++ b/gemfiles/jruby_9.3_redis_5.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -114,6 +104,10 @@ GEM rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -156,7 +150,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/jruby_9.3_relational_db.gemfile b/gemfiles/jruby_9.3_relational_db.gemfile index 8b2065dbb51..b36f22ecfa5 100644 --- a/gemfiles/jruby_9.3_relational_db.gemfile +++ b/gemfiles/jruby_9.3_relational_db.gemfile @@ -23,7 +23,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.3_relational_db.gemfile.lock b/gemfiles/jruby_9.3_relational_db.gemfile.lock index c1a16ce398f..af7305fa4b0 100644 --- a/gemfiles/jruby_9.3_relational_db.gemfile.lock +++ b/gemfiles/jruby_9.3_relational_db.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -144,6 +134,10 @@ GEM ruby-progressbar (1.13.0) sequel (5.83.1) bigdecimal + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -197,7 +191,7 @@ DEPENDENCIES rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) sequel - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/jruby_9.3_resque2_redis3.gemfile b/gemfiles/jruby_9.3_resque2_redis3.gemfile index 2dba40e9115..67433e5936b 100644 --- a/gemfiles/jruby_9.3_resque2_redis3.gemfile +++ b/gemfiles/jruby_9.3_resque2_redis3.gemfile @@ -23,7 +23,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.3_resque2_redis3.gemfile.lock b/gemfiles/jruby_9.3_resque2_redis3.gemfile.lock index 30f3f0dabdc..a36e92a7374 100644 --- a/gemfiles/jruby_9.3_resque2_redis3.gemfile.lock +++ b/gemfiles/jruby_9.3_resque2_redis3.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -125,6 +115,10 @@ GEM ruby-debug-base (0.11.0-java) ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -174,7 +168,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/jruby_9.3_resque2_redis4.gemfile b/gemfiles/jruby_9.3_resque2_redis4.gemfile index 4e3669bd21a..6daa2980f59 100644 --- a/gemfiles/jruby_9.3_resque2_redis4.gemfile +++ b/gemfiles/jruby_9.3_resque2_redis4.gemfile @@ -23,7 +23,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.3_resque2_redis4.gemfile.lock b/gemfiles/jruby_9.3_resque2_redis4.gemfile.lock index 9ae96645ee1..131483136fe 100644 --- a/gemfiles/jruby_9.3_resque2_redis4.gemfile.lock +++ b/gemfiles/jruby_9.3_resque2_redis4.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -125,6 +115,10 @@ GEM ruby-debug-base (0.11.0-java) ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -174,7 +168,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/jruby_9.3_sinatra_2.gemfile b/gemfiles/jruby_9.3_sinatra_2.gemfile index d46110554ea..33903f69cc7 100644 --- a/gemfiles/jruby_9.3_sinatra_2.gemfile +++ b/gemfiles/jruby_9.3_sinatra_2.gemfile @@ -23,7 +23,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.3_sinatra_2.gemfile.lock b/gemfiles/jruby_9.3_sinatra_2.gemfile.lock index 614813e0d48..56f6447f1fc 100644 --- a/gemfiles/jruby_9.3_sinatra_2.gemfile.lock +++ b/gemfiles/jruby_9.3_sinatra_2.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -123,6 +113,10 @@ GEM ruby-debug-base (0.11.0-java) ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -172,7 +166,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sinatra (~> 2) warning (~> 1) diff --git a/gemfiles/jruby_9.3_sinatra_3.gemfile b/gemfiles/jruby_9.3_sinatra_3.gemfile index 3de93537195..d996364285d 100644 --- a/gemfiles/jruby_9.3_sinatra_3.gemfile +++ b/gemfiles/jruby_9.3_sinatra_3.gemfile @@ -23,7 +23,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.3_sinatra_3.gemfile.lock b/gemfiles/jruby_9.3_sinatra_3.gemfile.lock index 309391b3670..f7c95b0bbac 100644 --- a/gemfiles/jruby_9.3_sinatra_3.gemfile.lock +++ b/gemfiles/jruby_9.3_sinatra_3.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -125,6 +115,10 @@ GEM ruby-debug-base (0.11.0-java) ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -174,7 +168,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sinatra (~> 3) warning (~> 1) diff --git a/gemfiles/jruby_9.3_stripe_10.gemfile b/gemfiles/jruby_9.3_stripe_10.gemfile index 34bd25bcd78..f7408eb0dea 100644 --- a/gemfiles/jruby_9.3_stripe_10.gemfile +++ b/gemfiles/jruby_9.3_stripe_10.gemfile @@ -23,7 +23,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.3_stripe_10.gemfile.lock b/gemfiles/jruby_9.3_stripe_10.gemfile.lock index 24d0f2b07d7..99bf91b679d 100644 --- a/gemfiles/jruby_9.3_stripe_10.gemfile.lock +++ b/gemfiles/jruby_9.3_stripe_10.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -113,6 +103,10 @@ GEM rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -155,7 +149,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 10) warning (~> 1) diff --git a/gemfiles/jruby_9.3_stripe_11.gemfile b/gemfiles/jruby_9.3_stripe_11.gemfile index a783da086b7..dd638c1e99e 100644 --- a/gemfiles/jruby_9.3_stripe_11.gemfile +++ b/gemfiles/jruby_9.3_stripe_11.gemfile @@ -23,7 +23,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.3_stripe_11.gemfile.lock b/gemfiles/jruby_9.3_stripe_11.gemfile.lock index df530970c11..4838eb08fe6 100644 --- a/gemfiles/jruby_9.3_stripe_11.gemfile.lock +++ b/gemfiles/jruby_9.3_stripe_11.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -113,6 +103,10 @@ GEM rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -155,7 +149,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 11) warning (~> 1) diff --git a/gemfiles/jruby_9.3_stripe_12.gemfile b/gemfiles/jruby_9.3_stripe_12.gemfile index e9a84ee5f8c..35370e3afbc 100644 --- a/gemfiles/jruby_9.3_stripe_12.gemfile +++ b/gemfiles/jruby_9.3_stripe_12.gemfile @@ -23,7 +23,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.3_stripe_12.gemfile.lock b/gemfiles/jruby_9.3_stripe_12.gemfile.lock index 8ca39260a2f..baa10fa1737 100644 --- a/gemfiles/jruby_9.3_stripe_12.gemfile.lock +++ b/gemfiles/jruby_9.3_stripe_12.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -113,6 +103,10 @@ GEM rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -155,7 +149,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 12) warning (~> 1) diff --git a/gemfiles/jruby_9.3_stripe_7.gemfile b/gemfiles/jruby_9.3_stripe_7.gemfile index 0868c4e3fff..1408fdc6b85 100644 --- a/gemfiles/jruby_9.3_stripe_7.gemfile +++ b/gemfiles/jruby_9.3_stripe_7.gemfile @@ -23,7 +23,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.3_stripe_7.gemfile.lock b/gemfiles/jruby_9.3_stripe_7.gemfile.lock index d5f627e17ea..ae3a487f929 100644 --- a/gemfiles/jruby_9.3_stripe_7.gemfile.lock +++ b/gemfiles/jruby_9.3_stripe_7.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -113,6 +103,10 @@ GEM rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -155,7 +149,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 7) warning (~> 1) diff --git a/gemfiles/jruby_9.3_stripe_8.gemfile b/gemfiles/jruby_9.3_stripe_8.gemfile index b7fcdaffc2c..d1ea1e6c0e2 100644 --- a/gemfiles/jruby_9.3_stripe_8.gemfile +++ b/gemfiles/jruby_9.3_stripe_8.gemfile @@ -23,7 +23,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.3_stripe_8.gemfile.lock b/gemfiles/jruby_9.3_stripe_8.gemfile.lock index c0bb6bfdbf1..6fd47e9892f 100644 --- a/gemfiles/jruby_9.3_stripe_8.gemfile.lock +++ b/gemfiles/jruby_9.3_stripe_8.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -113,6 +103,10 @@ GEM rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -155,7 +149,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 8) warning (~> 1) diff --git a/gemfiles/jruby_9.3_stripe_9.gemfile b/gemfiles/jruby_9.3_stripe_9.gemfile index 28e9f6ebc6c..109b9959e43 100644 --- a/gemfiles/jruby_9.3_stripe_9.gemfile +++ b/gemfiles/jruby_9.3_stripe_9.gemfile @@ -23,7 +23,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.3_stripe_9.gemfile.lock b/gemfiles/jruby_9.3_stripe_9.gemfile.lock index c0eeddfac33..a9a63886328 100644 --- a/gemfiles/jruby_9.3_stripe_9.gemfile.lock +++ b/gemfiles/jruby_9.3_stripe_9.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -113,6 +103,10 @@ GEM rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -155,7 +149,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 9) warning (~> 1) diff --git a/gemfiles/jruby_9.3_stripe_latest.gemfile b/gemfiles/jruby_9.3_stripe_latest.gemfile index 708669b5674..ee6d27be27f 100644 --- a/gemfiles/jruby_9.3_stripe_latest.gemfile +++ b/gemfiles/jruby_9.3_stripe_latest.gemfile @@ -23,7 +23,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.3_stripe_latest.gemfile.lock b/gemfiles/jruby_9.3_stripe_latest.gemfile.lock index 25f00f1d02c..354992074af 100644 --- a/gemfiles/jruby_9.3_stripe_latest.gemfile.lock +++ b/gemfiles/jruby_9.3_stripe_latest.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -112,6 +102,10 @@ GEM rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -153,7 +147,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) stripe warning (~> 1) diff --git a/gemfiles/jruby_9.3_stripe_min.gemfile b/gemfiles/jruby_9.3_stripe_min.gemfile index d949f8a4594..6a095bab796 100644 --- a/gemfiles/jruby_9.3_stripe_min.gemfile +++ b/gemfiles/jruby_9.3_stripe_min.gemfile @@ -23,7 +23,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.3_stripe_min.gemfile.lock b/gemfiles/jruby_9.3_stripe_min.gemfile.lock index 1d6588ceb75..dad776c5c37 100644 --- a/gemfiles/jruby_9.3_stripe_min.gemfile.lock +++ b/gemfiles/jruby_9.3_stripe_min.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -112,6 +102,10 @@ GEM rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -153,7 +147,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) stripe (= 5.15.0) warning (~> 1) diff --git a/gemfiles/jruby_9.4_activesupport.gemfile b/gemfiles/jruby_9.4_activesupport.gemfile index f166292bd21..91265afc4a4 100644 --- a/gemfiles/jruby_9.4_activesupport.gemfile +++ b/gemfiles/jruby_9.4_activesupport.gemfile @@ -23,7 +23,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.4_activesupport.gemfile.lock b/gemfiles/jruby_9.4_activesupport.gemfile.lock index 88570c691aa..4612a36fa33 100644 --- a/gemfiles/jruby_9.4_activesupport.gemfile.lock +++ b/gemfiles/jruby_9.4_activesupport.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -213,6 +203,10 @@ GEM digest-crc ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -267,7 +261,7 @@ DEPENDENCIES rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) ruby-kafka (>= 0.7.10) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/jruby_9.4_aws.gemfile b/gemfiles/jruby_9.4_aws.gemfile index fdecb96e6db..97e0afcb90a 100644 --- a/gemfiles/jruby_9.4_aws.gemfile +++ b/gemfiles/jruby_9.4_aws.gemfile @@ -23,7 +23,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.4_aws.gemfile.lock b/gemfiles/jruby_9.4_aws.gemfile.lock index afdcb51ba28..aae302257a6 100644 --- a/gemfiles/jruby_9.4_aws.gemfile.lock +++ b/gemfiles/jruby_9.4_aws.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -1535,6 +1525,10 @@ GEM aws-sdk-core (>= 2) concurrent-ruby thor + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -1580,7 +1574,7 @@ DEPENDENCIES rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) shoryuken - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/jruby_9.4_contrib.gemfile b/gemfiles/jruby_9.4_contrib.gemfile index f4426db9aac..24ee7bdc687 100644 --- a/gemfiles/jruby_9.4_contrib.gemfile +++ b/gemfiles/jruby_9.4_contrib.gemfile @@ -23,7 +23,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.4_contrib.gemfile.lock b/gemfiles/jruby_9.4_contrib.gemfile.lock index a8d69572440..ddedc86899c 100644 --- a/gemfiles/jruby_9.4_contrib.gemfile.lock +++ b/gemfiles/jruby_9.4_contrib.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -151,6 +141,10 @@ GEM rack (>= 2.2.4) redis-client (>= 0.14.0) sigdump (0.2.4) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -217,7 +211,7 @@ DEPENDENCIES rubocop-rspec (~> 2.20, < 2.21) semantic_logger (~> 4.0) sidekiq (~> 7) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sneakers (>= 2.12.0) sucker_punch diff --git a/gemfiles/jruby_9.4_contrib_old.gemfile b/gemfiles/jruby_9.4_contrib_old.gemfile index ecf863268e9..17467a3c477 100644 --- a/gemfiles/jruby_9.4_contrib_old.gemfile +++ b/gemfiles/jruby_9.4_contrib_old.gemfile @@ -23,7 +23,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.4_contrib_old.gemfile.lock b/gemfiles/jruby_9.4_contrib_old.gemfile.lock index 2b7c9815683..cd4830bacb1 100644 --- a/gemfiles/jruby_9.4_contrib_old.gemfile.lock +++ b/gemfiles/jruby_9.4_contrib_old.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -122,6 +112,10 @@ GEM rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -168,7 +162,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/jruby_9.4_core_old.gemfile b/gemfiles/jruby_9.4_core_old.gemfile index 28f6254095c..eadbd244a6e 100644 --- a/gemfiles/jruby_9.4_core_old.gemfile +++ b/gemfiles/jruby_9.4_core_old.gemfile @@ -23,7 +23,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.4_core_old.gemfile.lock b/gemfiles/jruby_9.4_core_old.gemfile.lock index ea1bc3179fc..e9e5956a0b5 100644 --- a/gemfiles/jruby_9.4_core_old.gemfile.lock +++ b/gemfiles/jruby_9.4_core_old.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -109,6 +99,10 @@ GEM rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -151,7 +145,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/jruby_9.4_elasticsearch_7.gemfile b/gemfiles/jruby_9.4_elasticsearch_7.gemfile index e1651a1b8db..a3ab55b7c4c 100644 --- a/gemfiles/jruby_9.4_elasticsearch_7.gemfile +++ b/gemfiles/jruby_9.4_elasticsearch_7.gemfile @@ -23,7 +23,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.4_elasticsearch_7.gemfile.lock b/gemfiles/jruby_9.4_elasticsearch_7.gemfile.lock index ca7aaf0976a..58fd61f9322 100644 --- a/gemfiles/jruby_9.4_elasticsearch_7.gemfile.lock +++ b/gemfiles/jruby_9.4_elasticsearch_7.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -131,6 +121,10 @@ GEM rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -175,7 +169,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/jruby_9.4_elasticsearch_8.gemfile b/gemfiles/jruby_9.4_elasticsearch_8.gemfile index c145d6cf987..a570d37a332 100644 --- a/gemfiles/jruby_9.4_elasticsearch_8.gemfile +++ b/gemfiles/jruby_9.4_elasticsearch_8.gemfile @@ -23,7 +23,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.4_elasticsearch_8.gemfile.lock b/gemfiles/jruby_9.4_elasticsearch_8.gemfile.lock index 263b6b31c7c..5b6662b7957 100644 --- a/gemfiles/jruby_9.4_elasticsearch_8.gemfile.lock +++ b/gemfiles/jruby_9.4_elasticsearch_8.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -129,6 +119,10 @@ GEM rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -173,7 +167,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/jruby_9.4_elasticsearch_latest.gemfile b/gemfiles/jruby_9.4_elasticsearch_latest.gemfile index a5d452480ad..e7d4ec78039 100644 --- a/gemfiles/jruby_9.4_elasticsearch_latest.gemfile +++ b/gemfiles/jruby_9.4_elasticsearch_latest.gemfile @@ -23,7 +23,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.4_elasticsearch_latest.gemfile.lock b/gemfiles/jruby_9.4_elasticsearch_latest.gemfile.lock index cff57442807..60cf110d825 100644 --- a/gemfiles/jruby_9.4_elasticsearch_latest.gemfile.lock +++ b/gemfiles/jruby_9.4_elasticsearch_latest.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -130,6 +120,10 @@ GEM rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -173,7 +167,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/jruby_9.4_graphql_1.13.gemfile b/gemfiles/jruby_9.4_graphql_1.13.gemfile index 1f6c820f226..b5dde5a3246 100644 --- a/gemfiles/jruby_9.4_graphql_1.13.gemfile +++ b/gemfiles/jruby_9.4_graphql_1.13.gemfile @@ -23,7 +23,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.4_graphql_1.13.gemfile.lock b/gemfiles/jruby_9.4_graphql_1.13.gemfile.lock index 3f71a77b491..166fe4df7ed 100644 --- a/gemfiles/jruby_9.4_graphql_1.13.gemfile.lock +++ b/gemfiles/jruby_9.4_graphql_1.13.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -241,6 +231,10 @@ GEM rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -302,7 +296,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/jruby_9.4_graphql_2.0.gemfile b/gemfiles/jruby_9.4_graphql_2.0.gemfile index 7393613bb9e..61e2581778e 100644 --- a/gemfiles/jruby_9.4_graphql_2.0.gemfile +++ b/gemfiles/jruby_9.4_graphql_2.0.gemfile @@ -23,7 +23,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.4_graphql_2.0.gemfile.lock b/gemfiles/jruby_9.4_graphql_2.0.gemfile.lock index fcd891d4dbe..7d20a779447 100644 --- a/gemfiles/jruby_9.4_graphql_2.0.gemfile.lock +++ b/gemfiles/jruby_9.4_graphql_2.0.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -241,6 +231,10 @@ GEM rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -302,7 +296,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/jruby_9.4_graphql_2.1.gemfile b/gemfiles/jruby_9.4_graphql_2.1.gemfile index 843163dd655..3f2658ed0d1 100644 --- a/gemfiles/jruby_9.4_graphql_2.1.gemfile +++ b/gemfiles/jruby_9.4_graphql_2.1.gemfile @@ -23,7 +23,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.4_graphql_2.1.gemfile.lock b/gemfiles/jruby_9.4_graphql_2.1.gemfile.lock index 3d7bf28fc5d..7bd091ca78b 100644 --- a/gemfiles/jruby_9.4_graphql_2.1.gemfile.lock +++ b/gemfiles/jruby_9.4_graphql_2.1.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -242,6 +232,10 @@ GEM rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -303,7 +297,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/jruby_9.4_graphql_2.2.gemfile b/gemfiles/jruby_9.4_graphql_2.2.gemfile index 929a1dd95cb..eb0ce13dd83 100644 --- a/gemfiles/jruby_9.4_graphql_2.2.gemfile +++ b/gemfiles/jruby_9.4_graphql_2.2.gemfile @@ -23,7 +23,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.4_graphql_2.2.gemfile.lock b/gemfiles/jruby_9.4_graphql_2.2.gemfile.lock index 592c958cab8..883430ada30 100644 --- a/gemfiles/jruby_9.4_graphql_2.2.gemfile.lock +++ b/gemfiles/jruby_9.4_graphql_2.2.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -242,6 +232,10 @@ GEM rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -303,7 +297,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/jruby_9.4_graphql_2.3.gemfile b/gemfiles/jruby_9.4_graphql_2.3.gemfile index 965a62d1152..a4d037b1d29 100644 --- a/gemfiles/jruby_9.4_graphql_2.3.gemfile +++ b/gemfiles/jruby_9.4_graphql_2.3.gemfile @@ -23,7 +23,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.4_graphql_2.3.gemfile.lock b/gemfiles/jruby_9.4_graphql_2.3.gemfile.lock index 853fe26856d..cc00a23e155 100644 --- a/gemfiles/jruby_9.4_graphql_2.3.gemfile.lock +++ b/gemfiles/jruby_9.4_graphql_2.3.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -244,6 +234,10 @@ GEM rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -305,7 +299,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/jruby_9.4_http.gemfile b/gemfiles/jruby_9.4_http.gemfile index 62343839449..b1feea035e1 100644 --- a/gemfiles/jruby_9.4_http.gemfile +++ b/gemfiles/jruby_9.4_http.gemfile @@ -23,7 +23,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.4_http.gemfile.lock b/gemfiles/jruby_9.4_http.gemfile.lock index d11e37aeeec..2cfb36dcd97 100644 --- a/gemfiles/jruby_9.4_http.gemfile.lock +++ b/gemfiles/jruby_9.4_http.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -143,6 +133,10 @@ GEM ruby-debug-base (0.11.0-java) ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -194,7 +188,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) typhoeus warning (~> 1) diff --git a/gemfiles/jruby_9.4_opensearch_2.gemfile b/gemfiles/jruby_9.4_opensearch_2.gemfile index a4f9f7d6b1a..eef39c3687a 100644 --- a/gemfiles/jruby_9.4_opensearch_2.gemfile +++ b/gemfiles/jruby_9.4_opensearch_2.gemfile @@ -23,7 +23,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.4_opensearch_2.gemfile.lock b/gemfiles/jruby_9.4_opensearch_2.gemfile.lock index 02ac2032d4c..66611d2971b 100644 --- a/gemfiles/jruby_9.4_opensearch_2.gemfile.lock +++ b/gemfiles/jruby_9.4_opensearch_2.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -129,6 +119,10 @@ GEM rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -173,7 +167,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/jruby_9.4_opensearch_3.gemfile b/gemfiles/jruby_9.4_opensearch_3.gemfile index b10644cb295..eb0e9dcd7d4 100644 --- a/gemfiles/jruby_9.4_opensearch_3.gemfile +++ b/gemfiles/jruby_9.4_opensearch_3.gemfile @@ -23,7 +23,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.4_opensearch_3.gemfile.lock b/gemfiles/jruby_9.4_opensearch_3.gemfile.lock index 83edc60d819..f9d5de81b29 100644 --- a/gemfiles/jruby_9.4_opensearch_3.gemfile.lock +++ b/gemfiles/jruby_9.4_opensearch_3.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -124,6 +114,10 @@ GEM rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -168,7 +162,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/jruby_9.4_opensearch_latest.gemfile b/gemfiles/jruby_9.4_opensearch_latest.gemfile index a3b637b9fed..145c1e0a7b7 100644 --- a/gemfiles/jruby_9.4_opensearch_latest.gemfile +++ b/gemfiles/jruby_9.4_opensearch_latest.gemfile @@ -23,7 +23,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.4_opensearch_latest.gemfile.lock b/gemfiles/jruby_9.4_opensearch_latest.gemfile.lock index 24f7f816f93..2e5086bfebc 100644 --- a/gemfiles/jruby_9.4_opensearch_latest.gemfile.lock +++ b/gemfiles/jruby_9.4_opensearch_latest.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -125,6 +115,10 @@ GEM rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -168,7 +162,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/jruby_9.4_rack_1.gemfile b/gemfiles/jruby_9.4_rack_1.gemfile index 122d61d9f80..249bd653194 100644 --- a/gemfiles/jruby_9.4_rack_1.gemfile +++ b/gemfiles/jruby_9.4_rack_1.gemfile @@ -23,7 +23,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.4_rack_1.gemfile.lock b/gemfiles/jruby_9.4_rack_1.gemfile.lock index ed12c7492fd..cc65b046bae 100644 --- a/gemfiles/jruby_9.4_rack_1.gemfile.lock +++ b/gemfiles/jruby_9.4_rack_1.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -114,6 +104,10 @@ GEM rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -159,7 +153,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/jruby_9.4_rack_2.gemfile b/gemfiles/jruby_9.4_rack_2.gemfile index c2674e6899b..df9d7a24618 100644 --- a/gemfiles/jruby_9.4_rack_2.gemfile +++ b/gemfiles/jruby_9.4_rack_2.gemfile @@ -23,7 +23,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.4_rack_2.gemfile.lock b/gemfiles/jruby_9.4_rack_2.gemfile.lock index 0915c1bc8e9..3f1306c029f 100644 --- a/gemfiles/jruby_9.4_rack_2.gemfile.lock +++ b/gemfiles/jruby_9.4_rack_2.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -114,6 +104,10 @@ GEM rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -159,7 +153,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/jruby_9.4_rack_3.gemfile b/gemfiles/jruby_9.4_rack_3.gemfile index bdc19358d10..5ee90b356d4 100644 --- a/gemfiles/jruby_9.4_rack_3.gemfile +++ b/gemfiles/jruby_9.4_rack_3.gemfile @@ -23,7 +23,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.4_rack_3.gemfile.lock b/gemfiles/jruby_9.4_rack_3.gemfile.lock index 4b7a73aee08..7641b325363 100644 --- a/gemfiles/jruby_9.4_rack_3.gemfile.lock +++ b/gemfiles/jruby_9.4_rack_3.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -114,6 +104,10 @@ GEM rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -159,7 +153,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/jruby_9.4_rack_latest.gemfile b/gemfiles/jruby_9.4_rack_latest.gemfile index ee3a1a61a93..da8a5ffbd50 100644 --- a/gemfiles/jruby_9.4_rack_latest.gemfile +++ b/gemfiles/jruby_9.4_rack_latest.gemfile @@ -23,7 +23,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.4_rack_latest.gemfile.lock b/gemfiles/jruby_9.4_rack_latest.gemfile.lock index 3124a815be2..b064a457822 100644 --- a/gemfiles/jruby_9.4_rack_latest.gemfile.lock +++ b/gemfiles/jruby_9.4_rack_latest.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -117,6 +107,10 @@ GEM rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -161,7 +155,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/jruby_9.4_rails61_mysql2.gemfile b/gemfiles/jruby_9.4_rails61_mysql2.gemfile index 21c36d053d5..e1f7923f7d4 100644 --- a/gemfiles/jruby_9.4_rails61_mysql2.gemfile +++ b/gemfiles/jruby_9.4_rails61_mysql2.gemfile @@ -23,7 +23,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.4_rails61_mysql2.gemfile.lock b/gemfiles/jruby_9.4_rails61_mysql2.gemfile.lock index 001edbce30e..ba1581fdb20 100644 --- a/gemfiles/jruby_9.4_rails61_mysql2.gemfile.lock +++ b/gemfiles/jruby_9.4_rails61_mysql2.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -248,6 +238,10 @@ GEM rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -310,7 +304,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/jruby_9.4_rails61_postgres.gemfile b/gemfiles/jruby_9.4_rails61_postgres.gemfile index 1c31bd3b232..0406806df55 100644 --- a/gemfiles/jruby_9.4_rails61_postgres.gemfile +++ b/gemfiles/jruby_9.4_rails61_postgres.gemfile @@ -23,7 +23,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.4_rails61_postgres.gemfile.lock b/gemfiles/jruby_9.4_rails61_postgres.gemfile.lock index cca006b558e..31ee0ba16df 100644 --- a/gemfiles/jruby_9.4_rails61_postgres.gemfile.lock +++ b/gemfiles/jruby_9.4_rails61_postgres.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -241,6 +231,10 @@ GEM rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -302,7 +296,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/jruby_9.4_rails61_postgres_redis.gemfile b/gemfiles/jruby_9.4_rails61_postgres_redis.gemfile index 8ce41d1186f..ef476806239 100644 --- a/gemfiles/jruby_9.4_rails61_postgres_redis.gemfile +++ b/gemfiles/jruby_9.4_rails61_postgres_redis.gemfile @@ -23,7 +23,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.4_rails61_postgres_redis.gemfile.lock b/gemfiles/jruby_9.4_rails61_postgres_redis.gemfile.lock index 28fa0eb4997..5f914c68c70 100644 --- a/gemfiles/jruby_9.4_rails61_postgres_redis.gemfile.lock +++ b/gemfiles/jruby_9.4_rails61_postgres_redis.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -242,6 +232,10 @@ GEM rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -304,7 +298,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/jruby_9.4_rails61_postgres_sidekiq.gemfile b/gemfiles/jruby_9.4_rails61_postgres_sidekiq.gemfile index f8d56da384f..46d61e6eb49 100644 --- a/gemfiles/jruby_9.4_rails61_postgres_sidekiq.gemfile +++ b/gemfiles/jruby_9.4_rails61_postgres_sidekiq.gemfile @@ -23,7 +23,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.4_rails61_postgres_sidekiq.gemfile.lock b/gemfiles/jruby_9.4_rails61_postgres_sidekiq.gemfile.lock index a8e2f2be5b7..658c69913df 100644 --- a/gemfiles/jruby_9.4_rails61_postgres_sidekiq.gemfile.lock +++ b/gemfiles/jruby_9.4_rails61_postgres_sidekiq.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -255,6 +245,10 @@ GEM connection_pool (>= 2.3.0) rack (>= 2.2.4) redis-client (>= 0.11.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -318,7 +312,7 @@ DEPENDENCIES rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) sidekiq (>= 6.1.2) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/jruby_9.4_rails61_semantic_logger.gemfile b/gemfiles/jruby_9.4_rails61_semantic_logger.gemfile index 4842d67c23b..a96316b3a62 100644 --- a/gemfiles/jruby_9.4_rails61_semantic_logger.gemfile +++ b/gemfiles/jruby_9.4_rails61_semantic_logger.gemfile @@ -23,7 +23,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.4_rails61_semantic_logger.gemfile.lock b/gemfiles/jruby_9.4_rails61_semantic_logger.gemfile.lock index ed778d9b04e..9c2ad66f63d 100644 --- a/gemfiles/jruby_9.4_rails61_semantic_logger.gemfile.lock +++ b/gemfiles/jruby_9.4_rails61_semantic_logger.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -240,6 +230,10 @@ GEM ruby-progressbar (1.13.0) semantic_logger (4.12.0) concurrent-ruby (~> 1.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -301,7 +295,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/jruby_9.4_rails_old_redis.gemfile b/gemfiles/jruby_9.4_rails_old_redis.gemfile index 8f017abb4aa..70c854e9c6f 100644 --- a/gemfiles/jruby_9.4_rails_old_redis.gemfile +++ b/gemfiles/jruby_9.4_rails_old_redis.gemfile @@ -23,7 +23,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.4_redis_3.gemfile b/gemfiles/jruby_9.4_redis_3.gemfile index f1ee75ee4a9..135688c0834 100644 --- a/gemfiles/jruby_9.4_redis_3.gemfile +++ b/gemfiles/jruby_9.4_redis_3.gemfile @@ -23,7 +23,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.4_redis_3.gemfile.lock b/gemfiles/jruby_9.4_redis_3.gemfile.lock index c27b42e4ac3..a3f6b1b8efb 100644 --- a/gemfiles/jruby_9.4_redis_3.gemfile.lock +++ b/gemfiles/jruby_9.4_redis_3.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -110,6 +100,10 @@ GEM rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -153,7 +147,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/jruby_9.4_redis_4.gemfile b/gemfiles/jruby_9.4_redis_4.gemfile index 7cc92ce4438..201c60e72a6 100644 --- a/gemfiles/jruby_9.4_redis_4.gemfile +++ b/gemfiles/jruby_9.4_redis_4.gemfile @@ -23,7 +23,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.4_redis_4.gemfile.lock b/gemfiles/jruby_9.4_redis_4.gemfile.lock index a318e140b2f..08fa909198a 100644 --- a/gemfiles/jruby_9.4_redis_4.gemfile.lock +++ b/gemfiles/jruby_9.4_redis_4.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -110,6 +100,10 @@ GEM rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -153,7 +147,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/jruby_9.4_redis_5.gemfile b/gemfiles/jruby_9.4_redis_5.gemfile index dd218aae9c1..0f8a1d8d57f 100644 --- a/gemfiles/jruby_9.4_redis_5.gemfile +++ b/gemfiles/jruby_9.4_redis_5.gemfile @@ -23,7 +23,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.4_redis_5.gemfile.lock b/gemfiles/jruby_9.4_redis_5.gemfile.lock index a7a42327dcd..c1e31caa44c 100644 --- a/gemfiles/jruby_9.4_redis_5.gemfile.lock +++ b/gemfiles/jruby_9.4_redis_5.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -114,6 +104,10 @@ GEM rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -157,7 +151,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/jruby_9.4_relational_db.gemfile b/gemfiles/jruby_9.4_relational_db.gemfile index 0c7e5595130..017ac9a1026 100644 --- a/gemfiles/jruby_9.4_relational_db.gemfile +++ b/gemfiles/jruby_9.4_relational_db.gemfile @@ -23,7 +23,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.4_relational_db.gemfile.lock b/gemfiles/jruby_9.4_relational_db.gemfile.lock index 49082bf5347..9ac6875a982 100644 --- a/gemfiles/jruby_9.4_relational_db.gemfile.lock +++ b/gemfiles/jruby_9.4_relational_db.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -147,6 +137,10 @@ GEM ruby-progressbar (1.13.0) sequel (5.83.1) bigdecimal + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -200,7 +194,7 @@ DEPENDENCIES rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) sequel - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/jruby_9.4_resque2_redis3.gemfile b/gemfiles/jruby_9.4_resque2_redis3.gemfile index d21fc9a015f..a029e56a2cd 100644 --- a/gemfiles/jruby_9.4_resque2_redis3.gemfile +++ b/gemfiles/jruby_9.4_resque2_redis3.gemfile @@ -23,7 +23,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.4_resque2_redis3.gemfile.lock b/gemfiles/jruby_9.4_resque2_redis3.gemfile.lock index 74436533c24..d5aad0f1d1e 100644 --- a/gemfiles/jruby_9.4_resque2_redis3.gemfile.lock +++ b/gemfiles/jruby_9.4_resque2_redis3.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -125,6 +115,10 @@ GEM ruby-debug-base (0.11.0-java) ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -175,7 +169,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/jruby_9.4_resque2_redis4.gemfile b/gemfiles/jruby_9.4_resque2_redis4.gemfile index 274de899131..1d17052a76d 100644 --- a/gemfiles/jruby_9.4_resque2_redis4.gemfile +++ b/gemfiles/jruby_9.4_resque2_redis4.gemfile @@ -23,7 +23,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.4_resque2_redis4.gemfile.lock b/gemfiles/jruby_9.4_resque2_redis4.gemfile.lock index 66a6b2b6707..3580cedac2c 100644 --- a/gemfiles/jruby_9.4_resque2_redis4.gemfile.lock +++ b/gemfiles/jruby_9.4_resque2_redis4.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -129,6 +119,10 @@ GEM ruby-debug-base (0.11.0-java) ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -179,7 +173,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/jruby_9.4_sinatra_2.gemfile b/gemfiles/jruby_9.4_sinatra_2.gemfile index 7d51f4d8d46..b944b0887bf 100644 --- a/gemfiles/jruby_9.4_sinatra_2.gemfile +++ b/gemfiles/jruby_9.4_sinatra_2.gemfile @@ -23,7 +23,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.4_sinatra_2.gemfile.lock b/gemfiles/jruby_9.4_sinatra_2.gemfile.lock index 8b816583569..a96480fcf3f 100644 --- a/gemfiles/jruby_9.4_sinatra_2.gemfile.lock +++ b/gemfiles/jruby_9.4_sinatra_2.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -123,6 +113,10 @@ GEM ruby-debug-base (0.11.0-java) ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -173,7 +167,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sinatra (~> 2) warning (~> 1) diff --git a/gemfiles/jruby_9.4_sinatra_3.gemfile b/gemfiles/jruby_9.4_sinatra_3.gemfile index 00e36fb44f7..8bca9f0555c 100644 --- a/gemfiles/jruby_9.4_sinatra_3.gemfile +++ b/gemfiles/jruby_9.4_sinatra_3.gemfile @@ -23,7 +23,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.4_sinatra_3.gemfile.lock b/gemfiles/jruby_9.4_sinatra_3.gemfile.lock index a3dd5d624d4..dd9a3354ba5 100644 --- a/gemfiles/jruby_9.4_sinatra_3.gemfile.lock +++ b/gemfiles/jruby_9.4_sinatra_3.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -125,6 +115,10 @@ GEM ruby-debug-base (0.11.0-java) ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -175,7 +169,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sinatra (~> 3) warning (~> 1) diff --git a/gemfiles/jruby_9.4_sinatra_4.gemfile b/gemfiles/jruby_9.4_sinatra_4.gemfile index d74cd50101a..dc3bc9410d6 100644 --- a/gemfiles/jruby_9.4_sinatra_4.gemfile +++ b/gemfiles/jruby_9.4_sinatra_4.gemfile @@ -23,7 +23,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.4_sinatra_4.gemfile.lock b/gemfiles/jruby_9.4_sinatra_4.gemfile.lock index 41aad1024e1..07d986251fd 100644 --- a/gemfiles/jruby_9.4_sinatra_4.gemfile.lock +++ b/gemfiles/jruby_9.4_sinatra_4.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -127,6 +117,10 @@ GEM ruby-debug-base (0.11.0-java) ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -178,7 +172,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sinatra (~> 4) warning (~> 1) diff --git a/gemfiles/jruby_9.4_stripe_10.gemfile b/gemfiles/jruby_9.4_stripe_10.gemfile index 8c5cf88169f..d45cf068582 100644 --- a/gemfiles/jruby_9.4_stripe_10.gemfile +++ b/gemfiles/jruby_9.4_stripe_10.gemfile @@ -23,7 +23,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.4_stripe_10.gemfile.lock b/gemfiles/jruby_9.4_stripe_10.gemfile.lock index 621396abeb6..e7f4ea7ba53 100644 --- a/gemfiles/jruby_9.4_stripe_10.gemfile.lock +++ b/gemfiles/jruby_9.4_stripe_10.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -113,6 +103,10 @@ GEM rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -156,7 +150,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 10) warning (~> 1) diff --git a/gemfiles/jruby_9.4_stripe_11.gemfile b/gemfiles/jruby_9.4_stripe_11.gemfile index 7e8cbf69b5e..30aee1b666a 100644 --- a/gemfiles/jruby_9.4_stripe_11.gemfile +++ b/gemfiles/jruby_9.4_stripe_11.gemfile @@ -23,7 +23,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.4_stripe_11.gemfile.lock b/gemfiles/jruby_9.4_stripe_11.gemfile.lock index d817730170f..960974bd8d8 100644 --- a/gemfiles/jruby_9.4_stripe_11.gemfile.lock +++ b/gemfiles/jruby_9.4_stripe_11.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -113,6 +103,10 @@ GEM rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -156,7 +150,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 11) warning (~> 1) diff --git a/gemfiles/jruby_9.4_stripe_12.gemfile b/gemfiles/jruby_9.4_stripe_12.gemfile index d890287bd7b..5351d08d0ec 100644 --- a/gemfiles/jruby_9.4_stripe_12.gemfile +++ b/gemfiles/jruby_9.4_stripe_12.gemfile @@ -23,7 +23,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.4_stripe_12.gemfile.lock b/gemfiles/jruby_9.4_stripe_12.gemfile.lock index c09ca1319f9..d963a2f6f18 100644 --- a/gemfiles/jruby_9.4_stripe_12.gemfile.lock +++ b/gemfiles/jruby_9.4_stripe_12.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -113,6 +103,10 @@ GEM rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -156,7 +150,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 12) warning (~> 1) diff --git a/gemfiles/jruby_9.4_stripe_7.gemfile b/gemfiles/jruby_9.4_stripe_7.gemfile index f8230c46ef9..d2a4adc5717 100644 --- a/gemfiles/jruby_9.4_stripe_7.gemfile +++ b/gemfiles/jruby_9.4_stripe_7.gemfile @@ -23,7 +23,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.4_stripe_7.gemfile.lock b/gemfiles/jruby_9.4_stripe_7.gemfile.lock index cf3153e076e..91170a28688 100644 --- a/gemfiles/jruby_9.4_stripe_7.gemfile.lock +++ b/gemfiles/jruby_9.4_stripe_7.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -113,6 +103,10 @@ GEM rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -156,7 +150,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 7) warning (~> 1) diff --git a/gemfiles/jruby_9.4_stripe_8.gemfile b/gemfiles/jruby_9.4_stripe_8.gemfile index 320cc22e658..7913f9562cb 100644 --- a/gemfiles/jruby_9.4_stripe_8.gemfile +++ b/gemfiles/jruby_9.4_stripe_8.gemfile @@ -23,7 +23,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.4_stripe_8.gemfile.lock b/gemfiles/jruby_9.4_stripe_8.gemfile.lock index fc533d75440..25173238033 100644 --- a/gemfiles/jruby_9.4_stripe_8.gemfile.lock +++ b/gemfiles/jruby_9.4_stripe_8.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -113,6 +103,10 @@ GEM rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -156,7 +150,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 8) warning (~> 1) diff --git a/gemfiles/jruby_9.4_stripe_9.gemfile b/gemfiles/jruby_9.4_stripe_9.gemfile index 9924be0d0d2..d4bc7a64524 100644 --- a/gemfiles/jruby_9.4_stripe_9.gemfile +++ b/gemfiles/jruby_9.4_stripe_9.gemfile @@ -23,7 +23,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.4_stripe_9.gemfile.lock b/gemfiles/jruby_9.4_stripe_9.gemfile.lock index 19bed334a61..add44bc28e0 100644 --- a/gemfiles/jruby_9.4_stripe_9.gemfile.lock +++ b/gemfiles/jruby_9.4_stripe_9.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -113,6 +103,10 @@ GEM rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -156,7 +150,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 9) warning (~> 1) diff --git a/gemfiles/jruby_9.4_stripe_latest.gemfile b/gemfiles/jruby_9.4_stripe_latest.gemfile index 53b1daf2008..738cdc7a811 100644 --- a/gemfiles/jruby_9.4_stripe_latest.gemfile +++ b/gemfiles/jruby_9.4_stripe_latest.gemfile @@ -23,7 +23,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.4_stripe_latest.gemfile.lock b/gemfiles/jruby_9.4_stripe_latest.gemfile.lock index 5d0c05fed25..e4bbdd6557c 100644 --- a/gemfiles/jruby_9.4_stripe_latest.gemfile.lock +++ b/gemfiles/jruby_9.4_stripe_latest.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -112,6 +102,10 @@ GEM rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -154,7 +148,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) stripe warning (~> 1) diff --git a/gemfiles/jruby_9.4_stripe_min.gemfile b/gemfiles/jruby_9.4_stripe_min.gemfile index 70afe705378..88b7ec30986 100644 --- a/gemfiles/jruby_9.4_stripe_min.gemfile +++ b/gemfiles/jruby_9.4_stripe_min.gemfile @@ -23,7 +23,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.4_stripe_min.gemfile.lock b/gemfiles/jruby_9.4_stripe_min.gemfile.lock index 451c8f4db3e..67f03ee0d2a 100644 --- a/gemfiles/jruby_9.4_stripe_min.gemfile.lock +++ b/gemfiles/jruby_9.4_stripe_min.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -112,6 +102,10 @@ GEM rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -154,7 +148,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) stripe (= 5.15.0) warning (~> 1) diff --git a/gemfiles/ruby_2.5_activesupport.gemfile b/gemfiles/ruby_2.5_activesupport.gemfile index 1e8ac33d286..1e0559a2978 100644 --- a/gemfiles/ruby_2.5_activesupport.gemfile +++ b/gemfiles/ruby_2.5_activesupport.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.5_activesupport.gemfile.lock b/gemfiles/ruby_2.5_activesupport.gemfile.lock index 5f17ae88bba..e152873aaef 100644 --- a/gemfiles/ruby_2.5_activesupport.gemfile.lock +++ b/gemfiles/ruby_2.5_activesupport.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -197,6 +187,10 @@ GEM ruby-kafka (1.5.0) digest-crc ruby2_keywords (0.0.5) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -247,7 +241,7 @@ DEPENDENCIES rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) ruby-kafka (>= 0.7.10) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_2.5_aws.gemfile b/gemfiles/ruby_2.5_aws.gemfile index 52dc5a5885f..b7d5c1084bb 100644 --- a/gemfiles/ruby_2.5_aws.gemfile +++ b/gemfiles/ruby_2.5_aws.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.5_aws.gemfile.lock b/gemfiles/ruby_2.5_aws.gemfile.lock index 07989587beb..391dd7c2c7d 100644 --- a/gemfiles/ruby_2.5_aws.gemfile.lock +++ b/gemfiles/ruby_2.5_aws.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -1513,6 +1503,10 @@ GEM aws-sdk-core (>= 2) concurrent-ruby thor + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -1554,7 +1548,7 @@ DEPENDENCIES rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) shoryuken - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_2.5_contrib.gemfile b/gemfiles/ruby_2.5_contrib.gemfile index f258c75eed4..3447872cf75 100644 --- a/gemfiles/ruby_2.5_contrib.gemfile +++ b/gemfiles/ruby_2.5_contrib.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.5_contrib.gemfile.lock b/gemfiles/ruby_2.5_contrib.gemfile.lock index fb48022b733..759d4a25c32 100644 --- a/gemfiles/ruby_2.5_contrib.gemfile.lock +++ b/gemfiles/ruby_2.5_contrib.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -136,6 +126,10 @@ GEM rack (~> 2.0) redis (>= 4.5.0, < 5) sigdump (0.2.4) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -202,7 +196,7 @@ DEPENDENCIES rspec_junit_formatter (>= 0.5.1) semantic_logger (~> 4.0) sidekiq - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sneakers (>= 2.12.0) sucker_punch diff --git a/gemfiles/ruby_2.5_contrib_old.gemfile b/gemfiles/ruby_2.5_contrib_old.gemfile index 1cc1169184a..7411037c656 100644 --- a/gemfiles/ruby_2.5_contrib_old.gemfile +++ b/gemfiles/ruby_2.5_contrib_old.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.5_contrib_old.gemfile.lock b/gemfiles/ruby_2.5_contrib_old.gemfile.lock index 53dfbcf9433..a0c6b054562 100644 --- a/gemfiles/ruby_2.5_contrib_old.gemfile.lock +++ b/gemfiles/ruby_2.5_contrib_old.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -127,6 +117,10 @@ GEM rusage (0.2.0) sentry-raven (0.15.6) faraday (>= 0.7.6) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -183,7 +177,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_2.5_core_old.gemfile b/gemfiles/ruby_2.5_core_old.gemfile index 213dcac5145..75b95cf27c1 100644 --- a/gemfiles/ruby_2.5_core_old.gemfile +++ b/gemfiles/ruby_2.5_core_old.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.5_core_old.gemfile.lock b/gemfiles/ruby_2.5_core_old.gemfile.lock index 2ace7e7df70..4a37eb7a24a 100644 --- a/gemfiles/ruby_2.5_core_old.gemfile.lock +++ b/gemfiles/ruby_2.5_core_old.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -87,6 +77,10 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -125,7 +119,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_2.5_elasticsearch_7.gemfile b/gemfiles/ruby_2.5_elasticsearch_7.gemfile index 3d530af4682..747893c0538 100644 --- a/gemfiles/ruby_2.5_elasticsearch_7.gemfile +++ b/gemfiles/ruby_2.5_elasticsearch_7.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.5_elasticsearch_7.gemfile.lock b/gemfiles/ruby_2.5_elasticsearch_7.gemfile.lock index 57d2e8e753e..1c3d8761652 100644 --- a/gemfiles/ruby_2.5_elasticsearch_7.gemfile.lock +++ b/gemfiles/ruby_2.5_elasticsearch_7.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -125,6 +115,10 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby2_keywords (0.0.5) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -164,7 +158,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_2.5_elasticsearch_8.gemfile b/gemfiles/ruby_2.5_elasticsearch_8.gemfile index df5a2ddeed2..54c860ca555 100644 --- a/gemfiles/ruby_2.5_elasticsearch_8.gemfile +++ b/gemfiles/ruby_2.5_elasticsearch_8.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.5_elasticsearch_8.gemfile.lock b/gemfiles/ruby_2.5_elasticsearch_8.gemfile.lock index 3436f2d9349..6061877244f 100644 --- a/gemfiles/ruby_2.5_elasticsearch_8.gemfile.lock +++ b/gemfiles/ruby_2.5_elasticsearch_8.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -123,6 +113,10 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby2_keywords (0.0.5) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -162,7 +156,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_2.5_elasticsearch_latest.gemfile b/gemfiles/ruby_2.5_elasticsearch_latest.gemfile index 76606fcdafc..cfeb6e3ad18 100644 --- a/gemfiles/ruby_2.5_elasticsearch_latest.gemfile +++ b/gemfiles/ruby_2.5_elasticsearch_latest.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.5_elasticsearch_latest.gemfile.lock b/gemfiles/ruby_2.5_elasticsearch_latest.gemfile.lock index 326c8d51fec..80af72d2531 100644 --- a/gemfiles/ruby_2.5_elasticsearch_latest.gemfile.lock +++ b/gemfiles/ruby_2.5_elasticsearch_latest.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -124,6 +114,10 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby2_keywords (0.0.5) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -162,7 +156,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_2.5_graphql_2.0.gemfile b/gemfiles/ruby_2.5_graphql_2.0.gemfile index d05e973d562..96be9ddea65 100644 --- a/gemfiles/ruby_2.5_graphql_2.0.gemfile +++ b/gemfiles/ruby_2.5_graphql_2.0.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.5_graphql_2.0.gemfile.lock b/gemfiles/ruby_2.5_graphql_2.0.gemfile.lock index 18746b08995..71e6f287d59 100644 --- a/gemfiles/ruby_2.5_graphql_2.0.gemfile.lock +++ b/gemfiles/ruby_2.5_graphql_2.0.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -228,6 +218,10 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -285,7 +279,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_2.5_hanami_1.gemfile b/gemfiles/ruby_2.5_hanami_1.gemfile index afafc70bbf6..a08dc8b2e70 100644 --- a/gemfiles/ruby_2.5_hanami_1.gemfile +++ b/gemfiles/ruby_2.5_hanami_1.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.5_hanami_1.gemfile.lock b/gemfiles/ruby_2.5_hanami_1.gemfile.lock index b51bb18be9d..0f399e712e0 100644 --- a/gemfiles/ruby_2.5_hanami_1.gemfile.lock +++ b/gemfiles/ruby_2.5_hanami_1.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -185,6 +175,10 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -231,7 +225,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_2.5_http.gemfile b/gemfiles/ruby_2.5_http.gemfile index d814586626a..0f9688c346e 100644 --- a/gemfiles/ruby_2.5_http.gemfile +++ b/gemfiles/ruby_2.5_http.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.5_http.gemfile.lock b/gemfiles/ruby_2.5_http.gemfile.lock index 60e876f907b..40849310a95 100644 --- a/gemfiles/ruby_2.5_http.gemfile.lock +++ b/gemfiles/ruby_2.5_http.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -142,6 +132,10 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby2_keywords (0.0.5) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -191,7 +185,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) typhoeus warning (~> 1) diff --git a/gemfiles/ruby_2.5_opensearch_2.gemfile b/gemfiles/ruby_2.5_opensearch_2.gemfile index 408907d1602..30b0ea51c79 100644 --- a/gemfiles/ruby_2.5_opensearch_2.gemfile +++ b/gemfiles/ruby_2.5_opensearch_2.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.5_opensearch_2.gemfile.lock b/gemfiles/ruby_2.5_opensearch_2.gemfile.lock index c7314c5f37e..05856f676a8 100644 --- a/gemfiles/ruby_2.5_opensearch_2.gemfile.lock +++ b/gemfiles/ruby_2.5_opensearch_2.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -123,6 +113,10 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby2_keywords (0.0.5) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -162,7 +156,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_2.5_opensearch_3.gemfile b/gemfiles/ruby_2.5_opensearch_3.gemfile index c99ceb8f6b0..9a0f253fc8b 100644 --- a/gemfiles/ruby_2.5_opensearch_3.gemfile +++ b/gemfiles/ruby_2.5_opensearch_3.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.5_opensearch_3.gemfile.lock b/gemfiles/ruby_2.5_opensearch_3.gemfile.lock index f8dd34b6afc..3f8d333371c 100644 --- a/gemfiles/ruby_2.5_opensearch_3.gemfile.lock +++ b/gemfiles/ruby_2.5_opensearch_3.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -118,6 +108,10 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby2_keywords (0.0.5) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -157,7 +151,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_2.5_opensearch_latest.gemfile b/gemfiles/ruby_2.5_opensearch_latest.gemfile index 1b6b732cad0..2ad862d8481 100644 --- a/gemfiles/ruby_2.5_opensearch_latest.gemfile +++ b/gemfiles/ruby_2.5_opensearch_latest.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.5_opensearch_latest.gemfile.lock b/gemfiles/ruby_2.5_opensearch_latest.gemfile.lock index be32d5c9d63..46c0bd5e820 100644 --- a/gemfiles/ruby_2.5_opensearch_latest.gemfile.lock +++ b/gemfiles/ruby_2.5_opensearch_latest.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -119,6 +109,10 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby2_keywords (0.0.5) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -157,7 +151,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_2.5_rack_1.gemfile b/gemfiles/ruby_2.5_rack_1.gemfile index bbcd0b2fa87..353fa0f7cf2 100644 --- a/gemfiles/ruby_2.5_rack_1.gemfile +++ b/gemfiles/ruby_2.5_rack_1.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.5_rack_1.gemfile.lock b/gemfiles/ruby_2.5_rack_1.gemfile.lock index 62b445f3f1f..c5e4ebfb88e 100644 --- a/gemfiles/ruby_2.5_rack_1.gemfile.lock +++ b/gemfiles/ruby_2.5_rack_1.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -92,6 +82,10 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -133,7 +127,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_2.5_rack_2.gemfile b/gemfiles/ruby_2.5_rack_2.gemfile index 039a866b0be..c6c0a3038cb 100644 --- a/gemfiles/ruby_2.5_rack_2.gemfile +++ b/gemfiles/ruby_2.5_rack_2.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.5_rack_2.gemfile.lock b/gemfiles/ruby_2.5_rack_2.gemfile.lock index 2a9f3372bc3..b03828877c6 100644 --- a/gemfiles/ruby_2.5_rack_2.gemfile.lock +++ b/gemfiles/ruby_2.5_rack_2.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -92,6 +82,10 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -133,7 +127,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_2.5_rack_3.gemfile b/gemfiles/ruby_2.5_rack_3.gemfile index 0d74d695b82..9c0a296666a 100644 --- a/gemfiles/ruby_2.5_rack_3.gemfile +++ b/gemfiles/ruby_2.5_rack_3.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.5_rack_3.gemfile.lock b/gemfiles/ruby_2.5_rack_3.gemfile.lock index 1ac6a451c87..7f6e863fb92 100644 --- a/gemfiles/ruby_2.5_rack_3.gemfile.lock +++ b/gemfiles/ruby_2.5_rack_3.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -92,6 +82,10 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -133,7 +127,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_2.5_rack_latest.gemfile b/gemfiles/ruby_2.5_rack_latest.gemfile index 0165644932d..b96d9caf39a 100644 --- a/gemfiles/ruby_2.5_rack_latest.gemfile +++ b/gemfiles/ruby_2.5_rack_latest.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.5_rack_latest.gemfile.lock b/gemfiles/ruby_2.5_rack_latest.gemfile.lock index 680dc9e6049..8a15909aee9 100644 --- a/gemfiles/ruby_2.5_rack_latest.gemfile.lock +++ b/gemfiles/ruby_2.5_rack_latest.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -95,6 +85,10 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -135,7 +129,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_2.5_rails4_mysql2.gemfile b/gemfiles/ruby_2.5_rails4_mysql2.gemfile index a3ecf74d758..6948ab5aaab 100644 --- a/gemfiles/ruby_2.5_rails4_mysql2.gemfile +++ b/gemfiles/ruby_2.5_rails4_mysql2.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.5_rails4_mysql2.gemfile.lock b/gemfiles/ruby_2.5_rails4_mysql2.gemfile.lock index 8f8cf2a131b..2a0b7ee2a0f 100644 --- a/gemfiles/ruby_2.5_rails4_mysql2.gemfile.lock +++ b/gemfiles/ruby_2.5_rails4_mysql2.gemfile.lock @@ -54,16 +54,6 @@ GIT rake (>= 0.8.7) thor (>= 0.18.1, < 2.0) -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -204,6 +194,10 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -257,7 +251,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_2.5_rails4_postgres.gemfile b/gemfiles/ruby_2.5_rails4_postgres.gemfile index 1973f9c7b94..645a14c4b7f 100644 --- a/gemfiles/ruby_2.5_rails4_postgres.gemfile +++ b/gemfiles/ruby_2.5_rails4_postgres.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.5_rails4_postgres.gemfile.lock b/gemfiles/ruby_2.5_rails4_postgres.gemfile.lock index 706f54e5188..92bf123ad3a 100644 --- a/gemfiles/ruby_2.5_rails4_postgres.gemfile.lock +++ b/gemfiles/ruby_2.5_rails4_postgres.gemfile.lock @@ -54,16 +54,6 @@ GIT rake (>= 0.8.7) thor (>= 0.18.1, < 2.0) -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -204,6 +194,10 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -257,7 +251,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_2.5_rails4_postgres_redis.gemfile b/gemfiles/ruby_2.5_rails4_postgres_redis.gemfile index 0243d634c4d..cfa3df1ca31 100644 --- a/gemfiles/ruby_2.5_rails4_postgres_redis.gemfile +++ b/gemfiles/ruby_2.5_rails4_postgres_redis.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.5_rails4_postgres_redis.gemfile.lock b/gemfiles/ruby_2.5_rails4_postgres_redis.gemfile.lock index 67ad69571bd..43ad457e055 100644 --- a/gemfiles/ruby_2.5_rails4_postgres_redis.gemfile.lock +++ b/gemfiles/ruby_2.5_rails4_postgres_redis.gemfile.lock @@ -54,16 +54,6 @@ GIT rake (>= 0.8.7) thor (>= 0.18.1, < 2.0) -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -221,6 +211,10 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -276,7 +270,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_2.5_rails4_postgres_sidekiq.gemfile b/gemfiles/ruby_2.5_rails4_postgres_sidekiq.gemfile index fd777daa147..54263f69046 100644 --- a/gemfiles/ruby_2.5_rails4_postgres_sidekiq.gemfile +++ b/gemfiles/ruby_2.5_rails4_postgres_sidekiq.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.5_rails4_postgres_sidekiq.gemfile.lock b/gemfiles/ruby_2.5_rails4_postgres_sidekiq.gemfile.lock index 30b97e06f97..13e57e93040 100644 --- a/gemfiles/ruby_2.5_rails4_postgres_sidekiq.gemfile.lock +++ b/gemfiles/ruby_2.5_rails4_postgres_sidekiq.gemfile.lock @@ -51,16 +51,6 @@ GIT rake (>= 0.8.7) thor (>= 0.18.1, < 2.0) -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -213,6 +203,10 @@ GEM rack (< 2.1.0) rack-protection (>= 1.5.0) redis (>= 3.3.5, < 5) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -268,7 +262,7 @@ DEPENDENCIES rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) sidekiq - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_2.5_rails4_semantic_logger.gemfile b/gemfiles/ruby_2.5_rails4_semantic_logger.gemfile index 342ccae0881..6aab58152c0 100644 --- a/gemfiles/ruby_2.5_rails4_semantic_logger.gemfile +++ b/gemfiles/ruby_2.5_rails4_semantic_logger.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.5_rails4_semantic_logger.gemfile.lock b/gemfiles/ruby_2.5_rails4_semantic_logger.gemfile.lock index cb1b4a166db..b85884431d0 100644 --- a/gemfiles/ruby_2.5_rails4_semantic_logger.gemfile.lock +++ b/gemfiles/ruby_2.5_rails4_semantic_logger.gemfile.lock @@ -54,16 +54,6 @@ GIT rake (>= 0.8.7) thor (>= 0.18.1, < 2.0) -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -203,6 +193,10 @@ GEM rspec-core (>= 2, < 4, != 2.12.0) semantic_logger (4.15.0) concurrent-ruby (~> 1.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -256,7 +250,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_2.5_rails5_mysql2.gemfile b/gemfiles/ruby_2.5_rails5_mysql2.gemfile index 66e9d4943fb..c53c8662f75 100644 --- a/gemfiles/ruby_2.5_rails5_mysql2.gemfile +++ b/gemfiles/ruby_2.5_rails5_mysql2.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.5_rails5_mysql2.gemfile.lock b/gemfiles/ruby_2.5_rails5_mysql2.gemfile.lock index 711de169e39..420155653c3 100644 --- a/gemfiles/ruby_2.5_rails5_mysql2.gemfile.lock +++ b/gemfiles/ruby_2.5_rails5_mysql2.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -187,6 +177,10 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -243,7 +237,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_2.5_rails5_postgres.gemfile b/gemfiles/ruby_2.5_rails5_postgres.gemfile index b9ef8f3253c..07fc7475b53 100644 --- a/gemfiles/ruby_2.5_rails5_postgres.gemfile +++ b/gemfiles/ruby_2.5_rails5_postgres.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.5_rails5_postgres.gemfile.lock b/gemfiles/ruby_2.5_rails5_postgres.gemfile.lock index d9197b5cb4b..597867eb6ee 100644 --- a/gemfiles/ruby_2.5_rails5_postgres.gemfile.lock +++ b/gemfiles/ruby_2.5_rails5_postgres.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -205,6 +195,10 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -261,7 +255,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_2.5_rails5_postgres_redis.gemfile b/gemfiles/ruby_2.5_rails5_postgres_redis.gemfile index 13382573bb2..9fe092c3327 100644 --- a/gemfiles/ruby_2.5_rails5_postgres_redis.gemfile +++ b/gemfiles/ruby_2.5_rails5_postgres_redis.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.5_rails5_postgres_redis.gemfile.lock b/gemfiles/ruby_2.5_rails5_postgres_redis.gemfile.lock index 339c629c153..5f0841deb42 100644 --- a/gemfiles/ruby_2.5_rails5_postgres_redis.gemfile.lock +++ b/gemfiles/ruby_2.5_rails5_postgres_redis.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -210,6 +200,10 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -267,7 +261,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_2.5_rails5_postgres_redis_activesupport.gemfile b/gemfiles/ruby_2.5_rails5_postgres_redis_activesupport.gemfile index 29b954cacaa..c391635848f 100644 --- a/gemfiles/ruby_2.5_rails5_postgres_redis_activesupport.gemfile +++ b/gemfiles/ruby_2.5_rails5_postgres_redis_activesupport.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.5_rails5_postgres_redis_activesupport.gemfile.lock b/gemfiles/ruby_2.5_rails5_postgres_redis_activesupport.gemfile.lock index 8e835669d50..d7c25fc2231 100644 --- a/gemfiles/ruby_2.5_rails5_postgres_redis_activesupport.gemfile.lock +++ b/gemfiles/ruby_2.5_rails5_postgres_redis_activesupport.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -222,6 +212,10 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -281,7 +275,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_2.5_rails5_postgres_sidekiq.gemfile b/gemfiles/ruby_2.5_rails5_postgres_sidekiq.gemfile index 7fdeaaa0770..7c87878acd7 100644 --- a/gemfiles/ruby_2.5_rails5_postgres_sidekiq.gemfile +++ b/gemfiles/ruby_2.5_rails5_postgres_sidekiq.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.5_rails5_postgres_sidekiq.gemfile.lock b/gemfiles/ruby_2.5_rails5_postgres_sidekiq.gemfile.lock index f33349ed653..289c85fa4ba 100644 --- a/gemfiles/ruby_2.5_rails5_postgres_sidekiq.gemfile.lock +++ b/gemfiles/ruby_2.5_rails5_postgres_sidekiq.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -211,6 +201,10 @@ GEM connection_pool (>= 2.2.5, < 3) rack (~> 2.0) redis (>= 4.5.0, < 5) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -269,7 +263,7 @@ DEPENDENCIES rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) sidekiq - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_2.5_rails5_semantic_logger.gemfile b/gemfiles/ruby_2.5_rails5_semantic_logger.gemfile index 55b0e436e7e..6793e3f1cb2 100644 --- a/gemfiles/ruby_2.5_rails5_semantic_logger.gemfile +++ b/gemfiles/ruby_2.5_rails5_semantic_logger.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.5_rails5_semantic_logger.gemfile.lock b/gemfiles/ruby_2.5_rails5_semantic_logger.gemfile.lock index f71073e2009..ab4fce44e2c 100644 --- a/gemfiles/ruby_2.5_rails5_semantic_logger.gemfile.lock +++ b/gemfiles/ruby_2.5_rails5_semantic_logger.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -204,6 +194,10 @@ GEM rspec-core (>= 2, < 4, != 2.12.0) semantic_logger (4.12.0) concurrent-ruby (~> 1.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -260,7 +254,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_2.5_rails61_mysql2.gemfile b/gemfiles/ruby_2.5_rails61_mysql2.gemfile index fde871885f1..d5c8d28e2ed 100644 --- a/gemfiles/ruby_2.5_rails61_mysql2.gemfile +++ b/gemfiles/ruby_2.5_rails61_mysql2.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.5_rails61_mysql2.gemfile.lock b/gemfiles/ruby_2.5_rails61_mysql2.gemfile.lock index e34ff6f41a6..6c9280284d1 100644 --- a/gemfiles/ruby_2.5_rails61_mysql2.gemfile.lock +++ b/gemfiles/ruby_2.5_rails61_mysql2.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -206,6 +196,10 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -262,7 +256,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_2.5_rails61_postgres.gemfile b/gemfiles/ruby_2.5_rails61_postgres.gemfile index dc19a3d027f..b7ee63b4764 100644 --- a/gemfiles/ruby_2.5_rails61_postgres.gemfile +++ b/gemfiles/ruby_2.5_rails61_postgres.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.5_rails61_postgres.gemfile.lock b/gemfiles/ruby_2.5_rails61_postgres.gemfile.lock index 362e80f1afd..2be147be23a 100644 --- a/gemfiles/ruby_2.5_rails61_postgres.gemfile.lock +++ b/gemfiles/ruby_2.5_rails61_postgres.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -224,6 +214,10 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -280,7 +274,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_2.5_rails61_postgres_redis.gemfile b/gemfiles/ruby_2.5_rails61_postgres_redis.gemfile index f65ceea8ae3..4444d32022d 100644 --- a/gemfiles/ruby_2.5_rails61_postgres_redis.gemfile +++ b/gemfiles/ruby_2.5_rails61_postgres_redis.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.5_rails61_postgres_redis.gemfile.lock b/gemfiles/ruby_2.5_rails61_postgres_redis.gemfile.lock index d5f8ca8e5f4..3bee20296be 100644 --- a/gemfiles/ruby_2.5_rails61_postgres_redis.gemfile.lock +++ b/gemfiles/ruby_2.5_rails61_postgres_redis.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -229,6 +219,10 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -286,7 +280,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_2.5_rails61_postgres_sidekiq.gemfile b/gemfiles/ruby_2.5_rails61_postgres_sidekiq.gemfile index dab4854a51e..490afa6d076 100644 --- a/gemfiles/ruby_2.5_rails61_postgres_sidekiq.gemfile +++ b/gemfiles/ruby_2.5_rails61_postgres_sidekiq.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.5_rails61_postgres_sidekiq.gemfile.lock b/gemfiles/ruby_2.5_rails61_postgres_sidekiq.gemfile.lock index 72899654fdb..f11ffbba1fa 100644 --- a/gemfiles/ruby_2.5_rails61_postgres_sidekiq.gemfile.lock +++ b/gemfiles/ruby_2.5_rails61_postgres_sidekiq.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -230,6 +220,10 @@ GEM connection_pool (>= 2.2.5, < 3) rack (~> 2.0) redis (>= 4.5.0, < 5) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -287,7 +281,7 @@ DEPENDENCIES rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) sidekiq (>= 6.1.2) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_2.5_rails61_semantic_logger.gemfile b/gemfiles/ruby_2.5_rails61_semantic_logger.gemfile index fc8169abd2c..e55c1af9831 100644 --- a/gemfiles/ruby_2.5_rails61_semantic_logger.gemfile +++ b/gemfiles/ruby_2.5_rails61_semantic_logger.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.5_rails61_semantic_logger.gemfile.lock b/gemfiles/ruby_2.5_rails61_semantic_logger.gemfile.lock index b963236309b..edb159febbd 100644 --- a/gemfiles/ruby_2.5_rails61_semantic_logger.gemfile.lock +++ b/gemfiles/ruby_2.5_rails61_semantic_logger.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -223,6 +213,10 @@ GEM rspec-core (>= 2, < 4, != 2.12.0) semantic_logger (4.12.0) concurrent-ruby (~> 1.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -279,7 +273,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_2.5_rails6_mysql2.gemfile b/gemfiles/ruby_2.5_rails6_mysql2.gemfile index b754bb44b74..9b569307dd3 100644 --- a/gemfiles/ruby_2.5_rails6_mysql2.gemfile +++ b/gemfiles/ruby_2.5_rails6_mysql2.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.5_rails6_mysql2.gemfile.lock b/gemfiles/ruby_2.5_rails6_mysql2.gemfile.lock index 33d0f290a7a..05a6bbc426e 100644 --- a/gemfiles/ruby_2.5_rails6_mysql2.gemfile.lock +++ b/gemfiles/ruby_2.5_rails6_mysql2.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -202,6 +192,10 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -259,7 +253,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_2.5_rails6_postgres.gemfile b/gemfiles/ruby_2.5_rails6_postgres.gemfile index 0f0c43b0a5d..1ab716a8d05 100644 --- a/gemfiles/ruby_2.5_rails6_postgres.gemfile +++ b/gemfiles/ruby_2.5_rails6_postgres.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.5_rails6_postgres.gemfile.lock b/gemfiles/ruby_2.5_rails6_postgres.gemfile.lock index 19f4e422753..ffb68e5a423 100644 --- a/gemfiles/ruby_2.5_rails6_postgres.gemfile.lock +++ b/gemfiles/ruby_2.5_rails6_postgres.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -220,6 +210,10 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -277,7 +271,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_2.5_rails6_postgres_redis.gemfile b/gemfiles/ruby_2.5_rails6_postgres_redis.gemfile index 4135f8bf0af..2b07daa1087 100644 --- a/gemfiles/ruby_2.5_rails6_postgres_redis.gemfile +++ b/gemfiles/ruby_2.5_rails6_postgres_redis.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.5_rails6_postgres_redis.gemfile.lock b/gemfiles/ruby_2.5_rails6_postgres_redis.gemfile.lock index 64c92531a53..8b3f25301e5 100644 --- a/gemfiles/ruby_2.5_rails6_postgres_redis.gemfile.lock +++ b/gemfiles/ruby_2.5_rails6_postgres_redis.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -225,6 +215,10 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -283,7 +277,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_2.5_rails6_postgres_redis_activesupport.gemfile b/gemfiles/ruby_2.5_rails6_postgres_redis_activesupport.gemfile index 32cdb1ca168..32aed6c4b57 100644 --- a/gemfiles/ruby_2.5_rails6_postgres_redis_activesupport.gemfile +++ b/gemfiles/ruby_2.5_rails6_postgres_redis_activesupport.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.5_rails6_postgres_redis_activesupport.gemfile.lock b/gemfiles/ruby_2.5_rails6_postgres_redis_activesupport.gemfile.lock index 10d4a7d01ef..bad22ecf926 100644 --- a/gemfiles/ruby_2.5_rails6_postgres_redis_activesupport.gemfile.lock +++ b/gemfiles/ruby_2.5_rails6_postgres_redis_activesupport.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -237,6 +227,10 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -297,7 +291,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_2.5_rails6_postgres_sidekiq.gemfile b/gemfiles/ruby_2.5_rails6_postgres_sidekiq.gemfile index febcf73740b..661799d5dae 100644 --- a/gemfiles/ruby_2.5_rails6_postgres_sidekiq.gemfile +++ b/gemfiles/ruby_2.5_rails6_postgres_sidekiq.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.5_rails6_postgres_sidekiq.gemfile.lock b/gemfiles/ruby_2.5_rails6_postgres_sidekiq.gemfile.lock index 666ee6e08e2..092dafb32d3 100644 --- a/gemfiles/ruby_2.5_rails6_postgres_sidekiq.gemfile.lock +++ b/gemfiles/ruby_2.5_rails6_postgres_sidekiq.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -226,6 +216,10 @@ GEM connection_pool (>= 2.2.5, < 3) rack (~> 2.0) redis (>= 4.5.0, < 5) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -285,7 +279,7 @@ DEPENDENCIES rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) sidekiq - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_2.5_rails6_semantic_logger.gemfile b/gemfiles/ruby_2.5_rails6_semantic_logger.gemfile index f6f28c9eeac..9069d5a8ca9 100644 --- a/gemfiles/ruby_2.5_rails6_semantic_logger.gemfile +++ b/gemfiles/ruby_2.5_rails6_semantic_logger.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.5_rails6_semantic_logger.gemfile.lock b/gemfiles/ruby_2.5_rails6_semantic_logger.gemfile.lock index 0fb11344278..b108d109258 100644 --- a/gemfiles/ruby_2.5_rails6_semantic_logger.gemfile.lock +++ b/gemfiles/ruby_2.5_rails6_semantic_logger.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -219,6 +209,10 @@ GEM rspec-core (>= 2, < 4, != 2.12.0) semantic_logger (4.12.0) concurrent-ruby (~> 1.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -276,7 +270,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_2.5_rails_old_redis.gemfile b/gemfiles/ruby_2.5_rails_old_redis.gemfile index d2e76a8fba0..0f4665b105e 100644 --- a/gemfiles/ruby_2.5_rails_old_redis.gemfile +++ b/gemfiles/ruby_2.5_rails_old_redis.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.5_redis_3.gemfile b/gemfiles/ruby_2.5_redis_3.gemfile index f490491bdf9..7688741a055 100644 --- a/gemfiles/ruby_2.5_redis_3.gemfile +++ b/gemfiles/ruby_2.5_redis_3.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.5_redis_3.gemfile.lock b/gemfiles/ruby_2.5_redis_3.gemfile.lock index 339b00ef46a..f68cfc0289f 100644 --- a/gemfiles/ruby_2.5_redis_3.gemfile.lock +++ b/gemfiles/ruby_2.5_redis_3.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -88,6 +78,10 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -127,7 +121,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_2.5_redis_4.gemfile b/gemfiles/ruby_2.5_redis_4.gemfile index 2b7e0423307..d57c1134902 100644 --- a/gemfiles/ruby_2.5_redis_4.gemfile +++ b/gemfiles/ruby_2.5_redis_4.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.5_redis_4.gemfile.lock b/gemfiles/ruby_2.5_redis_4.gemfile.lock index 72a2c135888..55bc3e21140 100644 --- a/gemfiles/ruby_2.5_redis_4.gemfile.lock +++ b/gemfiles/ruby_2.5_redis_4.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -88,6 +78,10 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -127,7 +121,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_2.5_redis_5.gemfile b/gemfiles/ruby_2.5_redis_5.gemfile index 178602b15be..64e815b0871 100644 --- a/gemfiles/ruby_2.5_redis_5.gemfile +++ b/gemfiles/ruby_2.5_redis_5.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.5_redis_5.gemfile.lock b/gemfiles/ruby_2.5_redis_5.gemfile.lock index 4572b1f6a01..4f49bbe43fb 100644 --- a/gemfiles/ruby_2.5_redis_5.gemfile.lock +++ b/gemfiles/ruby_2.5_redis_5.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -92,6 +82,10 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -131,7 +125,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_2.5_relational_db.gemfile b/gemfiles/ruby_2.5_relational_db.gemfile index 327f1c9546e..f97c305c37d 100644 --- a/gemfiles/ruby_2.5_relational_db.gemfile +++ b/gemfiles/ruby_2.5_relational_db.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.5_relational_db.gemfile.lock b/gemfiles/ruby_2.5_relational_db.gemfile.lock index 1e43ca2f328..f70cb825253 100644 --- a/gemfiles/ruby_2.5_relational_db.gemfile.lock +++ b/gemfiles/ruby_2.5_relational_db.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -114,6 +104,10 @@ GEM rspec-core (>= 2, < 4, != 2.12.0) sequel (5.83.1) bigdecimal + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -163,7 +157,7 @@ DEPENDENCIES rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) sequel - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sqlite3 (~> 1.4.1) warning (~> 1) diff --git a/gemfiles/ruby_2.5_resque2_redis3.gemfile b/gemfiles/ruby_2.5_resque2_redis3.gemfile index 3a806751698..cddc046a26d 100644 --- a/gemfiles/ruby_2.5_resque2_redis3.gemfile +++ b/gemfiles/ruby_2.5_resque2_redis3.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.5_resque2_redis3.gemfile.lock b/gemfiles/ruby_2.5_resque2_redis3.gemfile.lock index 28ae6ab1725..47bc849f00a 100644 --- a/gemfiles/ruby_2.5_resque2_redis3.gemfile.lock +++ b/gemfiles/ruby_2.5_resque2_redis3.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -103,6 +93,10 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby2_keywords (0.0.5) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -149,7 +143,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_2.5_resque2_redis4.gemfile b/gemfiles/ruby_2.5_resque2_redis4.gemfile index e6628a6c6fc..b47268352c7 100644 --- a/gemfiles/ruby_2.5_resque2_redis4.gemfile +++ b/gemfiles/ruby_2.5_resque2_redis4.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.5_resque2_redis4.gemfile.lock b/gemfiles/ruby_2.5_resque2_redis4.gemfile.lock index d45b0cef799..9ed5630e690 100644 --- a/gemfiles/ruby_2.5_resque2_redis4.gemfile.lock +++ b/gemfiles/ruby_2.5_resque2_redis4.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -107,6 +97,10 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby2_keywords (0.0.5) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -153,7 +147,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_2.5_sinatra_2.gemfile b/gemfiles/ruby_2.5_sinatra_2.gemfile index 9d275510750..c968fd51803 100644 --- a/gemfiles/ruby_2.5_sinatra_2.gemfile +++ b/gemfiles/ruby_2.5_sinatra_2.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.5_sinatra_2.gemfile.lock b/gemfiles/ruby_2.5_sinatra_2.gemfile.lock index 051d70daa01..cb4d824b37a 100644 --- a/gemfiles/ruby_2.5_sinatra_2.gemfile.lock +++ b/gemfiles/ruby_2.5_sinatra_2.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -101,6 +91,10 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby2_keywords (0.0.5) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -147,7 +141,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sinatra (~> 2) warning (~> 1) diff --git a/gemfiles/ruby_2.5_stripe_10.gemfile b/gemfiles/ruby_2.5_stripe_10.gemfile index 25c4375e490..ee8f64cfe28 100644 --- a/gemfiles/ruby_2.5_stripe_10.gemfile +++ b/gemfiles/ruby_2.5_stripe_10.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.5_stripe_10.gemfile.lock b/gemfiles/ruby_2.5_stripe_10.gemfile.lock index d573a983788..a5c183c5918 100644 --- a/gemfiles/ruby_2.5_stripe_10.gemfile.lock +++ b/gemfiles/ruby_2.5_stripe_10.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -91,6 +81,10 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -130,7 +124,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 10) warning (~> 1) diff --git a/gemfiles/ruby_2.5_stripe_11.gemfile b/gemfiles/ruby_2.5_stripe_11.gemfile index dded38b5802..970ad916c47 100644 --- a/gemfiles/ruby_2.5_stripe_11.gemfile +++ b/gemfiles/ruby_2.5_stripe_11.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.5_stripe_11.gemfile.lock b/gemfiles/ruby_2.5_stripe_11.gemfile.lock index 1f4090efd05..af0102edd72 100644 --- a/gemfiles/ruby_2.5_stripe_11.gemfile.lock +++ b/gemfiles/ruby_2.5_stripe_11.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -91,6 +81,10 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -130,7 +124,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 11) warning (~> 1) diff --git a/gemfiles/ruby_2.5_stripe_12.gemfile b/gemfiles/ruby_2.5_stripe_12.gemfile index 0572b1e6eb1..cec8f5c5bcd 100644 --- a/gemfiles/ruby_2.5_stripe_12.gemfile +++ b/gemfiles/ruby_2.5_stripe_12.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.5_stripe_12.gemfile.lock b/gemfiles/ruby_2.5_stripe_12.gemfile.lock index 6baa0413510..574ef8b7173 100644 --- a/gemfiles/ruby_2.5_stripe_12.gemfile.lock +++ b/gemfiles/ruby_2.5_stripe_12.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -91,6 +81,10 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -130,7 +124,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 12) warning (~> 1) diff --git a/gemfiles/ruby_2.5_stripe_7.gemfile b/gemfiles/ruby_2.5_stripe_7.gemfile index 5a3fa1e241c..580a0293aa1 100644 --- a/gemfiles/ruby_2.5_stripe_7.gemfile +++ b/gemfiles/ruby_2.5_stripe_7.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.5_stripe_7.gemfile.lock b/gemfiles/ruby_2.5_stripe_7.gemfile.lock index f772ff035b6..828c78b9e29 100644 --- a/gemfiles/ruby_2.5_stripe_7.gemfile.lock +++ b/gemfiles/ruby_2.5_stripe_7.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -91,6 +81,10 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -130,7 +124,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 7) warning (~> 1) diff --git a/gemfiles/ruby_2.5_stripe_8.gemfile b/gemfiles/ruby_2.5_stripe_8.gemfile index b409510dc13..dce97367919 100644 --- a/gemfiles/ruby_2.5_stripe_8.gemfile +++ b/gemfiles/ruby_2.5_stripe_8.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.5_stripe_8.gemfile.lock b/gemfiles/ruby_2.5_stripe_8.gemfile.lock index 62130a60acc..d5499c575d0 100644 --- a/gemfiles/ruby_2.5_stripe_8.gemfile.lock +++ b/gemfiles/ruby_2.5_stripe_8.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -91,6 +81,10 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -130,7 +124,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 8) warning (~> 1) diff --git a/gemfiles/ruby_2.5_stripe_9.gemfile b/gemfiles/ruby_2.5_stripe_9.gemfile index ca224503071..196ba6977e3 100644 --- a/gemfiles/ruby_2.5_stripe_9.gemfile +++ b/gemfiles/ruby_2.5_stripe_9.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.5_stripe_9.gemfile.lock b/gemfiles/ruby_2.5_stripe_9.gemfile.lock index 96bb62b76e2..71a29877373 100644 --- a/gemfiles/ruby_2.5_stripe_9.gemfile.lock +++ b/gemfiles/ruby_2.5_stripe_9.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -91,6 +81,10 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -130,7 +124,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 9) warning (~> 1) diff --git a/gemfiles/ruby_2.5_stripe_latest.gemfile b/gemfiles/ruby_2.5_stripe_latest.gemfile index 362b1fc9ca6..5867634b528 100644 --- a/gemfiles/ruby_2.5_stripe_latest.gemfile +++ b/gemfiles/ruby_2.5_stripe_latest.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.5_stripe_latest.gemfile.lock b/gemfiles/ruby_2.5_stripe_latest.gemfile.lock index a86f084f2fc..5aee1529417 100644 --- a/gemfiles/ruby_2.5_stripe_latest.gemfile.lock +++ b/gemfiles/ruby_2.5_stripe_latest.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -90,6 +80,10 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -128,7 +122,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) stripe warning (~> 1) diff --git a/gemfiles/ruby_2.5_stripe_min.gemfile b/gemfiles/ruby_2.5_stripe_min.gemfile index 68427c9b543..b796d9edd1c 100644 --- a/gemfiles/ruby_2.5_stripe_min.gemfile +++ b/gemfiles/ruby_2.5_stripe_min.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.5_stripe_min.gemfile.lock b/gemfiles/ruby_2.5_stripe_min.gemfile.lock index da9397e8e6f..b720cdabde4 100644 --- a/gemfiles/ruby_2.5_stripe_min.gemfile.lock +++ b/gemfiles/ruby_2.5_stripe_min.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -90,6 +80,10 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -128,7 +122,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) stripe (= 5.15.0) warning (~> 1) diff --git a/gemfiles/ruby_2.6_activesupport.gemfile b/gemfiles/ruby_2.6_activesupport.gemfile index 48b6d7b153c..6a09f4856a6 100644 --- a/gemfiles/ruby_2.6_activesupport.gemfile +++ b/gemfiles/ruby_2.6_activesupport.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.6_activesupport.gemfile.lock b/gemfiles/ruby_2.6_activesupport.gemfile.lock index 007706e59bd..513400fd561 100644 --- a/gemfiles/ruby_2.6_activesupport.gemfile.lock +++ b/gemfiles/ruby_2.6_activesupport.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -230,6 +220,10 @@ GEM digest-crc ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -286,7 +280,7 @@ DEPENDENCIES rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) ruby-kafka (>= 0.7.10) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_2.6_aws.gemfile b/gemfiles/ruby_2.6_aws.gemfile index 1dc352e3dac..d23f64885c6 100644 --- a/gemfiles/ruby_2.6_aws.gemfile +++ b/gemfiles/ruby_2.6_aws.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.6_aws.gemfile.lock b/gemfiles/ruby_2.6_aws.gemfile.lock index 3c96fe1b541..53728421e2e 100644 --- a/gemfiles/ruby_2.6_aws.gemfile.lock +++ b/gemfiles/ruby_2.6_aws.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -1547,6 +1537,10 @@ GEM aws-sdk-core (>= 2) concurrent-ruby thor + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -1593,7 +1587,7 @@ DEPENDENCIES rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) shoryuken - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_2.6_contrib.gemfile b/gemfiles/ruby_2.6_contrib.gemfile index 9270cf44dde..071e59dfa32 100644 --- a/gemfiles/ruby_2.6_contrib.gemfile +++ b/gemfiles/ruby_2.6_contrib.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.6_contrib.gemfile.lock b/gemfiles/ruby_2.6_contrib.gemfile.lock index 670be6cb17e..7d063127207 100644 --- a/gemfiles/ruby_2.6_contrib.gemfile.lock +++ b/gemfiles/ruby_2.6_contrib.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -168,6 +158,10 @@ GEM rack (~> 2.0) redis (>= 4.5.0, < 5) sigdump (0.2.4) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -239,7 +233,7 @@ DEPENDENCIES rubocop-rspec (~> 2.20, < 2.21) semantic_logger (~> 4.0) sidekiq (~> 6.5) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sneakers (>= 2.12.0) sucker_punch diff --git a/gemfiles/ruby_2.6_contrib_old.gemfile b/gemfiles/ruby_2.6_contrib_old.gemfile index d5ba6888425..50f9e78d306 100644 --- a/gemfiles/ruby_2.6_contrib_old.gemfile +++ b/gemfiles/ruby_2.6_contrib_old.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.6_contrib_old.gemfile.lock b/gemfiles/ruby_2.6_contrib_old.gemfile.lock index 1f5b283560f..a8be46cb89f 100644 --- a/gemfiles/ruby_2.6_contrib_old.gemfile.lock +++ b/gemfiles/ruby_2.6_contrib_old.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -159,6 +149,10 @@ GEM rusage (0.2.0) sentry-raven (0.15.6) faraday (>= 0.7.6) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -220,7 +214,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_2.6_core_old.gemfile b/gemfiles/ruby_2.6_core_old.gemfile index 51127e7018b..bd22732f425 100644 --- a/gemfiles/ruby_2.6_core_old.gemfile +++ b/gemfiles/ruby_2.6_core_old.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.6_core_old.gemfile.lock b/gemfiles/ruby_2.6_core_old.gemfile.lock index d9a4bf1b21f..ea6af13542c 100644 --- a/gemfiles/ruby_2.6_core_old.gemfile.lock +++ b/gemfiles/ruby_2.6_core_old.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -119,6 +109,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -162,7 +156,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_2.6_elasticsearch_7.gemfile b/gemfiles/ruby_2.6_elasticsearch_7.gemfile index 18646538d77..8c0b6dd37a3 100644 --- a/gemfiles/ruby_2.6_elasticsearch_7.gemfile +++ b/gemfiles/ruby_2.6_elasticsearch_7.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.6_elasticsearch_7.gemfile.lock b/gemfiles/ruby_2.6_elasticsearch_7.gemfile.lock index a29fc91e410..7fa1a7fcc4b 100644 --- a/gemfiles/ruby_2.6_elasticsearch_7.gemfile.lock +++ b/gemfiles/ruby_2.6_elasticsearch_7.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -140,6 +130,10 @@ GEM rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -184,7 +178,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_2.6_elasticsearch_8.gemfile b/gemfiles/ruby_2.6_elasticsearch_8.gemfile index 990efceb5a4..d6cf6d0e779 100644 --- a/gemfiles/ruby_2.6_elasticsearch_8.gemfile +++ b/gemfiles/ruby_2.6_elasticsearch_8.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.6_elasticsearch_8.gemfile.lock b/gemfiles/ruby_2.6_elasticsearch_8.gemfile.lock index 6def7dd6ab4..02d7dc5e450 100644 --- a/gemfiles/ruby_2.6_elasticsearch_8.gemfile.lock +++ b/gemfiles/ruby_2.6_elasticsearch_8.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -139,6 +129,10 @@ GEM rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -183,7 +177,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_2.6_elasticsearch_latest.gemfile b/gemfiles/ruby_2.6_elasticsearch_latest.gemfile index 5c792ff8b08..716b9363a89 100644 --- a/gemfiles/ruby_2.6_elasticsearch_latest.gemfile +++ b/gemfiles/ruby_2.6_elasticsearch_latest.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.6_elasticsearch_latest.gemfile.lock b/gemfiles/ruby_2.6_elasticsearch_latest.gemfile.lock index dff86247bb3..73d535f7ebb 100644 --- a/gemfiles/ruby_2.6_elasticsearch_latest.gemfile.lock +++ b/gemfiles/ruby_2.6_elasticsearch_latest.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -140,6 +130,10 @@ GEM rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -183,7 +177,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_2.6_graphql_1.13.gemfile b/gemfiles/ruby_2.6_graphql_1.13.gemfile index 73aa71c8048..d7a6e2e9863 100644 --- a/gemfiles/ruby_2.6_graphql_1.13.gemfile +++ b/gemfiles/ruby_2.6_graphql_1.13.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.6_graphql_1.13.gemfile.lock b/gemfiles/ruby_2.6_graphql_1.13.gemfile.lock index f92c2d9d115..047b0c2966f 100644 --- a/gemfiles/ruby_2.6_graphql_1.13.gemfile.lock +++ b/gemfiles/ruby_2.6_graphql_1.13.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -254,6 +244,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -316,7 +310,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_2.6_graphql_2.0.gemfile b/gemfiles/ruby_2.6_graphql_2.0.gemfile index 330a837ae6e..dd08a725fe9 100644 --- a/gemfiles/ruby_2.6_graphql_2.0.gemfile +++ b/gemfiles/ruby_2.6_graphql_2.0.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.6_graphql_2.0.gemfile.lock b/gemfiles/ruby_2.6_graphql_2.0.gemfile.lock index f5d11fa0340..811dec26f75 100644 --- a/gemfiles/ruby_2.6_graphql_2.0.gemfile.lock +++ b/gemfiles/ruby_2.6_graphql_2.0.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -254,6 +244,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -316,7 +310,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_2.6_hanami_1.gemfile b/gemfiles/ruby_2.6_hanami_1.gemfile index d029867dc55..293fde87aa5 100644 --- a/gemfiles/ruby_2.6_hanami_1.gemfile +++ b/gemfiles/ruby_2.6_hanami_1.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.6_hanami_1.gemfile.lock b/gemfiles/ruby_2.6_hanami_1.gemfile.lock index 4cc8e6be2f2..2f1cd1c3424 100644 --- a/gemfiles/ruby_2.6_hanami_1.gemfile.lock +++ b/gemfiles/ruby_2.6_hanami_1.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -212,6 +202,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -263,7 +257,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_2.6_http.gemfile b/gemfiles/ruby_2.6_http.gemfile index 0cdb6a2a2b3..f0465c4837a 100644 --- a/gemfiles/ruby_2.6_http.gemfile +++ b/gemfiles/ruby_2.6_http.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.6_http.gemfile.lock b/gemfiles/ruby_2.6_http.gemfile.lock index cfbfbe9f17a..a18f10ab564 100644 --- a/gemfiles/ruby_2.6_http.gemfile.lock +++ b/gemfiles/ruby_2.6_http.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -156,6 +146,10 @@ GEM rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -210,7 +204,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) typhoeus warning (~> 1) diff --git a/gemfiles/ruby_2.6_opensearch_2.gemfile b/gemfiles/ruby_2.6_opensearch_2.gemfile index 0e429b92efc..1a99748f2d1 100644 --- a/gemfiles/ruby_2.6_opensearch_2.gemfile +++ b/gemfiles/ruby_2.6_opensearch_2.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.6_opensearch_2.gemfile.lock b/gemfiles/ruby_2.6_opensearch_2.gemfile.lock index 298b66f389f..7a44c869cec 100644 --- a/gemfiles/ruby_2.6_opensearch_2.gemfile.lock +++ b/gemfiles/ruby_2.6_opensearch_2.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -139,6 +129,10 @@ GEM rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -183,7 +177,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_2.6_opensearch_3.gemfile b/gemfiles/ruby_2.6_opensearch_3.gemfile index f4109662b70..6c492eebcde 100644 --- a/gemfiles/ruby_2.6_opensearch_3.gemfile +++ b/gemfiles/ruby_2.6_opensearch_3.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.6_opensearch_3.gemfile.lock b/gemfiles/ruby_2.6_opensearch_3.gemfile.lock index d5aca8518f1..ba710a9aa49 100644 --- a/gemfiles/ruby_2.6_opensearch_3.gemfile.lock +++ b/gemfiles/ruby_2.6_opensearch_3.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -134,6 +124,10 @@ GEM rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -178,7 +172,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_2.6_opensearch_latest.gemfile b/gemfiles/ruby_2.6_opensearch_latest.gemfile index 4dc27d82408..fe2793dc660 100644 --- a/gemfiles/ruby_2.6_opensearch_latest.gemfile +++ b/gemfiles/ruby_2.6_opensearch_latest.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.6_opensearch_latest.gemfile.lock b/gemfiles/ruby_2.6_opensearch_latest.gemfile.lock index d764f6519a4..426734f8662 100644 --- a/gemfiles/ruby_2.6_opensearch_latest.gemfile.lock +++ b/gemfiles/ruby_2.6_opensearch_latest.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -135,6 +125,10 @@ GEM rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -178,7 +172,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_2.6_opentelemetry.gemfile b/gemfiles/ruby_2.6_opentelemetry.gemfile index 999ad79638f..5d67345a1fc 100644 --- a/gemfiles/ruby_2.6_opentelemetry.gemfile +++ b/gemfiles/ruby_2.6_opentelemetry.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.6_opentelemetry.gemfile.lock b/gemfiles/ruby_2.6_opentelemetry.gemfile.lock index 5fd5563348a..eebd5e1cd52 100755 --- a/gemfiles/ruby_2.6_opentelemetry.gemfile.lock +++ b/gemfiles/ruby_2.6_opentelemetry.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -131,6 +121,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -175,7 +169,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_2.6_opentelemetry_otlp.gemfile b/gemfiles/ruby_2.6_opentelemetry_otlp.gemfile index 15637f77946..31d41f53cac 100644 --- a/gemfiles/ruby_2.6_opentelemetry_otlp.gemfile +++ b/gemfiles/ruby_2.6_opentelemetry_otlp.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.6_opentelemetry_otlp.gemfile.lock b/gemfiles/ruby_2.6_opentelemetry_otlp.gemfile.lock index c961b165c02..c487afac955 100644 --- a/gemfiles/ruby_2.6_opentelemetry_otlp.gemfile.lock +++ b/gemfiles/ruby_2.6_opentelemetry_otlp.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -145,6 +135,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -189,7 +183,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_2.6_rack_1.gemfile b/gemfiles/ruby_2.6_rack_1.gemfile index f53cbc15399..652843fc4b9 100644 --- a/gemfiles/ruby_2.6_rack_1.gemfile +++ b/gemfiles/ruby_2.6_rack_1.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.6_rack_1.gemfile.lock b/gemfiles/ruby_2.6_rack_1.gemfile.lock index 057a40e0b42..cd3d0eb648b 100644 --- a/gemfiles/ruby_2.6_rack_1.gemfile.lock +++ b/gemfiles/ruby_2.6_rack_1.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -126,6 +116,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -172,7 +166,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_2.6_rack_2.gemfile b/gemfiles/ruby_2.6_rack_2.gemfile index 04c86fcfeba..ec0147d198e 100644 --- a/gemfiles/ruby_2.6_rack_2.gemfile +++ b/gemfiles/ruby_2.6_rack_2.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.6_rack_2.gemfile.lock b/gemfiles/ruby_2.6_rack_2.gemfile.lock index 3e66da62b55..bed1678e123 100644 --- a/gemfiles/ruby_2.6_rack_2.gemfile.lock +++ b/gemfiles/ruby_2.6_rack_2.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -126,6 +116,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -172,7 +166,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_2.6_rack_3.gemfile b/gemfiles/ruby_2.6_rack_3.gemfile index 42db737efc0..6777d994708 100644 --- a/gemfiles/ruby_2.6_rack_3.gemfile +++ b/gemfiles/ruby_2.6_rack_3.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.6_rack_3.gemfile.lock b/gemfiles/ruby_2.6_rack_3.gemfile.lock index 59096f03914..aed1bde163c 100644 --- a/gemfiles/ruby_2.6_rack_3.gemfile.lock +++ b/gemfiles/ruby_2.6_rack_3.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -126,6 +116,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -172,7 +166,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_2.6_rack_latest.gemfile b/gemfiles/ruby_2.6_rack_latest.gemfile index b69f9ce1178..1f791c94be3 100644 --- a/gemfiles/ruby_2.6_rack_latest.gemfile +++ b/gemfiles/ruby_2.6_rack_latest.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.6_rack_latest.gemfile.lock b/gemfiles/ruby_2.6_rack_latest.gemfile.lock index 241128453b4..ef26bb05697 100644 --- a/gemfiles/ruby_2.6_rack_latest.gemfile.lock +++ b/gemfiles/ruby_2.6_rack_latest.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -129,6 +119,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -174,7 +168,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_2.6_rails5_mysql2.gemfile b/gemfiles/ruby_2.6_rails5_mysql2.gemfile index 718ff6aa1b3..ad8a2f84b23 100644 --- a/gemfiles/ruby_2.6_rails5_mysql2.gemfile +++ b/gemfiles/ruby_2.6_rails5_mysql2.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.6_rails5_mysql2.gemfile.lock b/gemfiles/ruby_2.6_rails5_mysql2.gemfile.lock index 22e580615c8..49d57add690 100644 --- a/gemfiles/ruby_2.6_rails5_mysql2.gemfile.lock +++ b/gemfiles/ruby_2.6_rails5_mysql2.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -230,6 +220,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -291,7 +285,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_2.6_rails5_postgres.gemfile b/gemfiles/ruby_2.6_rails5_postgres.gemfile index 6f2fef4a19d..4e46002aa59 100644 --- a/gemfiles/ruby_2.6_rails5_postgres.gemfile +++ b/gemfiles/ruby_2.6_rails5_postgres.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.6_rails5_postgres.gemfile.lock b/gemfiles/ruby_2.6_rails5_postgres.gemfile.lock index b56248cf371..b2025347c16 100644 --- a/gemfiles/ruby_2.6_rails5_postgres.gemfile.lock +++ b/gemfiles/ruby_2.6_rails5_postgres.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -230,6 +220,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -291,7 +285,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_2.6_rails5_postgres_redis.gemfile b/gemfiles/ruby_2.6_rails5_postgres_redis.gemfile index 84a9b4fa68a..fc43c4c0859 100644 --- a/gemfiles/ruby_2.6_rails5_postgres_redis.gemfile +++ b/gemfiles/ruby_2.6_rails5_postgres_redis.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.6_rails5_postgres_redis.gemfile.lock b/gemfiles/ruby_2.6_rails5_postgres_redis.gemfile.lock index 5a62196473f..8d2faae11fb 100644 --- a/gemfiles/ruby_2.6_rails5_postgres_redis.gemfile.lock +++ b/gemfiles/ruby_2.6_rails5_postgres_redis.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -231,6 +221,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -293,7 +287,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_2.6_rails5_postgres_redis_activesupport.gemfile b/gemfiles/ruby_2.6_rails5_postgres_redis_activesupport.gemfile index e8c003504f3..764e629470a 100644 --- a/gemfiles/ruby_2.6_rails5_postgres_redis_activesupport.gemfile +++ b/gemfiles/ruby_2.6_rails5_postgres_redis_activesupport.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.6_rails5_postgres_redis_activesupport.gemfile.lock b/gemfiles/ruby_2.6_rails5_postgres_redis_activesupport.gemfile.lock index 5588224c138..f6febd8ca81 100644 --- a/gemfiles/ruby_2.6_rails5_postgres_redis_activesupport.gemfile.lock +++ b/gemfiles/ruby_2.6_rails5_postgres_redis_activesupport.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -247,6 +237,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -311,7 +305,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_2.6_rails5_postgres_sidekiq.gemfile b/gemfiles/ruby_2.6_rails5_postgres_sidekiq.gemfile index c846ea91ad8..2c68fc14f9c 100644 --- a/gemfiles/ruby_2.6_rails5_postgres_sidekiq.gemfile +++ b/gemfiles/ruby_2.6_rails5_postgres_sidekiq.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.6_rails5_postgres_sidekiq.gemfile.lock b/gemfiles/ruby_2.6_rails5_postgres_sidekiq.gemfile.lock index 84e85773041..2e3778283f9 100644 --- a/gemfiles/ruby_2.6_rails5_postgres_sidekiq.gemfile.lock +++ b/gemfiles/ruby_2.6_rails5_postgres_sidekiq.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -236,6 +226,10 @@ GEM connection_pool (>= 2.2.5, < 3) rack (~> 2.0) redis (>= 4.5.0, < 5) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -299,7 +293,7 @@ DEPENDENCIES rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) sidekiq - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_2.6_rails5_semantic_logger.gemfile b/gemfiles/ruby_2.6_rails5_semantic_logger.gemfile index 2c16f6b5516..aa090ddb522 100644 --- a/gemfiles/ruby_2.6_rails5_semantic_logger.gemfile +++ b/gemfiles/ruby_2.6_rails5_semantic_logger.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.6_rails5_semantic_logger.gemfile.lock b/gemfiles/ruby_2.6_rails5_semantic_logger.gemfile.lock index b001a7bf319..d760d8a36e1 100644 --- a/gemfiles/ruby_2.6_rails5_semantic_logger.gemfile.lock +++ b/gemfiles/ruby_2.6_rails5_semantic_logger.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -229,6 +219,10 @@ GEM ruby-progressbar (1.13.0) semantic_logger (4.12.0) concurrent-ruby (~> 1.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -290,7 +284,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_2.6_rails61_mysql2.gemfile b/gemfiles/ruby_2.6_rails61_mysql2.gemfile index f15d59ebd2f..9eb0e1aac94 100644 --- a/gemfiles/ruby_2.6_rails61_mysql2.gemfile +++ b/gemfiles/ruby_2.6_rails61_mysql2.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.6_rails61_mysql2.gemfile.lock b/gemfiles/ruby_2.6_rails61_mysql2.gemfile.lock index 9ca8b22d8e6..100c8631d1f 100644 --- a/gemfiles/ruby_2.6_rails61_mysql2.gemfile.lock +++ b/gemfiles/ruby_2.6_rails61_mysql2.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -249,6 +239,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -310,7 +304,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_2.6_rails61_postgres.gemfile b/gemfiles/ruby_2.6_rails61_postgres.gemfile index be11227e256..9245911a663 100644 --- a/gemfiles/ruby_2.6_rails61_postgres.gemfile +++ b/gemfiles/ruby_2.6_rails61_postgres.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.6_rails61_postgres.gemfile.lock b/gemfiles/ruby_2.6_rails61_postgres.gemfile.lock index 13373664ab2..cb6a8d33ede 100644 --- a/gemfiles/ruby_2.6_rails61_postgres.gemfile.lock +++ b/gemfiles/ruby_2.6_rails61_postgres.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -249,6 +239,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -310,7 +304,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_2.6_rails61_postgres_redis.gemfile b/gemfiles/ruby_2.6_rails61_postgres_redis.gemfile index a0b5b9776cf..2c2acd506af 100644 --- a/gemfiles/ruby_2.6_rails61_postgres_redis.gemfile +++ b/gemfiles/ruby_2.6_rails61_postgres_redis.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.6_rails61_postgres_redis.gemfile.lock b/gemfiles/ruby_2.6_rails61_postgres_redis.gemfile.lock index b97184421cf..a97eed2f7e9 100644 --- a/gemfiles/ruby_2.6_rails61_postgres_redis.gemfile.lock +++ b/gemfiles/ruby_2.6_rails61_postgres_redis.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -250,6 +240,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -312,7 +306,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_2.6_rails61_postgres_sidekiq.gemfile b/gemfiles/ruby_2.6_rails61_postgres_sidekiq.gemfile index eddc5b208c6..9bc6c8ced4a 100644 --- a/gemfiles/ruby_2.6_rails61_postgres_sidekiq.gemfile +++ b/gemfiles/ruby_2.6_rails61_postgres_sidekiq.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.6_rails61_postgres_sidekiq.gemfile.lock b/gemfiles/ruby_2.6_rails61_postgres_sidekiq.gemfile.lock index 11b16044cb9..85f4a389019 100644 --- a/gemfiles/ruby_2.6_rails61_postgres_sidekiq.gemfile.lock +++ b/gemfiles/ruby_2.6_rails61_postgres_sidekiq.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -255,6 +245,10 @@ GEM connection_pool (>= 2.2.5, < 3) rack (~> 2.0) redis (>= 4.5.0, < 5) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -317,7 +311,7 @@ DEPENDENCIES rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) sidekiq (>= 6.1.2) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_2.6_rails61_semantic_logger.gemfile b/gemfiles/ruby_2.6_rails61_semantic_logger.gemfile index 621a3dd2096..148925e15de 100644 --- a/gemfiles/ruby_2.6_rails61_semantic_logger.gemfile +++ b/gemfiles/ruby_2.6_rails61_semantic_logger.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.6_rails61_semantic_logger.gemfile.lock b/gemfiles/ruby_2.6_rails61_semantic_logger.gemfile.lock index e5b4c022915..8350fef872e 100644 --- a/gemfiles/ruby_2.6_rails61_semantic_logger.gemfile.lock +++ b/gemfiles/ruby_2.6_rails61_semantic_logger.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -248,6 +238,10 @@ GEM ruby-progressbar (1.13.0) semantic_logger (4.12.0) concurrent-ruby (~> 1.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -309,7 +303,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_2.6_rails6_mysql2.gemfile b/gemfiles/ruby_2.6_rails6_mysql2.gemfile index 46311935799..02a39c47964 100644 --- a/gemfiles/ruby_2.6_rails6_mysql2.gemfile +++ b/gemfiles/ruby_2.6_rails6_mysql2.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.6_rails6_mysql2.gemfile.lock b/gemfiles/ruby_2.6_rails6_mysql2.gemfile.lock index ef787f8184c..e66911c0e1f 100644 --- a/gemfiles/ruby_2.6_rails6_mysql2.gemfile.lock +++ b/gemfiles/ruby_2.6_rails6_mysql2.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -245,6 +235,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -307,7 +301,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_2.6_rails6_postgres.gemfile b/gemfiles/ruby_2.6_rails6_postgres.gemfile index 71719beee89..7e3ea48143a 100644 --- a/gemfiles/ruby_2.6_rails6_postgres.gemfile +++ b/gemfiles/ruby_2.6_rails6_postgres.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.6_rails6_postgres.gemfile.lock b/gemfiles/ruby_2.6_rails6_postgres.gemfile.lock index 0112d262e6b..201d5011b42 100644 --- a/gemfiles/ruby_2.6_rails6_postgres.gemfile.lock +++ b/gemfiles/ruby_2.6_rails6_postgres.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -245,6 +235,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -307,7 +301,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_2.6_rails6_postgres_redis.gemfile b/gemfiles/ruby_2.6_rails6_postgres_redis.gemfile index dbb566efa99..38b38382381 100644 --- a/gemfiles/ruby_2.6_rails6_postgres_redis.gemfile +++ b/gemfiles/ruby_2.6_rails6_postgres_redis.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.6_rails6_postgres_redis.gemfile.lock b/gemfiles/ruby_2.6_rails6_postgres_redis.gemfile.lock index 07e8a196546..c5757f07de1 100644 --- a/gemfiles/ruby_2.6_rails6_postgres_redis.gemfile.lock +++ b/gemfiles/ruby_2.6_rails6_postgres_redis.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -246,6 +236,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -309,7 +303,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_2.6_rails6_postgres_redis_activesupport.gemfile b/gemfiles/ruby_2.6_rails6_postgres_redis_activesupport.gemfile index f51aa07fe47..b25d109e8c0 100644 --- a/gemfiles/ruby_2.6_rails6_postgres_redis_activesupport.gemfile +++ b/gemfiles/ruby_2.6_rails6_postgres_redis_activesupport.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.6_rails6_postgres_redis_activesupport.gemfile.lock b/gemfiles/ruby_2.6_rails6_postgres_redis_activesupport.gemfile.lock index eecd4e75761..4f2a49047d9 100644 --- a/gemfiles/ruby_2.6_rails6_postgres_redis_activesupport.gemfile.lock +++ b/gemfiles/ruby_2.6_rails6_postgres_redis_activesupport.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -262,6 +252,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -327,7 +321,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_2.6_rails6_postgres_sidekiq.gemfile b/gemfiles/ruby_2.6_rails6_postgres_sidekiq.gemfile index f1b6c471dc4..2176dd02611 100644 --- a/gemfiles/ruby_2.6_rails6_postgres_sidekiq.gemfile +++ b/gemfiles/ruby_2.6_rails6_postgres_sidekiq.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.6_rails6_postgres_sidekiq.gemfile.lock b/gemfiles/ruby_2.6_rails6_postgres_sidekiq.gemfile.lock index 4ca72a38f38..d8130d4a3f4 100644 --- a/gemfiles/ruby_2.6_rails6_postgres_sidekiq.gemfile.lock +++ b/gemfiles/ruby_2.6_rails6_postgres_sidekiq.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -251,6 +241,10 @@ GEM connection_pool (>= 2.2.5, < 3) rack (~> 2.0) redis (>= 4.5.0, < 5) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -315,7 +309,7 @@ DEPENDENCIES rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) sidekiq - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_2.6_rails6_semantic_logger.gemfile b/gemfiles/ruby_2.6_rails6_semantic_logger.gemfile index 37ee449cfcb..40f2e53688b 100644 --- a/gemfiles/ruby_2.6_rails6_semantic_logger.gemfile +++ b/gemfiles/ruby_2.6_rails6_semantic_logger.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.6_rails6_semantic_logger.gemfile.lock b/gemfiles/ruby_2.6_rails6_semantic_logger.gemfile.lock index 388bcb655fd..636229d497e 100644 --- a/gemfiles/ruby_2.6_rails6_semantic_logger.gemfile.lock +++ b/gemfiles/ruby_2.6_rails6_semantic_logger.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -244,6 +234,10 @@ GEM ruby-progressbar (1.13.0) semantic_logger (4.12.0) concurrent-ruby (~> 1.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -306,7 +300,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_2.6_rails_old_redis.gemfile b/gemfiles/ruby_2.6_rails_old_redis.gemfile index cff6cbc61ca..bc0b941b06b 100644 --- a/gemfiles/ruby_2.6_rails_old_redis.gemfile +++ b/gemfiles/ruby_2.6_rails_old_redis.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.6_redis_3.gemfile b/gemfiles/ruby_2.6_redis_3.gemfile index 6133bafdb91..b2c72966eda 100644 --- a/gemfiles/ruby_2.6_redis_3.gemfile +++ b/gemfiles/ruby_2.6_redis_3.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.6_redis_3.gemfile.lock b/gemfiles/ruby_2.6_redis_3.gemfile.lock index d0c2f711edf..01a5da52fc4 100644 --- a/gemfiles/ruby_2.6_redis_3.gemfile.lock +++ b/gemfiles/ruby_2.6_redis_3.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -120,6 +110,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -164,7 +158,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_2.6_redis_4.gemfile b/gemfiles/ruby_2.6_redis_4.gemfile index edd7dea78ff..b877afb416c 100644 --- a/gemfiles/ruby_2.6_redis_4.gemfile +++ b/gemfiles/ruby_2.6_redis_4.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.6_redis_4.gemfile.lock b/gemfiles/ruby_2.6_redis_4.gemfile.lock index 2333b4a4443..0dcf84cb2da 100644 --- a/gemfiles/ruby_2.6_redis_4.gemfile.lock +++ b/gemfiles/ruby_2.6_redis_4.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -120,6 +110,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -164,7 +158,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_2.6_redis_5.gemfile b/gemfiles/ruby_2.6_redis_5.gemfile index 7266e900cd9..e4f85389222 100644 --- a/gemfiles/ruby_2.6_redis_5.gemfile +++ b/gemfiles/ruby_2.6_redis_5.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.6_redis_5.gemfile.lock b/gemfiles/ruby_2.6_redis_5.gemfile.lock index 386221d7f19..e7f2ce310ab 100644 --- a/gemfiles/ruby_2.6_redis_5.gemfile.lock +++ b/gemfiles/ruby_2.6_redis_5.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -124,6 +114,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -168,7 +162,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_2.6_relational_db.gemfile b/gemfiles/ruby_2.6_relational_db.gemfile index d65892b0142..40d065e6a69 100644 --- a/gemfiles/ruby_2.6_relational_db.gemfile +++ b/gemfiles/ruby_2.6_relational_db.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.6_relational_db.gemfile.lock b/gemfiles/ruby_2.6_relational_db.gemfile.lock index 60a1b8f55bd..77f1bdd7673 100644 --- a/gemfiles/ruby_2.6_relational_db.gemfile.lock +++ b/gemfiles/ruby_2.6_relational_db.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -147,6 +137,10 @@ GEM ruby-progressbar (1.13.0) sequel (5.83.1) bigdecimal + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -202,7 +196,7 @@ DEPENDENCIES rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) sequel - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sqlite3 (~> 1.4.1) warning (~> 1) diff --git a/gemfiles/ruby_2.6_resque2_redis3.gemfile b/gemfiles/ruby_2.6_resque2_redis3.gemfile index d54ecb2060a..1d9a167eb00 100644 --- a/gemfiles/ruby_2.6_resque2_redis3.gemfile +++ b/gemfiles/ruby_2.6_resque2_redis3.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.6_resque2_redis3.gemfile.lock b/gemfiles/ruby_2.6_resque2_redis3.gemfile.lock index 396dfe3ad38..ff019c17852 100644 --- a/gemfiles/ruby_2.6_resque2_redis3.gemfile.lock +++ b/gemfiles/ruby_2.6_resque2_redis3.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -135,6 +125,10 @@ GEM rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -186,7 +180,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_2.6_resque2_redis4.gemfile b/gemfiles/ruby_2.6_resque2_redis4.gemfile index 3ff80d5435b..6fce168aefb 100644 --- a/gemfiles/ruby_2.6_resque2_redis4.gemfile +++ b/gemfiles/ruby_2.6_resque2_redis4.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.6_resque2_redis4.gemfile.lock b/gemfiles/ruby_2.6_resque2_redis4.gemfile.lock index 6366569972f..018c17996d9 100644 --- a/gemfiles/ruby_2.6_resque2_redis4.gemfile.lock +++ b/gemfiles/ruby_2.6_resque2_redis4.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -135,6 +125,10 @@ GEM rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -186,7 +180,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_2.6_sinatra_2.gemfile b/gemfiles/ruby_2.6_sinatra_2.gemfile index f8785d68344..111eb91da35 100644 --- a/gemfiles/ruby_2.6_sinatra_2.gemfile +++ b/gemfiles/ruby_2.6_sinatra_2.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.6_sinatra_2.gemfile.lock b/gemfiles/ruby_2.6_sinatra_2.gemfile.lock index 3ac25560fc8..eb0fe3a5f37 100644 --- a/gemfiles/ruby_2.6_sinatra_2.gemfile.lock +++ b/gemfiles/ruby_2.6_sinatra_2.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -135,6 +125,10 @@ GEM rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -186,7 +180,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sinatra (~> 2) warning (~> 1) diff --git a/gemfiles/ruby_2.6_sinatra_3.gemfile b/gemfiles/ruby_2.6_sinatra_3.gemfile index 6cbb9b70751..23cf27863e7 100644 --- a/gemfiles/ruby_2.6_sinatra_3.gemfile +++ b/gemfiles/ruby_2.6_sinatra_3.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.6_sinatra_3.gemfile.lock b/gemfiles/ruby_2.6_sinatra_3.gemfile.lock index 43ba34c1071..9ad6c0f1287 100644 --- a/gemfiles/ruby_2.6_sinatra_3.gemfile.lock +++ b/gemfiles/ruby_2.6_sinatra_3.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -137,6 +127,10 @@ GEM rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -188,7 +182,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sinatra (~> 3) warning (~> 1) diff --git a/gemfiles/ruby_2.6_stripe_10.gemfile b/gemfiles/ruby_2.6_stripe_10.gemfile index bcec6cca1e4..6e662ebd7df 100644 --- a/gemfiles/ruby_2.6_stripe_10.gemfile +++ b/gemfiles/ruby_2.6_stripe_10.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.6_stripe_10.gemfile.lock b/gemfiles/ruby_2.6_stripe_10.gemfile.lock index 8cb669fce4f..33b2a726986 100644 --- a/gemfiles/ruby_2.6_stripe_10.gemfile.lock +++ b/gemfiles/ruby_2.6_stripe_10.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -125,6 +115,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -169,7 +163,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 10) warning (~> 1) diff --git a/gemfiles/ruby_2.6_stripe_11.gemfile b/gemfiles/ruby_2.6_stripe_11.gemfile index c1dbc7c6fdd..ba919253b84 100644 --- a/gemfiles/ruby_2.6_stripe_11.gemfile +++ b/gemfiles/ruby_2.6_stripe_11.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.6_stripe_11.gemfile.lock b/gemfiles/ruby_2.6_stripe_11.gemfile.lock index 71e50315883..1005f19282e 100644 --- a/gemfiles/ruby_2.6_stripe_11.gemfile.lock +++ b/gemfiles/ruby_2.6_stripe_11.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -125,6 +115,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -169,7 +163,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 11) warning (~> 1) diff --git a/gemfiles/ruby_2.6_stripe_12.gemfile b/gemfiles/ruby_2.6_stripe_12.gemfile index d55950bb7b6..554b985605b 100644 --- a/gemfiles/ruby_2.6_stripe_12.gemfile +++ b/gemfiles/ruby_2.6_stripe_12.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.6_stripe_12.gemfile.lock b/gemfiles/ruby_2.6_stripe_12.gemfile.lock index 340bb30376c..0b05cfe37c3 100644 --- a/gemfiles/ruby_2.6_stripe_12.gemfile.lock +++ b/gemfiles/ruby_2.6_stripe_12.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -125,6 +115,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -169,7 +163,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 12) warning (~> 1) diff --git a/gemfiles/ruby_2.6_stripe_7.gemfile b/gemfiles/ruby_2.6_stripe_7.gemfile index f5b747d0068..081c9bc5b55 100644 --- a/gemfiles/ruby_2.6_stripe_7.gemfile +++ b/gemfiles/ruby_2.6_stripe_7.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.6_stripe_7.gemfile.lock b/gemfiles/ruby_2.6_stripe_7.gemfile.lock index 30a87d0280f..527d96dc0ba 100644 --- a/gemfiles/ruby_2.6_stripe_7.gemfile.lock +++ b/gemfiles/ruby_2.6_stripe_7.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -125,6 +115,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -169,7 +163,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 7) warning (~> 1) diff --git a/gemfiles/ruby_2.6_stripe_8.gemfile b/gemfiles/ruby_2.6_stripe_8.gemfile index 7a0910e3e2b..23e2ed3e699 100644 --- a/gemfiles/ruby_2.6_stripe_8.gemfile +++ b/gemfiles/ruby_2.6_stripe_8.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.6_stripe_8.gemfile.lock b/gemfiles/ruby_2.6_stripe_8.gemfile.lock index 6ec58ff7903..2edecd18493 100644 --- a/gemfiles/ruby_2.6_stripe_8.gemfile.lock +++ b/gemfiles/ruby_2.6_stripe_8.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -125,6 +115,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -169,7 +163,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 8) warning (~> 1) diff --git a/gemfiles/ruby_2.6_stripe_9.gemfile b/gemfiles/ruby_2.6_stripe_9.gemfile index d9a019cf826..2d7aa37dccc 100644 --- a/gemfiles/ruby_2.6_stripe_9.gemfile +++ b/gemfiles/ruby_2.6_stripe_9.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.6_stripe_9.gemfile.lock b/gemfiles/ruby_2.6_stripe_9.gemfile.lock index fd9c234e123..50578a14122 100644 --- a/gemfiles/ruby_2.6_stripe_9.gemfile.lock +++ b/gemfiles/ruby_2.6_stripe_9.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -125,6 +115,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -169,7 +163,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 9) warning (~> 1) diff --git a/gemfiles/ruby_2.6_stripe_latest.gemfile b/gemfiles/ruby_2.6_stripe_latest.gemfile index 72303e50de1..445fa83b2a6 100644 --- a/gemfiles/ruby_2.6_stripe_latest.gemfile +++ b/gemfiles/ruby_2.6_stripe_latest.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.6_stripe_latest.gemfile.lock b/gemfiles/ruby_2.6_stripe_latest.gemfile.lock index 81011376f80..ab70a923c72 100644 --- a/gemfiles/ruby_2.6_stripe_latest.gemfile.lock +++ b/gemfiles/ruby_2.6_stripe_latest.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -124,6 +114,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -167,7 +161,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) stripe warning (~> 1) diff --git a/gemfiles/ruby_2.6_stripe_min.gemfile b/gemfiles/ruby_2.6_stripe_min.gemfile index ae393f168a1..d470de67a8f 100644 --- a/gemfiles/ruby_2.6_stripe_min.gemfile +++ b/gemfiles/ruby_2.6_stripe_min.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.6_stripe_min.gemfile.lock b/gemfiles/ruby_2.6_stripe_min.gemfile.lock index a7c64aa1cc7..817e8abde60 100644 --- a/gemfiles/ruby_2.6_stripe_min.gemfile.lock +++ b/gemfiles/ruby_2.6_stripe_min.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -124,6 +114,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -167,7 +161,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) stripe (= 5.15.0) warning (~> 1) diff --git a/gemfiles/ruby_2.7_activesupport.gemfile b/gemfiles/ruby_2.7_activesupport.gemfile index 6871d4e0092..d36adf61bdf 100644 --- a/gemfiles/ruby_2.7_activesupport.gemfile +++ b/gemfiles/ruby_2.7_activesupport.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.7_activesupport.gemfile.lock b/gemfiles/ruby_2.7_activesupport.gemfile.lock index 1de63558cae..57e306f993c 100644 --- a/gemfiles/ruby_2.7_activesupport.gemfile.lock +++ b/gemfiles/ruby_2.7_activesupport.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -227,6 +217,10 @@ GEM digest-crc ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -282,7 +276,7 @@ DEPENDENCIES rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) ruby-kafka (>= 0.7.10) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_2.7_aws.gemfile b/gemfiles/ruby_2.7_aws.gemfile index cf90613f51f..ee94de7df40 100644 --- a/gemfiles/ruby_2.7_aws.gemfile +++ b/gemfiles/ruby_2.7_aws.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.7_aws.gemfile.lock b/gemfiles/ruby_2.7_aws.gemfile.lock index c0198bb3428..704e97ed24f 100644 --- a/gemfiles/ruby_2.7_aws.gemfile.lock +++ b/gemfiles/ruby_2.7_aws.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -1547,6 +1537,10 @@ GEM aws-sdk-core (>= 2) concurrent-ruby thor + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -1593,7 +1587,7 @@ DEPENDENCIES rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) shoryuken - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_2.7_contrib.gemfile b/gemfiles/ruby_2.7_contrib.gemfile index 717e758af49..fdc0206e1f0 100644 --- a/gemfiles/ruby_2.7_contrib.gemfile +++ b/gemfiles/ruby_2.7_contrib.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.7_contrib.gemfile.lock b/gemfiles/ruby_2.7_contrib.gemfile.lock index 4086bce8e80..514da5bd12d 100644 --- a/gemfiles/ruby_2.7_contrib.gemfile.lock +++ b/gemfiles/ruby_2.7_contrib.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -168,6 +158,10 @@ GEM rack (~> 2.0) redis (>= 4.5.0, < 5) sigdump (0.2.4) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -238,7 +232,7 @@ DEPENDENCIES rubocop-rspec (~> 2.20, < 2.21) semantic_logger (~> 4.0) sidekiq (~> 6) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sneakers (>= 2.12.0) sucker_punch diff --git a/gemfiles/ruby_2.7_contrib_old.gemfile b/gemfiles/ruby_2.7_contrib_old.gemfile index 302a3302341..830240a5937 100644 --- a/gemfiles/ruby_2.7_contrib_old.gemfile +++ b/gemfiles/ruby_2.7_contrib_old.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.7_contrib_old.gemfile.lock b/gemfiles/ruby_2.7_contrib_old.gemfile.lock index 53a21d21354..812a7585e44 100644 --- a/gemfiles/ruby_2.7_contrib_old.gemfile.lock +++ b/gemfiles/ruby_2.7_contrib_old.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -159,6 +149,10 @@ GEM rusage (0.2.0) sentry-raven (0.15.6) faraday (>= 0.7.6) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -220,7 +214,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_2.7_core_old.gemfile b/gemfiles/ruby_2.7_core_old.gemfile index 76671c02ad2..e5d064da8bd 100644 --- a/gemfiles/ruby_2.7_core_old.gemfile +++ b/gemfiles/ruby_2.7_core_old.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.7_core_old.gemfile.lock b/gemfiles/ruby_2.7_core_old.gemfile.lock index 30b91105024..b003e90f7d3 100644 --- a/gemfiles/ruby_2.7_core_old.gemfile.lock +++ b/gemfiles/ruby_2.7_core_old.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -119,6 +109,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -162,7 +156,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_2.7_elasticsearch_7.gemfile b/gemfiles/ruby_2.7_elasticsearch_7.gemfile index 485c12a2039..cc5b5c17f29 100644 --- a/gemfiles/ruby_2.7_elasticsearch_7.gemfile +++ b/gemfiles/ruby_2.7_elasticsearch_7.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.7_elasticsearch_7.gemfile.lock b/gemfiles/ruby_2.7_elasticsearch_7.gemfile.lock index af5a049b1e4..179fc56a8ec 100644 --- a/gemfiles/ruby_2.7_elasticsearch_7.gemfile.lock +++ b/gemfiles/ruby_2.7_elasticsearch_7.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -140,6 +130,10 @@ GEM rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -184,7 +178,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_2.7_elasticsearch_8.gemfile b/gemfiles/ruby_2.7_elasticsearch_8.gemfile index 0ede1697126..925ae8a29c0 100644 --- a/gemfiles/ruby_2.7_elasticsearch_8.gemfile +++ b/gemfiles/ruby_2.7_elasticsearch_8.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.7_elasticsearch_8.gemfile.lock b/gemfiles/ruby_2.7_elasticsearch_8.gemfile.lock index f9d859fb930..6511a551e29 100644 --- a/gemfiles/ruby_2.7_elasticsearch_8.gemfile.lock +++ b/gemfiles/ruby_2.7_elasticsearch_8.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -139,6 +129,10 @@ GEM rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -183,7 +177,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_2.7_elasticsearch_latest.gemfile b/gemfiles/ruby_2.7_elasticsearch_latest.gemfile index cc4b764b89a..b13b4800c5f 100644 --- a/gemfiles/ruby_2.7_elasticsearch_latest.gemfile +++ b/gemfiles/ruby_2.7_elasticsearch_latest.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.7_elasticsearch_latest.gemfile.lock b/gemfiles/ruby_2.7_elasticsearch_latest.gemfile.lock index f190b897b34..a91c387cea4 100644 --- a/gemfiles/ruby_2.7_elasticsearch_latest.gemfile.lock +++ b/gemfiles/ruby_2.7_elasticsearch_latest.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -139,6 +129,10 @@ GEM rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -182,7 +176,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_2.7_graphql_1.13.gemfile b/gemfiles/ruby_2.7_graphql_1.13.gemfile index 05e12d8c62d..2600f4886bc 100644 --- a/gemfiles/ruby_2.7_graphql_1.13.gemfile +++ b/gemfiles/ruby_2.7_graphql_1.13.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.7_graphql_1.13.gemfile.lock b/gemfiles/ruby_2.7_graphql_1.13.gemfile.lock index fbb48ea5286..f3ae9df59e7 100644 --- a/gemfiles/ruby_2.7_graphql_1.13.gemfile.lock +++ b/gemfiles/ruby_2.7_graphql_1.13.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -255,6 +245,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -317,7 +311,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_2.7_graphql_2.0.gemfile b/gemfiles/ruby_2.7_graphql_2.0.gemfile index e859e5d99de..b0f02a5b783 100644 --- a/gemfiles/ruby_2.7_graphql_2.0.gemfile +++ b/gemfiles/ruby_2.7_graphql_2.0.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.7_graphql_2.0.gemfile.lock b/gemfiles/ruby_2.7_graphql_2.0.gemfile.lock index 2425c91166d..1a13c7212f7 100644 --- a/gemfiles/ruby_2.7_graphql_2.0.gemfile.lock +++ b/gemfiles/ruby_2.7_graphql_2.0.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -255,6 +245,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -317,7 +311,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_2.7_graphql_2.1.gemfile b/gemfiles/ruby_2.7_graphql_2.1.gemfile index 292786791ab..c54e22d4847 100644 --- a/gemfiles/ruby_2.7_graphql_2.1.gemfile +++ b/gemfiles/ruby_2.7_graphql_2.1.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.7_graphql_2.1.gemfile.lock b/gemfiles/ruby_2.7_graphql_2.1.gemfile.lock index 13e83b102b5..460dccbb2a6 100644 --- a/gemfiles/ruby_2.7_graphql_2.1.gemfile.lock +++ b/gemfiles/ruby_2.7_graphql_2.1.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -256,6 +246,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -318,7 +312,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_2.7_graphql_2.2.gemfile b/gemfiles/ruby_2.7_graphql_2.2.gemfile index bd41ba58337..a366f5a3da6 100644 --- a/gemfiles/ruby_2.7_graphql_2.2.gemfile +++ b/gemfiles/ruby_2.7_graphql_2.2.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.7_graphql_2.2.gemfile.lock b/gemfiles/ruby_2.7_graphql_2.2.gemfile.lock index ca0295254f9..dc32262a8e9 100644 --- a/gemfiles/ruby_2.7_graphql_2.2.gemfile.lock +++ b/gemfiles/ruby_2.7_graphql_2.2.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -256,6 +246,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -318,7 +312,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_2.7_graphql_2.3.gemfile b/gemfiles/ruby_2.7_graphql_2.3.gemfile index 25fb5f44b8c..0995e8a34ea 100644 --- a/gemfiles/ruby_2.7_graphql_2.3.gemfile +++ b/gemfiles/ruby_2.7_graphql_2.3.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.7_graphql_2.3.gemfile.lock b/gemfiles/ruby_2.7_graphql_2.3.gemfile.lock index e7189c48a58..7c3cc33063d 100644 --- a/gemfiles/ruby_2.7_graphql_2.3.gemfile.lock +++ b/gemfiles/ruby_2.7_graphql_2.3.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -257,6 +247,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -319,7 +313,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_2.7_hanami_1.gemfile b/gemfiles/ruby_2.7_hanami_1.gemfile index 9d5637de34a..64fb3053933 100644 --- a/gemfiles/ruby_2.7_hanami_1.gemfile +++ b/gemfiles/ruby_2.7_hanami_1.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.7_hanami_1.gemfile.lock b/gemfiles/ruby_2.7_hanami_1.gemfile.lock index f4c86fe80a9..a69d9f116f3 100644 --- a/gemfiles/ruby_2.7_hanami_1.gemfile.lock +++ b/gemfiles/ruby_2.7_hanami_1.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -213,6 +203,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -265,7 +259,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_2.7_http.gemfile b/gemfiles/ruby_2.7_http.gemfile index 45a7b298a59..4eb06a6c37f 100644 --- a/gemfiles/ruby_2.7_http.gemfile +++ b/gemfiles/ruby_2.7_http.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.7_http.gemfile.lock b/gemfiles/ruby_2.7_http.gemfile.lock index 83254e3101f..bda7c85ba41 100644 --- a/gemfiles/ruby_2.7_http.gemfile.lock +++ b/gemfiles/ruby_2.7_http.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -156,6 +146,10 @@ GEM rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -210,7 +204,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) typhoeus warning (~> 1) diff --git a/gemfiles/ruby_2.7_opensearch_2.gemfile b/gemfiles/ruby_2.7_opensearch_2.gemfile index 44946e07ab7..b0b72a794f7 100644 --- a/gemfiles/ruby_2.7_opensearch_2.gemfile +++ b/gemfiles/ruby_2.7_opensearch_2.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.7_opensearch_2.gemfile.lock b/gemfiles/ruby_2.7_opensearch_2.gemfile.lock index 3f14f4298ad..a3900f5e341 100644 --- a/gemfiles/ruby_2.7_opensearch_2.gemfile.lock +++ b/gemfiles/ruby_2.7_opensearch_2.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -139,6 +129,10 @@ GEM rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -183,7 +177,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_2.7_opensearch_3.gemfile b/gemfiles/ruby_2.7_opensearch_3.gemfile index 10c94c71a3a..601d4ff4049 100644 --- a/gemfiles/ruby_2.7_opensearch_3.gemfile +++ b/gemfiles/ruby_2.7_opensearch_3.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.7_opensearch_3.gemfile.lock b/gemfiles/ruby_2.7_opensearch_3.gemfile.lock index 18b3e764719..42604bc4bc9 100644 --- a/gemfiles/ruby_2.7_opensearch_3.gemfile.lock +++ b/gemfiles/ruby_2.7_opensearch_3.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -134,6 +124,10 @@ GEM rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -178,7 +172,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_2.7_opensearch_latest.gemfile b/gemfiles/ruby_2.7_opensearch_latest.gemfile index d3fbdaaa0bc..ff83be947d3 100644 --- a/gemfiles/ruby_2.7_opensearch_latest.gemfile +++ b/gemfiles/ruby_2.7_opensearch_latest.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.7_opensearch_latest.gemfile.lock b/gemfiles/ruby_2.7_opensearch_latest.gemfile.lock index b5b7e5235b1..6b0ea143731 100644 --- a/gemfiles/ruby_2.7_opensearch_latest.gemfile.lock +++ b/gemfiles/ruby_2.7_opensearch_latest.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -134,6 +124,10 @@ GEM rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -177,7 +171,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_2.7_opentelemetry.gemfile b/gemfiles/ruby_2.7_opentelemetry.gemfile index cf9b5de846c..480ef887726 100644 --- a/gemfiles/ruby_2.7_opentelemetry.gemfile +++ b/gemfiles/ruby_2.7_opentelemetry.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.7_opentelemetry.gemfile.lock b/gemfiles/ruby_2.7_opentelemetry.gemfile.lock index 4a841a3f35f..220f626f989 100755 --- a/gemfiles/ruby_2.7_opentelemetry.gemfile.lock +++ b/gemfiles/ruby_2.7_opentelemetry.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -131,6 +121,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -175,7 +169,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_2.7_opentelemetry_otlp.gemfile b/gemfiles/ruby_2.7_opentelemetry_otlp.gemfile index a27c9d85964..a29c3d0fd84 100644 --- a/gemfiles/ruby_2.7_opentelemetry_otlp.gemfile +++ b/gemfiles/ruby_2.7_opentelemetry_otlp.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.7_opentelemetry_otlp.gemfile.lock b/gemfiles/ruby_2.7_opentelemetry_otlp.gemfile.lock index b7b2140958a..405ab83ff35 100644 --- a/gemfiles/ruby_2.7_opentelemetry_otlp.gemfile.lock +++ b/gemfiles/ruby_2.7_opentelemetry_otlp.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -145,6 +135,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -189,7 +183,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_2.7_rack_1.gemfile b/gemfiles/ruby_2.7_rack_1.gemfile index a2d690122ee..6fa965f9d3e 100644 --- a/gemfiles/ruby_2.7_rack_1.gemfile +++ b/gemfiles/ruby_2.7_rack_1.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.7_rack_1.gemfile.lock b/gemfiles/ruby_2.7_rack_1.gemfile.lock index 5bdeb525cd7..ab082541ec4 100644 --- a/gemfiles/ruby_2.7_rack_1.gemfile.lock +++ b/gemfiles/ruby_2.7_rack_1.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -126,6 +116,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -172,7 +166,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_2.7_rack_2.gemfile b/gemfiles/ruby_2.7_rack_2.gemfile index 2d041aaed0b..79c90e1e5a5 100644 --- a/gemfiles/ruby_2.7_rack_2.gemfile +++ b/gemfiles/ruby_2.7_rack_2.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.7_rack_2.gemfile.lock b/gemfiles/ruby_2.7_rack_2.gemfile.lock index 9b1fa4b909b..aae73a3dc3a 100644 --- a/gemfiles/ruby_2.7_rack_2.gemfile.lock +++ b/gemfiles/ruby_2.7_rack_2.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -126,6 +116,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -172,7 +166,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_2.7_rack_3.gemfile b/gemfiles/ruby_2.7_rack_3.gemfile index abf80bf906a..3ccae012106 100644 --- a/gemfiles/ruby_2.7_rack_3.gemfile +++ b/gemfiles/ruby_2.7_rack_3.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.7_rack_3.gemfile.lock b/gemfiles/ruby_2.7_rack_3.gemfile.lock index f7844752f9f..aa28b3b5f46 100644 --- a/gemfiles/ruby_2.7_rack_3.gemfile.lock +++ b/gemfiles/ruby_2.7_rack_3.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -126,6 +116,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -172,7 +166,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_2.7_rack_latest.gemfile b/gemfiles/ruby_2.7_rack_latest.gemfile index dcbd3f63f03..7ff05140ed0 100644 --- a/gemfiles/ruby_2.7_rack_latest.gemfile +++ b/gemfiles/ruby_2.7_rack_latest.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.7_rack_latest.gemfile.lock b/gemfiles/ruby_2.7_rack_latest.gemfile.lock index 45509b23ead..826ee7fa80b 100644 --- a/gemfiles/ruby_2.7_rack_latest.gemfile.lock +++ b/gemfiles/ruby_2.7_rack_latest.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -129,6 +119,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -174,7 +168,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_2.7_rails5_mysql2.gemfile b/gemfiles/ruby_2.7_rails5_mysql2.gemfile index 4770fc30307..70d9b634096 100644 --- a/gemfiles/ruby_2.7_rails5_mysql2.gemfile +++ b/gemfiles/ruby_2.7_rails5_mysql2.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.7_rails5_mysql2.gemfile.lock b/gemfiles/ruby_2.7_rails5_mysql2.gemfile.lock index c65c2204823..1927ebc8bd6 100644 --- a/gemfiles/ruby_2.7_rails5_mysql2.gemfile.lock +++ b/gemfiles/ruby_2.7_rails5_mysql2.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -230,6 +220,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -291,7 +285,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_2.7_rails5_postgres.gemfile b/gemfiles/ruby_2.7_rails5_postgres.gemfile index 280bc9ef508..c4b319a96aa 100644 --- a/gemfiles/ruby_2.7_rails5_postgres.gemfile +++ b/gemfiles/ruby_2.7_rails5_postgres.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.7_rails5_postgres.gemfile.lock b/gemfiles/ruby_2.7_rails5_postgres.gemfile.lock index 0d47a883d6e..a0ea3a3abfc 100644 --- a/gemfiles/ruby_2.7_rails5_postgres.gemfile.lock +++ b/gemfiles/ruby_2.7_rails5_postgres.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -230,6 +220,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -291,7 +285,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_2.7_rails5_postgres_redis.gemfile b/gemfiles/ruby_2.7_rails5_postgres_redis.gemfile index eb210a177e9..df474e5b2fc 100644 --- a/gemfiles/ruby_2.7_rails5_postgres_redis.gemfile +++ b/gemfiles/ruby_2.7_rails5_postgres_redis.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.7_rails5_postgres_redis.gemfile.lock b/gemfiles/ruby_2.7_rails5_postgres_redis.gemfile.lock index bcca4c3aa2b..e79e5d2fd0e 100644 --- a/gemfiles/ruby_2.7_rails5_postgres_redis.gemfile.lock +++ b/gemfiles/ruby_2.7_rails5_postgres_redis.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -231,6 +221,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -293,7 +287,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_2.7_rails5_postgres_redis_activesupport.gemfile b/gemfiles/ruby_2.7_rails5_postgres_redis_activesupport.gemfile index 42ecf92382a..f6d1d494949 100644 --- a/gemfiles/ruby_2.7_rails5_postgres_redis_activesupport.gemfile +++ b/gemfiles/ruby_2.7_rails5_postgres_redis_activesupport.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.7_rails5_postgres_redis_activesupport.gemfile.lock b/gemfiles/ruby_2.7_rails5_postgres_redis_activesupport.gemfile.lock index 18e44a6c6d2..1610407bcb1 100644 --- a/gemfiles/ruby_2.7_rails5_postgres_redis_activesupport.gemfile.lock +++ b/gemfiles/ruby_2.7_rails5_postgres_redis_activesupport.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -247,6 +237,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -311,7 +305,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_2.7_rails5_postgres_sidekiq.gemfile b/gemfiles/ruby_2.7_rails5_postgres_sidekiq.gemfile index 7c8dbcb73b5..ade2b5d3e45 100644 --- a/gemfiles/ruby_2.7_rails5_postgres_sidekiq.gemfile +++ b/gemfiles/ruby_2.7_rails5_postgres_sidekiq.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.7_rails5_postgres_sidekiq.gemfile.lock b/gemfiles/ruby_2.7_rails5_postgres_sidekiq.gemfile.lock index 1cd49acbae4..90c6cfeb000 100644 --- a/gemfiles/ruby_2.7_rails5_postgres_sidekiq.gemfile.lock +++ b/gemfiles/ruby_2.7_rails5_postgres_sidekiq.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -236,6 +226,10 @@ GEM connection_pool (>= 2.2.5, < 3) rack (~> 2.0) redis (>= 4.5.0, < 5) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -299,7 +293,7 @@ DEPENDENCIES rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) sidekiq (~> 6) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_2.7_rails5_semantic_logger.gemfile b/gemfiles/ruby_2.7_rails5_semantic_logger.gemfile index 6d15d53e25e..0ef9f6dd2ea 100644 --- a/gemfiles/ruby_2.7_rails5_semantic_logger.gemfile +++ b/gemfiles/ruby_2.7_rails5_semantic_logger.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.7_rails5_semantic_logger.gemfile.lock b/gemfiles/ruby_2.7_rails5_semantic_logger.gemfile.lock index b6d7e5ef74c..0503c9bd8f5 100644 --- a/gemfiles/ruby_2.7_rails5_semantic_logger.gemfile.lock +++ b/gemfiles/ruby_2.7_rails5_semantic_logger.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -229,6 +219,10 @@ GEM ruby-progressbar (1.13.0) semantic_logger (4.12.0) concurrent-ruby (~> 1.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -290,7 +284,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_2.7_rails61_mysql2.gemfile b/gemfiles/ruby_2.7_rails61_mysql2.gemfile index fe916b0e46c..6a82159132f 100644 --- a/gemfiles/ruby_2.7_rails61_mysql2.gemfile +++ b/gemfiles/ruby_2.7_rails61_mysql2.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.7_rails61_mysql2.gemfile.lock b/gemfiles/ruby_2.7_rails61_mysql2.gemfile.lock index fa3cebaa870..9ef57fd6c7a 100644 --- a/gemfiles/ruby_2.7_rails61_mysql2.gemfile.lock +++ b/gemfiles/ruby_2.7_rails61_mysql2.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -249,6 +239,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -310,7 +304,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_2.7_rails61_postgres.gemfile b/gemfiles/ruby_2.7_rails61_postgres.gemfile index 51836759abf..3dff9c0b1e8 100644 --- a/gemfiles/ruby_2.7_rails61_postgres.gemfile +++ b/gemfiles/ruby_2.7_rails61_postgres.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.7_rails61_postgres.gemfile.lock b/gemfiles/ruby_2.7_rails61_postgres.gemfile.lock index ac49ad69816..4bb384d90ed 100644 --- a/gemfiles/ruby_2.7_rails61_postgres.gemfile.lock +++ b/gemfiles/ruby_2.7_rails61_postgres.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -249,6 +239,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -310,7 +304,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_2.7_rails61_postgres_redis.gemfile b/gemfiles/ruby_2.7_rails61_postgres_redis.gemfile index 0e8d2dd37f2..e5298911fa1 100644 --- a/gemfiles/ruby_2.7_rails61_postgres_redis.gemfile +++ b/gemfiles/ruby_2.7_rails61_postgres_redis.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.7_rails61_postgres_redis.gemfile.lock b/gemfiles/ruby_2.7_rails61_postgres_redis.gemfile.lock index d72d13090a0..f9e447a252f 100644 --- a/gemfiles/ruby_2.7_rails61_postgres_redis.gemfile.lock +++ b/gemfiles/ruby_2.7_rails61_postgres_redis.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -250,6 +240,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -312,7 +306,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_2.7_rails61_postgres_sidekiq.gemfile b/gemfiles/ruby_2.7_rails61_postgres_sidekiq.gemfile index 7f54dbb405c..6fe20f31935 100644 --- a/gemfiles/ruby_2.7_rails61_postgres_sidekiq.gemfile +++ b/gemfiles/ruby_2.7_rails61_postgres_sidekiq.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.7_rails61_postgres_sidekiq.gemfile.lock b/gemfiles/ruby_2.7_rails61_postgres_sidekiq.gemfile.lock index 20f3dfb7f80..a113c3f2c22 100644 --- a/gemfiles/ruby_2.7_rails61_postgres_sidekiq.gemfile.lock +++ b/gemfiles/ruby_2.7_rails61_postgres_sidekiq.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -257,6 +247,10 @@ GEM connection_pool (>= 2.3.0) rack (>= 2.2.4) redis-client (>= 0.11.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -319,7 +313,7 @@ DEPENDENCIES rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) sidekiq (>= 6.1.2) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_2.7_rails61_semantic_logger.gemfile b/gemfiles/ruby_2.7_rails61_semantic_logger.gemfile index 0eceffddbdc..3d04beee500 100644 --- a/gemfiles/ruby_2.7_rails61_semantic_logger.gemfile +++ b/gemfiles/ruby_2.7_rails61_semantic_logger.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.7_rails61_semantic_logger.gemfile.lock b/gemfiles/ruby_2.7_rails61_semantic_logger.gemfile.lock index e750f807cf1..a52add233a7 100644 --- a/gemfiles/ruby_2.7_rails61_semantic_logger.gemfile.lock +++ b/gemfiles/ruby_2.7_rails61_semantic_logger.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -248,6 +238,10 @@ GEM ruby-progressbar (1.13.0) semantic_logger (4.12.0) concurrent-ruby (~> 1.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -309,7 +303,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_2.7_rails6_mysql2.gemfile b/gemfiles/ruby_2.7_rails6_mysql2.gemfile index 5257c56c906..4306b203b08 100644 --- a/gemfiles/ruby_2.7_rails6_mysql2.gemfile +++ b/gemfiles/ruby_2.7_rails6_mysql2.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.7_rails6_mysql2.gemfile.lock b/gemfiles/ruby_2.7_rails6_mysql2.gemfile.lock index 06690ebe40a..096565fc7f4 100644 --- a/gemfiles/ruby_2.7_rails6_mysql2.gemfile.lock +++ b/gemfiles/ruby_2.7_rails6_mysql2.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -245,6 +235,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -307,7 +301,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_2.7_rails6_postgres.gemfile b/gemfiles/ruby_2.7_rails6_postgres.gemfile index 5c4c1989101..624fadec311 100644 --- a/gemfiles/ruby_2.7_rails6_postgres.gemfile +++ b/gemfiles/ruby_2.7_rails6_postgres.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.7_rails6_postgres.gemfile.lock b/gemfiles/ruby_2.7_rails6_postgres.gemfile.lock index 10170ce0ffb..6680001093b 100644 --- a/gemfiles/ruby_2.7_rails6_postgres.gemfile.lock +++ b/gemfiles/ruby_2.7_rails6_postgres.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -245,6 +235,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -307,7 +301,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_2.7_rails6_postgres_redis.gemfile b/gemfiles/ruby_2.7_rails6_postgres_redis.gemfile index f6b15327dcf..c7a94a70854 100644 --- a/gemfiles/ruby_2.7_rails6_postgres_redis.gemfile +++ b/gemfiles/ruby_2.7_rails6_postgres_redis.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.7_rails6_postgres_redis.gemfile.lock b/gemfiles/ruby_2.7_rails6_postgres_redis.gemfile.lock index ca4cbf5741a..07dac23a8ac 100644 --- a/gemfiles/ruby_2.7_rails6_postgres_redis.gemfile.lock +++ b/gemfiles/ruby_2.7_rails6_postgres_redis.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -246,6 +236,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -309,7 +303,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_2.7_rails6_postgres_redis_activesupport.gemfile b/gemfiles/ruby_2.7_rails6_postgres_redis_activesupport.gemfile index 0c67fa2430d..68fb53124e5 100644 --- a/gemfiles/ruby_2.7_rails6_postgres_redis_activesupport.gemfile +++ b/gemfiles/ruby_2.7_rails6_postgres_redis_activesupport.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.7_rails6_postgres_redis_activesupport.gemfile.lock b/gemfiles/ruby_2.7_rails6_postgres_redis_activesupport.gemfile.lock index 910388c45f3..b6c75246c31 100644 --- a/gemfiles/ruby_2.7_rails6_postgres_redis_activesupport.gemfile.lock +++ b/gemfiles/ruby_2.7_rails6_postgres_redis_activesupport.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -262,6 +252,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -327,7 +321,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_2.7_rails6_postgres_sidekiq.gemfile b/gemfiles/ruby_2.7_rails6_postgres_sidekiq.gemfile index 16d8db86067..f6807d362e1 100644 --- a/gemfiles/ruby_2.7_rails6_postgres_sidekiq.gemfile +++ b/gemfiles/ruby_2.7_rails6_postgres_sidekiq.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.7_rails6_postgres_sidekiq.gemfile.lock b/gemfiles/ruby_2.7_rails6_postgres_sidekiq.gemfile.lock index b6474f5cea6..d503ae4bf5f 100644 --- a/gemfiles/ruby_2.7_rails6_postgres_sidekiq.gemfile.lock +++ b/gemfiles/ruby_2.7_rails6_postgres_sidekiq.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -251,6 +241,10 @@ GEM connection_pool (>= 2.2.5, < 3) rack (~> 2.0) redis (>= 4.5.0, < 5) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -315,7 +309,7 @@ DEPENDENCIES rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) sidekiq (~> 6) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_2.7_rails6_semantic_logger.gemfile b/gemfiles/ruby_2.7_rails6_semantic_logger.gemfile index 91967d21748..37c0a014df6 100644 --- a/gemfiles/ruby_2.7_rails6_semantic_logger.gemfile +++ b/gemfiles/ruby_2.7_rails6_semantic_logger.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.7_rails6_semantic_logger.gemfile.lock b/gemfiles/ruby_2.7_rails6_semantic_logger.gemfile.lock index 8d1c9b01447..222853ed80e 100644 --- a/gemfiles/ruby_2.7_rails6_semantic_logger.gemfile.lock +++ b/gemfiles/ruby_2.7_rails6_semantic_logger.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -244,6 +234,10 @@ GEM ruby-progressbar (1.13.0) semantic_logger (4.12.0) concurrent-ruby (~> 1.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -306,7 +300,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_2.7_rails_old_redis.gemfile b/gemfiles/ruby_2.7_rails_old_redis.gemfile index 264f661cb3f..d2cd6c776c4 100644 --- a/gemfiles/ruby_2.7_rails_old_redis.gemfile +++ b/gemfiles/ruby_2.7_rails_old_redis.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.7_redis_3.gemfile b/gemfiles/ruby_2.7_redis_3.gemfile index ace949b88ef..4fdb0a3e20e 100644 --- a/gemfiles/ruby_2.7_redis_3.gemfile +++ b/gemfiles/ruby_2.7_redis_3.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.7_redis_3.gemfile.lock b/gemfiles/ruby_2.7_redis_3.gemfile.lock index 8e9e8e8067b..a520e124d1e 100644 --- a/gemfiles/ruby_2.7_redis_3.gemfile.lock +++ b/gemfiles/ruby_2.7_redis_3.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -120,6 +110,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -164,7 +158,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_2.7_redis_4.gemfile b/gemfiles/ruby_2.7_redis_4.gemfile index 1836eb46c72..87d12bcb00f 100644 --- a/gemfiles/ruby_2.7_redis_4.gemfile +++ b/gemfiles/ruby_2.7_redis_4.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.7_redis_4.gemfile.lock b/gemfiles/ruby_2.7_redis_4.gemfile.lock index 8a942d798da..13e4de10f2f 100644 --- a/gemfiles/ruby_2.7_redis_4.gemfile.lock +++ b/gemfiles/ruby_2.7_redis_4.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -120,6 +110,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -164,7 +158,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_2.7_redis_5.gemfile b/gemfiles/ruby_2.7_redis_5.gemfile index edc30469c0f..ed0bd01e3da 100644 --- a/gemfiles/ruby_2.7_redis_5.gemfile +++ b/gemfiles/ruby_2.7_redis_5.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.7_redis_5.gemfile.lock b/gemfiles/ruby_2.7_redis_5.gemfile.lock index 71d29591751..a17ea16b325 100644 --- a/gemfiles/ruby_2.7_redis_5.gemfile.lock +++ b/gemfiles/ruby_2.7_redis_5.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -124,6 +114,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -168,7 +162,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_2.7_relational_db.gemfile b/gemfiles/ruby_2.7_relational_db.gemfile index 7c9a0846669..ea8c91e9917 100644 --- a/gemfiles/ruby_2.7_relational_db.gemfile +++ b/gemfiles/ruby_2.7_relational_db.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.7_relational_db.gemfile.lock b/gemfiles/ruby_2.7_relational_db.gemfile.lock index 994f28165c8..12b310265f4 100644 --- a/gemfiles/ruby_2.7_relational_db.gemfile.lock +++ b/gemfiles/ruby_2.7_relational_db.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -147,6 +137,10 @@ GEM ruby-progressbar (1.13.0) sequel (5.83.1) bigdecimal + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -201,7 +195,7 @@ DEPENDENCIES rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) sequel - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sqlite3 (~> 1.4.1) warning (~> 1) diff --git a/gemfiles/ruby_2.7_resque2_redis3.gemfile b/gemfiles/ruby_2.7_resque2_redis3.gemfile index d79794de7d1..e110aff2055 100644 --- a/gemfiles/ruby_2.7_resque2_redis3.gemfile +++ b/gemfiles/ruby_2.7_resque2_redis3.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.7_resque2_redis3.gemfile.lock b/gemfiles/ruby_2.7_resque2_redis3.gemfile.lock index a550f596869..8debb0dd245 100644 --- a/gemfiles/ruby_2.7_resque2_redis3.gemfile.lock +++ b/gemfiles/ruby_2.7_resque2_redis3.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -135,6 +125,10 @@ GEM rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -186,7 +180,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_2.7_resque2_redis4.gemfile b/gemfiles/ruby_2.7_resque2_redis4.gemfile index be8b9ceb700..4d2d01b1109 100644 --- a/gemfiles/ruby_2.7_resque2_redis4.gemfile +++ b/gemfiles/ruby_2.7_resque2_redis4.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.7_resque2_redis4.gemfile.lock b/gemfiles/ruby_2.7_resque2_redis4.gemfile.lock index 3fad0ae3a8d..34acd83239f 100644 --- a/gemfiles/ruby_2.7_resque2_redis4.gemfile.lock +++ b/gemfiles/ruby_2.7_resque2_redis4.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -135,6 +125,10 @@ GEM rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -186,7 +180,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_2.7_sinatra_2.gemfile b/gemfiles/ruby_2.7_sinatra_2.gemfile index a634a4ca5fc..04052ec508a 100644 --- a/gemfiles/ruby_2.7_sinatra_2.gemfile +++ b/gemfiles/ruby_2.7_sinatra_2.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.7_sinatra_2.gemfile.lock b/gemfiles/ruby_2.7_sinatra_2.gemfile.lock index f8c48cb8380..408f29e4c42 100644 --- a/gemfiles/ruby_2.7_sinatra_2.gemfile.lock +++ b/gemfiles/ruby_2.7_sinatra_2.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -135,6 +125,10 @@ GEM rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -186,7 +180,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sinatra (~> 2) warning (~> 1) diff --git a/gemfiles/ruby_2.7_sinatra_3.gemfile b/gemfiles/ruby_2.7_sinatra_3.gemfile index f6e24fd7705..43412fa8e42 100644 --- a/gemfiles/ruby_2.7_sinatra_3.gemfile +++ b/gemfiles/ruby_2.7_sinatra_3.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.7_sinatra_3.gemfile.lock b/gemfiles/ruby_2.7_sinatra_3.gemfile.lock index f61e6ea3632..b6262536a44 100644 --- a/gemfiles/ruby_2.7_sinatra_3.gemfile.lock +++ b/gemfiles/ruby_2.7_sinatra_3.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -137,6 +127,10 @@ GEM rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -188,7 +182,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sinatra (~> 3) warning (~> 1) diff --git a/gemfiles/ruby_2.7_stripe_10.gemfile b/gemfiles/ruby_2.7_stripe_10.gemfile index 30c2d604e6b..477c413ba34 100644 --- a/gemfiles/ruby_2.7_stripe_10.gemfile +++ b/gemfiles/ruby_2.7_stripe_10.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.7_stripe_10.gemfile.lock b/gemfiles/ruby_2.7_stripe_10.gemfile.lock index 8533f777a41..d8bbb6d6ce6 100644 --- a/gemfiles/ruby_2.7_stripe_10.gemfile.lock +++ b/gemfiles/ruby_2.7_stripe_10.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -124,6 +114,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -168,7 +162,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 10) warning (~> 1) diff --git a/gemfiles/ruby_2.7_stripe_11.gemfile b/gemfiles/ruby_2.7_stripe_11.gemfile index e62cd65191a..bf0e3f50581 100644 --- a/gemfiles/ruby_2.7_stripe_11.gemfile +++ b/gemfiles/ruby_2.7_stripe_11.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.7_stripe_11.gemfile.lock b/gemfiles/ruby_2.7_stripe_11.gemfile.lock index c1a81f54da8..d6931ae5c8e 100644 --- a/gemfiles/ruby_2.7_stripe_11.gemfile.lock +++ b/gemfiles/ruby_2.7_stripe_11.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -124,6 +114,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -168,7 +162,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 11) warning (~> 1) diff --git a/gemfiles/ruby_2.7_stripe_12.gemfile b/gemfiles/ruby_2.7_stripe_12.gemfile index ee5c89c9826..cfe9022c436 100644 --- a/gemfiles/ruby_2.7_stripe_12.gemfile +++ b/gemfiles/ruby_2.7_stripe_12.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.7_stripe_12.gemfile.lock b/gemfiles/ruby_2.7_stripe_12.gemfile.lock index d71f5134154..2f4fd15c86c 100644 --- a/gemfiles/ruby_2.7_stripe_12.gemfile.lock +++ b/gemfiles/ruby_2.7_stripe_12.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -124,6 +114,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -168,7 +162,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 12) warning (~> 1) diff --git a/gemfiles/ruby_2.7_stripe_7.gemfile b/gemfiles/ruby_2.7_stripe_7.gemfile index 160bf01b3a2..39c5578f5e8 100644 --- a/gemfiles/ruby_2.7_stripe_7.gemfile +++ b/gemfiles/ruby_2.7_stripe_7.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.7_stripe_7.gemfile.lock b/gemfiles/ruby_2.7_stripe_7.gemfile.lock index 25e9a71cb14..054c14462ac 100644 --- a/gemfiles/ruby_2.7_stripe_7.gemfile.lock +++ b/gemfiles/ruby_2.7_stripe_7.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -124,6 +114,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -168,7 +162,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 7) warning (~> 1) diff --git a/gemfiles/ruby_2.7_stripe_8.gemfile b/gemfiles/ruby_2.7_stripe_8.gemfile index 71972f7bf68..3b4305f7b5d 100644 --- a/gemfiles/ruby_2.7_stripe_8.gemfile +++ b/gemfiles/ruby_2.7_stripe_8.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.7_stripe_8.gemfile.lock b/gemfiles/ruby_2.7_stripe_8.gemfile.lock index 322fbd56f9b..3bbf04b040b 100644 --- a/gemfiles/ruby_2.7_stripe_8.gemfile.lock +++ b/gemfiles/ruby_2.7_stripe_8.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -124,6 +114,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -168,7 +162,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 8) warning (~> 1) diff --git a/gemfiles/ruby_2.7_stripe_9.gemfile b/gemfiles/ruby_2.7_stripe_9.gemfile index 8e30dbb8698..43261b0b04b 100644 --- a/gemfiles/ruby_2.7_stripe_9.gemfile +++ b/gemfiles/ruby_2.7_stripe_9.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.7_stripe_9.gemfile.lock b/gemfiles/ruby_2.7_stripe_9.gemfile.lock index fde7e09b375..05c052453dd 100644 --- a/gemfiles/ruby_2.7_stripe_9.gemfile.lock +++ b/gemfiles/ruby_2.7_stripe_9.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -124,6 +114,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -168,7 +162,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 9) warning (~> 1) diff --git a/gemfiles/ruby_2.7_stripe_latest.gemfile b/gemfiles/ruby_2.7_stripe_latest.gemfile index 1ff8df17cd5..c66ca37d5e7 100644 --- a/gemfiles/ruby_2.7_stripe_latest.gemfile +++ b/gemfiles/ruby_2.7_stripe_latest.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.7_stripe_latest.gemfile.lock b/gemfiles/ruby_2.7_stripe_latest.gemfile.lock index 5195a06e334..c2789740ce5 100644 --- a/gemfiles/ruby_2.7_stripe_latest.gemfile.lock +++ b/gemfiles/ruby_2.7_stripe_latest.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -123,6 +113,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -166,7 +160,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) stripe warning (~> 1) diff --git a/gemfiles/ruby_2.7_stripe_min.gemfile b/gemfiles/ruby_2.7_stripe_min.gemfile index 6e038b2957b..1c532df57a5 100644 --- a/gemfiles/ruby_2.7_stripe_min.gemfile +++ b/gemfiles/ruby_2.7_stripe_min.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.7_stripe_min.gemfile.lock b/gemfiles/ruby_2.7_stripe_min.gemfile.lock index e0f7c268477..5fdd34270b2 100644 --- a/gemfiles/ruby_2.7_stripe_min.gemfile.lock +++ b/gemfiles/ruby_2.7_stripe_min.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -124,6 +114,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -167,7 +161,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) stripe (= 5.15.0) warning (~> 1) diff --git a/gemfiles/ruby_3.0_activesupport.gemfile b/gemfiles/ruby_3.0_activesupport.gemfile index d575ca8d77b..db3b00b1212 100644 --- a/gemfiles/ruby_3.0_activesupport.gemfile +++ b/gemfiles/ruby_3.0_activesupport.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.0_activesupport.gemfile.lock b/gemfiles/ruby_3.0_activesupport.gemfile.lock index 191a75f7119..20e5cb9a0b6 100644 --- a/gemfiles/ruby_3.0_activesupport.gemfile.lock +++ b/gemfiles/ruby_3.0_activesupport.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -227,6 +217,10 @@ GEM digest-crc ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -283,7 +277,7 @@ DEPENDENCIES rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) ruby-kafka (>= 0.7.10) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.0_aws.gemfile b/gemfiles/ruby_3.0_aws.gemfile index 76a7218a2ba..117c2802c77 100644 --- a/gemfiles/ruby_3.0_aws.gemfile +++ b/gemfiles/ruby_3.0_aws.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.0_aws.gemfile.lock b/gemfiles/ruby_3.0_aws.gemfile.lock index 5edee22a147..bf38915b28f 100644 --- a/gemfiles/ruby_3.0_aws.gemfile.lock +++ b/gemfiles/ruby_3.0_aws.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -1547,6 +1537,10 @@ GEM aws-sdk-core (>= 2) concurrent-ruby thor + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -1594,7 +1588,7 @@ DEPENDENCIES rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) shoryuken - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.0_contrib.gemfile b/gemfiles/ruby_3.0_contrib.gemfile index 3452cefbbac..27c9fcb27af 100644 --- a/gemfiles/ruby_3.0_contrib.gemfile +++ b/gemfiles/ruby_3.0_contrib.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.0_contrib.gemfile.lock b/gemfiles/ruby_3.0_contrib.gemfile.lock index 1dd185d15c8..95c66017d8e 100644 --- a/gemfiles/ruby_3.0_contrib.gemfile.lock +++ b/gemfiles/ruby_3.0_contrib.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -171,6 +161,10 @@ GEM rack (>= 2.2.4) redis-client (>= 0.11.0) sigdump (0.2.4) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -242,7 +236,7 @@ DEPENDENCIES rubocop-rspec (~> 2.20, < 2.21) semantic_logger (~> 4.0) sidekiq (~> 7) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sneakers (>= 2.12.0) sucker_punch diff --git a/gemfiles/ruby_3.0_contrib_old.gemfile b/gemfiles/ruby_3.0_contrib_old.gemfile index 303162e744e..a8b5989607d 100644 --- a/gemfiles/ruby_3.0_contrib_old.gemfile +++ b/gemfiles/ruby_3.0_contrib_old.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.0_contrib_old.gemfile.lock b/gemfiles/ruby_3.0_contrib_old.gemfile.lock index 97bde2e5fa1..e1e2b8556b8 100644 --- a/gemfiles/ruby_3.0_contrib_old.gemfile.lock +++ b/gemfiles/ruby_3.0_contrib_old.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -159,6 +149,10 @@ GEM rusage (0.2.0) sentry-raven (0.15.6) faraday (>= 0.7.6) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -220,7 +214,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.0_core_old.gemfile b/gemfiles/ruby_3.0_core_old.gemfile index 73f50527e6c..6bbf8a35a3a 100644 --- a/gemfiles/ruby_3.0_core_old.gemfile +++ b/gemfiles/ruby_3.0_core_old.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.0_core_old.gemfile.lock b/gemfiles/ruby_3.0_core_old.gemfile.lock index 0ff786680c1..2b526121c63 100644 --- a/gemfiles/ruby_3.0_core_old.gemfile.lock +++ b/gemfiles/ruby_3.0_core_old.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -119,6 +109,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -163,7 +157,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.0_elasticsearch_7.gemfile b/gemfiles/ruby_3.0_elasticsearch_7.gemfile index 5f78f86cd1e..27a5b792c13 100644 --- a/gemfiles/ruby_3.0_elasticsearch_7.gemfile +++ b/gemfiles/ruby_3.0_elasticsearch_7.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.0_elasticsearch_7.gemfile.lock b/gemfiles/ruby_3.0_elasticsearch_7.gemfile.lock index 45b2f54dfd2..bbdd8b436cd 100644 --- a/gemfiles/ruby_3.0_elasticsearch_7.gemfile.lock +++ b/gemfiles/ruby_3.0_elasticsearch_7.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -143,6 +133,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -189,7 +183,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.0_elasticsearch_8.gemfile b/gemfiles/ruby_3.0_elasticsearch_8.gemfile index e6b18f89861..e9f5862bf00 100644 --- a/gemfiles/ruby_3.0_elasticsearch_8.gemfile +++ b/gemfiles/ruby_3.0_elasticsearch_8.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.0_elasticsearch_8.gemfile.lock b/gemfiles/ruby_3.0_elasticsearch_8.gemfile.lock index 1bdfcf65424..8fdd7fb7a65 100644 --- a/gemfiles/ruby_3.0_elasticsearch_8.gemfile.lock +++ b/gemfiles/ruby_3.0_elasticsearch_8.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -141,6 +131,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -187,7 +181,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.0_elasticsearch_latest.gemfile b/gemfiles/ruby_3.0_elasticsearch_latest.gemfile index 731ded8a0da..aa74ecf0e43 100644 --- a/gemfiles/ruby_3.0_elasticsearch_latest.gemfile +++ b/gemfiles/ruby_3.0_elasticsearch_latest.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.0_elasticsearch_latest.gemfile.lock b/gemfiles/ruby_3.0_elasticsearch_latest.gemfile.lock index 1abdfaf326f..eb0844a6960 100644 --- a/gemfiles/ruby_3.0_elasticsearch_latest.gemfile.lock +++ b/gemfiles/ruby_3.0_elasticsearch_latest.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -142,6 +132,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -187,7 +181,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.0_graphql_1.13.gemfile b/gemfiles/ruby_3.0_graphql_1.13.gemfile index d75a0d8e0e0..1129ecc6f7b 100644 --- a/gemfiles/ruby_3.0_graphql_1.13.gemfile +++ b/gemfiles/ruby_3.0_graphql_1.13.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.0_graphql_1.13.gemfile.lock b/gemfiles/ruby_3.0_graphql_1.13.gemfile.lock index 3c5e1d1da6b..5effb0e481b 100644 --- a/gemfiles/ruby_3.0_graphql_1.13.gemfile.lock +++ b/gemfiles/ruby_3.0_graphql_1.13.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -255,6 +245,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -318,7 +312,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_3.0_graphql_2.0.gemfile b/gemfiles/ruby_3.0_graphql_2.0.gemfile index d13f54e683a..c3d845c64c7 100644 --- a/gemfiles/ruby_3.0_graphql_2.0.gemfile +++ b/gemfiles/ruby_3.0_graphql_2.0.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.0_graphql_2.0.gemfile.lock b/gemfiles/ruby_3.0_graphql_2.0.gemfile.lock index 913ec5adec7..957916e7cb1 100644 --- a/gemfiles/ruby_3.0_graphql_2.0.gemfile.lock +++ b/gemfiles/ruby_3.0_graphql_2.0.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -255,6 +245,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -318,7 +312,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_3.0_graphql_2.1.gemfile b/gemfiles/ruby_3.0_graphql_2.1.gemfile index 2e89e7b6a5e..a269ccb2e5b 100644 --- a/gemfiles/ruby_3.0_graphql_2.1.gemfile +++ b/gemfiles/ruby_3.0_graphql_2.1.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.0_graphql_2.1.gemfile.lock b/gemfiles/ruby_3.0_graphql_2.1.gemfile.lock index 6cd748d7702..dcca211e4d3 100644 --- a/gemfiles/ruby_3.0_graphql_2.1.gemfile.lock +++ b/gemfiles/ruby_3.0_graphql_2.1.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -256,6 +246,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -319,7 +313,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_3.0_graphql_2.2.gemfile b/gemfiles/ruby_3.0_graphql_2.2.gemfile index ae4712dd579..31a6fd2dfd5 100644 --- a/gemfiles/ruby_3.0_graphql_2.2.gemfile +++ b/gemfiles/ruby_3.0_graphql_2.2.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.0_graphql_2.2.gemfile.lock b/gemfiles/ruby_3.0_graphql_2.2.gemfile.lock index 3d921af658e..2b980bbad82 100644 --- a/gemfiles/ruby_3.0_graphql_2.2.gemfile.lock +++ b/gemfiles/ruby_3.0_graphql_2.2.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -256,6 +246,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -319,7 +313,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_3.0_graphql_2.3.gemfile b/gemfiles/ruby_3.0_graphql_2.3.gemfile index 04dcb43da71..7ada86e587f 100644 --- a/gemfiles/ruby_3.0_graphql_2.3.gemfile +++ b/gemfiles/ruby_3.0_graphql_2.3.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.0_graphql_2.3.gemfile.lock b/gemfiles/ruby_3.0_graphql_2.3.gemfile.lock index 8dd2bc0d550..9d91bbad304 100644 --- a/gemfiles/ruby_3.0_graphql_2.3.gemfile.lock +++ b/gemfiles/ruby_3.0_graphql_2.3.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -258,6 +248,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -321,7 +315,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_3.0_http.gemfile b/gemfiles/ruby_3.0_http.gemfile index 72eec5f57cf..8a94e8fd297 100644 --- a/gemfiles/ruby_3.0_http.gemfile +++ b/gemfiles/ruby_3.0_http.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.0_http.gemfile.lock b/gemfiles/ruby_3.0_http.gemfile.lock index d7c983fe9d2..98fa8e5a4ff 100644 --- a/gemfiles/ruby_3.0_http.gemfile.lock +++ b/gemfiles/ruby_3.0_http.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -156,6 +146,10 @@ GEM rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -211,7 +205,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) typhoeus warning (~> 1) diff --git a/gemfiles/ruby_3.0_opensearch_2.gemfile b/gemfiles/ruby_3.0_opensearch_2.gemfile index be6297729f5..7aa53ff3a5e 100644 --- a/gemfiles/ruby_3.0_opensearch_2.gemfile +++ b/gemfiles/ruby_3.0_opensearch_2.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.0_opensearch_2.gemfile.lock b/gemfiles/ruby_3.0_opensearch_2.gemfile.lock index b9d36b05e22..93a6694901e 100644 --- a/gemfiles/ruby_3.0_opensearch_2.gemfile.lock +++ b/gemfiles/ruby_3.0_opensearch_2.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -141,6 +131,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -187,7 +181,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.0_opensearch_3.gemfile b/gemfiles/ruby_3.0_opensearch_3.gemfile index 5086f729f6c..eb1eebddf07 100644 --- a/gemfiles/ruby_3.0_opensearch_3.gemfile +++ b/gemfiles/ruby_3.0_opensearch_3.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.0_opensearch_3.gemfile.lock b/gemfiles/ruby_3.0_opensearch_3.gemfile.lock index 9dea66650aa..cff16d10f78 100644 --- a/gemfiles/ruby_3.0_opensearch_3.gemfile.lock +++ b/gemfiles/ruby_3.0_opensearch_3.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -136,6 +126,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -182,7 +176,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.0_opensearch_latest.gemfile b/gemfiles/ruby_3.0_opensearch_latest.gemfile index 016654cd827..ab01d0bbaec 100644 --- a/gemfiles/ruby_3.0_opensearch_latest.gemfile +++ b/gemfiles/ruby_3.0_opensearch_latest.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.0_opensearch_latest.gemfile.lock b/gemfiles/ruby_3.0_opensearch_latest.gemfile.lock index 9a1e1aff6ce..022c7c10122 100644 --- a/gemfiles/ruby_3.0_opensearch_latest.gemfile.lock +++ b/gemfiles/ruby_3.0_opensearch_latest.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -137,6 +127,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -182,7 +176,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.0_opentelemetry.gemfile b/gemfiles/ruby_3.0_opentelemetry.gemfile index 6f4d60f8803..528eb6281e9 100644 --- a/gemfiles/ruby_3.0_opentelemetry.gemfile +++ b/gemfiles/ruby_3.0_opentelemetry.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.0_opentelemetry.gemfile.lock b/gemfiles/ruby_3.0_opentelemetry.gemfile.lock index 580a2e1f049..6ea0eb1adcc 100755 --- a/gemfiles/ruby_3.0_opentelemetry.gemfile.lock +++ b/gemfiles/ruby_3.0_opentelemetry.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -131,6 +121,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -176,7 +170,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.0_opentelemetry_otlp.gemfile b/gemfiles/ruby_3.0_opentelemetry_otlp.gemfile index 455020ef69b..fa03f2ac546 100644 --- a/gemfiles/ruby_3.0_opentelemetry_otlp.gemfile +++ b/gemfiles/ruby_3.0_opentelemetry_otlp.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.0_opentelemetry_otlp.gemfile.lock b/gemfiles/ruby_3.0_opentelemetry_otlp.gemfile.lock index d2e69ae4989..4fe23161d30 100644 --- a/gemfiles/ruby_3.0_opentelemetry_otlp.gemfile.lock +++ b/gemfiles/ruby_3.0_opentelemetry_otlp.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -145,6 +135,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -190,7 +184,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.0_rack_1.gemfile b/gemfiles/ruby_3.0_rack_1.gemfile index 65d9dd8585d..1e8707a988d 100644 --- a/gemfiles/ruby_3.0_rack_1.gemfile +++ b/gemfiles/ruby_3.0_rack_1.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.0_rack_1.gemfile.lock b/gemfiles/ruby_3.0_rack_1.gemfile.lock index 22dcb1e6d84..f7402877031 100644 --- a/gemfiles/ruby_3.0_rack_1.gemfile.lock +++ b/gemfiles/ruby_3.0_rack_1.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -126,6 +116,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -173,7 +167,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.0_rack_2.gemfile b/gemfiles/ruby_3.0_rack_2.gemfile index 6fefbb8dd68..a08797d4ee8 100644 --- a/gemfiles/ruby_3.0_rack_2.gemfile +++ b/gemfiles/ruby_3.0_rack_2.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.0_rack_2.gemfile.lock b/gemfiles/ruby_3.0_rack_2.gemfile.lock index d6dbefa1330..8581a5a787b 100644 --- a/gemfiles/ruby_3.0_rack_2.gemfile.lock +++ b/gemfiles/ruby_3.0_rack_2.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -126,6 +116,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -173,7 +167,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.0_rack_3.gemfile b/gemfiles/ruby_3.0_rack_3.gemfile index 44930d43f79..5e4535a8b53 100644 --- a/gemfiles/ruby_3.0_rack_3.gemfile +++ b/gemfiles/ruby_3.0_rack_3.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.0_rack_3.gemfile.lock b/gemfiles/ruby_3.0_rack_3.gemfile.lock index b581374a1ab..a3677b94285 100644 --- a/gemfiles/ruby_3.0_rack_3.gemfile.lock +++ b/gemfiles/ruby_3.0_rack_3.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -126,6 +116,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -173,7 +167,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.0_rack_latest.gemfile b/gemfiles/ruby_3.0_rack_latest.gemfile index fc1229d3647..97cc0b6d206 100644 --- a/gemfiles/ruby_3.0_rack_latest.gemfile +++ b/gemfiles/ruby_3.0_rack_latest.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.0_rack_latest.gemfile.lock b/gemfiles/ruby_3.0_rack_latest.gemfile.lock index deac6ab6011..6f38a2f3598 100644 --- a/gemfiles/ruby_3.0_rack_latest.gemfile.lock +++ b/gemfiles/ruby_3.0_rack_latest.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -129,6 +119,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -175,7 +169,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.0_rails61_mysql2.gemfile b/gemfiles/ruby_3.0_rails61_mysql2.gemfile index e72653c7d16..b9708f122a2 100644 --- a/gemfiles/ruby_3.0_rails61_mysql2.gemfile +++ b/gemfiles/ruby_3.0_rails61_mysql2.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.0_rails61_mysql2.gemfile.lock b/gemfiles/ruby_3.0_rails61_mysql2.gemfile.lock index 9e1c7f7c337..0522ab7982e 100644 --- a/gemfiles/ruby_3.0_rails61_mysql2.gemfile.lock +++ b/gemfiles/ruby_3.0_rails61_mysql2.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -249,6 +239,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -312,7 +306,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_3.0_rails61_postgres.gemfile b/gemfiles/ruby_3.0_rails61_postgres.gemfile index 6ac0b760a59..2f162bc5eb8 100644 --- a/gemfiles/ruby_3.0_rails61_postgres.gemfile +++ b/gemfiles/ruby_3.0_rails61_postgres.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.0_rails61_postgres.gemfile.lock b/gemfiles/ruby_3.0_rails61_postgres.gemfile.lock index f6459c0a737..804905291f8 100644 --- a/gemfiles/ruby_3.0_rails61_postgres.gemfile.lock +++ b/gemfiles/ruby_3.0_rails61_postgres.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -249,6 +239,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -312,7 +306,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_3.0_rails61_postgres_redis.gemfile b/gemfiles/ruby_3.0_rails61_postgres_redis.gemfile index 04e17c3b31f..4ae4cc24db9 100644 --- a/gemfiles/ruby_3.0_rails61_postgres_redis.gemfile +++ b/gemfiles/ruby_3.0_rails61_postgres_redis.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.0_rails61_postgres_redis.gemfile.lock b/gemfiles/ruby_3.0_rails61_postgres_redis.gemfile.lock index ec5290fdfc1..17f8e355f3f 100644 --- a/gemfiles/ruby_3.0_rails61_postgres_redis.gemfile.lock +++ b/gemfiles/ruby_3.0_rails61_postgres_redis.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -250,6 +240,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -314,7 +308,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_3.0_rails61_postgres_sidekiq.gemfile b/gemfiles/ruby_3.0_rails61_postgres_sidekiq.gemfile index 441a873b780..280abf0b030 100644 --- a/gemfiles/ruby_3.0_rails61_postgres_sidekiq.gemfile +++ b/gemfiles/ruby_3.0_rails61_postgres_sidekiq.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.0_rails61_postgres_sidekiq.gemfile.lock b/gemfiles/ruby_3.0_rails61_postgres_sidekiq.gemfile.lock index 4ee1d99d3b2..943dc636515 100644 --- a/gemfiles/ruby_3.0_rails61_postgres_sidekiq.gemfile.lock +++ b/gemfiles/ruby_3.0_rails61_postgres_sidekiq.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -263,6 +253,10 @@ GEM connection_pool (>= 2.3.0) rack (>= 2.2.4) redis-client (>= 0.11.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -328,7 +322,7 @@ DEPENDENCIES rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) sidekiq (>= 6.1.2) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_3.0_rails61_semantic_logger.gemfile b/gemfiles/ruby_3.0_rails61_semantic_logger.gemfile index 32244075e2b..e548fa50b3c 100644 --- a/gemfiles/ruby_3.0_rails61_semantic_logger.gemfile +++ b/gemfiles/ruby_3.0_rails61_semantic_logger.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.0_rails61_semantic_logger.gemfile.lock b/gemfiles/ruby_3.0_rails61_semantic_logger.gemfile.lock index 6f6de925f44..269309a30d1 100644 --- a/gemfiles/ruby_3.0_rails61_semantic_logger.gemfile.lock +++ b/gemfiles/ruby_3.0_rails61_semantic_logger.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -248,6 +238,10 @@ GEM ruby-progressbar (1.13.0) semantic_logger (4.12.0) concurrent-ruby (~> 1.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -311,7 +305,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_3.0_rails61_trilogy.gemfile b/gemfiles/ruby_3.0_rails61_trilogy.gemfile index fac74ce6482..b9baf1a6592 100644 --- a/gemfiles/ruby_3.0_rails61_trilogy.gemfile +++ b/gemfiles/ruby_3.0_rails61_trilogy.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.0_rails61_trilogy.gemfile.lock b/gemfiles/ruby_3.0_rails61_trilogy.gemfile.lock index d5eefd5c090..c0b05cc8ba7 100644 --- a/gemfiles/ruby_3.0_rails61_trilogy.gemfile.lock +++ b/gemfiles/ruby_3.0_rails61_trilogy.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -256,6 +246,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -320,7 +314,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) trilogy diff --git a/gemfiles/ruby_3.0_rails7.gemfile b/gemfiles/ruby_3.0_rails7.gemfile index b17a58ae83e..2e32b1a98bf 100644 --- a/gemfiles/ruby_3.0_rails7.gemfile +++ b/gemfiles/ruby_3.0_rails7.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.0_rails7.gemfile.lock b/gemfiles/ruby_3.0_rails7.gemfile.lock index b9ae253aa93..57086df0100 100644 --- a/gemfiles/ruby_3.0_rails7.gemfile.lock +++ b/gemfiles/ruby_3.0_rails7.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -254,6 +244,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -307,7 +301,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.0_rails71.gemfile b/gemfiles/ruby_3.0_rails71.gemfile index 6dbfd093783..12ebea780d0 100644 --- a/gemfiles/ruby_3.0_rails71.gemfile +++ b/gemfiles/ruby_3.0_rails71.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.0_rails71.gemfile.lock b/gemfiles/ruby_3.0_rails71.gemfile.lock index 3852d2183df..c415c69835b 100644 --- a/gemfiles/ruby_3.0_rails71.gemfile.lock +++ b/gemfiles/ruby_3.0_rails71.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -283,6 +273,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -337,7 +331,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.0_rails_old_redis.gemfile b/gemfiles/ruby_3.0_rails_old_redis.gemfile index c37773ef612..3cc2e136201 100644 --- a/gemfiles/ruby_3.0_rails_old_redis.gemfile +++ b/gemfiles/ruby_3.0_rails_old_redis.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.0_redis_3.gemfile b/gemfiles/ruby_3.0_redis_3.gemfile index ec4ac063312..c8ec64ced3c 100644 --- a/gemfiles/ruby_3.0_redis_3.gemfile +++ b/gemfiles/ruby_3.0_redis_3.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.0_redis_3.gemfile.lock b/gemfiles/ruby_3.0_redis_3.gemfile.lock index 081eef7c2c0..81acb1aaba5 100644 --- a/gemfiles/ruby_3.0_redis_3.gemfile.lock +++ b/gemfiles/ruby_3.0_redis_3.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -120,6 +110,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -165,7 +159,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.0_redis_4.gemfile b/gemfiles/ruby_3.0_redis_4.gemfile index e12e985d26c..018259e6afe 100644 --- a/gemfiles/ruby_3.0_redis_4.gemfile +++ b/gemfiles/ruby_3.0_redis_4.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.0_redis_4.gemfile.lock b/gemfiles/ruby_3.0_redis_4.gemfile.lock index d4cfaf348bb..4ec56cc9610 100644 --- a/gemfiles/ruby_3.0_redis_4.gemfile.lock +++ b/gemfiles/ruby_3.0_redis_4.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -120,6 +110,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -165,7 +159,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.0_redis_5.gemfile b/gemfiles/ruby_3.0_redis_5.gemfile index 8b5cf99cf08..3323ec2baf6 100644 --- a/gemfiles/ruby_3.0_redis_5.gemfile +++ b/gemfiles/ruby_3.0_redis_5.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.0_redis_5.gemfile.lock b/gemfiles/ruby_3.0_redis_5.gemfile.lock index 99c7f3e29e2..1b063fca7d5 100644 --- a/gemfiles/ruby_3.0_redis_5.gemfile.lock +++ b/gemfiles/ruby_3.0_redis_5.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -124,6 +114,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -169,7 +163,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.0_relational_db.gemfile b/gemfiles/ruby_3.0_relational_db.gemfile index 04e64723b4e..db5bea183f4 100644 --- a/gemfiles/ruby_3.0_relational_db.gemfile +++ b/gemfiles/ruby_3.0_relational_db.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.0_relational_db.gemfile.lock b/gemfiles/ruby_3.0_relational_db.gemfile.lock index 2cf52200506..f199372a978 100644 --- a/gemfiles/ruby_3.0_relational_db.gemfile.lock +++ b/gemfiles/ruby_3.0_relational_db.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -146,6 +136,10 @@ GEM ruby-progressbar (1.13.0) sequel (5.83.1) bigdecimal + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -202,7 +196,7 @@ DEPENDENCIES rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) sequel - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sqlite3 (>= 1.4.2) trilogy diff --git a/gemfiles/ruby_3.0_resque2_redis3.gemfile b/gemfiles/ruby_3.0_resque2_redis3.gemfile index 7b79d1aaab9..47a7c231923 100644 --- a/gemfiles/ruby_3.0_resque2_redis3.gemfile +++ b/gemfiles/ruby_3.0_resque2_redis3.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.0_resque2_redis3.gemfile.lock b/gemfiles/ruby_3.0_resque2_redis3.gemfile.lock index d1c3d7feb24..14c5736ae5a 100644 --- a/gemfiles/ruby_3.0_resque2_redis3.gemfile.lock +++ b/gemfiles/ruby_3.0_resque2_redis3.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -135,6 +125,10 @@ GEM rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -187,7 +181,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.0_resque2_redis4.gemfile b/gemfiles/ruby_3.0_resque2_redis4.gemfile index 1aaaf498b44..394dba4f204 100644 --- a/gemfiles/ruby_3.0_resque2_redis4.gemfile +++ b/gemfiles/ruby_3.0_resque2_redis4.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.0_resque2_redis4.gemfile.lock b/gemfiles/ruby_3.0_resque2_redis4.gemfile.lock index b8e075be2bd..ab7bf24a9a6 100644 --- a/gemfiles/ruby_3.0_resque2_redis4.gemfile.lock +++ b/gemfiles/ruby_3.0_resque2_redis4.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -139,6 +129,10 @@ GEM rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -191,7 +185,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.0_sinatra_2.gemfile b/gemfiles/ruby_3.0_sinatra_2.gemfile index c33e7e726a8..ec4c1607ef4 100644 --- a/gemfiles/ruby_3.0_sinatra_2.gemfile +++ b/gemfiles/ruby_3.0_sinatra_2.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.0_sinatra_2.gemfile.lock b/gemfiles/ruby_3.0_sinatra_2.gemfile.lock index e049561308a..df14d7471ee 100644 --- a/gemfiles/ruby_3.0_sinatra_2.gemfile.lock +++ b/gemfiles/ruby_3.0_sinatra_2.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -135,6 +125,10 @@ GEM rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -187,7 +181,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sinatra (~> 2) warning (~> 1) diff --git a/gemfiles/ruby_3.0_sinatra_3.gemfile b/gemfiles/ruby_3.0_sinatra_3.gemfile index e2952bf20bd..954dbdbe27a 100644 --- a/gemfiles/ruby_3.0_sinatra_3.gemfile +++ b/gemfiles/ruby_3.0_sinatra_3.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.0_sinatra_3.gemfile.lock b/gemfiles/ruby_3.0_sinatra_3.gemfile.lock index 0e2957b068c..01bc4739f0b 100644 --- a/gemfiles/ruby_3.0_sinatra_3.gemfile.lock +++ b/gemfiles/ruby_3.0_sinatra_3.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -137,6 +127,10 @@ GEM rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -189,7 +183,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sinatra (~> 3) warning (~> 1) diff --git a/gemfiles/ruby_3.0_sinatra_4.gemfile b/gemfiles/ruby_3.0_sinatra_4.gemfile index f3302918408..5c60b05e3f3 100644 --- a/gemfiles/ruby_3.0_sinatra_4.gemfile +++ b/gemfiles/ruby_3.0_sinatra_4.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.0_sinatra_4.gemfile.lock b/gemfiles/ruby_3.0_sinatra_4.gemfile.lock index 5a52dfed468..86536da465d 100644 --- a/gemfiles/ruby_3.0_sinatra_4.gemfile.lock +++ b/gemfiles/ruby_3.0_sinatra_4.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -139,6 +129,10 @@ GEM rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -192,7 +186,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sinatra (~> 4) warning (~> 1) diff --git a/gemfiles/ruby_3.0_stripe_10.gemfile b/gemfiles/ruby_3.0_stripe_10.gemfile index 56ee7f4126d..dc1a588b06c 100644 --- a/gemfiles/ruby_3.0_stripe_10.gemfile +++ b/gemfiles/ruby_3.0_stripe_10.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.0_stripe_10.gemfile.lock b/gemfiles/ruby_3.0_stripe_10.gemfile.lock index bc7235679ed..b4e72d75369 100644 --- a/gemfiles/ruby_3.0_stripe_10.gemfile.lock +++ b/gemfiles/ruby_3.0_stripe_10.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -125,6 +115,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -170,7 +164,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 10) warning (~> 1) diff --git a/gemfiles/ruby_3.0_stripe_11.gemfile b/gemfiles/ruby_3.0_stripe_11.gemfile index d90aa264168..c91d810e684 100644 --- a/gemfiles/ruby_3.0_stripe_11.gemfile +++ b/gemfiles/ruby_3.0_stripe_11.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.0_stripe_11.gemfile.lock b/gemfiles/ruby_3.0_stripe_11.gemfile.lock index c7232281ae3..e0027c0db0d 100644 --- a/gemfiles/ruby_3.0_stripe_11.gemfile.lock +++ b/gemfiles/ruby_3.0_stripe_11.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -125,6 +115,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -170,7 +164,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 11) warning (~> 1) diff --git a/gemfiles/ruby_3.0_stripe_12.gemfile b/gemfiles/ruby_3.0_stripe_12.gemfile index 7e835132553..3199f19a48e 100644 --- a/gemfiles/ruby_3.0_stripe_12.gemfile +++ b/gemfiles/ruby_3.0_stripe_12.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.0_stripe_12.gemfile.lock b/gemfiles/ruby_3.0_stripe_12.gemfile.lock index 92b2b8dbb18..26e2af3f237 100644 --- a/gemfiles/ruby_3.0_stripe_12.gemfile.lock +++ b/gemfiles/ruby_3.0_stripe_12.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -125,6 +115,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -170,7 +164,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 12) warning (~> 1) diff --git a/gemfiles/ruby_3.0_stripe_7.gemfile b/gemfiles/ruby_3.0_stripe_7.gemfile index 5af74010422..10fcf73e02f 100644 --- a/gemfiles/ruby_3.0_stripe_7.gemfile +++ b/gemfiles/ruby_3.0_stripe_7.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.0_stripe_7.gemfile.lock b/gemfiles/ruby_3.0_stripe_7.gemfile.lock index 5e3e35e6719..18ec914fa03 100644 --- a/gemfiles/ruby_3.0_stripe_7.gemfile.lock +++ b/gemfiles/ruby_3.0_stripe_7.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -125,6 +115,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -170,7 +164,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 7) warning (~> 1) diff --git a/gemfiles/ruby_3.0_stripe_8.gemfile b/gemfiles/ruby_3.0_stripe_8.gemfile index 86d7a931271..84f1d26e650 100644 --- a/gemfiles/ruby_3.0_stripe_8.gemfile +++ b/gemfiles/ruby_3.0_stripe_8.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.0_stripe_8.gemfile.lock b/gemfiles/ruby_3.0_stripe_8.gemfile.lock index efda1eea060..f2caea0da16 100644 --- a/gemfiles/ruby_3.0_stripe_8.gemfile.lock +++ b/gemfiles/ruby_3.0_stripe_8.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -125,6 +115,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -170,7 +164,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 8) warning (~> 1) diff --git a/gemfiles/ruby_3.0_stripe_9.gemfile b/gemfiles/ruby_3.0_stripe_9.gemfile index 83e0e24282a..9035d9a3699 100644 --- a/gemfiles/ruby_3.0_stripe_9.gemfile +++ b/gemfiles/ruby_3.0_stripe_9.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.0_stripe_9.gemfile.lock b/gemfiles/ruby_3.0_stripe_9.gemfile.lock index 8e53b2984f7..a3f400045e5 100644 --- a/gemfiles/ruby_3.0_stripe_9.gemfile.lock +++ b/gemfiles/ruby_3.0_stripe_9.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -125,6 +115,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -170,7 +164,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 9) warning (~> 1) diff --git a/gemfiles/ruby_3.0_stripe_latest.gemfile b/gemfiles/ruby_3.0_stripe_latest.gemfile index f792dfa1981..0e4caba9e48 100644 --- a/gemfiles/ruby_3.0_stripe_latest.gemfile +++ b/gemfiles/ruby_3.0_stripe_latest.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.0_stripe_latest.gemfile.lock b/gemfiles/ruby_3.0_stripe_latest.gemfile.lock index df6be9fa5b3..10d85c80079 100644 --- a/gemfiles/ruby_3.0_stripe_latest.gemfile.lock +++ b/gemfiles/ruby_3.0_stripe_latest.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -124,6 +114,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -168,7 +162,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) stripe warning (~> 1) diff --git a/gemfiles/ruby_3.0_stripe_min.gemfile b/gemfiles/ruby_3.0_stripe_min.gemfile index 9d7f405985a..aa082ccb652 100644 --- a/gemfiles/ruby_3.0_stripe_min.gemfile +++ b/gemfiles/ruby_3.0_stripe_min.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.0_stripe_min.gemfile.lock b/gemfiles/ruby_3.0_stripe_min.gemfile.lock index 1247490b300..820ce2199d0 100644 --- a/gemfiles/ruby_3.0_stripe_min.gemfile.lock +++ b/gemfiles/ruby_3.0_stripe_min.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -124,6 +114,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -168,7 +162,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) stripe (= 5.15.0) warning (~> 1) diff --git a/gemfiles/ruby_3.1_activesupport.gemfile b/gemfiles/ruby_3.1_activesupport.gemfile index d575ca8d77b..db3b00b1212 100644 --- a/gemfiles/ruby_3.1_activesupport.gemfile +++ b/gemfiles/ruby_3.1_activesupport.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.1_activesupport.gemfile.lock b/gemfiles/ruby_3.1_activesupport.gemfile.lock index 191a75f7119..20e5cb9a0b6 100644 --- a/gemfiles/ruby_3.1_activesupport.gemfile.lock +++ b/gemfiles/ruby_3.1_activesupport.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -227,6 +217,10 @@ GEM digest-crc ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -283,7 +277,7 @@ DEPENDENCIES rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) ruby-kafka (>= 0.7.10) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.1_aws.gemfile b/gemfiles/ruby_3.1_aws.gemfile index 76a7218a2ba..117c2802c77 100644 --- a/gemfiles/ruby_3.1_aws.gemfile +++ b/gemfiles/ruby_3.1_aws.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.1_aws.gemfile.lock b/gemfiles/ruby_3.1_aws.gemfile.lock index 5edee22a147..bf38915b28f 100644 --- a/gemfiles/ruby_3.1_aws.gemfile.lock +++ b/gemfiles/ruby_3.1_aws.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -1547,6 +1537,10 @@ GEM aws-sdk-core (>= 2) concurrent-ruby thor + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -1594,7 +1588,7 @@ DEPENDENCIES rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) shoryuken - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.1_contrib.gemfile b/gemfiles/ruby_3.1_contrib.gemfile index 3452cefbbac..27c9fcb27af 100644 --- a/gemfiles/ruby_3.1_contrib.gemfile +++ b/gemfiles/ruby_3.1_contrib.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.1_contrib.gemfile.lock b/gemfiles/ruby_3.1_contrib.gemfile.lock index 1dd185d15c8..95c66017d8e 100644 --- a/gemfiles/ruby_3.1_contrib.gemfile.lock +++ b/gemfiles/ruby_3.1_contrib.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -171,6 +161,10 @@ GEM rack (>= 2.2.4) redis-client (>= 0.11.0) sigdump (0.2.4) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -242,7 +236,7 @@ DEPENDENCIES rubocop-rspec (~> 2.20, < 2.21) semantic_logger (~> 4.0) sidekiq (~> 7) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sneakers (>= 2.12.0) sucker_punch diff --git a/gemfiles/ruby_3.1_contrib_old.gemfile b/gemfiles/ruby_3.1_contrib_old.gemfile index 303162e744e..a8b5989607d 100644 --- a/gemfiles/ruby_3.1_contrib_old.gemfile +++ b/gemfiles/ruby_3.1_contrib_old.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.1_contrib_old.gemfile.lock b/gemfiles/ruby_3.1_contrib_old.gemfile.lock index 97bde2e5fa1..e1e2b8556b8 100644 --- a/gemfiles/ruby_3.1_contrib_old.gemfile.lock +++ b/gemfiles/ruby_3.1_contrib_old.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -159,6 +149,10 @@ GEM rusage (0.2.0) sentry-raven (0.15.6) faraday (>= 0.7.6) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -220,7 +214,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.1_core_old.gemfile b/gemfiles/ruby_3.1_core_old.gemfile index 73f50527e6c..6bbf8a35a3a 100644 --- a/gemfiles/ruby_3.1_core_old.gemfile +++ b/gemfiles/ruby_3.1_core_old.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.1_core_old.gemfile.lock b/gemfiles/ruby_3.1_core_old.gemfile.lock index 0ff786680c1..2b526121c63 100644 --- a/gemfiles/ruby_3.1_core_old.gemfile.lock +++ b/gemfiles/ruby_3.1_core_old.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -119,6 +109,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -163,7 +157,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.1_elasticsearch_7.gemfile b/gemfiles/ruby_3.1_elasticsearch_7.gemfile index 5f78f86cd1e..27a5b792c13 100644 --- a/gemfiles/ruby_3.1_elasticsearch_7.gemfile +++ b/gemfiles/ruby_3.1_elasticsearch_7.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.1_elasticsearch_7.gemfile.lock b/gemfiles/ruby_3.1_elasticsearch_7.gemfile.lock index 45b2f54dfd2..bbdd8b436cd 100644 --- a/gemfiles/ruby_3.1_elasticsearch_7.gemfile.lock +++ b/gemfiles/ruby_3.1_elasticsearch_7.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -143,6 +133,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -189,7 +183,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.1_elasticsearch_8.gemfile b/gemfiles/ruby_3.1_elasticsearch_8.gemfile index e6b18f89861..e9f5862bf00 100644 --- a/gemfiles/ruby_3.1_elasticsearch_8.gemfile +++ b/gemfiles/ruby_3.1_elasticsearch_8.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.1_elasticsearch_8.gemfile.lock b/gemfiles/ruby_3.1_elasticsearch_8.gemfile.lock index 1bdfcf65424..8fdd7fb7a65 100644 --- a/gemfiles/ruby_3.1_elasticsearch_8.gemfile.lock +++ b/gemfiles/ruby_3.1_elasticsearch_8.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -141,6 +131,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -187,7 +181,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.1_elasticsearch_latest.gemfile b/gemfiles/ruby_3.1_elasticsearch_latest.gemfile index 731ded8a0da..aa74ecf0e43 100644 --- a/gemfiles/ruby_3.1_elasticsearch_latest.gemfile +++ b/gemfiles/ruby_3.1_elasticsearch_latest.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.1_elasticsearch_latest.gemfile.lock b/gemfiles/ruby_3.1_elasticsearch_latest.gemfile.lock index 1abdfaf326f..eb0844a6960 100644 --- a/gemfiles/ruby_3.1_elasticsearch_latest.gemfile.lock +++ b/gemfiles/ruby_3.1_elasticsearch_latest.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -142,6 +132,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -187,7 +181,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.1_graphql_1.13.gemfile b/gemfiles/ruby_3.1_graphql_1.13.gemfile index d75a0d8e0e0..1129ecc6f7b 100644 --- a/gemfiles/ruby_3.1_graphql_1.13.gemfile +++ b/gemfiles/ruby_3.1_graphql_1.13.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.1_graphql_1.13.gemfile.lock b/gemfiles/ruby_3.1_graphql_1.13.gemfile.lock index 3c5e1d1da6b..5effb0e481b 100644 --- a/gemfiles/ruby_3.1_graphql_1.13.gemfile.lock +++ b/gemfiles/ruby_3.1_graphql_1.13.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -255,6 +245,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -318,7 +312,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_3.1_graphql_2.0.gemfile b/gemfiles/ruby_3.1_graphql_2.0.gemfile index d13f54e683a..c3d845c64c7 100644 --- a/gemfiles/ruby_3.1_graphql_2.0.gemfile +++ b/gemfiles/ruby_3.1_graphql_2.0.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.1_graphql_2.0.gemfile.lock b/gemfiles/ruby_3.1_graphql_2.0.gemfile.lock index 913ec5adec7..957916e7cb1 100644 --- a/gemfiles/ruby_3.1_graphql_2.0.gemfile.lock +++ b/gemfiles/ruby_3.1_graphql_2.0.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -255,6 +245,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -318,7 +312,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_3.1_graphql_2.1.gemfile b/gemfiles/ruby_3.1_graphql_2.1.gemfile index 2e89e7b6a5e..a269ccb2e5b 100644 --- a/gemfiles/ruby_3.1_graphql_2.1.gemfile +++ b/gemfiles/ruby_3.1_graphql_2.1.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.1_graphql_2.1.gemfile.lock b/gemfiles/ruby_3.1_graphql_2.1.gemfile.lock index 6cd748d7702..dcca211e4d3 100644 --- a/gemfiles/ruby_3.1_graphql_2.1.gemfile.lock +++ b/gemfiles/ruby_3.1_graphql_2.1.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -256,6 +246,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -319,7 +313,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_3.1_graphql_2.2.gemfile b/gemfiles/ruby_3.1_graphql_2.2.gemfile index ae4712dd579..31a6fd2dfd5 100644 --- a/gemfiles/ruby_3.1_graphql_2.2.gemfile +++ b/gemfiles/ruby_3.1_graphql_2.2.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.1_graphql_2.2.gemfile.lock b/gemfiles/ruby_3.1_graphql_2.2.gemfile.lock index 3d921af658e..2b980bbad82 100644 --- a/gemfiles/ruby_3.1_graphql_2.2.gemfile.lock +++ b/gemfiles/ruby_3.1_graphql_2.2.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -256,6 +246,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -319,7 +313,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_3.1_graphql_2.3.gemfile b/gemfiles/ruby_3.1_graphql_2.3.gemfile index 04dcb43da71..7ada86e587f 100644 --- a/gemfiles/ruby_3.1_graphql_2.3.gemfile +++ b/gemfiles/ruby_3.1_graphql_2.3.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.1_graphql_2.3.gemfile.lock b/gemfiles/ruby_3.1_graphql_2.3.gemfile.lock index 8dd2bc0d550..9d91bbad304 100644 --- a/gemfiles/ruby_3.1_graphql_2.3.gemfile.lock +++ b/gemfiles/ruby_3.1_graphql_2.3.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -258,6 +248,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -321,7 +315,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_3.1_http.gemfile b/gemfiles/ruby_3.1_http.gemfile index 72eec5f57cf..8a94e8fd297 100644 --- a/gemfiles/ruby_3.1_http.gemfile +++ b/gemfiles/ruby_3.1_http.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.1_http.gemfile.lock b/gemfiles/ruby_3.1_http.gemfile.lock index d7c983fe9d2..98fa8e5a4ff 100644 --- a/gemfiles/ruby_3.1_http.gemfile.lock +++ b/gemfiles/ruby_3.1_http.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -156,6 +146,10 @@ GEM rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -211,7 +205,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) typhoeus warning (~> 1) diff --git a/gemfiles/ruby_3.1_opensearch_2.gemfile b/gemfiles/ruby_3.1_opensearch_2.gemfile index be6297729f5..7aa53ff3a5e 100644 --- a/gemfiles/ruby_3.1_opensearch_2.gemfile +++ b/gemfiles/ruby_3.1_opensearch_2.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.1_opensearch_2.gemfile.lock b/gemfiles/ruby_3.1_opensearch_2.gemfile.lock index b9d36b05e22..93a6694901e 100644 --- a/gemfiles/ruby_3.1_opensearch_2.gemfile.lock +++ b/gemfiles/ruby_3.1_opensearch_2.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -141,6 +131,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -187,7 +181,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.1_opensearch_3.gemfile b/gemfiles/ruby_3.1_opensearch_3.gemfile index 5086f729f6c..eb1eebddf07 100644 --- a/gemfiles/ruby_3.1_opensearch_3.gemfile +++ b/gemfiles/ruby_3.1_opensearch_3.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.1_opensearch_3.gemfile.lock b/gemfiles/ruby_3.1_opensearch_3.gemfile.lock index 9dea66650aa..cff16d10f78 100644 --- a/gemfiles/ruby_3.1_opensearch_3.gemfile.lock +++ b/gemfiles/ruby_3.1_opensearch_3.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -136,6 +126,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -182,7 +176,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.1_opensearch_latest.gemfile b/gemfiles/ruby_3.1_opensearch_latest.gemfile index 016654cd827..ab01d0bbaec 100644 --- a/gemfiles/ruby_3.1_opensearch_latest.gemfile +++ b/gemfiles/ruby_3.1_opensearch_latest.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.1_opensearch_latest.gemfile.lock b/gemfiles/ruby_3.1_opensearch_latest.gemfile.lock index 9a1e1aff6ce..022c7c10122 100644 --- a/gemfiles/ruby_3.1_opensearch_latest.gemfile.lock +++ b/gemfiles/ruby_3.1_opensearch_latest.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -137,6 +127,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -182,7 +176,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.1_opentelemetry.gemfile b/gemfiles/ruby_3.1_opentelemetry.gemfile index 6f4d60f8803..528eb6281e9 100644 --- a/gemfiles/ruby_3.1_opentelemetry.gemfile +++ b/gemfiles/ruby_3.1_opentelemetry.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.1_opentelemetry.gemfile.lock b/gemfiles/ruby_3.1_opentelemetry.gemfile.lock index ed619123a9e..0028c265354 100644 --- a/gemfiles/ruby_3.1_opentelemetry.gemfile.lock +++ b/gemfiles/ruby_3.1_opentelemetry.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -136,6 +126,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -182,7 +176,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.1_opentelemetry_otlp.gemfile b/gemfiles/ruby_3.1_opentelemetry_otlp.gemfile index 455020ef69b..fa03f2ac546 100644 --- a/gemfiles/ruby_3.1_opentelemetry_otlp.gemfile +++ b/gemfiles/ruby_3.1_opentelemetry_otlp.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.1_opentelemetry_otlp.gemfile.lock b/gemfiles/ruby_3.1_opentelemetry_otlp.gemfile.lock index d2e69ae4989..4fe23161d30 100644 --- a/gemfiles/ruby_3.1_opentelemetry_otlp.gemfile.lock +++ b/gemfiles/ruby_3.1_opentelemetry_otlp.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -145,6 +135,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -190,7 +184,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.1_rack_1.gemfile b/gemfiles/ruby_3.1_rack_1.gemfile index 65d9dd8585d..1e8707a988d 100644 --- a/gemfiles/ruby_3.1_rack_1.gemfile +++ b/gemfiles/ruby_3.1_rack_1.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.1_rack_1.gemfile.lock b/gemfiles/ruby_3.1_rack_1.gemfile.lock index 22dcb1e6d84..f7402877031 100644 --- a/gemfiles/ruby_3.1_rack_1.gemfile.lock +++ b/gemfiles/ruby_3.1_rack_1.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -126,6 +116,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -173,7 +167,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.1_rack_2.gemfile b/gemfiles/ruby_3.1_rack_2.gemfile index 6fefbb8dd68..a08797d4ee8 100644 --- a/gemfiles/ruby_3.1_rack_2.gemfile +++ b/gemfiles/ruby_3.1_rack_2.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.1_rack_2.gemfile.lock b/gemfiles/ruby_3.1_rack_2.gemfile.lock index d6dbefa1330..8581a5a787b 100644 --- a/gemfiles/ruby_3.1_rack_2.gemfile.lock +++ b/gemfiles/ruby_3.1_rack_2.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -126,6 +116,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -173,7 +167,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.1_rack_3.gemfile b/gemfiles/ruby_3.1_rack_3.gemfile index 44930d43f79..5e4535a8b53 100644 --- a/gemfiles/ruby_3.1_rack_3.gemfile +++ b/gemfiles/ruby_3.1_rack_3.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.1_rack_3.gemfile.lock b/gemfiles/ruby_3.1_rack_3.gemfile.lock index b581374a1ab..a3677b94285 100644 --- a/gemfiles/ruby_3.1_rack_3.gemfile.lock +++ b/gemfiles/ruby_3.1_rack_3.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -126,6 +116,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -173,7 +167,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.1_rack_latest.gemfile b/gemfiles/ruby_3.1_rack_latest.gemfile index fc1229d3647..97cc0b6d206 100644 --- a/gemfiles/ruby_3.1_rack_latest.gemfile +++ b/gemfiles/ruby_3.1_rack_latest.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.1_rack_latest.gemfile.lock b/gemfiles/ruby_3.1_rack_latest.gemfile.lock index deac6ab6011..6f38a2f3598 100644 --- a/gemfiles/ruby_3.1_rack_latest.gemfile.lock +++ b/gemfiles/ruby_3.1_rack_latest.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -129,6 +119,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -175,7 +169,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.1_rails61_mysql2.gemfile b/gemfiles/ruby_3.1_rails61_mysql2.gemfile index e72653c7d16..b9708f122a2 100644 --- a/gemfiles/ruby_3.1_rails61_mysql2.gemfile +++ b/gemfiles/ruby_3.1_rails61_mysql2.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.1_rails61_mysql2.gemfile.lock b/gemfiles/ruby_3.1_rails61_mysql2.gemfile.lock index 9e1c7f7c337..0522ab7982e 100644 --- a/gemfiles/ruby_3.1_rails61_mysql2.gemfile.lock +++ b/gemfiles/ruby_3.1_rails61_mysql2.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -249,6 +239,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -312,7 +306,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_3.1_rails61_postgres.gemfile b/gemfiles/ruby_3.1_rails61_postgres.gemfile index 6ac0b760a59..2f162bc5eb8 100644 --- a/gemfiles/ruby_3.1_rails61_postgres.gemfile +++ b/gemfiles/ruby_3.1_rails61_postgres.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.1_rails61_postgres.gemfile.lock b/gemfiles/ruby_3.1_rails61_postgres.gemfile.lock index f6459c0a737..804905291f8 100644 --- a/gemfiles/ruby_3.1_rails61_postgres.gemfile.lock +++ b/gemfiles/ruby_3.1_rails61_postgres.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -249,6 +239,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -312,7 +306,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_3.1_rails61_postgres_redis.gemfile b/gemfiles/ruby_3.1_rails61_postgres_redis.gemfile index 04e17c3b31f..4ae4cc24db9 100644 --- a/gemfiles/ruby_3.1_rails61_postgres_redis.gemfile +++ b/gemfiles/ruby_3.1_rails61_postgres_redis.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.1_rails61_postgres_redis.gemfile.lock b/gemfiles/ruby_3.1_rails61_postgres_redis.gemfile.lock index ec5290fdfc1..17f8e355f3f 100644 --- a/gemfiles/ruby_3.1_rails61_postgres_redis.gemfile.lock +++ b/gemfiles/ruby_3.1_rails61_postgres_redis.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -250,6 +240,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -314,7 +308,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_3.1_rails61_postgres_sidekiq.gemfile b/gemfiles/ruby_3.1_rails61_postgres_sidekiq.gemfile index 441a873b780..280abf0b030 100644 --- a/gemfiles/ruby_3.1_rails61_postgres_sidekiq.gemfile +++ b/gemfiles/ruby_3.1_rails61_postgres_sidekiq.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.1_rails61_postgres_sidekiq.gemfile.lock b/gemfiles/ruby_3.1_rails61_postgres_sidekiq.gemfile.lock index 4ee1d99d3b2..943dc636515 100644 --- a/gemfiles/ruby_3.1_rails61_postgres_sidekiq.gemfile.lock +++ b/gemfiles/ruby_3.1_rails61_postgres_sidekiq.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -263,6 +253,10 @@ GEM connection_pool (>= 2.3.0) rack (>= 2.2.4) redis-client (>= 0.11.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -328,7 +322,7 @@ DEPENDENCIES rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) sidekiq (>= 6.1.2) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_3.1_rails61_semantic_logger.gemfile b/gemfiles/ruby_3.1_rails61_semantic_logger.gemfile index 32244075e2b..e548fa50b3c 100644 --- a/gemfiles/ruby_3.1_rails61_semantic_logger.gemfile +++ b/gemfiles/ruby_3.1_rails61_semantic_logger.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.1_rails61_semantic_logger.gemfile.lock b/gemfiles/ruby_3.1_rails61_semantic_logger.gemfile.lock index 6f6de925f44..269309a30d1 100644 --- a/gemfiles/ruby_3.1_rails61_semantic_logger.gemfile.lock +++ b/gemfiles/ruby_3.1_rails61_semantic_logger.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -248,6 +238,10 @@ GEM ruby-progressbar (1.13.0) semantic_logger (4.12.0) concurrent-ruby (~> 1.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -311,7 +305,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_3.1_rails61_trilogy.gemfile b/gemfiles/ruby_3.1_rails61_trilogy.gemfile index fac74ce6482..b9baf1a6592 100644 --- a/gemfiles/ruby_3.1_rails61_trilogy.gemfile +++ b/gemfiles/ruby_3.1_rails61_trilogy.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.1_rails61_trilogy.gemfile.lock b/gemfiles/ruby_3.1_rails61_trilogy.gemfile.lock index d5eefd5c090..c0b05cc8ba7 100644 --- a/gemfiles/ruby_3.1_rails61_trilogy.gemfile.lock +++ b/gemfiles/ruby_3.1_rails61_trilogy.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -256,6 +246,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -320,7 +314,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) trilogy diff --git a/gemfiles/ruby_3.1_rails7.gemfile b/gemfiles/ruby_3.1_rails7.gemfile index b17a58ae83e..2e32b1a98bf 100644 --- a/gemfiles/ruby_3.1_rails7.gemfile +++ b/gemfiles/ruby_3.1_rails7.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.1_rails7.gemfile.lock b/gemfiles/ruby_3.1_rails7.gemfile.lock index b9ae253aa93..57086df0100 100644 --- a/gemfiles/ruby_3.1_rails7.gemfile.lock +++ b/gemfiles/ruby_3.1_rails7.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -254,6 +244,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -307,7 +301,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.1_rails71.gemfile b/gemfiles/ruby_3.1_rails71.gemfile index 6dbfd093783..12ebea780d0 100644 --- a/gemfiles/ruby_3.1_rails71.gemfile +++ b/gemfiles/ruby_3.1_rails71.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.1_rails71.gemfile.lock b/gemfiles/ruby_3.1_rails71.gemfile.lock index 3852d2183df..c415c69835b 100644 --- a/gemfiles/ruby_3.1_rails71.gemfile.lock +++ b/gemfiles/ruby_3.1_rails71.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -283,6 +273,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -337,7 +331,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.1_rails_old_redis.gemfile b/gemfiles/ruby_3.1_rails_old_redis.gemfile index c37773ef612..3cc2e136201 100644 --- a/gemfiles/ruby_3.1_rails_old_redis.gemfile +++ b/gemfiles/ruby_3.1_rails_old_redis.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.1_redis_3.gemfile b/gemfiles/ruby_3.1_redis_3.gemfile index ec4ac063312..c8ec64ced3c 100644 --- a/gemfiles/ruby_3.1_redis_3.gemfile +++ b/gemfiles/ruby_3.1_redis_3.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.1_redis_3.gemfile.lock b/gemfiles/ruby_3.1_redis_3.gemfile.lock index 081eef7c2c0..81acb1aaba5 100644 --- a/gemfiles/ruby_3.1_redis_3.gemfile.lock +++ b/gemfiles/ruby_3.1_redis_3.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -120,6 +110,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -165,7 +159,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.1_redis_4.gemfile b/gemfiles/ruby_3.1_redis_4.gemfile index e12e985d26c..018259e6afe 100644 --- a/gemfiles/ruby_3.1_redis_4.gemfile +++ b/gemfiles/ruby_3.1_redis_4.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.1_redis_4.gemfile.lock b/gemfiles/ruby_3.1_redis_4.gemfile.lock index d4cfaf348bb..4ec56cc9610 100644 --- a/gemfiles/ruby_3.1_redis_4.gemfile.lock +++ b/gemfiles/ruby_3.1_redis_4.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -120,6 +110,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -165,7 +159,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.1_redis_5.gemfile b/gemfiles/ruby_3.1_redis_5.gemfile index 8b5cf99cf08..3323ec2baf6 100644 --- a/gemfiles/ruby_3.1_redis_5.gemfile +++ b/gemfiles/ruby_3.1_redis_5.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.1_redis_5.gemfile.lock b/gemfiles/ruby_3.1_redis_5.gemfile.lock index 99c7f3e29e2..1b063fca7d5 100644 --- a/gemfiles/ruby_3.1_redis_5.gemfile.lock +++ b/gemfiles/ruby_3.1_redis_5.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -124,6 +114,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -169,7 +163,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.1_relational_db.gemfile b/gemfiles/ruby_3.1_relational_db.gemfile index 04e64723b4e..db5bea183f4 100644 --- a/gemfiles/ruby_3.1_relational_db.gemfile +++ b/gemfiles/ruby_3.1_relational_db.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.1_relational_db.gemfile.lock b/gemfiles/ruby_3.1_relational_db.gemfile.lock index 2cf52200506..f199372a978 100644 --- a/gemfiles/ruby_3.1_relational_db.gemfile.lock +++ b/gemfiles/ruby_3.1_relational_db.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -146,6 +136,10 @@ GEM ruby-progressbar (1.13.0) sequel (5.83.1) bigdecimal + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -202,7 +196,7 @@ DEPENDENCIES rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) sequel - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sqlite3 (>= 1.4.2) trilogy diff --git a/gemfiles/ruby_3.1_resque2_redis3.gemfile b/gemfiles/ruby_3.1_resque2_redis3.gemfile index 7b79d1aaab9..47a7c231923 100644 --- a/gemfiles/ruby_3.1_resque2_redis3.gemfile +++ b/gemfiles/ruby_3.1_resque2_redis3.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.1_resque2_redis3.gemfile.lock b/gemfiles/ruby_3.1_resque2_redis3.gemfile.lock index d1c3d7feb24..14c5736ae5a 100644 --- a/gemfiles/ruby_3.1_resque2_redis3.gemfile.lock +++ b/gemfiles/ruby_3.1_resque2_redis3.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -135,6 +125,10 @@ GEM rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -187,7 +181,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.1_resque2_redis4.gemfile b/gemfiles/ruby_3.1_resque2_redis4.gemfile index 1aaaf498b44..394dba4f204 100644 --- a/gemfiles/ruby_3.1_resque2_redis4.gemfile +++ b/gemfiles/ruby_3.1_resque2_redis4.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.1_resque2_redis4.gemfile.lock b/gemfiles/ruby_3.1_resque2_redis4.gemfile.lock index b8e075be2bd..ab7bf24a9a6 100644 --- a/gemfiles/ruby_3.1_resque2_redis4.gemfile.lock +++ b/gemfiles/ruby_3.1_resque2_redis4.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -139,6 +129,10 @@ GEM rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -191,7 +185,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.1_sinatra_2.gemfile b/gemfiles/ruby_3.1_sinatra_2.gemfile index c33e7e726a8..ec4c1607ef4 100644 --- a/gemfiles/ruby_3.1_sinatra_2.gemfile +++ b/gemfiles/ruby_3.1_sinatra_2.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.1_sinatra_2.gemfile.lock b/gemfiles/ruby_3.1_sinatra_2.gemfile.lock index e049561308a..df14d7471ee 100644 --- a/gemfiles/ruby_3.1_sinatra_2.gemfile.lock +++ b/gemfiles/ruby_3.1_sinatra_2.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -135,6 +125,10 @@ GEM rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -187,7 +181,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sinatra (~> 2) warning (~> 1) diff --git a/gemfiles/ruby_3.1_sinatra_3.gemfile b/gemfiles/ruby_3.1_sinatra_3.gemfile index e2952bf20bd..954dbdbe27a 100644 --- a/gemfiles/ruby_3.1_sinatra_3.gemfile +++ b/gemfiles/ruby_3.1_sinatra_3.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.1_sinatra_3.gemfile.lock b/gemfiles/ruby_3.1_sinatra_3.gemfile.lock index 0e2957b068c..01bc4739f0b 100644 --- a/gemfiles/ruby_3.1_sinatra_3.gemfile.lock +++ b/gemfiles/ruby_3.1_sinatra_3.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -137,6 +127,10 @@ GEM rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -189,7 +183,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sinatra (~> 3) warning (~> 1) diff --git a/gemfiles/ruby_3.1_sinatra_4.gemfile b/gemfiles/ruby_3.1_sinatra_4.gemfile index f3302918408..5c60b05e3f3 100644 --- a/gemfiles/ruby_3.1_sinatra_4.gemfile +++ b/gemfiles/ruby_3.1_sinatra_4.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.1_sinatra_4.gemfile.lock b/gemfiles/ruby_3.1_sinatra_4.gemfile.lock index 5a52dfed468..86536da465d 100644 --- a/gemfiles/ruby_3.1_sinatra_4.gemfile.lock +++ b/gemfiles/ruby_3.1_sinatra_4.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -139,6 +129,10 @@ GEM rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -192,7 +186,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sinatra (~> 4) warning (~> 1) diff --git a/gemfiles/ruby_3.1_stripe_10.gemfile b/gemfiles/ruby_3.1_stripe_10.gemfile index 56ee7f4126d..dc1a588b06c 100644 --- a/gemfiles/ruby_3.1_stripe_10.gemfile +++ b/gemfiles/ruby_3.1_stripe_10.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.1_stripe_10.gemfile.lock b/gemfiles/ruby_3.1_stripe_10.gemfile.lock index bc7235679ed..b4e72d75369 100644 --- a/gemfiles/ruby_3.1_stripe_10.gemfile.lock +++ b/gemfiles/ruby_3.1_stripe_10.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -125,6 +115,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -170,7 +164,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 10) warning (~> 1) diff --git a/gemfiles/ruby_3.1_stripe_11.gemfile b/gemfiles/ruby_3.1_stripe_11.gemfile index d90aa264168..c91d810e684 100644 --- a/gemfiles/ruby_3.1_stripe_11.gemfile +++ b/gemfiles/ruby_3.1_stripe_11.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.1_stripe_11.gemfile.lock b/gemfiles/ruby_3.1_stripe_11.gemfile.lock index c7232281ae3..e0027c0db0d 100644 --- a/gemfiles/ruby_3.1_stripe_11.gemfile.lock +++ b/gemfiles/ruby_3.1_stripe_11.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -125,6 +115,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -170,7 +164,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 11) warning (~> 1) diff --git a/gemfiles/ruby_3.1_stripe_12.gemfile b/gemfiles/ruby_3.1_stripe_12.gemfile index 7e835132553..3199f19a48e 100644 --- a/gemfiles/ruby_3.1_stripe_12.gemfile +++ b/gemfiles/ruby_3.1_stripe_12.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.1_stripe_12.gemfile.lock b/gemfiles/ruby_3.1_stripe_12.gemfile.lock index 92b2b8dbb18..26e2af3f237 100644 --- a/gemfiles/ruby_3.1_stripe_12.gemfile.lock +++ b/gemfiles/ruby_3.1_stripe_12.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -125,6 +115,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -170,7 +164,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 12) warning (~> 1) diff --git a/gemfiles/ruby_3.1_stripe_7.gemfile b/gemfiles/ruby_3.1_stripe_7.gemfile index 5af74010422..10fcf73e02f 100644 --- a/gemfiles/ruby_3.1_stripe_7.gemfile +++ b/gemfiles/ruby_3.1_stripe_7.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.1_stripe_7.gemfile.lock b/gemfiles/ruby_3.1_stripe_7.gemfile.lock index 5e3e35e6719..18ec914fa03 100644 --- a/gemfiles/ruby_3.1_stripe_7.gemfile.lock +++ b/gemfiles/ruby_3.1_stripe_7.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -125,6 +115,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -170,7 +164,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 7) warning (~> 1) diff --git a/gemfiles/ruby_3.1_stripe_8.gemfile b/gemfiles/ruby_3.1_stripe_8.gemfile index 86d7a931271..84f1d26e650 100644 --- a/gemfiles/ruby_3.1_stripe_8.gemfile +++ b/gemfiles/ruby_3.1_stripe_8.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.1_stripe_8.gemfile.lock b/gemfiles/ruby_3.1_stripe_8.gemfile.lock index efda1eea060..f2caea0da16 100644 --- a/gemfiles/ruby_3.1_stripe_8.gemfile.lock +++ b/gemfiles/ruby_3.1_stripe_8.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -125,6 +115,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -170,7 +164,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 8) warning (~> 1) diff --git a/gemfiles/ruby_3.1_stripe_9.gemfile b/gemfiles/ruby_3.1_stripe_9.gemfile index 83e0e24282a..9035d9a3699 100644 --- a/gemfiles/ruby_3.1_stripe_9.gemfile +++ b/gemfiles/ruby_3.1_stripe_9.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.1_stripe_9.gemfile.lock b/gemfiles/ruby_3.1_stripe_9.gemfile.lock index 8e53b2984f7..a3f400045e5 100644 --- a/gemfiles/ruby_3.1_stripe_9.gemfile.lock +++ b/gemfiles/ruby_3.1_stripe_9.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -125,6 +115,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -170,7 +164,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 9) warning (~> 1) diff --git a/gemfiles/ruby_3.1_stripe_latest.gemfile b/gemfiles/ruby_3.1_stripe_latest.gemfile index f792dfa1981..0e4caba9e48 100644 --- a/gemfiles/ruby_3.1_stripe_latest.gemfile +++ b/gemfiles/ruby_3.1_stripe_latest.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.1_stripe_latest.gemfile.lock b/gemfiles/ruby_3.1_stripe_latest.gemfile.lock index df6be9fa5b3..10d85c80079 100644 --- a/gemfiles/ruby_3.1_stripe_latest.gemfile.lock +++ b/gemfiles/ruby_3.1_stripe_latest.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -124,6 +114,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -168,7 +162,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) stripe warning (~> 1) diff --git a/gemfiles/ruby_3.1_stripe_min.gemfile b/gemfiles/ruby_3.1_stripe_min.gemfile index 9d7f405985a..aa082ccb652 100644 --- a/gemfiles/ruby_3.1_stripe_min.gemfile +++ b/gemfiles/ruby_3.1_stripe_min.gemfile @@ -26,7 +26,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.1_stripe_min.gemfile.lock b/gemfiles/ruby_3.1_stripe_min.gemfile.lock index 1247490b300..820ce2199d0 100644 --- a/gemfiles/ruby_3.1_stripe_min.gemfile.lock +++ b/gemfiles/ruby_3.1_stripe_min.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -124,6 +114,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -168,7 +162,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) stripe (= 5.15.0) warning (~> 1) diff --git a/gemfiles/ruby_3.2_activesupport.gemfile b/gemfiles/ruby_3.2_activesupport.gemfile index f00e86b4902..cd781e2f211 100644 --- a/gemfiles/ruby_3.2_activesupport.gemfile +++ b/gemfiles/ruby_3.2_activesupport.gemfile @@ -25,7 +25,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.2_activesupport.gemfile.lock b/gemfiles/ruby_3.2_activesupport.gemfile.lock index 2628e1f3598..738d07fb99d 100644 --- a/gemfiles/ruby_3.2_activesupport.gemfile.lock +++ b/gemfiles/ruby_3.2_activesupport.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -223,6 +213,10 @@ GEM digest-crc ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -278,7 +272,7 @@ DEPENDENCIES rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) ruby-kafka (>= 0.7.10) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.2_aws.gemfile b/gemfiles/ruby_3.2_aws.gemfile index 0b53e609d83..68d1007828f 100644 --- a/gemfiles/ruby_3.2_aws.gemfile +++ b/gemfiles/ruby_3.2_aws.gemfile @@ -25,7 +25,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.2_aws.gemfile.lock b/gemfiles/ruby_3.2_aws.gemfile.lock index ae722a6ffc8..fd8f2e26f4f 100644 --- a/gemfiles/ruby_3.2_aws.gemfile.lock +++ b/gemfiles/ruby_3.2_aws.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -1543,6 +1533,10 @@ GEM aws-sdk-core (>= 2) concurrent-ruby thor + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -1589,7 +1583,7 @@ DEPENDENCIES rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) shoryuken - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.2_contrib.gemfile b/gemfiles/ruby_3.2_contrib.gemfile index a71755c4a8b..6dab61251d9 100644 --- a/gemfiles/ruby_3.2_contrib.gemfile +++ b/gemfiles/ruby_3.2_contrib.gemfile @@ -25,7 +25,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.2_contrib.gemfile.lock b/gemfiles/ruby_3.2_contrib.gemfile.lock index ae02736c469..34b58394d1f 100644 --- a/gemfiles/ruby_3.2_contrib.gemfile.lock +++ b/gemfiles/ruby_3.2_contrib.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -167,6 +157,10 @@ GEM rack (>= 2.2.4) redis-client (>= 0.11.0) sigdump (0.2.4) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -237,7 +231,7 @@ DEPENDENCIES rubocop-rspec (~> 2.20, < 2.21) semantic_logger (~> 4.0) sidekiq (~> 7) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sneakers (>= 2.12.0) sucker_punch diff --git a/gemfiles/ruby_3.2_contrib_old.gemfile b/gemfiles/ruby_3.2_contrib_old.gemfile index 2caa7bfff9a..a80fa0f9abb 100644 --- a/gemfiles/ruby_3.2_contrib_old.gemfile +++ b/gemfiles/ruby_3.2_contrib_old.gemfile @@ -25,7 +25,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.2_contrib_old.gemfile.lock b/gemfiles/ruby_3.2_contrib_old.gemfile.lock index 19c0f0b67f6..4e51d3c0321 100644 --- a/gemfiles/ruby_3.2_contrib_old.gemfile.lock +++ b/gemfiles/ruby_3.2_contrib_old.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -155,6 +145,10 @@ GEM rusage (0.2.0) sentry-raven (0.15.6) faraday (>= 0.7.6) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -215,7 +209,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.2_core_old.gemfile b/gemfiles/ruby_3.2_core_old.gemfile index d67db9a229a..d55b982d4ab 100644 --- a/gemfiles/ruby_3.2_core_old.gemfile +++ b/gemfiles/ruby_3.2_core_old.gemfile @@ -25,7 +25,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.2_core_old.gemfile.lock b/gemfiles/ruby_3.2_core_old.gemfile.lock index 800e4187220..f8c3d16aa48 100644 --- a/gemfiles/ruby_3.2_core_old.gemfile.lock +++ b/gemfiles/ruby_3.2_core_old.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -115,6 +105,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -158,7 +152,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.2_elasticsearch_7.gemfile b/gemfiles/ruby_3.2_elasticsearch_7.gemfile index 62f4a0ee3af..09efed3a336 100644 --- a/gemfiles/ruby_3.2_elasticsearch_7.gemfile +++ b/gemfiles/ruby_3.2_elasticsearch_7.gemfile @@ -25,7 +25,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.2_elasticsearch_7.gemfile.lock b/gemfiles/ruby_3.2_elasticsearch_7.gemfile.lock index f3c1274a16c..4d5db707a82 100644 --- a/gemfiles/ruby_3.2_elasticsearch_7.gemfile.lock +++ b/gemfiles/ruby_3.2_elasticsearch_7.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -139,6 +129,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -184,7 +178,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.2_elasticsearch_8.gemfile b/gemfiles/ruby_3.2_elasticsearch_8.gemfile index cc271883c28..449ac43f845 100644 --- a/gemfiles/ruby_3.2_elasticsearch_8.gemfile +++ b/gemfiles/ruby_3.2_elasticsearch_8.gemfile @@ -25,7 +25,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.2_elasticsearch_8.gemfile.lock b/gemfiles/ruby_3.2_elasticsearch_8.gemfile.lock index 0209d29bbf6..9fe903a93d6 100644 --- a/gemfiles/ruby_3.2_elasticsearch_8.gemfile.lock +++ b/gemfiles/ruby_3.2_elasticsearch_8.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -137,6 +127,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -182,7 +176,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.2_elasticsearch_latest.gemfile b/gemfiles/ruby_3.2_elasticsearch_latest.gemfile index d8d7aa22e57..f9405972c8a 100644 --- a/gemfiles/ruby_3.2_elasticsearch_latest.gemfile +++ b/gemfiles/ruby_3.2_elasticsearch_latest.gemfile @@ -25,7 +25,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.2_elasticsearch_latest.gemfile.lock b/gemfiles/ruby_3.2_elasticsearch_latest.gemfile.lock index defd85770ee..2f8317d4eac 100644 --- a/gemfiles/ruby_3.2_elasticsearch_latest.gemfile.lock +++ b/gemfiles/ruby_3.2_elasticsearch_latest.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -138,6 +128,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -182,7 +176,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.2_graphql_1.13.gemfile b/gemfiles/ruby_3.2_graphql_1.13.gemfile index 59f43aaa1c0..edb5898b51b 100644 --- a/gemfiles/ruby_3.2_graphql_1.13.gemfile +++ b/gemfiles/ruby_3.2_graphql_1.13.gemfile @@ -25,7 +25,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.2_graphql_1.13.gemfile.lock b/gemfiles/ruby_3.2_graphql_1.13.gemfile.lock index 7a895ea34a2..c04c11d02d7 100644 --- a/gemfiles/ruby_3.2_graphql_1.13.gemfile.lock +++ b/gemfiles/ruby_3.2_graphql_1.13.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -250,6 +240,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -311,7 +305,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_3.2_graphql_2.0.gemfile b/gemfiles/ruby_3.2_graphql_2.0.gemfile index 1abf6d27b26..f1eb85dfcd0 100644 --- a/gemfiles/ruby_3.2_graphql_2.0.gemfile +++ b/gemfiles/ruby_3.2_graphql_2.0.gemfile @@ -25,7 +25,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.2_graphql_2.0.gemfile.lock b/gemfiles/ruby_3.2_graphql_2.0.gemfile.lock index 2f8cf94af30..78f50987089 100644 --- a/gemfiles/ruby_3.2_graphql_2.0.gemfile.lock +++ b/gemfiles/ruby_3.2_graphql_2.0.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -250,6 +240,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -311,7 +305,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_3.2_graphql_2.1.gemfile b/gemfiles/ruby_3.2_graphql_2.1.gemfile index 8ed2dfaa9e0..4b799796f7e 100644 --- a/gemfiles/ruby_3.2_graphql_2.1.gemfile +++ b/gemfiles/ruby_3.2_graphql_2.1.gemfile @@ -25,7 +25,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.2_graphql_2.1.gemfile.lock b/gemfiles/ruby_3.2_graphql_2.1.gemfile.lock index 4287e36bf5c..441d3c7ad9c 100644 --- a/gemfiles/ruby_3.2_graphql_2.1.gemfile.lock +++ b/gemfiles/ruby_3.2_graphql_2.1.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -251,6 +241,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -312,7 +306,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_3.2_graphql_2.2.gemfile b/gemfiles/ruby_3.2_graphql_2.2.gemfile index f8d6333cdbd..a9364961cd4 100644 --- a/gemfiles/ruby_3.2_graphql_2.2.gemfile +++ b/gemfiles/ruby_3.2_graphql_2.2.gemfile @@ -25,7 +25,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.2_graphql_2.2.gemfile.lock b/gemfiles/ruby_3.2_graphql_2.2.gemfile.lock index 2e5fe435e13..191e5edf623 100644 --- a/gemfiles/ruby_3.2_graphql_2.2.gemfile.lock +++ b/gemfiles/ruby_3.2_graphql_2.2.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -251,6 +241,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -312,7 +306,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_3.2_graphql_2.3.gemfile b/gemfiles/ruby_3.2_graphql_2.3.gemfile index a5da3023e42..f667a0f732b 100644 --- a/gemfiles/ruby_3.2_graphql_2.3.gemfile +++ b/gemfiles/ruby_3.2_graphql_2.3.gemfile @@ -25,7 +25,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.2_graphql_2.3.gemfile.lock b/gemfiles/ruby_3.2_graphql_2.3.gemfile.lock index 0421c5b4c26..3691317f575 100644 --- a/gemfiles/ruby_3.2_graphql_2.3.gemfile.lock +++ b/gemfiles/ruby_3.2_graphql_2.3.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -254,6 +244,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -316,7 +310,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_3.2_http.gemfile b/gemfiles/ruby_3.2_http.gemfile index 3a1ab022620..dc32cc47097 100644 --- a/gemfiles/ruby_3.2_http.gemfile +++ b/gemfiles/ruby_3.2_http.gemfile @@ -25,7 +25,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.2_http.gemfile.lock b/gemfiles/ruby_3.2_http.gemfile.lock index ec616d7abb3..7cb0a1918c4 100644 --- a/gemfiles/ruby_3.2_http.gemfile.lock +++ b/gemfiles/ruby_3.2_http.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -152,6 +142,10 @@ GEM rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -206,7 +200,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) typhoeus warning (~> 1) diff --git a/gemfiles/ruby_3.2_opensearch_2.gemfile b/gemfiles/ruby_3.2_opensearch_2.gemfile index 5e55469e4a3..de901141719 100644 --- a/gemfiles/ruby_3.2_opensearch_2.gemfile +++ b/gemfiles/ruby_3.2_opensearch_2.gemfile @@ -25,7 +25,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.2_opensearch_2.gemfile.lock b/gemfiles/ruby_3.2_opensearch_2.gemfile.lock index 35ce702fdfa..986fc480a5f 100644 --- a/gemfiles/ruby_3.2_opensearch_2.gemfile.lock +++ b/gemfiles/ruby_3.2_opensearch_2.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -137,6 +127,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -182,7 +176,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.2_opensearch_3.gemfile b/gemfiles/ruby_3.2_opensearch_3.gemfile index b440d62ca60..ea9d740c6a2 100644 --- a/gemfiles/ruby_3.2_opensearch_3.gemfile +++ b/gemfiles/ruby_3.2_opensearch_3.gemfile @@ -25,7 +25,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.2_opensearch_3.gemfile.lock b/gemfiles/ruby_3.2_opensearch_3.gemfile.lock index 4f22b25651a..3549607c9ed 100644 --- a/gemfiles/ruby_3.2_opensearch_3.gemfile.lock +++ b/gemfiles/ruby_3.2_opensearch_3.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -132,6 +122,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -177,7 +171,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.2_opensearch_latest.gemfile b/gemfiles/ruby_3.2_opensearch_latest.gemfile index 3e8e5bd6624..e7ed9c1100f 100644 --- a/gemfiles/ruby_3.2_opensearch_latest.gemfile +++ b/gemfiles/ruby_3.2_opensearch_latest.gemfile @@ -25,7 +25,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.2_opensearch_latest.gemfile.lock b/gemfiles/ruby_3.2_opensearch_latest.gemfile.lock index 2b33fd8f8f7..ec15305f3e3 100644 --- a/gemfiles/ruby_3.2_opensearch_latest.gemfile.lock +++ b/gemfiles/ruby_3.2_opensearch_latest.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -133,6 +123,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -177,7 +171,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.2_opentelemetry.gemfile b/gemfiles/ruby_3.2_opentelemetry.gemfile index e5c89526d65..b0ab8f1f286 100644 --- a/gemfiles/ruby_3.2_opentelemetry.gemfile +++ b/gemfiles/ruby_3.2_opentelemetry.gemfile @@ -25,7 +25,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.2_opentelemetry.gemfile.lock b/gemfiles/ruby_3.2_opentelemetry.gemfile.lock index a4821bd70cd..bf64137f2b2 100644 --- a/gemfiles/ruby_3.2_opentelemetry.gemfile.lock +++ b/gemfiles/ruby_3.2_opentelemetry.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -127,6 +117,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -171,7 +165,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.2_opentelemetry_otlp.gemfile b/gemfiles/ruby_3.2_opentelemetry_otlp.gemfile index 75182024cf7..9843af97d99 100644 --- a/gemfiles/ruby_3.2_opentelemetry_otlp.gemfile +++ b/gemfiles/ruby_3.2_opentelemetry_otlp.gemfile @@ -25,7 +25,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.2_opentelemetry_otlp.gemfile.lock b/gemfiles/ruby_3.2_opentelemetry_otlp.gemfile.lock index 43dbc52fe9a..003e96fdbcc 100644 --- a/gemfiles/ruby_3.2_opentelemetry_otlp.gemfile.lock +++ b/gemfiles/ruby_3.2_opentelemetry_otlp.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -141,6 +131,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -185,7 +179,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.2_rack_1.gemfile b/gemfiles/ruby_3.2_rack_1.gemfile index e977278aba9..fc8a53898b2 100644 --- a/gemfiles/ruby_3.2_rack_1.gemfile +++ b/gemfiles/ruby_3.2_rack_1.gemfile @@ -25,7 +25,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.2_rack_1.gemfile.lock b/gemfiles/ruby_3.2_rack_1.gemfile.lock index bb12af61a5e..ac39b775d17 100644 --- a/gemfiles/ruby_3.2_rack_1.gemfile.lock +++ b/gemfiles/ruby_3.2_rack_1.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -122,6 +112,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -168,7 +162,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.2_rack_2.gemfile b/gemfiles/ruby_3.2_rack_2.gemfile index 87de056577a..5f0e00d9f29 100644 --- a/gemfiles/ruby_3.2_rack_2.gemfile +++ b/gemfiles/ruby_3.2_rack_2.gemfile @@ -25,7 +25,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.2_rack_2.gemfile.lock b/gemfiles/ruby_3.2_rack_2.gemfile.lock index e77065b8140..f8387625633 100644 --- a/gemfiles/ruby_3.2_rack_2.gemfile.lock +++ b/gemfiles/ruby_3.2_rack_2.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -122,6 +112,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -168,7 +162,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.2_rack_3.gemfile b/gemfiles/ruby_3.2_rack_3.gemfile index 0e692b97324..a629b8caecb 100644 --- a/gemfiles/ruby_3.2_rack_3.gemfile +++ b/gemfiles/ruby_3.2_rack_3.gemfile @@ -25,7 +25,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.2_rack_3.gemfile.lock b/gemfiles/ruby_3.2_rack_3.gemfile.lock index 801ff399a4e..e05b975097a 100644 --- a/gemfiles/ruby_3.2_rack_3.gemfile.lock +++ b/gemfiles/ruby_3.2_rack_3.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -122,6 +112,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -168,7 +162,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.2_rack_latest.gemfile b/gemfiles/ruby_3.2_rack_latest.gemfile index bce312c52e4..ec624ba27ec 100644 --- a/gemfiles/ruby_3.2_rack_latest.gemfile +++ b/gemfiles/ruby_3.2_rack_latest.gemfile @@ -25,7 +25,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.2_rack_latest.gemfile.lock b/gemfiles/ruby_3.2_rack_latest.gemfile.lock index 22ebed57cbe..c7ed7113fd6 100644 --- a/gemfiles/ruby_3.2_rack_latest.gemfile.lock +++ b/gemfiles/ruby_3.2_rack_latest.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -125,6 +115,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -170,7 +164,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.2_rails61_mysql2.gemfile b/gemfiles/ruby_3.2_rails61_mysql2.gemfile index 9c959c1f4c4..3a88c449ac4 100644 --- a/gemfiles/ruby_3.2_rails61_mysql2.gemfile +++ b/gemfiles/ruby_3.2_rails61_mysql2.gemfile @@ -25,7 +25,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.2_rails61_mysql2.gemfile.lock b/gemfiles/ruby_3.2_rails61_mysql2.gemfile.lock index 9ac6c871a88..54727e77877 100644 --- a/gemfiles/ruby_3.2_rails61_mysql2.gemfile.lock +++ b/gemfiles/ruby_3.2_rails61_mysql2.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -245,6 +235,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -307,7 +301,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_3.2_rails61_postgres.gemfile b/gemfiles/ruby_3.2_rails61_postgres.gemfile index b70e54c2c92..e83b417adff 100644 --- a/gemfiles/ruby_3.2_rails61_postgres.gemfile +++ b/gemfiles/ruby_3.2_rails61_postgres.gemfile @@ -25,7 +25,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.2_rails61_postgres.gemfile.lock b/gemfiles/ruby_3.2_rails61_postgres.gemfile.lock index 162bc9c3593..3d946964139 100644 --- a/gemfiles/ruby_3.2_rails61_postgres.gemfile.lock +++ b/gemfiles/ruby_3.2_rails61_postgres.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -245,6 +235,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -307,7 +301,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_3.2_rails61_postgres_redis.gemfile b/gemfiles/ruby_3.2_rails61_postgres_redis.gemfile index fec69ed995c..da07d92f49d 100644 --- a/gemfiles/ruby_3.2_rails61_postgres_redis.gemfile +++ b/gemfiles/ruby_3.2_rails61_postgres_redis.gemfile @@ -25,7 +25,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.2_rails61_postgres_redis.gemfile.lock b/gemfiles/ruby_3.2_rails61_postgres_redis.gemfile.lock index 3af72b7fab4..8f19a28ea3b 100644 --- a/gemfiles/ruby_3.2_rails61_postgres_redis.gemfile.lock +++ b/gemfiles/ruby_3.2_rails61_postgres_redis.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -246,6 +236,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -309,7 +303,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_3.2_rails61_postgres_sidekiq.gemfile b/gemfiles/ruby_3.2_rails61_postgres_sidekiq.gemfile index c45085dd974..b65755b2159 100644 --- a/gemfiles/ruby_3.2_rails61_postgres_sidekiq.gemfile +++ b/gemfiles/ruby_3.2_rails61_postgres_sidekiq.gemfile @@ -25,7 +25,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.2_rails61_postgres_sidekiq.gemfile.lock b/gemfiles/ruby_3.2_rails61_postgres_sidekiq.gemfile.lock index 3d0e51d7846..733a999ed54 100644 --- a/gemfiles/ruby_3.2_rails61_postgres_sidekiq.gemfile.lock +++ b/gemfiles/ruby_3.2_rails61_postgres_sidekiq.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -259,6 +249,10 @@ GEM connection_pool (>= 2.3.0) rack (>= 2.2.4) redis-client (>= 0.11.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -323,7 +317,7 @@ DEPENDENCIES rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) sidekiq (>= 6.1.2) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_3.2_rails61_semantic_logger.gemfile b/gemfiles/ruby_3.2_rails61_semantic_logger.gemfile index 2cde7f32304..7f42665e2bf 100644 --- a/gemfiles/ruby_3.2_rails61_semantic_logger.gemfile +++ b/gemfiles/ruby_3.2_rails61_semantic_logger.gemfile @@ -25,7 +25,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.2_rails61_semantic_logger.gemfile.lock b/gemfiles/ruby_3.2_rails61_semantic_logger.gemfile.lock index a010a04923b..c34fba37f64 100644 --- a/gemfiles/ruby_3.2_rails61_semantic_logger.gemfile.lock +++ b/gemfiles/ruby_3.2_rails61_semantic_logger.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -244,6 +234,10 @@ GEM ruby-progressbar (1.13.0) semantic_logger (4.12.0) concurrent-ruby (~> 1.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -306,7 +300,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_3.2_rails61_trilogy.gemfile b/gemfiles/ruby_3.2_rails61_trilogy.gemfile index 9022851a92e..286747986d4 100644 --- a/gemfiles/ruby_3.2_rails61_trilogy.gemfile +++ b/gemfiles/ruby_3.2_rails61_trilogy.gemfile @@ -25,7 +25,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.2_rails61_trilogy.gemfile.lock b/gemfiles/ruby_3.2_rails61_trilogy.gemfile.lock index 2256e718ac2..712eb0ff71f 100644 --- a/gemfiles/ruby_3.2_rails61_trilogy.gemfile.lock +++ b/gemfiles/ruby_3.2_rails61_trilogy.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -252,6 +242,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -315,7 +309,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) trilogy diff --git a/gemfiles/ruby_3.2_rails7.gemfile b/gemfiles/ruby_3.2_rails7.gemfile index 8c4be9217cf..a24b15ca518 100644 --- a/gemfiles/ruby_3.2_rails7.gemfile +++ b/gemfiles/ruby_3.2_rails7.gemfile @@ -25,7 +25,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.2_rails7.gemfile.lock b/gemfiles/ruby_3.2_rails7.gemfile.lock index 85393b027e5..8b0b8e0e309 100644 --- a/gemfiles/ruby_3.2_rails7.gemfile.lock +++ b/gemfiles/ruby_3.2_rails7.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -250,6 +240,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -302,7 +296,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.2_rails71.gemfile b/gemfiles/ruby_3.2_rails71.gemfile index 97901ffef09..006dafab72d 100644 --- a/gemfiles/ruby_3.2_rails71.gemfile +++ b/gemfiles/ruby_3.2_rails71.gemfile @@ -25,7 +25,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.2_rails71.gemfile.lock b/gemfiles/ruby_3.2_rails71.gemfile.lock index e68534abf12..943bd28c2dc 100644 --- a/gemfiles/ruby_3.2_rails71.gemfile.lock +++ b/gemfiles/ruby_3.2_rails71.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -279,6 +269,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -332,7 +326,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.2_rails_old_redis.gemfile b/gemfiles/ruby_3.2_rails_old_redis.gemfile index 732bda94c32..acf6f6605fa 100644 --- a/gemfiles/ruby_3.2_rails_old_redis.gemfile +++ b/gemfiles/ruby_3.2_rails_old_redis.gemfile @@ -25,7 +25,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.2_redis_3.gemfile b/gemfiles/ruby_3.2_redis_3.gemfile index 2621e776d37..c7423cbe3f0 100644 --- a/gemfiles/ruby_3.2_redis_3.gemfile +++ b/gemfiles/ruby_3.2_redis_3.gemfile @@ -25,7 +25,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.2_redis_3.gemfile.lock b/gemfiles/ruby_3.2_redis_3.gemfile.lock index 2baf69079aa..50887964e5f 100644 --- a/gemfiles/ruby_3.2_redis_3.gemfile.lock +++ b/gemfiles/ruby_3.2_redis_3.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -116,6 +106,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -160,7 +154,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.2_redis_4.gemfile b/gemfiles/ruby_3.2_redis_4.gemfile index 7d028f4bdd6..a80abdd50a9 100644 --- a/gemfiles/ruby_3.2_redis_4.gemfile +++ b/gemfiles/ruby_3.2_redis_4.gemfile @@ -25,7 +25,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.2_redis_4.gemfile.lock b/gemfiles/ruby_3.2_redis_4.gemfile.lock index 4489e40a93d..9c320e1c8e6 100644 --- a/gemfiles/ruby_3.2_redis_4.gemfile.lock +++ b/gemfiles/ruby_3.2_redis_4.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -116,6 +106,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -160,7 +154,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.2_redis_5.gemfile b/gemfiles/ruby_3.2_redis_5.gemfile index a31604f7db0..b79c4d9d9b8 100644 --- a/gemfiles/ruby_3.2_redis_5.gemfile +++ b/gemfiles/ruby_3.2_redis_5.gemfile @@ -25,7 +25,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.2_redis_5.gemfile.lock b/gemfiles/ruby_3.2_redis_5.gemfile.lock index e10bf8cdfac..9c7cc0f1499 100644 --- a/gemfiles/ruby_3.2_redis_5.gemfile.lock +++ b/gemfiles/ruby_3.2_redis_5.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -120,6 +110,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -164,7 +158,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.2_relational_db.gemfile b/gemfiles/ruby_3.2_relational_db.gemfile index 1f84b2d4b94..4f3a9bba7b0 100644 --- a/gemfiles/ruby_3.2_relational_db.gemfile +++ b/gemfiles/ruby_3.2_relational_db.gemfile @@ -25,7 +25,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.2_relational_db.gemfile.lock b/gemfiles/ruby_3.2_relational_db.gemfile.lock index 8ba867eec20..f3081597c6f 100644 --- a/gemfiles/ruby_3.2_relational_db.gemfile.lock +++ b/gemfiles/ruby_3.2_relational_db.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -142,6 +132,10 @@ GEM ruby-progressbar (1.13.0) sequel (5.83.1) bigdecimal + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -197,7 +191,7 @@ DEPENDENCIES rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) sequel - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sqlite3 (>= 1.4.2) trilogy diff --git a/gemfiles/ruby_3.2_resque2_redis3.gemfile b/gemfiles/ruby_3.2_resque2_redis3.gemfile index e79d7a0f26c..25ae2f88533 100644 --- a/gemfiles/ruby_3.2_resque2_redis3.gemfile +++ b/gemfiles/ruby_3.2_resque2_redis3.gemfile @@ -25,7 +25,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.2_resque2_redis3.gemfile.lock b/gemfiles/ruby_3.2_resque2_redis3.gemfile.lock index 5766ff1dc87..4a1a894e98e 100644 --- a/gemfiles/ruby_3.2_resque2_redis3.gemfile.lock +++ b/gemfiles/ruby_3.2_resque2_redis3.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -131,6 +121,10 @@ GEM rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -182,7 +176,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.2_resque2_redis4.gemfile b/gemfiles/ruby_3.2_resque2_redis4.gemfile index 2572c886f05..cc1ae388517 100644 --- a/gemfiles/ruby_3.2_resque2_redis4.gemfile +++ b/gemfiles/ruby_3.2_resque2_redis4.gemfile @@ -25,7 +25,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.2_resque2_redis4.gemfile.lock b/gemfiles/ruby_3.2_resque2_redis4.gemfile.lock index 58f0c7f71ef..8d127d5c9f2 100644 --- a/gemfiles/ruby_3.2_resque2_redis4.gemfile.lock +++ b/gemfiles/ruby_3.2_resque2_redis4.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -135,6 +125,10 @@ GEM rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -186,7 +180,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.2_sinatra_2.gemfile b/gemfiles/ruby_3.2_sinatra_2.gemfile index 9d265f8e3de..79c6068bc8b 100644 --- a/gemfiles/ruby_3.2_sinatra_2.gemfile +++ b/gemfiles/ruby_3.2_sinatra_2.gemfile @@ -25,7 +25,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.2_sinatra_2.gemfile.lock b/gemfiles/ruby_3.2_sinatra_2.gemfile.lock index fabb61e67b1..040b2784c37 100644 --- a/gemfiles/ruby_3.2_sinatra_2.gemfile.lock +++ b/gemfiles/ruby_3.2_sinatra_2.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -131,6 +121,10 @@ GEM rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -182,7 +176,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sinatra (~> 2) warning (~> 1) diff --git a/gemfiles/ruby_3.2_sinatra_3.gemfile b/gemfiles/ruby_3.2_sinatra_3.gemfile index bc754753398..a35d2d05075 100644 --- a/gemfiles/ruby_3.2_sinatra_3.gemfile +++ b/gemfiles/ruby_3.2_sinatra_3.gemfile @@ -25,7 +25,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.2_sinatra_3.gemfile.lock b/gemfiles/ruby_3.2_sinatra_3.gemfile.lock index d77a3cbfca7..698e3f99f09 100644 --- a/gemfiles/ruby_3.2_sinatra_3.gemfile.lock +++ b/gemfiles/ruby_3.2_sinatra_3.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -133,6 +123,10 @@ GEM rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -184,7 +178,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sinatra (~> 3) warning (~> 1) diff --git a/gemfiles/ruby_3.2_sinatra_4.gemfile b/gemfiles/ruby_3.2_sinatra_4.gemfile index 1052d9e7238..ad413b7d594 100644 --- a/gemfiles/ruby_3.2_sinatra_4.gemfile +++ b/gemfiles/ruby_3.2_sinatra_4.gemfile @@ -25,7 +25,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.2_sinatra_4.gemfile.lock b/gemfiles/ruby_3.2_sinatra_4.gemfile.lock index 909e7fc6c71..71fcfbc2f33 100644 --- a/gemfiles/ruby_3.2_sinatra_4.gemfile.lock +++ b/gemfiles/ruby_3.2_sinatra_4.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -135,6 +125,10 @@ GEM rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -187,7 +181,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sinatra (~> 4) warning (~> 1) diff --git a/gemfiles/ruby_3.2_stripe_10.gemfile b/gemfiles/ruby_3.2_stripe_10.gemfile index 2ceadd407b9..93a5975d521 100644 --- a/gemfiles/ruby_3.2_stripe_10.gemfile +++ b/gemfiles/ruby_3.2_stripe_10.gemfile @@ -25,7 +25,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.2_stripe_10.gemfile.lock b/gemfiles/ruby_3.2_stripe_10.gemfile.lock index 1607ed87575..5fbc0a7a593 100644 --- a/gemfiles/ruby_3.2_stripe_10.gemfile.lock +++ b/gemfiles/ruby_3.2_stripe_10.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -121,6 +111,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -165,7 +159,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 10) warning (~> 1) diff --git a/gemfiles/ruby_3.2_stripe_11.gemfile b/gemfiles/ruby_3.2_stripe_11.gemfile index 3300e5608cc..d6ccbe3d451 100644 --- a/gemfiles/ruby_3.2_stripe_11.gemfile +++ b/gemfiles/ruby_3.2_stripe_11.gemfile @@ -25,7 +25,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.2_stripe_11.gemfile.lock b/gemfiles/ruby_3.2_stripe_11.gemfile.lock index 3a612068c4e..10d633de97f 100644 --- a/gemfiles/ruby_3.2_stripe_11.gemfile.lock +++ b/gemfiles/ruby_3.2_stripe_11.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -121,6 +111,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -165,7 +159,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 11) warning (~> 1) diff --git a/gemfiles/ruby_3.2_stripe_12.gemfile b/gemfiles/ruby_3.2_stripe_12.gemfile index f54cb27fca6..2e1b91d06ff 100644 --- a/gemfiles/ruby_3.2_stripe_12.gemfile +++ b/gemfiles/ruby_3.2_stripe_12.gemfile @@ -25,7 +25,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.2_stripe_12.gemfile.lock b/gemfiles/ruby_3.2_stripe_12.gemfile.lock index 297668c2e78..1c91f743b6c 100644 --- a/gemfiles/ruby_3.2_stripe_12.gemfile.lock +++ b/gemfiles/ruby_3.2_stripe_12.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -121,6 +111,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -165,7 +159,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 12) warning (~> 1) diff --git a/gemfiles/ruby_3.2_stripe_7.gemfile b/gemfiles/ruby_3.2_stripe_7.gemfile index 4782529fce3..17d9a9abb41 100644 --- a/gemfiles/ruby_3.2_stripe_7.gemfile +++ b/gemfiles/ruby_3.2_stripe_7.gemfile @@ -25,7 +25,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.2_stripe_7.gemfile.lock b/gemfiles/ruby_3.2_stripe_7.gemfile.lock index 9bdd1cfc2c3..bbb1c542d2b 100644 --- a/gemfiles/ruby_3.2_stripe_7.gemfile.lock +++ b/gemfiles/ruby_3.2_stripe_7.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -121,6 +111,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -165,7 +159,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 7) warning (~> 1) diff --git a/gemfiles/ruby_3.2_stripe_8.gemfile b/gemfiles/ruby_3.2_stripe_8.gemfile index 2e93e38446b..352eb982a29 100644 --- a/gemfiles/ruby_3.2_stripe_8.gemfile +++ b/gemfiles/ruby_3.2_stripe_8.gemfile @@ -25,7 +25,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.2_stripe_8.gemfile.lock b/gemfiles/ruby_3.2_stripe_8.gemfile.lock index cebf0ffd8aa..001e899d443 100644 --- a/gemfiles/ruby_3.2_stripe_8.gemfile.lock +++ b/gemfiles/ruby_3.2_stripe_8.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -121,6 +111,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -165,7 +159,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 8) warning (~> 1) diff --git a/gemfiles/ruby_3.2_stripe_9.gemfile b/gemfiles/ruby_3.2_stripe_9.gemfile index 8b3930e1c50..7e5411f19f1 100644 --- a/gemfiles/ruby_3.2_stripe_9.gemfile +++ b/gemfiles/ruby_3.2_stripe_9.gemfile @@ -25,7 +25,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.2_stripe_9.gemfile.lock b/gemfiles/ruby_3.2_stripe_9.gemfile.lock index 5df781aedd2..f15a3cf3abb 100644 --- a/gemfiles/ruby_3.2_stripe_9.gemfile.lock +++ b/gemfiles/ruby_3.2_stripe_9.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -121,6 +111,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -165,7 +159,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 9) warning (~> 1) diff --git a/gemfiles/ruby_3.2_stripe_latest.gemfile b/gemfiles/ruby_3.2_stripe_latest.gemfile index 56dfcce1def..f84c0c4cf04 100644 --- a/gemfiles/ruby_3.2_stripe_latest.gemfile +++ b/gemfiles/ruby_3.2_stripe_latest.gemfile @@ -25,7 +25,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.2_stripe_latest.gemfile.lock b/gemfiles/ruby_3.2_stripe_latest.gemfile.lock index e43304b637b..b18995496df 100644 --- a/gemfiles/ruby_3.2_stripe_latest.gemfile.lock +++ b/gemfiles/ruby_3.2_stripe_latest.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -120,6 +110,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -163,7 +157,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) stripe warning (~> 1) diff --git a/gemfiles/ruby_3.2_stripe_min.gemfile b/gemfiles/ruby_3.2_stripe_min.gemfile index 1f215af403b..cfbd5cdb264 100644 --- a/gemfiles/ruby_3.2_stripe_min.gemfile +++ b/gemfiles/ruby_3.2_stripe_min.gemfile @@ -25,7 +25,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.2_stripe_min.gemfile.lock b/gemfiles/ruby_3.2_stripe_min.gemfile.lock index 91ed6faf882..b27b795714f 100644 --- a/gemfiles/ruby_3.2_stripe_min.gemfile.lock +++ b/gemfiles/ruby_3.2_stripe_min.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -120,6 +110,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -163,7 +157,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) stripe (= 5.15.0) warning (~> 1) diff --git a/gemfiles/ruby_3.3_activesupport.gemfile b/gemfiles/ruby_3.3_activesupport.gemfile index f00e86b4902..cd781e2f211 100644 --- a/gemfiles/ruby_3.3_activesupport.gemfile +++ b/gemfiles/ruby_3.3_activesupport.gemfile @@ -25,7 +25,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.3_activesupport.gemfile.lock b/gemfiles/ruby_3.3_activesupport.gemfile.lock index b87598ebe3f..079621d701f 100644 --- a/gemfiles/ruby_3.3_activesupport.gemfile.lock +++ b/gemfiles/ruby_3.3_activesupport.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -222,6 +212,10 @@ GEM digest-crc ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -277,7 +271,7 @@ DEPENDENCIES rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) ruby-kafka (>= 0.7.10) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.3_aws.gemfile b/gemfiles/ruby_3.3_aws.gemfile index 0b53e609d83..68d1007828f 100644 --- a/gemfiles/ruby_3.3_aws.gemfile +++ b/gemfiles/ruby_3.3_aws.gemfile @@ -25,7 +25,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.3_aws.gemfile.lock b/gemfiles/ruby_3.3_aws.gemfile.lock index 537465c3330..7cafc628abf 100644 --- a/gemfiles/ruby_3.3_aws.gemfile.lock +++ b/gemfiles/ruby_3.3_aws.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -1542,6 +1532,10 @@ GEM aws-sdk-core (>= 2) concurrent-ruby thor + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -1588,7 +1582,7 @@ DEPENDENCIES rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) shoryuken - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.3_contrib.gemfile b/gemfiles/ruby_3.3_contrib.gemfile index a71755c4a8b..6dab61251d9 100644 --- a/gemfiles/ruby_3.3_contrib.gemfile +++ b/gemfiles/ruby_3.3_contrib.gemfile @@ -25,7 +25,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.3_contrib.gemfile.lock b/gemfiles/ruby_3.3_contrib.gemfile.lock index 2a0d0e12bd0..9ef671f2146 100644 --- a/gemfiles/ruby_3.3_contrib.gemfile.lock +++ b/gemfiles/ruby_3.3_contrib.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -168,6 +158,10 @@ GEM rack (>= 2.2.4) redis-client (>= 0.14.0) sigdump (0.2.4) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -238,7 +232,7 @@ DEPENDENCIES rubocop-rspec (~> 2.20, < 2.21) semantic_logger (~> 4.0) sidekiq (~> 7) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sneakers (>= 2.12.0) sucker_punch diff --git a/gemfiles/ruby_3.3_contrib_old.gemfile b/gemfiles/ruby_3.3_contrib_old.gemfile index 2caa7bfff9a..a80fa0f9abb 100644 --- a/gemfiles/ruby_3.3_contrib_old.gemfile +++ b/gemfiles/ruby_3.3_contrib_old.gemfile @@ -25,7 +25,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.3_contrib_old.gemfile.lock b/gemfiles/ruby_3.3_contrib_old.gemfile.lock index 546783a204d..fea5a7c8a0d 100644 --- a/gemfiles/ruby_3.3_contrib_old.gemfile.lock +++ b/gemfiles/ruby_3.3_contrib_old.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -154,6 +144,10 @@ GEM rusage (0.2.0) sentry-raven (0.15.6) faraday (>= 0.7.6) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -214,7 +208,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.3_core_old.gemfile b/gemfiles/ruby_3.3_core_old.gemfile index d67db9a229a..d55b982d4ab 100644 --- a/gemfiles/ruby_3.3_core_old.gemfile +++ b/gemfiles/ruby_3.3_core_old.gemfile @@ -25,7 +25,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.3_core_old.gemfile.lock b/gemfiles/ruby_3.3_core_old.gemfile.lock index 21db79ab199..583ec8b3682 100644 --- a/gemfiles/ruby_3.3_core_old.gemfile.lock +++ b/gemfiles/ruby_3.3_core_old.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -114,6 +104,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -157,7 +151,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.3_elasticsearch_7.gemfile b/gemfiles/ruby_3.3_elasticsearch_7.gemfile index 62f4a0ee3af..09efed3a336 100644 --- a/gemfiles/ruby_3.3_elasticsearch_7.gemfile +++ b/gemfiles/ruby_3.3_elasticsearch_7.gemfile @@ -25,7 +25,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.3_elasticsearch_7.gemfile.lock b/gemfiles/ruby_3.3_elasticsearch_7.gemfile.lock index ef7599b7d29..60234ba7b4a 100644 --- a/gemfiles/ruby_3.3_elasticsearch_7.gemfile.lock +++ b/gemfiles/ruby_3.3_elasticsearch_7.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -138,6 +128,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -183,7 +177,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.3_elasticsearch_8.gemfile b/gemfiles/ruby_3.3_elasticsearch_8.gemfile index cc271883c28..449ac43f845 100644 --- a/gemfiles/ruby_3.3_elasticsearch_8.gemfile +++ b/gemfiles/ruby_3.3_elasticsearch_8.gemfile @@ -25,7 +25,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.3_elasticsearch_8.gemfile.lock b/gemfiles/ruby_3.3_elasticsearch_8.gemfile.lock index 355a3f249a0..7789c3cfc06 100644 --- a/gemfiles/ruby_3.3_elasticsearch_8.gemfile.lock +++ b/gemfiles/ruby_3.3_elasticsearch_8.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -136,6 +126,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -181,7 +175,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.3_elasticsearch_latest.gemfile b/gemfiles/ruby_3.3_elasticsearch_latest.gemfile index d8d7aa22e57..f9405972c8a 100644 --- a/gemfiles/ruby_3.3_elasticsearch_latest.gemfile +++ b/gemfiles/ruby_3.3_elasticsearch_latest.gemfile @@ -25,7 +25,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.3_elasticsearch_latest.gemfile.lock b/gemfiles/ruby_3.3_elasticsearch_latest.gemfile.lock index defd85770ee..2f8317d4eac 100644 --- a/gemfiles/ruby_3.3_elasticsearch_latest.gemfile.lock +++ b/gemfiles/ruby_3.3_elasticsearch_latest.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -138,6 +128,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -182,7 +176,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.3_graphql_1.13.gemfile b/gemfiles/ruby_3.3_graphql_1.13.gemfile index 59f43aaa1c0..edb5898b51b 100644 --- a/gemfiles/ruby_3.3_graphql_1.13.gemfile +++ b/gemfiles/ruby_3.3_graphql_1.13.gemfile @@ -25,7 +25,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.3_graphql_1.13.gemfile.lock b/gemfiles/ruby_3.3_graphql_1.13.gemfile.lock index 4de515a95a8..de273167c94 100644 --- a/gemfiles/ruby_3.3_graphql_1.13.gemfile.lock +++ b/gemfiles/ruby_3.3_graphql_1.13.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -250,6 +240,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -312,7 +306,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_3.3_graphql_2.0.gemfile b/gemfiles/ruby_3.3_graphql_2.0.gemfile index 1abf6d27b26..f1eb85dfcd0 100644 --- a/gemfiles/ruby_3.3_graphql_2.0.gemfile +++ b/gemfiles/ruby_3.3_graphql_2.0.gemfile @@ -25,7 +25,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.3_graphql_2.0.gemfile.lock b/gemfiles/ruby_3.3_graphql_2.0.gemfile.lock index c7c2bdb71ab..4961696b224 100644 --- a/gemfiles/ruby_3.3_graphql_2.0.gemfile.lock +++ b/gemfiles/ruby_3.3_graphql_2.0.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -250,6 +240,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -312,7 +306,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_3.3_graphql_2.1.gemfile b/gemfiles/ruby_3.3_graphql_2.1.gemfile index 8ed2dfaa9e0..4b799796f7e 100644 --- a/gemfiles/ruby_3.3_graphql_2.1.gemfile +++ b/gemfiles/ruby_3.3_graphql_2.1.gemfile @@ -25,7 +25,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.3_graphql_2.1.gemfile.lock b/gemfiles/ruby_3.3_graphql_2.1.gemfile.lock index eb5d0bef907..d686acb1e7d 100644 --- a/gemfiles/ruby_3.3_graphql_2.1.gemfile.lock +++ b/gemfiles/ruby_3.3_graphql_2.1.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -251,6 +241,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -313,7 +307,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_3.3_graphql_2.2.gemfile b/gemfiles/ruby_3.3_graphql_2.2.gemfile index f8d6333cdbd..a9364961cd4 100644 --- a/gemfiles/ruby_3.3_graphql_2.2.gemfile +++ b/gemfiles/ruby_3.3_graphql_2.2.gemfile @@ -25,7 +25,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.3_graphql_2.2.gemfile.lock b/gemfiles/ruby_3.3_graphql_2.2.gemfile.lock index 484485f14dc..2b8cf4c3eb1 100644 --- a/gemfiles/ruby_3.3_graphql_2.2.gemfile.lock +++ b/gemfiles/ruby_3.3_graphql_2.2.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -251,6 +241,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -313,7 +307,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_3.3_graphql_2.3.gemfile b/gemfiles/ruby_3.3_graphql_2.3.gemfile index a5da3023e42..f667a0f732b 100644 --- a/gemfiles/ruby_3.3_graphql_2.3.gemfile +++ b/gemfiles/ruby_3.3_graphql_2.3.gemfile @@ -25,7 +25,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.3_graphql_2.3.gemfile.lock b/gemfiles/ruby_3.3_graphql_2.3.gemfile.lock index 0421c5b4c26..3691317f575 100644 --- a/gemfiles/ruby_3.3_graphql_2.3.gemfile.lock +++ b/gemfiles/ruby_3.3_graphql_2.3.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -254,6 +244,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -316,7 +310,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_3.3_http.gemfile b/gemfiles/ruby_3.3_http.gemfile index 3a1ab022620..dc32cc47097 100644 --- a/gemfiles/ruby_3.3_http.gemfile +++ b/gemfiles/ruby_3.3_http.gemfile @@ -25,7 +25,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.3_http.gemfile.lock b/gemfiles/ruby_3.3_http.gemfile.lock index 6d68c918e3e..ec9363ea535 100644 --- a/gemfiles/ruby_3.3_http.gemfile.lock +++ b/gemfiles/ruby_3.3_http.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -151,6 +141,10 @@ GEM rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -205,7 +199,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) typhoeus warning (~> 1) diff --git a/gemfiles/ruby_3.3_opensearch_2.gemfile b/gemfiles/ruby_3.3_opensearch_2.gemfile index 5e55469e4a3..de901141719 100644 --- a/gemfiles/ruby_3.3_opensearch_2.gemfile +++ b/gemfiles/ruby_3.3_opensearch_2.gemfile @@ -25,7 +25,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.3_opensearch_2.gemfile.lock b/gemfiles/ruby_3.3_opensearch_2.gemfile.lock index cd8e915adde..74f9ccdf37c 100644 --- a/gemfiles/ruby_3.3_opensearch_2.gemfile.lock +++ b/gemfiles/ruby_3.3_opensearch_2.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -136,6 +126,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -181,7 +175,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.3_opensearch_3.gemfile b/gemfiles/ruby_3.3_opensearch_3.gemfile index b440d62ca60..ea9d740c6a2 100644 --- a/gemfiles/ruby_3.3_opensearch_3.gemfile +++ b/gemfiles/ruby_3.3_opensearch_3.gemfile @@ -25,7 +25,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.3_opensearch_3.gemfile.lock b/gemfiles/ruby_3.3_opensearch_3.gemfile.lock index 52594de46cc..7b0071a059d 100644 --- a/gemfiles/ruby_3.3_opensearch_3.gemfile.lock +++ b/gemfiles/ruby_3.3_opensearch_3.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -131,6 +121,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -176,7 +170,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.3_opensearch_latest.gemfile b/gemfiles/ruby_3.3_opensearch_latest.gemfile index 3e8e5bd6624..e7ed9c1100f 100644 --- a/gemfiles/ruby_3.3_opensearch_latest.gemfile +++ b/gemfiles/ruby_3.3_opensearch_latest.gemfile @@ -25,7 +25,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.3_opensearch_latest.gemfile.lock b/gemfiles/ruby_3.3_opensearch_latest.gemfile.lock index 2b33fd8f8f7..ec15305f3e3 100644 --- a/gemfiles/ruby_3.3_opensearch_latest.gemfile.lock +++ b/gemfiles/ruby_3.3_opensearch_latest.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -133,6 +123,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -177,7 +171,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.3_opentelemetry.gemfile b/gemfiles/ruby_3.3_opentelemetry.gemfile index e5c89526d65..b0ab8f1f286 100644 --- a/gemfiles/ruby_3.3_opentelemetry.gemfile +++ b/gemfiles/ruby_3.3_opentelemetry.gemfile @@ -25,7 +25,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.3_opentelemetry.gemfile.lock b/gemfiles/ruby_3.3_opentelemetry.gemfile.lock index db5dcd14f9f..072c43a1796 100644 --- a/gemfiles/ruby_3.3_opentelemetry.gemfile.lock +++ b/gemfiles/ruby_3.3_opentelemetry.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -126,6 +116,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -170,7 +164,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.3_opentelemetry_otlp.gemfile b/gemfiles/ruby_3.3_opentelemetry_otlp.gemfile index 75182024cf7..9843af97d99 100644 --- a/gemfiles/ruby_3.3_opentelemetry_otlp.gemfile +++ b/gemfiles/ruby_3.3_opentelemetry_otlp.gemfile @@ -25,7 +25,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.3_opentelemetry_otlp.gemfile.lock b/gemfiles/ruby_3.3_opentelemetry_otlp.gemfile.lock index 43dbc52fe9a..003e96fdbcc 100644 --- a/gemfiles/ruby_3.3_opentelemetry_otlp.gemfile.lock +++ b/gemfiles/ruby_3.3_opentelemetry_otlp.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -141,6 +131,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -185,7 +179,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.3_rack_2.gemfile b/gemfiles/ruby_3.3_rack_2.gemfile index 87de056577a..5f0e00d9f29 100644 --- a/gemfiles/ruby_3.3_rack_2.gemfile +++ b/gemfiles/ruby_3.3_rack_2.gemfile @@ -25,7 +25,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.3_rack_2.gemfile.lock b/gemfiles/ruby_3.3_rack_2.gemfile.lock index d0d8992bf32..0dc721f203a 100644 --- a/gemfiles/ruby_3.3_rack_2.gemfile.lock +++ b/gemfiles/ruby_3.3_rack_2.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -121,6 +111,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -167,7 +161,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.3_rack_3.gemfile b/gemfiles/ruby_3.3_rack_3.gemfile index 0e692b97324..a629b8caecb 100644 --- a/gemfiles/ruby_3.3_rack_3.gemfile +++ b/gemfiles/ruby_3.3_rack_3.gemfile @@ -25,7 +25,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.3_rack_3.gemfile.lock b/gemfiles/ruby_3.3_rack_3.gemfile.lock index 49b2f1b98c5..18d842301b8 100644 --- a/gemfiles/ruby_3.3_rack_3.gemfile.lock +++ b/gemfiles/ruby_3.3_rack_3.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -121,6 +111,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -167,7 +161,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.3_rack_latest.gemfile b/gemfiles/ruby_3.3_rack_latest.gemfile index bce312c52e4..ec624ba27ec 100644 --- a/gemfiles/ruby_3.3_rack_latest.gemfile +++ b/gemfiles/ruby_3.3_rack_latest.gemfile @@ -25,7 +25,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.3_rack_latest.gemfile.lock b/gemfiles/ruby_3.3_rack_latest.gemfile.lock index 22ebed57cbe..c7ed7113fd6 100644 --- a/gemfiles/ruby_3.3_rack_latest.gemfile.lock +++ b/gemfiles/ruby_3.3_rack_latest.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -125,6 +115,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -170,7 +164,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.3_rails61_mysql2.gemfile b/gemfiles/ruby_3.3_rails61_mysql2.gemfile index 9c959c1f4c4..3a88c449ac4 100644 --- a/gemfiles/ruby_3.3_rails61_mysql2.gemfile +++ b/gemfiles/ruby_3.3_rails61_mysql2.gemfile @@ -25,7 +25,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.3_rails61_mysql2.gemfile.lock b/gemfiles/ruby_3.3_rails61_mysql2.gemfile.lock index 45e9c3bf47d..33cc3d174d9 100644 --- a/gemfiles/ruby_3.3_rails61_mysql2.gemfile.lock +++ b/gemfiles/ruby_3.3_rails61_mysql2.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -246,6 +236,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -308,7 +302,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_3.3_rails61_postgres.gemfile b/gemfiles/ruby_3.3_rails61_postgres.gemfile index b70e54c2c92..e83b417adff 100644 --- a/gemfiles/ruby_3.3_rails61_postgres.gemfile +++ b/gemfiles/ruby_3.3_rails61_postgres.gemfile @@ -25,7 +25,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.3_rails61_postgres.gemfile.lock b/gemfiles/ruby_3.3_rails61_postgres.gemfile.lock index 156c0eaaa55..232f82369b9 100644 --- a/gemfiles/ruby_3.3_rails61_postgres.gemfile.lock +++ b/gemfiles/ruby_3.3_rails61_postgres.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -246,6 +236,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -308,7 +302,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_3.3_rails61_postgres_redis.gemfile b/gemfiles/ruby_3.3_rails61_postgres_redis.gemfile index fec69ed995c..da07d92f49d 100644 --- a/gemfiles/ruby_3.3_rails61_postgres_redis.gemfile +++ b/gemfiles/ruby_3.3_rails61_postgres_redis.gemfile @@ -25,7 +25,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.3_rails61_postgres_redis.gemfile.lock b/gemfiles/ruby_3.3_rails61_postgres_redis.gemfile.lock index e5f77a69109..f4f73044ed5 100644 --- a/gemfiles/ruby_3.3_rails61_postgres_redis.gemfile.lock +++ b/gemfiles/ruby_3.3_rails61_postgres_redis.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -247,6 +237,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -310,7 +304,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_3.3_rails61_postgres_sidekiq.gemfile b/gemfiles/ruby_3.3_rails61_postgres_sidekiq.gemfile index c45085dd974..b65755b2159 100644 --- a/gemfiles/ruby_3.3_rails61_postgres_sidekiq.gemfile +++ b/gemfiles/ruby_3.3_rails61_postgres_sidekiq.gemfile @@ -25,7 +25,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.3_rails61_postgres_sidekiq.gemfile.lock b/gemfiles/ruby_3.3_rails61_postgres_sidekiq.gemfile.lock index 6d75912d1fe..e9f569e110d 100644 --- a/gemfiles/ruby_3.3_rails61_postgres_sidekiq.gemfile.lock +++ b/gemfiles/ruby_3.3_rails61_postgres_sidekiq.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -260,6 +250,10 @@ GEM connection_pool (>= 2.3.0) rack (>= 2.2.4) redis-client (>= 0.14.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -324,7 +318,7 @@ DEPENDENCIES rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) sidekiq (>= 6.1.2) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_3.3_rails61_semantic_logger.gemfile b/gemfiles/ruby_3.3_rails61_semantic_logger.gemfile index 2cde7f32304..7f42665e2bf 100644 --- a/gemfiles/ruby_3.3_rails61_semantic_logger.gemfile +++ b/gemfiles/ruby_3.3_rails61_semantic_logger.gemfile @@ -25,7 +25,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.3_rails61_semantic_logger.gemfile.lock b/gemfiles/ruby_3.3_rails61_semantic_logger.gemfile.lock index b757c6568c9..5891f7bb953 100644 --- a/gemfiles/ruby_3.3_rails61_semantic_logger.gemfile.lock +++ b/gemfiles/ruby_3.3_rails61_semantic_logger.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -245,6 +235,10 @@ GEM ruby-progressbar (1.13.0) semantic_logger (4.13.0) concurrent-ruby (~> 1.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -307,7 +301,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_3.3_rails61_trilogy.gemfile b/gemfiles/ruby_3.3_rails61_trilogy.gemfile index 9022851a92e..286747986d4 100644 --- a/gemfiles/ruby_3.3_rails61_trilogy.gemfile +++ b/gemfiles/ruby_3.3_rails61_trilogy.gemfile @@ -25,7 +25,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.3_rails61_trilogy.gemfile.lock b/gemfiles/ruby_3.3_rails61_trilogy.gemfile.lock index 6c2d767d4d6..f7c65ce8706 100644 --- a/gemfiles/ruby_3.3_rails61_trilogy.gemfile.lock +++ b/gemfiles/ruby_3.3_rails61_trilogy.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -251,6 +241,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -314,7 +308,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) trilogy diff --git a/gemfiles/ruby_3.3_rails7.gemfile b/gemfiles/ruby_3.3_rails7.gemfile index 8c4be9217cf..a24b15ca518 100644 --- a/gemfiles/ruby_3.3_rails7.gemfile +++ b/gemfiles/ruby_3.3_rails7.gemfile @@ -25,7 +25,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.3_rails7.gemfile.lock b/gemfiles/ruby_3.3_rails7.gemfile.lock index 85393b027e5..8b0b8e0e309 100644 --- a/gemfiles/ruby_3.3_rails7.gemfile.lock +++ b/gemfiles/ruby_3.3_rails7.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -250,6 +240,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -302,7 +296,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.3_rails71.gemfile b/gemfiles/ruby_3.3_rails71.gemfile index 97901ffef09..006dafab72d 100644 --- a/gemfiles/ruby_3.3_rails71.gemfile +++ b/gemfiles/ruby_3.3_rails71.gemfile @@ -25,7 +25,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.3_rails71.gemfile.lock b/gemfiles/ruby_3.3_rails71.gemfile.lock index e68534abf12..943bd28c2dc 100644 --- a/gemfiles/ruby_3.3_rails71.gemfile.lock +++ b/gemfiles/ruby_3.3_rails71.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -279,6 +269,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -332,7 +326,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.3_rails_old_redis.gemfile b/gemfiles/ruby_3.3_rails_old_redis.gemfile index 732bda94c32..acf6f6605fa 100644 --- a/gemfiles/ruby_3.3_rails_old_redis.gemfile +++ b/gemfiles/ruby_3.3_rails_old_redis.gemfile @@ -25,7 +25,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.3_redis_3.gemfile b/gemfiles/ruby_3.3_redis_3.gemfile index 2621e776d37..c7423cbe3f0 100644 --- a/gemfiles/ruby_3.3_redis_3.gemfile +++ b/gemfiles/ruby_3.3_redis_3.gemfile @@ -25,7 +25,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.3_redis_3.gemfile.lock b/gemfiles/ruby_3.3_redis_3.gemfile.lock index dd7d045007a..0da4e8939f3 100644 --- a/gemfiles/ruby_3.3_redis_3.gemfile.lock +++ b/gemfiles/ruby_3.3_redis_3.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -115,6 +105,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -159,7 +153,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.3_redis_4.gemfile b/gemfiles/ruby_3.3_redis_4.gemfile index 7d028f4bdd6..a80abdd50a9 100644 --- a/gemfiles/ruby_3.3_redis_4.gemfile +++ b/gemfiles/ruby_3.3_redis_4.gemfile @@ -25,7 +25,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.3_redis_4.gemfile.lock b/gemfiles/ruby_3.3_redis_4.gemfile.lock index 6eac77b8a77..f22e4d596b8 100644 --- a/gemfiles/ruby_3.3_redis_4.gemfile.lock +++ b/gemfiles/ruby_3.3_redis_4.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -115,6 +105,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -159,7 +153,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.3_redis_5.gemfile b/gemfiles/ruby_3.3_redis_5.gemfile index a31604f7db0..b79c4d9d9b8 100644 --- a/gemfiles/ruby_3.3_redis_5.gemfile +++ b/gemfiles/ruby_3.3_redis_5.gemfile @@ -25,7 +25,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.3_redis_5.gemfile.lock b/gemfiles/ruby_3.3_redis_5.gemfile.lock index a6292f47138..fc179422917 100644 --- a/gemfiles/ruby_3.3_redis_5.gemfile.lock +++ b/gemfiles/ruby_3.3_redis_5.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -119,6 +109,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -163,7 +157,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.3_relational_db.gemfile b/gemfiles/ruby_3.3_relational_db.gemfile index 1f84b2d4b94..4f3a9bba7b0 100644 --- a/gemfiles/ruby_3.3_relational_db.gemfile +++ b/gemfiles/ruby_3.3_relational_db.gemfile @@ -25,7 +25,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.3_relational_db.gemfile.lock b/gemfiles/ruby_3.3_relational_db.gemfile.lock index 05865bded3e..878a5ea38b5 100644 --- a/gemfiles/ruby_3.3_relational_db.gemfile.lock +++ b/gemfiles/ruby_3.3_relational_db.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -142,6 +132,10 @@ GEM ruby-progressbar (1.13.0) sequel (5.83.1) bigdecimal + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -197,7 +191,7 @@ DEPENDENCIES rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) sequel - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sqlite3 (>= 1.4.2) trilogy diff --git a/gemfiles/ruby_3.3_resque2_redis3.gemfile b/gemfiles/ruby_3.3_resque2_redis3.gemfile index e79d7a0f26c..25ae2f88533 100644 --- a/gemfiles/ruby_3.3_resque2_redis3.gemfile +++ b/gemfiles/ruby_3.3_resque2_redis3.gemfile @@ -25,7 +25,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.3_resque2_redis3.gemfile.lock b/gemfiles/ruby_3.3_resque2_redis3.gemfile.lock index 9c3bf24a7d9..7e32714baf5 100644 --- a/gemfiles/ruby_3.3_resque2_redis3.gemfile.lock +++ b/gemfiles/ruby_3.3_resque2_redis3.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -130,6 +120,10 @@ GEM rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -181,7 +175,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.3_resque2_redis4.gemfile b/gemfiles/ruby_3.3_resque2_redis4.gemfile index 2572c886f05..cc1ae388517 100644 --- a/gemfiles/ruby_3.3_resque2_redis4.gemfile +++ b/gemfiles/ruby_3.3_resque2_redis4.gemfile @@ -25,7 +25,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.3_resque2_redis4.gemfile.lock b/gemfiles/ruby_3.3_resque2_redis4.gemfile.lock index d15124aac59..e13117348be 100644 --- a/gemfiles/ruby_3.3_resque2_redis4.gemfile.lock +++ b/gemfiles/ruby_3.3_resque2_redis4.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -134,6 +124,10 @@ GEM rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -185,7 +179,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.3_sinatra_2.gemfile b/gemfiles/ruby_3.3_sinatra_2.gemfile index 9d265f8e3de..79c6068bc8b 100644 --- a/gemfiles/ruby_3.3_sinatra_2.gemfile +++ b/gemfiles/ruby_3.3_sinatra_2.gemfile @@ -25,7 +25,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.3_sinatra_2.gemfile.lock b/gemfiles/ruby_3.3_sinatra_2.gemfile.lock index fabb61e67b1..040b2784c37 100644 --- a/gemfiles/ruby_3.3_sinatra_2.gemfile.lock +++ b/gemfiles/ruby_3.3_sinatra_2.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -131,6 +121,10 @@ GEM rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -182,7 +176,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sinatra (~> 2) warning (~> 1) diff --git a/gemfiles/ruby_3.3_sinatra_3.gemfile b/gemfiles/ruby_3.3_sinatra_3.gemfile index bc754753398..a35d2d05075 100644 --- a/gemfiles/ruby_3.3_sinatra_3.gemfile +++ b/gemfiles/ruby_3.3_sinatra_3.gemfile @@ -25,7 +25,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.3_sinatra_3.gemfile.lock b/gemfiles/ruby_3.3_sinatra_3.gemfile.lock index d77a3cbfca7..698e3f99f09 100644 --- a/gemfiles/ruby_3.3_sinatra_3.gemfile.lock +++ b/gemfiles/ruby_3.3_sinatra_3.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -133,6 +123,10 @@ GEM rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -184,7 +178,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sinatra (~> 3) warning (~> 1) diff --git a/gemfiles/ruby_3.3_sinatra_4.gemfile b/gemfiles/ruby_3.3_sinatra_4.gemfile index 1052d9e7238..ad413b7d594 100644 --- a/gemfiles/ruby_3.3_sinatra_4.gemfile +++ b/gemfiles/ruby_3.3_sinatra_4.gemfile @@ -25,7 +25,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.3_sinatra_4.gemfile.lock b/gemfiles/ruby_3.3_sinatra_4.gemfile.lock index 909e7fc6c71..71fcfbc2f33 100644 --- a/gemfiles/ruby_3.3_sinatra_4.gemfile.lock +++ b/gemfiles/ruby_3.3_sinatra_4.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -135,6 +125,10 @@ GEM rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -187,7 +181,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sinatra (~> 4) warning (~> 1) diff --git a/gemfiles/ruby_3.3_stripe_10.gemfile b/gemfiles/ruby_3.3_stripe_10.gemfile index 2ceadd407b9..93a5975d521 100644 --- a/gemfiles/ruby_3.3_stripe_10.gemfile +++ b/gemfiles/ruby_3.3_stripe_10.gemfile @@ -25,7 +25,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.3_stripe_10.gemfile.lock b/gemfiles/ruby_3.3_stripe_10.gemfile.lock index 1607ed87575..5fbc0a7a593 100644 --- a/gemfiles/ruby_3.3_stripe_10.gemfile.lock +++ b/gemfiles/ruby_3.3_stripe_10.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -121,6 +111,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -165,7 +159,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 10) warning (~> 1) diff --git a/gemfiles/ruby_3.3_stripe_11.gemfile b/gemfiles/ruby_3.3_stripe_11.gemfile index 3300e5608cc..d6ccbe3d451 100644 --- a/gemfiles/ruby_3.3_stripe_11.gemfile +++ b/gemfiles/ruby_3.3_stripe_11.gemfile @@ -25,7 +25,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.3_stripe_11.gemfile.lock b/gemfiles/ruby_3.3_stripe_11.gemfile.lock index 3a612068c4e..10d633de97f 100644 --- a/gemfiles/ruby_3.3_stripe_11.gemfile.lock +++ b/gemfiles/ruby_3.3_stripe_11.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -121,6 +111,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -165,7 +159,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 11) warning (~> 1) diff --git a/gemfiles/ruby_3.3_stripe_12.gemfile b/gemfiles/ruby_3.3_stripe_12.gemfile index f54cb27fca6..2e1b91d06ff 100644 --- a/gemfiles/ruby_3.3_stripe_12.gemfile +++ b/gemfiles/ruby_3.3_stripe_12.gemfile @@ -25,7 +25,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.3_stripe_12.gemfile.lock b/gemfiles/ruby_3.3_stripe_12.gemfile.lock index 297668c2e78..1c91f743b6c 100644 --- a/gemfiles/ruby_3.3_stripe_12.gemfile.lock +++ b/gemfiles/ruby_3.3_stripe_12.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -121,6 +111,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -165,7 +159,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 12) warning (~> 1) diff --git a/gemfiles/ruby_3.3_stripe_7.gemfile b/gemfiles/ruby_3.3_stripe_7.gemfile index 4782529fce3..17d9a9abb41 100644 --- a/gemfiles/ruby_3.3_stripe_7.gemfile +++ b/gemfiles/ruby_3.3_stripe_7.gemfile @@ -25,7 +25,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.3_stripe_7.gemfile.lock b/gemfiles/ruby_3.3_stripe_7.gemfile.lock index 9bdd1cfc2c3..bbb1c542d2b 100644 --- a/gemfiles/ruby_3.3_stripe_7.gemfile.lock +++ b/gemfiles/ruby_3.3_stripe_7.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -121,6 +111,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -165,7 +159,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 7) warning (~> 1) diff --git a/gemfiles/ruby_3.3_stripe_8.gemfile b/gemfiles/ruby_3.3_stripe_8.gemfile index 2e93e38446b..352eb982a29 100644 --- a/gemfiles/ruby_3.3_stripe_8.gemfile +++ b/gemfiles/ruby_3.3_stripe_8.gemfile @@ -25,7 +25,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.3_stripe_8.gemfile.lock b/gemfiles/ruby_3.3_stripe_8.gemfile.lock index cebf0ffd8aa..001e899d443 100644 --- a/gemfiles/ruby_3.3_stripe_8.gemfile.lock +++ b/gemfiles/ruby_3.3_stripe_8.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -121,6 +111,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -165,7 +159,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 8) warning (~> 1) diff --git a/gemfiles/ruby_3.3_stripe_9.gemfile b/gemfiles/ruby_3.3_stripe_9.gemfile index 8b3930e1c50..7e5411f19f1 100644 --- a/gemfiles/ruby_3.3_stripe_9.gemfile +++ b/gemfiles/ruby_3.3_stripe_9.gemfile @@ -25,7 +25,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.3_stripe_9.gemfile.lock b/gemfiles/ruby_3.3_stripe_9.gemfile.lock index 5df781aedd2..f15a3cf3abb 100644 --- a/gemfiles/ruby_3.3_stripe_9.gemfile.lock +++ b/gemfiles/ruby_3.3_stripe_9.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -121,6 +111,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -165,7 +159,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 9) warning (~> 1) diff --git a/gemfiles/ruby_3.3_stripe_latest.gemfile b/gemfiles/ruby_3.3_stripe_latest.gemfile index 56dfcce1def..f84c0c4cf04 100644 --- a/gemfiles/ruby_3.3_stripe_latest.gemfile +++ b/gemfiles/ruby_3.3_stripe_latest.gemfile @@ -25,7 +25,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.3_stripe_latest.gemfile.lock b/gemfiles/ruby_3.3_stripe_latest.gemfile.lock index e43304b637b..b18995496df 100644 --- a/gemfiles/ruby_3.3_stripe_latest.gemfile.lock +++ b/gemfiles/ruby_3.3_stripe_latest.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -120,6 +110,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -163,7 +157,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) stripe warning (~> 1) diff --git a/gemfiles/ruby_3.3_stripe_min.gemfile b/gemfiles/ruby_3.3_stripe_min.gemfile index 1f215af403b..cfbd5cdb264 100644 --- a/gemfiles/ruby_3.3_stripe_min.gemfile +++ b/gemfiles/ruby_3.3_stripe_min.gemfile @@ -25,7 +25,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.3_stripe_min.gemfile.lock b/gemfiles/ruby_3.3_stripe_min.gemfile.lock index 91ed6faf882..b27b795714f 100644 --- a/gemfiles/ruby_3.3_stripe_min.gemfile.lock +++ b/gemfiles/ruby_3.3_stripe_min.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -120,6 +110,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -163,7 +157,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) stripe (= 5.15.0) warning (~> 1) diff --git a/gemfiles/ruby_3.4_activesupport.gemfile b/gemfiles/ruby_3.4_activesupport.gemfile index b9efe74db8f..a2e07cceda6 100644 --- a/gemfiles/ruby_3.4_activesupport.gemfile +++ b/gemfiles/ruby_3.4_activesupport.gemfile @@ -28,7 +28,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.4_activesupport.gemfile.lock b/gemfiles/ruby_3.4_activesupport.gemfile.lock index 5b59f490f78..45df7994d26 100644 --- a/gemfiles/ruby_3.4_activesupport.gemfile.lock +++ b/gemfiles/ruby_3.4_activesupport.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -251,6 +241,10 @@ GEM digest-crc ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -310,7 +304,7 @@ DEPENDENCIES rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) ruby-kafka (>= 0.7.10) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.4_aws.gemfile b/gemfiles/ruby_3.4_aws.gemfile index 85239ef89ed..c75126da92b 100644 --- a/gemfiles/ruby_3.4_aws.gemfile +++ b/gemfiles/ruby_3.4_aws.gemfile @@ -28,7 +28,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.4_aws.gemfile.lock b/gemfiles/ruby_3.4_aws.gemfile.lock index b9f7b275633..c133efc3e5d 100644 --- a/gemfiles/ruby_3.4_aws.gemfile.lock +++ b/gemfiles/ruby_3.4_aws.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -1675,6 +1665,10 @@ GEM aws-sdk-core (>= 2) concurrent-ruby thor + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -1724,7 +1718,7 @@ DEPENDENCIES rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) shoryuken - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.4_contrib.gemfile b/gemfiles/ruby_3.4_contrib.gemfile index 4d6897b4608..1474d4ef6f4 100644 --- a/gemfiles/ruby_3.4_contrib.gemfile +++ b/gemfiles/ruby_3.4_contrib.gemfile @@ -28,7 +28,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.4_contrib.gemfile.lock b/gemfiles/ruby_3.4_contrib.gemfile.lock index ded35903d3f..cee1993a870 100644 --- a/gemfiles/ruby_3.4_contrib.gemfile.lock +++ b/gemfiles/ruby_3.4_contrib.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -177,6 +167,10 @@ GEM rack (>= 2.2.4) redis-client (>= 0.19.0) sigdump (0.2.5) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -252,7 +246,7 @@ DEPENDENCIES rubocop-rspec (~> 2.20, < 2.21) semantic_logger (~> 4.0) sidekiq (~> 7) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sneakers (>= 2.12.0) sucker_punch diff --git a/gemfiles/ruby_3.4_contrib_old.gemfile b/gemfiles/ruby_3.4_contrib_old.gemfile index a49d7a0f057..dcb90710598 100644 --- a/gemfiles/ruby_3.4_contrib_old.gemfile +++ b/gemfiles/ruby_3.4_contrib_old.gemfile @@ -28,7 +28,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.4_contrib_old.gemfile.lock b/gemfiles/ruby_3.4_contrib_old.gemfile.lock index 6ae6ebc7d45..c93978f82e0 100644 --- a/gemfiles/ruby_3.4_contrib_old.gemfile.lock +++ b/gemfiles/ruby_3.4_contrib_old.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -162,6 +152,10 @@ GEM rusage (0.2.0) sentry-raven (0.15.6) faraday (>= 0.7.6) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -225,7 +219,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.4_core_old.gemfile b/gemfiles/ruby_3.4_core_old.gemfile index 7212c4c6b31..01b23e2d3da 100644 --- a/gemfiles/ruby_3.4_core_old.gemfile +++ b/gemfiles/ruby_3.4_core_old.gemfile @@ -28,7 +28,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.4_core_old.gemfile.lock b/gemfiles/ruby_3.4_core_old.gemfile.lock index c8c37244120..5bde6ab9ed0 100644 --- a/gemfiles/ruby_3.4_core_old.gemfile.lock +++ b/gemfiles/ruby_3.4_core_old.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -122,6 +112,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -168,7 +162,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.4_elasticsearch_7.gemfile b/gemfiles/ruby_3.4_elasticsearch_7.gemfile index 0daf60388b5..21436a3d56d 100644 --- a/gemfiles/ruby_3.4_elasticsearch_7.gemfile +++ b/gemfiles/ruby_3.4_elasticsearch_7.gemfile @@ -28,7 +28,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.4_elasticsearch_7.gemfile.lock b/gemfiles/ruby_3.4_elasticsearch_7.gemfile.lock index 13ddfa935f8..8127562c032 100644 --- a/gemfiles/ruby_3.4_elasticsearch_7.gemfile.lock +++ b/gemfiles/ruby_3.4_elasticsearch_7.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -141,6 +131,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -189,7 +183,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.4_elasticsearch_8.gemfile b/gemfiles/ruby_3.4_elasticsearch_8.gemfile index c72e5234d71..12f2bc2e928 100644 --- a/gemfiles/ruby_3.4_elasticsearch_8.gemfile +++ b/gemfiles/ruby_3.4_elasticsearch_8.gemfile @@ -28,7 +28,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.4_elasticsearch_8.gemfile.lock b/gemfiles/ruby_3.4_elasticsearch_8.gemfile.lock index e6d4ac857d5..84c4385435b 100644 --- a/gemfiles/ruby_3.4_elasticsearch_8.gemfile.lock +++ b/gemfiles/ruby_3.4_elasticsearch_8.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -140,6 +130,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -188,7 +182,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.4_elasticsearch_latest.gemfile b/gemfiles/ruby_3.4_elasticsearch_latest.gemfile index 9ef8143ea77..af6d40078a6 100644 --- a/gemfiles/ruby_3.4_elasticsearch_latest.gemfile +++ b/gemfiles/ruby_3.4_elasticsearch_latest.gemfile @@ -28,7 +28,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.4_elasticsearch_latest.gemfile.lock b/gemfiles/ruby_3.4_elasticsearch_latest.gemfile.lock index a70ec127b71..9ec5358a17c 100644 --- a/gemfiles/ruby_3.4_elasticsearch_latest.gemfile.lock +++ b/gemfiles/ruby_3.4_elasticsearch_latest.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -139,6 +129,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -186,7 +180,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.4_graphql_1.13.gemfile b/gemfiles/ruby_3.4_graphql_1.13.gemfile index bfd55a09fa2..ff2b885583a 100644 --- a/gemfiles/ruby_3.4_graphql_1.13.gemfile +++ b/gemfiles/ruby_3.4_graphql_1.13.gemfile @@ -28,7 +28,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.4_graphql_1.13.gemfile.lock b/gemfiles/ruby_3.4_graphql_1.13.gemfile.lock index c35771eb843..d107c1264d5 100644 --- a/gemfiles/ruby_3.4_graphql_1.13.gemfile.lock +++ b/gemfiles/ruby_3.4_graphql_1.13.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -253,6 +243,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -318,7 +312,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_3.4_graphql_2.0.gemfile b/gemfiles/ruby_3.4_graphql_2.0.gemfile index fc6b049dd44..375c20be96f 100644 --- a/gemfiles/ruby_3.4_graphql_2.0.gemfile +++ b/gemfiles/ruby_3.4_graphql_2.0.gemfile @@ -28,7 +28,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.4_graphql_2.0.gemfile.lock b/gemfiles/ruby_3.4_graphql_2.0.gemfile.lock index 58754e1f45f..9ed446be3e1 100644 --- a/gemfiles/ruby_3.4_graphql_2.0.gemfile.lock +++ b/gemfiles/ruby_3.4_graphql_2.0.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -253,6 +243,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -318,7 +312,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_3.4_graphql_2.1.gemfile b/gemfiles/ruby_3.4_graphql_2.1.gemfile index f5fe40a7add..d3a8c9d8161 100644 --- a/gemfiles/ruby_3.4_graphql_2.1.gemfile +++ b/gemfiles/ruby_3.4_graphql_2.1.gemfile @@ -28,7 +28,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.4_graphql_2.1.gemfile.lock b/gemfiles/ruby_3.4_graphql_2.1.gemfile.lock index 95488eaa0b8..b959d6e6ea4 100644 --- a/gemfiles/ruby_3.4_graphql_2.1.gemfile.lock +++ b/gemfiles/ruby_3.4_graphql_2.1.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -253,6 +243,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -318,7 +312,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_3.4_graphql_2.2.gemfile b/gemfiles/ruby_3.4_graphql_2.2.gemfile index 2c7558e0998..46d08eb7f03 100644 --- a/gemfiles/ruby_3.4_graphql_2.2.gemfile +++ b/gemfiles/ruby_3.4_graphql_2.2.gemfile @@ -28,7 +28,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.4_graphql_2.2.gemfile.lock b/gemfiles/ruby_3.4_graphql_2.2.gemfile.lock index b096b4776ad..4f35d93aa3a 100644 --- a/gemfiles/ruby_3.4_graphql_2.2.gemfile.lock +++ b/gemfiles/ruby_3.4_graphql_2.2.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -253,6 +243,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -318,7 +312,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_3.4_graphql_2.3.gemfile b/gemfiles/ruby_3.4_graphql_2.3.gemfile index 85c824645e9..fd458a7b381 100644 --- a/gemfiles/ruby_3.4_graphql_2.3.gemfile +++ b/gemfiles/ruby_3.4_graphql_2.3.gemfile @@ -28,7 +28,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.4_graphql_2.3.gemfile.lock b/gemfiles/ruby_3.4_graphql_2.3.gemfile.lock index d1cc3fb86f9..0d1cc4a2f5f 100644 --- a/gemfiles/ruby_3.4_graphql_2.3.gemfile.lock +++ b/gemfiles/ruby_3.4_graphql_2.3.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -253,6 +243,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -318,7 +312,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_3.4_http.gemfile b/gemfiles/ruby_3.4_http.gemfile index 823cd07ba5a..09320ec2626 100644 --- a/gemfiles/ruby_3.4_http.gemfile +++ b/gemfiles/ruby_3.4_http.gemfile @@ -28,7 +28,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.4_http.gemfile.lock b/gemfiles/ruby_3.4_http.gemfile.lock index a8cfde20109..bfbe3f6559a 100644 --- a/gemfiles/ruby_3.4_http.gemfile.lock +++ b/gemfiles/ruby_3.4_http.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -158,6 +148,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -213,7 +207,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) typhoeus warning (~> 1) diff --git a/gemfiles/ruby_3.4_opensearch_2.gemfile b/gemfiles/ruby_3.4_opensearch_2.gemfile index b9f5dd06ab1..be165b3fb44 100644 --- a/gemfiles/ruby_3.4_opensearch_2.gemfile +++ b/gemfiles/ruby_3.4_opensearch_2.gemfile @@ -28,7 +28,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.4_opensearch_2.gemfile.lock b/gemfiles/ruby_3.4_opensearch_2.gemfile.lock index 67f3f05b742..193c639f5f0 100644 --- a/gemfiles/ruby_3.4_opensearch_2.gemfile.lock +++ b/gemfiles/ruby_3.4_opensearch_2.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -140,6 +130,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -188,7 +182,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.4_opensearch_3.gemfile b/gemfiles/ruby_3.4_opensearch_3.gemfile index c6b73fbb534..7327e22aba9 100644 --- a/gemfiles/ruby_3.4_opensearch_3.gemfile +++ b/gemfiles/ruby_3.4_opensearch_3.gemfile @@ -28,7 +28,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.4_opensearch_3.gemfile.lock b/gemfiles/ruby_3.4_opensearch_3.gemfile.lock index 9b6d24d2213..e47e94be01e 100644 --- a/gemfiles/ruby_3.4_opensearch_3.gemfile.lock +++ b/gemfiles/ruby_3.4_opensearch_3.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -135,6 +125,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -183,7 +177,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.4_opensearch_latest.gemfile b/gemfiles/ruby_3.4_opensearch_latest.gemfile index d7ee68961b8..68ef9748484 100644 --- a/gemfiles/ruby_3.4_opensearch_latest.gemfile +++ b/gemfiles/ruby_3.4_opensearch_latest.gemfile @@ -28,7 +28,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.4_opensearch_latest.gemfile.lock b/gemfiles/ruby_3.4_opensearch_latest.gemfile.lock index 4fb33d10c44..c21a5addc66 100644 --- a/gemfiles/ruby_3.4_opensearch_latest.gemfile.lock +++ b/gemfiles/ruby_3.4_opensearch_latest.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -134,6 +124,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -181,7 +175,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.4_opentelemetry.gemfile b/gemfiles/ruby_3.4_opentelemetry.gemfile index 2b1ee29481c..c613f8f9968 100644 --- a/gemfiles/ruby_3.4_opentelemetry.gemfile +++ b/gemfiles/ruby_3.4_opentelemetry.gemfile @@ -28,7 +28,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.4_opentelemetry.gemfile.lock b/gemfiles/ruby_3.4_opentelemetry.gemfile.lock index 230650eb0a8..0fc192e8a41 100644 --- a/gemfiles/ruby_3.4_opentelemetry.gemfile.lock +++ b/gemfiles/ruby_3.4_opentelemetry.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -134,6 +124,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -181,7 +175,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.4_opentelemetry_otlp.gemfile b/gemfiles/ruby_3.4_opentelemetry_otlp.gemfile index cd64e4e680b..bdb686e46d9 100644 --- a/gemfiles/ruby_3.4_opentelemetry_otlp.gemfile +++ b/gemfiles/ruby_3.4_opentelemetry_otlp.gemfile @@ -28,7 +28,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.4_opentelemetry_otlp.gemfile.lock b/gemfiles/ruby_3.4_opentelemetry_otlp.gemfile.lock index 9a4ebc3f567..6bf38e94ae6 100644 --- a/gemfiles/ruby_3.4_opentelemetry_otlp.gemfile.lock +++ b/gemfiles/ruby_3.4_opentelemetry_otlp.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -142,6 +132,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -189,7 +183,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.4_rack_2.gemfile b/gemfiles/ruby_3.4_rack_2.gemfile index f9b1fda874c..c5d31419955 100644 --- a/gemfiles/ruby_3.4_rack_2.gemfile +++ b/gemfiles/ruby_3.4_rack_2.gemfile @@ -28,7 +28,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.4_rack_2.gemfile.lock b/gemfiles/ruby_3.4_rack_2.gemfile.lock index d7b262f02d1..70bd5f5e6ae 100644 --- a/gemfiles/ruby_3.4_rack_2.gemfile.lock +++ b/gemfiles/ruby_3.4_rack_2.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -127,6 +117,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -176,7 +170,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.4_rack_3.gemfile b/gemfiles/ruby_3.4_rack_3.gemfile index 6483683c9cb..76c7008ca2d 100644 --- a/gemfiles/ruby_3.4_rack_3.gemfile +++ b/gemfiles/ruby_3.4_rack_3.gemfile @@ -28,7 +28,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.4_rack_3.gemfile.lock b/gemfiles/ruby_3.4_rack_3.gemfile.lock index 04298188eeb..4a8392c503f 100644 --- a/gemfiles/ruby_3.4_rack_3.gemfile.lock +++ b/gemfiles/ruby_3.4_rack_3.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -127,6 +117,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -176,7 +170,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.4_rack_latest.gemfile b/gemfiles/ruby_3.4_rack_latest.gemfile index 675b9e26fd3..0cc32214beb 100644 --- a/gemfiles/ruby_3.4_rack_latest.gemfile +++ b/gemfiles/ruby_3.4_rack_latest.gemfile @@ -28,7 +28,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.4_rack_latest.gemfile.lock b/gemfiles/ruby_3.4_rack_latest.gemfile.lock index 3e946ca83e9..22f97c82b97 100644 --- a/gemfiles/ruby_3.4_rack_latest.gemfile.lock +++ b/gemfiles/ruby_3.4_rack_latest.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -126,6 +116,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -174,7 +168,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.4_rails61_mysql2.gemfile b/gemfiles/ruby_3.4_rails61_mysql2.gemfile index b0259c8f84d..5bfc78b0799 100644 --- a/gemfiles/ruby_3.4_rails61_mysql2.gemfile +++ b/gemfiles/ruby_3.4_rails61_mysql2.gemfile @@ -28,7 +28,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.4_rails61_mysql2.gemfile.lock b/gemfiles/ruby_3.4_rails61_mysql2.gemfile.lock index 63b93e30555..23a19f1603f 100644 --- a/gemfiles/ruby_3.4_rails61_mysql2.gemfile.lock +++ b/gemfiles/ruby_3.4_rails61_mysql2.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -252,6 +242,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -318,7 +312,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_3.4_rails61_postgres.gemfile b/gemfiles/ruby_3.4_rails61_postgres.gemfile index b7792f10cbc..3f6d2014a6b 100644 --- a/gemfiles/ruby_3.4_rails61_postgres.gemfile +++ b/gemfiles/ruby_3.4_rails61_postgres.gemfile @@ -28,7 +28,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.4_rails61_postgres.gemfile.lock b/gemfiles/ruby_3.4_rails61_postgres.gemfile.lock index 2cd1b693f13..ff2dcde8299 100644 --- a/gemfiles/ruby_3.4_rails61_postgres.gemfile.lock +++ b/gemfiles/ruby_3.4_rails61_postgres.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -252,6 +242,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -318,7 +312,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_3.4_rails61_postgres_redis.gemfile b/gemfiles/ruby_3.4_rails61_postgres_redis.gemfile index 952e9a6f865..f06f03de175 100644 --- a/gemfiles/ruby_3.4_rails61_postgres_redis.gemfile +++ b/gemfiles/ruby_3.4_rails61_postgres_redis.gemfile @@ -28,7 +28,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.4_rails61_postgres_redis.gemfile.lock b/gemfiles/ruby_3.4_rails61_postgres_redis.gemfile.lock index 84c99af15b3..5e891d8d541 100644 --- a/gemfiles/ruby_3.4_rails61_postgres_redis.gemfile.lock +++ b/gemfiles/ruby_3.4_rails61_postgres_redis.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -253,6 +243,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -320,7 +314,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_3.4_rails61_postgres_sidekiq.gemfile b/gemfiles/ruby_3.4_rails61_postgres_sidekiq.gemfile index 69cf36345bc..66ce515f422 100644 --- a/gemfiles/ruby_3.4_rails61_postgres_sidekiq.gemfile +++ b/gemfiles/ruby_3.4_rails61_postgres_sidekiq.gemfile @@ -28,7 +28,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.4_rails61_postgres_sidekiq.gemfile.lock b/gemfiles/ruby_3.4_rails61_postgres_sidekiq.gemfile.lock index 6073885e0fe..58ee0a67dc9 100644 --- a/gemfiles/ruby_3.4_rails61_postgres_sidekiq.gemfile.lock +++ b/gemfiles/ruby_3.4_rails61_postgres_sidekiq.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -266,6 +256,10 @@ GEM connection_pool (>= 2.3.0) rack (>= 2.2.4) redis-client (>= 0.19.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -334,7 +328,7 @@ DEPENDENCIES rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) sidekiq (>= 6.1.2) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_3.4_rails61_semantic_logger.gemfile b/gemfiles/ruby_3.4_rails61_semantic_logger.gemfile index 6842d8876ea..a7a575df72e 100644 --- a/gemfiles/ruby_3.4_rails61_semantic_logger.gemfile +++ b/gemfiles/ruby_3.4_rails61_semantic_logger.gemfile @@ -28,7 +28,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.4_rails61_semantic_logger.gemfile.lock b/gemfiles/ruby_3.4_rails61_semantic_logger.gemfile.lock index de877f71354..041e4ab3948 100644 --- a/gemfiles/ruby_3.4_rails61_semantic_logger.gemfile.lock +++ b/gemfiles/ruby_3.4_rails61_semantic_logger.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -251,6 +241,10 @@ GEM ruby-progressbar (1.13.0) semantic_logger (4.15.0) concurrent-ruby (~> 1.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -317,7 +311,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_3.4_rails61_trilogy.gemfile b/gemfiles/ruby_3.4_rails61_trilogy.gemfile index f5aa9ddf483..f1557668313 100644 --- a/gemfiles/ruby_3.4_rails61_trilogy.gemfile +++ b/gemfiles/ruby_3.4_rails61_trilogy.gemfile @@ -28,7 +28,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.4_rails61_trilogy.gemfile.lock b/gemfiles/ruby_3.4_rails61_trilogy.gemfile.lock index ab08653594e..ec49b85f13d 100644 --- a/gemfiles/ruby_3.4_rails61_trilogy.gemfile.lock +++ b/gemfiles/ruby_3.4_rails61_trilogy.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -254,6 +244,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -321,7 +315,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) trilogy diff --git a/gemfiles/ruby_3.4_rails7.gemfile b/gemfiles/ruby_3.4_rails7.gemfile index 182edfe9da3..64bc1e18f59 100644 --- a/gemfiles/ruby_3.4_rails7.gemfile +++ b/gemfiles/ruby_3.4_rails7.gemfile @@ -28,7 +28,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.4_rails7.gemfile.lock b/gemfiles/ruby_3.4_rails7.gemfile.lock index e199d2d3ccd..312f01efc99 100644 --- a/gemfiles/ruby_3.4_rails7.gemfile.lock +++ b/gemfiles/ruby_3.4_rails7.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -254,6 +244,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -310,7 +304,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.4_rails71.gemfile b/gemfiles/ruby_3.4_rails71.gemfile index a3c36b665b3..1c3874e191c 100644 --- a/gemfiles/ruby_3.4_rails71.gemfile +++ b/gemfiles/ruby_3.4_rails71.gemfile @@ -28,7 +28,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.4_rails71.gemfile.lock b/gemfiles/ruby_3.4_rails71.gemfile.lock index 1924514ec68..d446d36b952 100644 --- a/gemfiles/ruby_3.4_rails71.gemfile.lock +++ b/gemfiles/ruby_3.4_rails71.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -281,6 +271,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -338,7 +332,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.4_rails_old_redis.gemfile b/gemfiles/ruby_3.4_rails_old_redis.gemfile index 27a681c7644..d159ab84a59 100644 --- a/gemfiles/ruby_3.4_rails_old_redis.gemfile +++ b/gemfiles/ruby_3.4_rails_old_redis.gemfile @@ -28,7 +28,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.4_redis_3.gemfile b/gemfiles/ruby_3.4_redis_3.gemfile index c12e260ce06..aa4f61f1b45 100644 --- a/gemfiles/ruby_3.4_redis_3.gemfile +++ b/gemfiles/ruby_3.4_redis_3.gemfile @@ -28,7 +28,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.4_redis_3.gemfile.lock b/gemfiles/ruby_3.4_redis_3.gemfile.lock index 09552b04eea..d51e22bb65d 100644 --- a/gemfiles/ruby_3.4_redis_3.gemfile.lock +++ b/gemfiles/ruby_3.4_redis_3.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -123,6 +113,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -170,7 +164,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.4_redis_4.gemfile b/gemfiles/ruby_3.4_redis_4.gemfile index 4720c68ece2..14dfd5a1506 100644 --- a/gemfiles/ruby_3.4_redis_4.gemfile +++ b/gemfiles/ruby_3.4_redis_4.gemfile @@ -28,7 +28,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.4_redis_4.gemfile.lock b/gemfiles/ruby_3.4_redis_4.gemfile.lock index 7690df3ffd0..1e5e86bbf21 100644 --- a/gemfiles/ruby_3.4_redis_4.gemfile.lock +++ b/gemfiles/ruby_3.4_redis_4.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -123,6 +113,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -170,7 +164,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.4_redis_5.gemfile b/gemfiles/ruby_3.4_redis_5.gemfile index a68bb653459..c0441e954b0 100644 --- a/gemfiles/ruby_3.4_redis_5.gemfile +++ b/gemfiles/ruby_3.4_redis_5.gemfile @@ -28,7 +28,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.4_redis_5.gemfile.lock b/gemfiles/ruby_3.4_redis_5.gemfile.lock index fb97f298ab7..186e3129d8f 100644 --- a/gemfiles/ruby_3.4_redis_5.gemfile.lock +++ b/gemfiles/ruby_3.4_redis_5.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -127,6 +117,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -174,7 +168,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.4_relational_db.gemfile b/gemfiles/ruby_3.4_relational_db.gemfile index 15035f00277..869ab1aeb32 100644 --- a/gemfiles/ruby_3.4_relational_db.gemfile +++ b/gemfiles/ruby_3.4_relational_db.gemfile @@ -28,7 +28,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.4_relational_db.gemfile.lock b/gemfiles/ruby_3.4_relational_db.gemfile.lock index 3656091e8c5..eca878ee832 100644 --- a/gemfiles/ruby_3.4_relational_db.gemfile.lock +++ b/gemfiles/ruby_3.4_relational_db.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -146,6 +136,10 @@ GEM ruby-progressbar (1.13.0) sequel (5.86.0) bigdecimal + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -203,7 +197,7 @@ DEPENDENCIES rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) sequel - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sqlite3 (~> 1.4) trilogy diff --git a/gemfiles/ruby_3.4_resque2_redis3.gemfile b/gemfiles/ruby_3.4_resque2_redis3.gemfile index 11a44bd90ea..6f6ea6450a9 100644 --- a/gemfiles/ruby_3.4_resque2_redis3.gemfile +++ b/gemfiles/ruby_3.4_resque2_redis3.gemfile @@ -28,7 +28,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.4_resque2_redis3.gemfile.lock b/gemfiles/ruby_3.4_resque2_redis3.gemfile.lock index 2cd023229c8..92d77581eea 100644 --- a/gemfiles/ruby_3.4_resque2_redis3.gemfile.lock +++ b/gemfiles/ruby_3.4_resque2_redis3.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -141,6 +131,10 @@ GEM rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -196,7 +190,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.4_resque2_redis4.gemfile b/gemfiles/ruby_3.4_resque2_redis4.gemfile index 1d97a21787a..5dad2208aa7 100644 --- a/gemfiles/ruby_3.4_resque2_redis4.gemfile +++ b/gemfiles/ruby_3.4_resque2_redis4.gemfile @@ -28,7 +28,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.4_resque2_redis4.gemfile.lock b/gemfiles/ruby_3.4_resque2_redis4.gemfile.lock index 093599c7c0a..5c8a59c471d 100644 --- a/gemfiles/ruby_3.4_resque2_redis4.gemfile.lock +++ b/gemfiles/ruby_3.4_resque2_redis4.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -145,6 +135,10 @@ GEM rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -200,7 +194,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.4_sinatra_2.gemfile b/gemfiles/ruby_3.4_sinatra_2.gemfile index 41fda663a9f..b7b9197e136 100644 --- a/gemfiles/ruby_3.4_sinatra_2.gemfile +++ b/gemfiles/ruby_3.4_sinatra_2.gemfile @@ -28,7 +28,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.4_sinatra_2.gemfile.lock b/gemfiles/ruby_3.4_sinatra_2.gemfile.lock index 83790a8e472..24e490ba099 100644 --- a/gemfiles/ruby_3.4_sinatra_2.gemfile.lock +++ b/gemfiles/ruby_3.4_sinatra_2.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -132,6 +122,10 @@ GEM rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -186,7 +180,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sinatra (~> 2) warning (~> 1) diff --git a/gemfiles/ruby_3.4_sinatra_3.gemfile b/gemfiles/ruby_3.4_sinatra_3.gemfile index f0a164eb69b..e895aecb1f4 100644 --- a/gemfiles/ruby_3.4_sinatra_3.gemfile +++ b/gemfiles/ruby_3.4_sinatra_3.gemfile @@ -28,7 +28,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.4_sinatra_3.gemfile.lock b/gemfiles/ruby_3.4_sinatra_3.gemfile.lock index 82f1f82ff8b..55ef87a6738 100644 --- a/gemfiles/ruby_3.4_sinatra_3.gemfile.lock +++ b/gemfiles/ruby_3.4_sinatra_3.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -133,6 +123,10 @@ GEM rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -187,7 +181,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sinatra (~> 3) warning (~> 1) diff --git a/gemfiles/ruby_3.4_sinatra_4.gemfile b/gemfiles/ruby_3.4_sinatra_4.gemfile index 6a26ce80c7c..dc4bee184c2 100644 --- a/gemfiles/ruby_3.4_sinatra_4.gemfile +++ b/gemfiles/ruby_3.4_sinatra_4.gemfile @@ -28,7 +28,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.4_sinatra_4.gemfile.lock b/gemfiles/ruby_3.4_sinatra_4.gemfile.lock index 596e98f4f60..c60753b6b5b 100644 --- a/gemfiles/ruby_3.4_sinatra_4.gemfile.lock +++ b/gemfiles/ruby_3.4_sinatra_4.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -135,6 +125,10 @@ GEM rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -190,7 +184,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) sinatra (~> 4) warning (~> 1) diff --git a/gemfiles/ruby_3.4_stripe_10.gemfile b/gemfiles/ruby_3.4_stripe_10.gemfile index 73f9288292b..d7a78b18476 100644 --- a/gemfiles/ruby_3.4_stripe_10.gemfile +++ b/gemfiles/ruby_3.4_stripe_10.gemfile @@ -28,7 +28,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.4_stripe_10.gemfile.lock b/gemfiles/ruby_3.4_stripe_10.gemfile.lock index 18ae9c366b7..726f9b0626e 100644 --- a/gemfiles/ruby_3.4_stripe_10.gemfile.lock +++ b/gemfiles/ruby_3.4_stripe_10.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -122,6 +112,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -169,7 +163,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 10) warning (~> 1) diff --git a/gemfiles/ruby_3.4_stripe_11.gemfile b/gemfiles/ruby_3.4_stripe_11.gemfile index 549cf4f0f28..30907c0ac61 100644 --- a/gemfiles/ruby_3.4_stripe_11.gemfile +++ b/gemfiles/ruby_3.4_stripe_11.gemfile @@ -28,7 +28,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.4_stripe_11.gemfile.lock b/gemfiles/ruby_3.4_stripe_11.gemfile.lock index 766ac2b427c..c57f17f4731 100644 --- a/gemfiles/ruby_3.4_stripe_11.gemfile.lock +++ b/gemfiles/ruby_3.4_stripe_11.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -122,6 +112,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -169,7 +163,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 11) warning (~> 1) diff --git a/gemfiles/ruby_3.4_stripe_12.gemfile b/gemfiles/ruby_3.4_stripe_12.gemfile index 8040f2e5afe..0f4275546dd 100644 --- a/gemfiles/ruby_3.4_stripe_12.gemfile +++ b/gemfiles/ruby_3.4_stripe_12.gemfile @@ -28,7 +28,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.4_stripe_12.gemfile.lock b/gemfiles/ruby_3.4_stripe_12.gemfile.lock index 962ff5cccd5..cf0af25322d 100644 --- a/gemfiles/ruby_3.4_stripe_12.gemfile.lock +++ b/gemfiles/ruby_3.4_stripe_12.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -122,6 +112,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -169,7 +163,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 12) warning (~> 1) diff --git a/gemfiles/ruby_3.4_stripe_7.gemfile b/gemfiles/ruby_3.4_stripe_7.gemfile index f5212922ca1..64a331e89d4 100644 --- a/gemfiles/ruby_3.4_stripe_7.gemfile +++ b/gemfiles/ruby_3.4_stripe_7.gemfile @@ -28,7 +28,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.4_stripe_7.gemfile.lock b/gemfiles/ruby_3.4_stripe_7.gemfile.lock index 75b520d21cb..4de7200d505 100644 --- a/gemfiles/ruby_3.4_stripe_7.gemfile.lock +++ b/gemfiles/ruby_3.4_stripe_7.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -122,6 +112,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -169,7 +163,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 7) warning (~> 1) diff --git a/gemfiles/ruby_3.4_stripe_8.gemfile b/gemfiles/ruby_3.4_stripe_8.gemfile index d589321c320..22f53972283 100644 --- a/gemfiles/ruby_3.4_stripe_8.gemfile +++ b/gemfiles/ruby_3.4_stripe_8.gemfile @@ -28,7 +28,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.4_stripe_8.gemfile.lock b/gemfiles/ruby_3.4_stripe_8.gemfile.lock index c5040074f9f..b4d80210957 100644 --- a/gemfiles/ruby_3.4_stripe_8.gemfile.lock +++ b/gemfiles/ruby_3.4_stripe_8.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -122,6 +112,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -169,7 +163,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 8) warning (~> 1) diff --git a/gemfiles/ruby_3.4_stripe_9.gemfile b/gemfiles/ruby_3.4_stripe_9.gemfile index 338036c8081..36478a0f1bf 100644 --- a/gemfiles/ruby_3.4_stripe_9.gemfile +++ b/gemfiles/ruby_3.4_stripe_9.gemfile @@ -28,7 +28,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.4_stripe_9.gemfile.lock b/gemfiles/ruby_3.4_stripe_9.gemfile.lock index b869b0882e2..58222e88d2c 100644 --- a/gemfiles/ruby_3.4_stripe_9.gemfile.lock +++ b/gemfiles/ruby_3.4_stripe_9.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -122,6 +112,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -169,7 +163,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 9) warning (~> 1) diff --git a/gemfiles/ruby_3.4_stripe_latest.gemfile b/gemfiles/ruby_3.4_stripe_latest.gemfile index dcf18e7238c..4d62d6ac60d 100644 --- a/gemfiles/ruby_3.4_stripe_latest.gemfile +++ b/gemfiles/ruby_3.4_stripe_latest.gemfile @@ -28,7 +28,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.4_stripe_latest.gemfile.lock b/gemfiles/ruby_3.4_stripe_latest.gemfile.lock index f96b793a9c0..d62196fdfc8 100644 --- a/gemfiles/ruby_3.4_stripe_latest.gemfile.lock +++ b/gemfiles/ruby_3.4_stripe_latest.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -121,6 +111,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -167,7 +161,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) stripe warning (~> 1) diff --git a/gemfiles/ruby_3.4_stripe_min.gemfile b/gemfiles/ruby_3.4_stripe_min.gemfile index bd90818d9c2..c76df823bae 100644 --- a/gemfiles/ruby_3.4_stripe_min.gemfile +++ b/gemfiles/ruby_3.4_stripe_min.gemfile @@ -28,7 +28,7 @@ gem "rubocop", "~> 1.50.0", require: false gem "rubocop-packaging", "~> 0.5.2", require: false gem "rubocop-performance", "~> 1.9", require: false gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false -gem "simplecov", git: "https://github.com/DataDog/simplecov", ref: "3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db" +gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.4_stripe_min.gemfile.lock b/gemfiles/ruby_3.4_stripe_min.gemfile.lock index 530600e1941..0413dd361ec 100644 --- a/gemfiles/ruby_3.4_stripe_min.gemfile.lock +++ b/gemfiles/ruby_3.4_stripe_min.gemfile.lock @@ -1,13 +1,3 @@ -GIT - remote: https://github.com/DataDog/simplecov - revision: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - ref: 3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db - specs: - simplecov (0.21.2) - docile (~> 1.1) - simplecov-html (~> 0.11) - simplecov_json_formatter (~> 0.1) - PATH remote: .. specs: @@ -121,6 +111,10 @@ GEM rubocop (~> 1.33) rubocop-capybara (~> 2.17) ruby-progressbar (1.13.0) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) @@ -167,7 +161,7 @@ DEPENDENCIES rubocop-packaging (~> 0.5.2) rubocop-performance (~> 1.9) rubocop-rspec (~> 2.20, < 2.21) - simplecov! + simplecov simplecov-cobertura (~> 2.1.0) stripe (= 5.15.0) warning (~> 1) diff --git a/jruby-9.2.gemfile b/jruby-9.2.gemfile index 982dea76b77..a6845372400 100644 --- a/jruby-9.2.gemfile +++ b/jruby-9.2.gemfile @@ -26,10 +26,7 @@ gem 'rspec-collection_matchers', '~> 1.1' gem 'rspec-wait', '~> 0' gem 'rspec_junit_formatter', '>= 0.5.1' -# Merging branch coverage results does not work for old, unsupported rubies and JRuby -# We have a fix up for review, https://github.com/simplecov-ruby/simplecov/pull/972, -# but given it only affects unsupported version of Ruby, it might not get merged. -gem 'simplecov', git: 'https://github.com/DataDog/simplecov', ref: '3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db' +gem 'simplecov' gem 'simplecov-cobertura', '~> 2.1.0' # Used by codecov gem 'warning', '~> 1' # NOTE: Used in spec_helper.rb diff --git a/jruby-9.3.gemfile b/jruby-9.3.gemfile index 1272f681fa8..06130347bfc 100644 --- a/jruby-9.3.gemfile +++ b/jruby-9.3.gemfile @@ -33,10 +33,7 @@ gem 'rubocop-performance', '~> 1.9', require: false # 2.20 is the last version to support Ruby 2.6 gem 'rubocop-rspec', ['~> 2.20', '< 2.21'], require: false -# Merging branch coverage results does not work for old, unsupported rubies and JRuby -# We have a fix up for review, https://github.com/simplecov-ruby/simplecov/pull/972, -# but given it only affects unsupported version of Ruby, it might not get merged. -gem 'simplecov', git: 'https://github.com/DataDog/simplecov', ref: '3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db' +gem 'simplecov' gem 'simplecov-cobertura', '~> 2.1.0' # Used by codecov gem 'warning', '~> 1' # NOTE: Used in spec_helper.rb diff --git a/jruby-9.4.gemfile b/jruby-9.4.gemfile index 1359f0e133e..439c6cd40e0 100644 --- a/jruby-9.4.gemfile +++ b/jruby-9.4.gemfile @@ -34,10 +34,7 @@ gem 'rubocop-performance', '~> 1.9', require: false # 2.20 is the last version to support Ruby 2.6 gem 'rubocop-rspec', ['~> 2.20', '< 2.21'], require: false -# Merging branch coverage results does not work for old, unsupported rubies and JRuby -# We have a fix up for review, https://github.com/simplecov-ruby/simplecov/pull/972, -# but given it only affects unsupported version of Ruby, it might not get merged. -gem 'simplecov', git: 'https://github.com/DataDog/simplecov', ref: '3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db' +gem 'simplecov' gem 'simplecov-cobertura', '~> 2.1.0' # Used by codecov gem 'warning', '~> 1' # NOTE: Used in spec_helper.rb diff --git a/ruby-2.5.gemfile b/ruby-2.5.gemfile index e17f2ef0274..e8853452152 100644 --- a/ruby-2.5.gemfile +++ b/ruby-2.5.gemfile @@ -35,10 +35,7 @@ gem 'rspec-collection_matchers', '~> 1.1' gem 'rspec-wait', '~> 0' gem 'rspec_junit_formatter', '>= 0.5.1' -# Merging branch coverage results does not work for old, unsupported rubies and JRuby -# We have a fix up for review, https://github.com/simplecov-ruby/simplecov/pull/972, -# but given it only affects unsupported version of Ruby, it might not get merged. -gem 'simplecov', git: 'https://github.com/DataDog/simplecov', ref: '3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db' +gem 'simplecov' gem 'simplecov-cobertura', '~> 2.1.0' # Used by codecov gem 'warning', '~> 1' # NOTE: Used in spec_helper.rb diff --git a/ruby-2.6.gemfile b/ruby-2.6.gemfile index da3223ae78e..27266605d0a 100644 --- a/ruby-2.6.gemfile +++ b/ruby-2.6.gemfile @@ -42,10 +42,7 @@ gem 'rubocop-performance', '~> 1.9', require: false # 2.20 is the last version to support Ruby 2.6 gem 'rubocop-rspec', ['~> 2.20', '< 2.21'], require: false -# Merging branch coverage results does not work for old, unsupported rubies and JRuby -# We have a fix up for review, https://github.com/simplecov-ruby/simplecov/pull/972, -# but given it only affects unsupported version of Ruby, it might not get merged. -gem 'simplecov', git: 'https://github.com/DataDog/simplecov', ref: '3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db' +gem 'simplecov' gem 'simplecov-cobertura', '~> 2.1.0' # Used by codecov gem 'warning', '~> 1' # NOTE: Used in spec_helper.rb diff --git a/ruby-2.7.gemfile b/ruby-2.7.gemfile index e6394bcb3a0..fa7fba5474e 100644 --- a/ruby-2.7.gemfile +++ b/ruby-2.7.gemfile @@ -42,10 +42,7 @@ gem 'rubocop-performance', '~> 1.9', require: false # 2.20 is the last version to support Ruby 2.6 gem 'rubocop-rspec', ['~> 2.20', '< 2.21'], require: false -# Merging branch coverage results does not work for old, unsupported rubies and JRuby -# We have a fix up for review, https://github.com/simplecov-ruby/simplecov/pull/972, -# but given it only affects unsupported version of Ruby, it might not get merged. -gem 'simplecov', git: 'https://github.com/DataDog/simplecov', ref: '3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db' +gem 'simplecov' gem 'simplecov-cobertura', '~> 2.1.0' # Used by codecov gem 'warning', '~> 1' # NOTE: Used in spec_helper.rb diff --git a/ruby-3.0.gemfile b/ruby-3.0.gemfile index 946917b6546..46fe32fe1bb 100644 --- a/ruby-3.0.gemfile +++ b/ruby-3.0.gemfile @@ -42,10 +42,7 @@ gem 'rubocop-performance', '~> 1.9', require: false # 2.20 is the last version to support Ruby 2.6 gem 'rubocop-rspec', ['~> 2.20', '< 2.21'], require: false -# Merging branch coverage results does not work for old, unsupported rubies and JRuby -# We have a fix up for review, https://github.com/simplecov-ruby/simplecov/pull/972, -# but given it only affects unsupported version of Ruby, it might not get merged. -gem 'simplecov', git: 'https://github.com/DataDog/simplecov', ref: '3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db' +gem 'simplecov' gem 'simplecov-cobertura', '~> 2.1.0' # Used by codecov gem 'warning', '~> 1' # NOTE: Used in spec_helper.rb diff --git a/ruby-3.1.gemfile b/ruby-3.1.gemfile index 38f9dcc1980..63430e1029e 100644 --- a/ruby-3.1.gemfile +++ b/ruby-3.1.gemfile @@ -42,10 +42,7 @@ gem 'rubocop-performance', '~> 1.9', require: false # 2.20 is the last version to support Ruby 2.6 gem 'rubocop-rspec', ['~> 2.20', '< 2.21'], require: false -# Merging branch coverage results does not work for old, unsupported rubies and JRuby -# We have a fix up for review, https://github.com/simplecov-ruby/simplecov/pull/972, -# but given it only affects unsupported version of Ruby, it might not get merged. -gem 'simplecov', git: 'https://github.com/DataDog/simplecov', ref: '3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db' +gem 'simplecov' gem 'simplecov-cobertura', '~> 2.1.0' # Used by codecov gem 'warning', '~> 1' # NOTE: Used in spec_helper.rb diff --git a/ruby-3.2.gemfile b/ruby-3.2.gemfile index af84881914e..245150568b4 100644 --- a/ruby-3.2.gemfile +++ b/ruby-3.2.gemfile @@ -41,10 +41,7 @@ gem 'rubocop-performance', '~> 1.9', require: false # 2.20 is the last version to support Ruby 2.6 gem 'rubocop-rspec', ['~> 2.20', '< 2.21'], require: false -# Merging branch coverage results does not work for old, unsupported rubies and JRuby -# We have a fix up for review, https://github.com/simplecov-ruby/simplecov/pull/972, -# but given it only affects unsupported version of Ruby, it might not get merged. -gem 'simplecov', git: 'https://github.com/DataDog/simplecov', ref: '3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db' +gem 'simplecov' gem 'simplecov-cobertura', '~> 2.1.0' # Used by codecov gem 'warning', '~> 1' # NOTE: Used in spec_helper.rb diff --git a/ruby-3.3.gemfile b/ruby-3.3.gemfile index af84881914e..245150568b4 100644 --- a/ruby-3.3.gemfile +++ b/ruby-3.3.gemfile @@ -41,10 +41,7 @@ gem 'rubocop-performance', '~> 1.9', require: false # 2.20 is the last version to support Ruby 2.6 gem 'rubocop-rspec', ['~> 2.20', '< 2.21'], require: false -# Merging branch coverage results does not work for old, unsupported rubies and JRuby -# We have a fix up for review, https://github.com/simplecov-ruby/simplecov/pull/972, -# but given it only affects unsupported version of Ruby, it might not get merged. -gem 'simplecov', git: 'https://github.com/DataDog/simplecov', ref: '3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db' +gem 'simplecov' gem 'simplecov-cobertura', '~> 2.1.0' # Used by codecov gem 'warning', '~> 1' # NOTE: Used in spec_helper.rb diff --git a/ruby-3.4.gemfile b/ruby-3.4.gemfile index 29e8b57e240..09c61b74a50 100644 --- a/ruby-3.4.gemfile +++ b/ruby-3.4.gemfile @@ -44,10 +44,7 @@ gem 'rubocop-performance', '~> 1.9', require: false # 2.20 is the last version to support Ruby 2.6 gem 'rubocop-rspec', ['~> 2.20', '< 2.21'], require: false -# Merging branch coverage results does not work for old, unsupported rubies and JRuby -# We have a fix up for review, https://github.com/simplecov-ruby/simplecov/pull/972, -# but given it only affects unsupported version of Ruby, it might not get merged. -gem 'simplecov', git: 'https://github.com/DataDog/simplecov', ref: '3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db' +gem 'simplecov' gem 'simplecov-cobertura', '~> 2.1.0' # Used by codecov gem 'warning', '~> 1' # NOTE: Used in spec_helper.rb gem 'webmock', '>= 3.10.0' diff --git a/ruby-3.5.gemfile b/ruby-3.5.gemfile index ce83d653fc6..84d2a4327cf 100644 --- a/ruby-3.5.gemfile +++ b/ruby-3.5.gemfile @@ -44,10 +44,7 @@ gem 'rubocop-performance', '~> 1.9', require: false # 2.20 is the last version to support Ruby 2.6 gem 'rubocop-rspec', ['~> 2.20', '< 2.21'], require: false -# Merging branch coverage results does not work for old, unsupported rubies and JRuby -# We have a fix up for review, https://github.com/simplecov-ruby/simplecov/pull/972, -# but given it only affects unsupported version of Ruby, it might not get merged. -gem 'simplecov', git: 'https://github.com/DataDog/simplecov', ref: '3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db' +gem 'simplecov' gem 'simplecov-cobertura', '~> 2.1.0' # Used by codecov gem 'warning', '~> 1' # NOTE: Used in spec_helper.rb diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb index db9b84cd140..19f85ae593d 100644 --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -15,6 +15,7 @@ if (ENV['SKIP_SIMPLECOV'] != '1') && !RSpec.configuration.files_to_run.all? { |path| path.include?('/benchmark/') } # +SimpleCov.start+ must be invoked before any application code is loaded require 'simplecov' + require 'support/simplecov_fix' SimpleCov.start do formatter SimpleCov::Formatter::SimpleFormatter end diff --git a/spec/support/simplecov_fix.rb b/spec/support/simplecov_fix.rb new file mode 100644 index 00000000000..059e819a792 --- /dev/null +++ b/spec/support/simplecov_fix.rb @@ -0,0 +1,28 @@ +# Overlay patch fix for https://github.com/simplecov-ruby/simplecov/pull/972. +# +# simplecov supports branch coverage only on some Ruby runtimes (for example, +# not on JRuby). However, when merging coverage reports across runs, +# simplecov assumes that branch coverage is always present. +# This causes merging to fail when the runs are on different Ruby runtimes +# as well as when merging on JRuby. +# +# Upstream has not fixed the issue in 3+ years (PR opened in 2021). +# +# dd-trace-rb has been using a fork of simplecov with this fix, however +# this is awkward because bundler insists on constantly installing the fork +# even though nothing in it or related to it changed. +# +# This file now brings the patch into our tree, permitting us to use any +# released version of simplecov and removing the need to reference a fork. + +module SimpleCovCombineFix + def combine(coverage_a, coverage_b) + super.tap do |result| + result['branches'] ||= {} if SimpleCov.branch_coverage? + end + end +end + +class << SimpleCov::Combine::FilesCombiner + prepend(SimpleCovCombineFix) +end From e3ea38f741bf936fda5b9e41c1271c38e6c61e8a Mon Sep 17 00:00:00 2001 From: Oleg Pudeyev <156273877+p-datadog@users.noreply.github.com> Date: Wed, 8 Jan 2025 10:07:00 -0500 Subject: [PATCH 116/161] Report timing information if try_wait_until times out (#4265) --- spec/support/synchronization_helpers.rb | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/spec/support/synchronization_helpers.rb b/spec/support/synchronization_helpers.rb index 0a1d52f7cad..0fbae1906b1 100644 --- a/spec/support/synchronization_helpers.rb +++ b/spec/support/synchronization_helpers.rb @@ -66,6 +66,14 @@ def expect_in_fork(fork_expectations: nil, timeout_seconds: 10) def try_wait_until(seconds: nil, attempts: nil, backoff: nil) raise 'Provider either `seconds` or `attempts` & `backoff`, not both' if seconds && (attempts || backoff) + spec = if seconds + "#{seconds} seconds" + elsif attempts || backoff + "#{attempts} attempts with backoff #{backoff}" + else + 'none' + end + if seconds attempts = seconds * 10 backoff = 0.1 @@ -75,6 +83,8 @@ def try_wait_until(seconds: nil, attempts: nil, backoff: nil) backoff ||= 0.1 end + start_time = Datadog::Core::Utils::Time.get_time + # It's common for tests to want to run simple tasks in a background thread # but call this method without the thread having even time to start. # @@ -94,7 +104,10 @@ def try_wait_until(seconds: nil, attempts: nil, backoff: nil) end end - raise('Wait time exhausted!') + elapsed = Datadog::Core::Utils::Time.get_time - start_time + actual = "#{'%.2f' % elapsed} seconds, #{attempts} attempts with backoff #{backoff}" # rubocop:disable Style/FormatString + + raise("Wait time exhausted! Requested: #{spec}, waited: #{actual}") end def test_repeat From 67aba58ab4b4140d155457dab3ff8daff578e638 Mon Sep 17 00:00:00 2001 From: Ivo Anjo Date: Wed, 8 Jan 2025 17:26:00 +0000 Subject: [PATCH 117/161] [NO-TICKET] Add "How does Datadog help you?" to feature request template **What does this PR do?** This PR adds a "How does Datadog help you?" question to the feature request template. **Motivation:** We've had it in the past, but it got removed as part of some cleanups in #4235, but we'd like to keep it for the reasons discussed in https://github.com/datadog/dd-trace-rb/pull/4235/files#r1891447495 . **Additional Notes:** N/A **How to test the change?** I'm not actually sure if there's any way to preview this before it's merged. But, you can check that 1. It's copy-pasted from https://github.com/DataDog/dd-trace-rb/blob/e3ea38f741bf936fda5b9e41c1271c38e6c61e8a/.github/ISSUE_TEMPLATE/bug_report.yaml 2. How that one looks in https://github.com/DataDog/dd-trace-rb/issues/new?template=bug_report.yaml --- .github/ISSUE_TEMPLATE/feature_request.yaml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/ISSUE_TEMPLATE/feature_request.yaml b/.github/ISSUE_TEMPLATE/feature_request.yaml index e04d76f7fb7..a397efa8b40 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.yaml +++ b/.github/ISSUE_TEMPLATE/feature_request.yaml @@ -48,3 +48,10 @@ body: description: Add any other context or screenshots about the feature request here validations: required: false + + - type: textarea + attributes: + label: How does Datadog help you? + description: "Optionally, tell us why and how you're using datadog, and what your overall experience with it is!" + validations: + required: false From 2e98fc48f535c15cc0c8a83f7ce1f4176057bf07 Mon Sep 17 00:00:00 2001 From: Oleg Pudeyev <156273877+p-datadog@users.noreply.github.com> Date: Wed, 8 Jan 2025 14:34:18 -0500 Subject: [PATCH 118/161] DEBUG-3210 DI: change logging to be appropriate for customer inspection (#4266) --- lib/datadog/di/code_tracker.rb | 2 +- lib/datadog/di/component.rb | 12 ++++--- lib/datadog/di/instrumenter.rb | 8 ++--- lib/datadog/di/probe_manager.rb | 8 ++--- lib/datadog/di/probe_notifier_worker.rb | 8 ++--- lib/datadog/di/remote.rb | 8 ++--- spec/datadog/di/component_spec.rb | 2 +- spec/datadog/di/instrumenter_spec.rb | 2 +- .../everything_from_remote_config_spec.rb | 10 +++--- spec/datadog/di/probe_manager_spec.rb | 12 ++----- spec/datadog/di/remote_spec.rb | 32 +++++-------------- spec/datadog/di/spec_helper.rb | 10 ++++++ 12 files changed, 53 insertions(+), 61 deletions(-) diff --git a/lib/datadog/di/code_tracker.rb b/lib/datadog/di/code_tracker.rb index 5ace92a17d2..023f7ea4fdd 100644 --- a/lib/datadog/di/code_tracker.rb +++ b/lib/datadog/di/code_tracker.rb @@ -91,7 +91,7 @@ def start # before release. if component = DI.current_component # steep:ignore raise if component.settings.dynamic_instrumentation.internal.propagate_all_exceptions - component.logger.warn("Unhandled exception in script_compiled trace point: #{exc.class}: #{exc}") + component.logger.debug { "di: unhandled exception in script_compiled trace point: #{exc.class}: #{exc}" } component.telemetry&.report(exc, description: "Unhandled exception in script_compiled trace point") # TODO test this path else diff --git a/lib/datadog/di/component.rb b/lib/datadog/di/component.rb index 797449c077d..17c713c536f 100644 --- a/lib/datadog/di/component.rb +++ b/lib/datadog/di/component.rb @@ -20,7 +20,7 @@ def build(settings, agent_settings, logger, telemetry: nil) return unless settings.respond_to?(:dynamic_instrumentation) && settings.dynamic_instrumentation.enabled unless settings.respond_to?(:remote) && settings.remote.enabled - logger.debug("Dynamic Instrumentation could not be enabled because Remote Configuration Management is not available. To enable Remote Configuration, see https://docs.datadoghq.com/agent/remote_config") + logger.warn("di: dynamic instrumentation could not be enabled because Remote Configuration Management is not available. To enable Remote Configuration, see https://docs.datadoghq.com/agent/remote_config") return end @@ -55,12 +55,16 @@ def environment_supported?(settings, logger) # TODO add tests? unless settings.dynamic_instrumentation.internal.development if Datadog::Core::Environment::Execution.development? - logger.debug("Not enabling dynamic instrumentation because we are in development environment") + logger.warn("di: development environment detected; not enabling dynamic instrumentation") return false end end - if RUBY_ENGINE != 'ruby' || RUBY_VERSION < '2.6' - logger.debug("Not enabling dynamic instrumentation because of unsupported Ruby version") + if RUBY_ENGINE != 'ruby' + logger.warn("di: cannot enable dynamic instrumentation: MRI is required, but running on #{RUBY_ENGINE}") + return false + end + if RUBY_VERSION < '2.6' + logger.warn("di: cannot enable dynamic instrumentation: Ruby 2.6+ is required, but running on #{RUBY_VERSION}") return false end true diff --git a/lib/datadog/di/instrumenter.rb b/lib/datadog/di/instrumenter.rb index 96df68465f8..05ff256bb80 100644 --- a/lib/datadog/di/instrumenter.rb +++ b/lib/datadog/di/instrumenter.rb @@ -304,13 +304,13 @@ def hook_line(probe, &block) end rescue => exc raise if settings.dynamic_instrumentation.internal.propagate_all_exceptions - logger.warn("Unhandled exception in line trace point: #{exc.class}: #{exc}") + logger.debug { "di: unhandled exception in line trace point: #{exc.class}: #{exc}" } telemetry&.report(exc, description: "Unhandled exception in line trace point") # TODO test this path end rescue => exc raise if settings.dynamic_instrumentation.internal.propagate_all_exceptions - logger.warn("Unhandled exception in line trace point: #{exc.class}: #{exc}") + logger.debug { "di: unhandled exception in line trace point: #{exc.class}: #{exc}" } telemetry&.report(exc, description: "Unhandled exception in line trace point") # TODO test this path end @@ -356,7 +356,7 @@ def hook(probe, &block) hook_line(probe, &block) else # TODO add test coverage for this path - logger.warn("Unknown probe type to hook: #{probe}") + logger.debug { "di: unknown probe type to hook: #{probe}" } end end @@ -367,7 +367,7 @@ def unhook(probe) unhook_line(probe) else # TODO add test coverage for this path - logger.warn("Unknown probe type to unhook: #{probe}") + logger.debug { "di: unknown probe type to unhook: #{probe}" } end end diff --git a/lib/datadog/di/probe_manager.rb b/lib/datadog/di/probe_manager.rb index 9dd74d85b5e..2567eb9803b 100644 --- a/lib/datadog/di/probe_manager.rb +++ b/lib/datadog/di/probe_manager.rb @@ -32,7 +32,7 @@ def initialize(settings, instrumenter, probe_notification_builder, install_pending_method_probes(tp.self) rescue => exc raise if settings.dynamic_instrumentation.internal.propagate_all_exceptions - logger.warn("Unhandled exception in definition trace point: #{exc.class}: #{exc}") + logger.debug { "di: unhandled exception in definition trace point: #{exc.class}: #{exc}" } telemetry&.report(exc, description: "Unhandled exception in definition trace point") # TODO test this path end @@ -120,7 +120,7 @@ def add_probe(probe) # In "propagate all exceptions" mode we will try to instrument again. raise if settings.dynamic_instrumentation.internal.propagate_all_exceptions - logger.warn("Error processing probe configuration: #{exc.class}: #{exc}") + logger.debug { "di: error processing probe configuration: #{exc.class}: #{exc}" } telemetry&.report(exc, description: "Error processing probe configuration") # TODO report probe as failed to agent since we won't attempt to # install it again. @@ -160,7 +160,7 @@ def remove_other_probes(probe_ids) raise if settings.dynamic_instrumentation.internal.propagate_all_exceptions # Silence all exceptions? # TODO should we propagate here and rescue upstream? - logger.warn("Error removing probe #{probe.id}: #{exc.class}: #{exc}") + logger.debug { "di: error removing probe #{probe.id}: #{exc.class}: #{exc}" } telemetry&.report(exc, description: "Error removing probe") end end @@ -190,7 +190,7 @@ def remove_other_probes(probe_ids) rescue => exc raise if settings.dynamic_instrumentation.internal.propagate_all_exceptions - logger.warn("Error installing probe after class is defined: #{exc.class}: #{exc}") + logger.debug { "di: error installing probe after class is defined: #{exc.class}: #{exc}" } telemetry&.report(exc, description: "Error installing probe after class is defined") end end diff --git a/lib/datadog/di/probe_notifier_worker.rb b/lib/datadog/di/probe_notifier_worker.rb index b7cb2e78fba..03efaece9e0 100644 --- a/lib/datadog/di/probe_notifier_worker.rb +++ b/lib/datadog/di/probe_notifier_worker.rb @@ -77,7 +77,7 @@ def start rescue => exc raise if settings.dynamic_instrumentation.internal.propagate_all_exceptions - logger.warn("Error in probe notifier worker: #{exc.class}: #{exc} (at #{exc.backtrace.first})") + logger.debug { "di: error in probe notifier worker: #{exc.class}: #{exc} (at #{exc.backtrace.first})" } telemetry&.report(exc, description: "Error in probe notifier worker") end @lock.synchronize do @@ -184,7 +184,7 @@ def io_in_progress? @lock.synchronize do queue = send("#{event_type}_queue") if queue.length > settings.dynamic_instrumentation.internal.snapshot_queue_capacity - logger.warn("#{self.class.name}: dropping #{event_type} because queue is full") + logger.debug { "di: #{self.class.name}: dropping #{event_type} because queue is full" } else queue << event end @@ -241,7 +241,7 @@ def set_sleep_remaining end rescue => exc raise if settings.dynamic_instrumentation.internal.propagate_all_exceptions - logger.warn("failed to send #{event_name}: #{exc.class}: #{exc} (at #{exc.backtrace.first})") + logger.debug { "di: failed to send #{event_name}: #{exc.class}: #{exc} (at #{exc.backtrace.first})" } # Should we report this error to telemetry? Most likely failure # to send is due to a network issue, and trying to send a # telemetry message would also fail. @@ -252,7 +252,7 @@ def set_sleep_remaining # Normally the queue should only be consumed in this method, # however if anyone consumes it elsewhere we don't want to block # while consuming it here. Rescue ThreadError and return. - logger.warn("Unexpected #{event_name} queue underflow - consumed elsewhere?") + logger.debug { "di: unexpected #{event_name} queue underflow - consumed elsewhere?" } telemetry&.report(exc, description: "Unexpected #{event_name} queue underflow") ensure @lock.synchronize do diff --git a/lib/datadog/di/remote.rb b/lib/datadog/di/remote.rb index e0a5f3b90ed..63a7751aa0c 100644 --- a/lib/datadog/di/remote.rb +++ b/lib/datadog/di/remote.rb @@ -51,7 +51,7 @@ def receivers(telemetry) probe = ProbeBuilder.build_from_remote_config(probe_spec) payload = component.probe_notification_builder.build_received(probe) component.probe_notifier_worker.add_status(payload) - component.logger.info("Received probe from RC: #{probe.type} #{probe.location}") + component.logger.debug { "di: received probe from RC: #{probe.type} #{probe.location}" } begin # TODO test exception capture @@ -60,7 +60,7 @@ def receivers(telemetry) rescue => exc raise if component.settings.dynamic_instrumentation.internal.propagate_all_exceptions - component.logger.warn("Unhandled exception adding probe in DI remote receiver: #{exc.class}: #{exc}") + component.logger.debug { "di: unhandled exception adding probe in DI remote receiver: #{exc.class}: #{exc}" } component.telemetry&.report(exc, description: "Unhandled exception adding probe in DI remote receiver") # If a probe fails to install, we will mark the content @@ -81,7 +81,7 @@ def receivers(telemetry) rescue => exc raise if component.settings.dynamic_instrumentation.internal.propagate_all_exceptions - component.logger.warn("Unhandled exception handling probe in DI remote receiver: #{exc.class}: #{exc}") + component.logger.debug { "di: unhandled exception handling probe in DI remote receiver: #{exc.class}: #{exc}" } component.telemetry&.report(exc, description: "Unhandled exception handling probe in DI remote receiver") content.errored("Error applying dynamic instrumentation configuration: #{exc.class.name} #{exc.message}: #{Array(exc.backtrace).join("\n")}") @@ -95,7 +95,7 @@ def receivers(telemetry) rescue => exc raise if component.settings.dynamic_instrumentation.internal.propagate_all_exceptions - component.logger.warn("Unhandled exception removing probes in DI remote receiver: #{exc.class}: #{exc}") + component.logger.debug { "di: unhandled exception removing probes in DI remote receiver: #{exc.class}: #{exc}" } component.telemetry&.report(exc, description: "Unhandled exception removing probes in DI remote receiver") end end diff --git a/spec/datadog/di/component_spec.rb b/spec/datadog/di/component_spec.rb index 0453fc8e4a8..96465563019 100644 --- a/spec/datadog/di/component_spec.rb +++ b/spec/datadog/di/component_spec.rb @@ -48,7 +48,7 @@ end it 'returns nil' do - expect(logger).to receive(:debug).with(/Dynamic Instrumentation could not be enabled because Remote Configuration Management is not available/) + expect(logger).to receive(:warn).with(/dynamic instrumentation could not be enabled because Remote Configuration Management is not available/) component = described_class.build(settings, agent_settings, logger) expect(component).to be nil end diff --git a/spec/datadog/di/instrumenter_spec.rb b/spec/datadog/di/instrumenter_spec.rb index 93cc8aee457..c96c2e32716 100644 --- a/spec/datadog/di/instrumenter_spec.rb +++ b/spec/datadog/di/instrumenter_spec.rb @@ -784,7 +784,7 @@ # Needed for the cleanup unhook call. allow(probe).to receive(:method?).and_return(false) allow(probe).to receive(:line?).and_return(false) - allow(logger).to receive(:warn) + allow(logger).to receive(:debug) end it 'raises ArgumentError' do diff --git a/spec/datadog/di/integration/everything_from_remote_config_spec.rb b/spec/datadog/di/integration/everything_from_remote_config_spec.rb index 499793a286e..7863c54bfe4 100644 --- a/spec/datadog/di/integration/everything_from_remote_config_spec.rb +++ b/spec/datadog/di/integration/everything_from_remote_config_spec.rb @@ -241,7 +241,7 @@ def do_rc end it 'adds a probe to pending list' do - expect(logger).to receive(:info).with(/Received probe from RC:/) + expect_lazy_log(logger, :debug, /received probe from RC:/) do_rc @@ -272,7 +272,7 @@ def assert_received_and_installed end it 'instruments code and adds probe to installed list' do - expect(logger).to receive(:info).with(/Received probe from RC:/) + expect_lazy_log(logger, :debug, /received probe from RC:/) do_rc assert_received_and_installed @@ -282,7 +282,7 @@ def assert_received_and_installed context 'and target method is invoked' do it 'notifies about execution' do - expect(logger).to receive(:info).with(/Received probe from RC:/) + expect_lazy_log(logger, :debug, /received probe from RC:/) do_rc assert_received_and_installed @@ -325,8 +325,8 @@ def assert_received_and_installed end it 'installs the second, known, probe' do - expect(logger).to receive(:warn).with(/Unrecognized probe type:/) - expect(logger).to receive(:info).with(/Received probe from RC:/) + expect_lazy_log(logger, :debug, /Unrecognized probe type:/) + expect_lazy_log(logger, :debug, /received probe from RC:/) do_rc assert_received_and_installed diff --git a/spec/datadog/di/probe_manager_spec.rb b/spec/datadog/di/probe_manager_spec.rb index a6f7a1c8d8a..d9a5f75eeba 100644 --- a/spec/datadog/di/probe_manager_spec.rb +++ b/spec/datadog/di/probe_manager_spec.rb @@ -97,9 +97,7 @@ class ProbeManagerSpecTestClass; end context 'when there is an exception during instrumentation' do it 'logs warning, drops probe and reraises the exception' do - expect(logger).to receive(:warn) do |msg| - expect(msg).to match(/Error processing probe configuration.*Instrumentation error/) - end + expect_lazy_log(logger, :debug, /error processing probe configuration.*Instrumentation error/) expect(instrumenter).to receive(:hook) do |probe_| expect(probe_).to be(probe) @@ -180,9 +178,7 @@ class ProbeManagerSpecTestClass; end it 'logs warning and keeps probe in installed list' do expect(instrumenter).to receive(:unhook).with(probe).and_raise("Deinstrumentation error") - expect(logger).to receive(:warn) do |msg| - expect(msg).to match(/Error removing probe.*Deinstrumentation error/) - end + expect_lazy_log(logger, :debug, /error removing probe.*Deinstrumentation error/) manager.remove_other_probes(['123']) @@ -207,9 +203,7 @@ class ProbeManagerSpecTestClass; end expect(instrumenter).to receive(:unhook).with(probe).and_raise("Deinstrumentation error") expect(instrumenter).to receive(:unhook).with(probe2) - expect(logger).to receive(:warn) do |msg| - expect(msg).to match(/Error removing probe.*Deinstrumentation error/) - end + expect_lazy_log(logger, :debug, /error removing probe.*Deinstrumentation error/) manager.remove_other_probes(['123']) diff --git a/spec/datadog/di/remote_spec.rb b/spec/datadog/di/remote_spec.rb index 06368623d3a..677cd73c597 100644 --- a/spec/datadog/di/remote_spec.rb +++ b/spec/datadog/di/remote_spec.rb @@ -147,9 +147,7 @@ it 'calls probe manager to add a probe' do expect(component).to receive(:logger).and_return(logger) - expect(logger).to receive(:info) do |message| - expect(message).to match(/Received probe/) - end + expect_lazy_log(logger, :debug, /received probe/) expect(probe_manager).to receive(:add_probe) do |probe| expect(probe.id).to eq('11') @@ -165,13 +163,9 @@ it 'logs warning and consumes the exception' do expect(component).to receive(:telemetry).and_return(telemetry) expect(component).to receive(:logger).and_return(logger) - expect(logger).to receive(:info) do |message| - expect(message).to match(/Received probe/) - end + expect_lazy_log(logger, :debug, /received probe/) - expect(logger).to receive(:warn) do |msg| - expect(msg).to match(/Unhandled exception.*Runtime error from test/) - end + expect_lazy_log(logger, :debug, /unhandled exception.*Runtime error from test/) expect(component).to receive(:logger).and_return(logger) expect(telemetry).to receive(:report) @@ -189,13 +183,9 @@ it 'calls probe manager to remove stale probes' do allow(component).to receive(:telemetry) expect(component).to receive(:logger).and_return(logger) - expect(logger).to receive(:info) do |message| - expect(message).to match(/Received probe/) - end + expect_lazy_log(logger, :debug, /received probe/) - expect(logger).to receive(:warn) do |msg| - expect(msg).to match(/Unhandled exception.*Runtime error from test/) - end + expect_lazy_log(logger, :debug, /unhandled exception.*Runtime error from test/) allow(probe_manager).to receive(:add_probe).and_raise("Runtime error from test") expect(component).to receive(:logger).and_return(logger) @@ -212,13 +202,9 @@ it 'logs warning and consumes the exception' do expect(component).to receive(:telemetry).and_return(telemetry).at_least(:once) expect(component).to receive(:logger).and_return(logger) - expect(logger).to receive(:info) do |message| - expect(message).to match(/Received probe/) - end + expect_lazy_log(logger, :debug, /received probe/) - expect(logger).to receive(:warn) do |msg| - expect(msg).to match(/Unhandled exception.*Runtime error 1 from test/) - end + expect_lazy_log(logger, :debug, /unhandled exception.*Runtime error 1 from test/) expect(telemetry).to receive(:report) allow(probe_manager).to receive(:add_probe).and_raise("Runtime error 1 from test") @@ -228,9 +214,7 @@ expect(component).to receive(:probe_notifier_worker).and_return(probe_notifier_worker) expect(probe_notifier_worker).to receive(:add_status) - expect(logger).to receive(:warn) do |msg| - expect(msg).to match(/Unhandled exception.*Runtime error 2 from test/) - end + expect_lazy_log(logger, :debug, /unhandled exception.*Runtime error 2 from test/) expect(component).to receive(:logger).and_return(logger) expect(telemetry).to receive(:report) diff --git a/spec/datadog/di/spec_helper.rb b/spec/datadog/di/spec_helper.rb index 09d8ffbd3c2..81fc72c9300 100644 --- a/spec/datadog/di/spec_helper.rb +++ b/spec/datadog/di/spec_helper.rb @@ -85,6 +85,16 @@ def deep_stringify_keys(hash) def instance_double_agent_settings instance_double(Datadog::Core::Configuration::AgentSettingsResolver::AgentSettings) end + + def expect_lazy_log(logger, meth, expected_msg) + expect(logger).to receive(meth) do |&block| + if expected_msg.is_a?(String) + expect(block.call).to eq(expected_msg) + else + expect(block.call).to match(expected_msg) + end + end + end end end From 191a91237cb8de85805bf3592048758708d7edef Mon Sep 17 00:00:00 2001 From: roberto montero Date: Thu, 9 Jan 2025 08:52:07 +0100 Subject: [PATCH 119/161] reduce matrix --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 16d857f848c..502a610019e 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -8,7 +8,7 @@ stages: - benchmarks include: - - remote: https://gitlab-templates.ddbuild.io/libdatadog/include-wip/robertomonteromiguel/k8s_new_scenarios/one-pipeline.yml + - remote: https://gitlab-templates.ddbuild.io/libdatadog/include/one-pipeline.yml - local: ".gitlab/benchmarks.yml" variables: From 0d1a2da6a17b4bc7795ceef40431b931e8172ac6 Mon Sep 17 00:00:00 2001 From: roberto montero Date: Thu, 9 Jan 2025 08:53:03 +0100 Subject: [PATCH 120/161] reduce the matrix --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 502a610019e..f13052d9266 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -133,7 +133,7 @@ onboarding_tests_k8s_injection: matrix: - WEBLOG_VARIANT: [dd-lib-ruby-init-test-rails, dd-lib-ruby-init-test-rails-explicit,dd-lib-ruby-init-test-rails-gemsrb] SCENARIO: [K8S_LIB_INJECTION, K8S_LIB_INJECTION_UDS, K8S_LIB_INJECTION_NO_AC, K8S_LIB_INJECTION_NO_AC_UDS, K8S_LIB_INJECTION_PROFILING_DISABLED, K8S_LIB_INJECTION_PROFILING_ENABLED, K8S_LIB_INJECTION_PROFILING_OVERRIDE] - K8S_CLUSTER_VERSION: ['7.56.2','7.57.0','7.59.0'] + K8S_CLUSTER_VERSION: ['7.56.2','7.59.0'] save_versions: image: $DOCKER_REGISTRY/images/mirror/ruby:3.2.2 From bb431120269e5a083b228f2bedbfb3c93a369b59 Mon Sep 17 00:00:00 2001 From: Oleg Pudeyev <156273877+p-datadog@users.noreply.github.com> Date: Thu, 9 Jan 2025 08:00:28 -0500 Subject: [PATCH 121/161] DEBUG-3182 Rework DI loading (#4239) --- lib/datadog/di.rb | 94 +------------- lib/datadog/di/base.rb | 115 ++++++++++++++++++ lib/datadog/di/code_tracker.rb | 9 +- lib/datadog/di/init.rb | 2 +- sig/datadog/di.rbs | 15 --- sig/datadog/di/base.rbs | 23 ++++ .../core/environment/execution_spec.rb | 9 +- spec/datadog/di/init_spec.rb | 75 ++++++++++++ 8 files changed, 227 insertions(+), 115 deletions(-) create mode 100644 lib/datadog/di/base.rb create mode 100644 sig/datadog/di/base.rbs create mode 100644 spec/datadog/di/init_spec.rb diff --git a/lib/datadog/di.rb b/lib/datadog/di.rb index 700fbce100f..221c32864f6 100644 --- a/lib/datadog/di.rb +++ b/lib/datadog/di.rb @@ -1,5 +1,6 @@ # frozen_string_literal: true +require_relative 'di/base' require_relative 'di/error' require_relative 'di/code_tracker' require_relative 'di/component' @@ -46,67 +47,7 @@ def enabled? # Expose DI to global shared objects Extensions.activate! - LOCK = Mutex.new - class << self - attr_reader :code_tracker - - # Activates code tracking. Normally this method should be called - # when the application starts. If instrumenting third-party code, - # code tracking needs to be enabled before the third-party libraries - # are loaded. If you definitely will not be instrumenting - # third-party libraries, activating tracking after third-party libraries - # have been loaded may improve lookup performance. - # - # TODO test that activating tracker multiple times preserves - # existing mappings in the registry - def activate_tracking! - (@code_tracker ||= CodeTracker.new).start - end - - # Activates code tracking if possible. - # - # This method does nothing if invoked in an environment that does not - # implement required trace points for code tracking (MRI Ruby < 2.6, - # JRuby) and rescues any exceptions that may be raised by downstream - # DI code. - def activate_tracking - # :script_compiled trace point was added in Ruby 2.6. - return unless RUBY_VERSION >= '2.6' - - begin - # Activate code tracking by default because line trace points will not work - # without it. - Datadog::DI.activate_tracking! - rescue => exc - if defined?(Datadog.logger) - Datadog.logger.warn("Failed to activate code tracking for DI: #{exc.class}: #{exc}") - else - # We do not have Datadog logger potentially because DI code tracker is - # being loaded early in application boot process and the rest of datadog - # wasn't loaded yet. Output to standard error. - warn("Failed to activate code tracking for DI: #{exc.class}: #{exc}") - end - end - end - - # Deactivates code tracking. In normal usage of DI this method should - # never be called, however it is used by DI's test suite to reset - # state for individual tests. - # - # Note that deactivating tracking clears out the registry, losing - # the ability to look up files that have been loaded into the process - # already. - def deactivate_tracking! - code_tracker&.stop - end - - # Returns whether code tracking is available. - # This method should be used instead of querying #code_tracker - # because the latter one may be nil. - def code_tracking_active? - code_tracker&.active? || false - end # This method is called from DI Remote handler to issue DI operations # to the probe manager (add or remove probes). @@ -120,39 +61,6 @@ def code_tracking_active? def component Datadog.send(:components).dynamic_instrumentation end - - # DI code tracker is instantiated globally before the regular set of - # components is created, but the code tracker needs to call out to the - # "current" DI component to perform instrumentation when application - # code is loaded. Because this call may happen prior to Datadog - # components having been initialized, we maintain the "current component" - # which contains a reference to the most recently instantiated - # DI::Component. This way, if a DI component hasn't been instantiated, - # we do not try to reference Datadog.components. - def current_component - LOCK.synchronize do - @current_components&.last - end - end - - # To avoid potential races with DI::Component being added and removed, - # we maintain a list of the components. Normally the list should contain - # either zero or one component depending on whether DI is enabled in - # Datadog configuration. However, if a new instance of DI::Component - # is created while the previous instance is still running, we are - # guaranteed to not end up with no component when one is running. - def add_current_component(component) - LOCK.synchronize do - @current_components ||= [] - @current_components << component - end - end - - def remove_current_component(component) - LOCK.synchronize do - @current_components&.delete(component) - end - end end end end diff --git a/lib/datadog/di/base.rb b/lib/datadog/di/base.rb new file mode 100644 index 00000000000..afe8c38e602 --- /dev/null +++ b/lib/datadog/di/base.rb @@ -0,0 +1,115 @@ +# frozen_string_literal: true + +# This file is loaded by datadog/di/init.rb. +# It contains just the global DI reference to the (normally one and only) +# code tracker for the current process. +# This file should not require the rest of DI, specifically none of the +# contrib code that is meant to be loaded after third-party libraries +# are loaded, and also none of the rest of datadog library which also +# has contrib code in other products. + +require_relative 'code_tracker' + +module Datadog + # Namespace for Datadog dynamic instrumentation. + # + # @api private + module DI + LOCK = Mutex.new + + class << self + attr_reader :code_tracker + + # Activates code tracking. Normally this method should be called + # when the application starts. If instrumenting third-party code, + # code tracking needs to be enabled before the third-party libraries + # are loaded. Any third-party code loaded before code tracking is + # activated will NOT be instrumentable using dynamic instrumentation. + # + # TODO test that activating tracker multiple times preserves + # existing mappings in the registry + def activate_tracking! + (@code_tracker ||= CodeTracker.new).start + end + + # Activates code tracking if possible. + # + # This method does nothing if invoked in an environment that does not + # implement required trace points for code tracking (MRI Ruby < 2.6, + # JRuby) and rescues any exceptions that may be raised by downstream + # DI code. + def activate_tracking + # :script_compiled trace point was added in Ruby 2.6. + return unless RUBY_VERSION >= '2.6' + + begin + # Activate code tracking by default because line trace points will not work + # without it. + Datadog::DI.activate_tracking! + rescue => exc + if defined?(Datadog.logger) + Datadog.logger.warn { "di: Failed to activate code tracking for DI: #{exc.class}: #{exc}" } + else + # We do not have Datadog logger potentially because DI code tracker is + # being loaded early in application boot process and the rest of datadog + # wasn't loaded yet. Output to standard error. + warn("datadog: di: Failed to activate code tracking for DI: #{exc.class}: #{exc}") + end + end + end + + # Deactivates code tracking. In normal usage of DI this method should + # never be called, however it is used by DI's test suite to reset + # state for individual tests. + # + # Note that deactivating tracking clears out the registry, losing + # the ability to look up files that have been loaded into the process + # already. + def deactivate_tracking! + code_tracker&.stop + end + + # Returns whether code tracking is available. + # This method should be used instead of querying #code_tracker + # because the latter one may be nil. + def code_tracking_active? + code_tracker&.active? || false + end + + # DI code tracker is instantiated globally before the regular set of + # components is created, but the code tracker needs to call out to the + # "current" DI component to perform instrumentation when application + # code is loaded. Because this call may happen prior to Datadog + # components having been initialized, we maintain the "current component" + # which contains a reference to the most recently instantiated + # DI::Component. This way, if a DI component hasn't been instantiated, + # we do not try to reference Datadog.components. + # In other words, this method exists so that we never attempt to call + # Datadog.components from the code tracker. + def current_component + LOCK.synchronize do + @current_components&.last + end + end + + # To avoid potential races with DI::Component being added and removed, + # we maintain a list of the components. Normally the list should contain + # either zero or one component depending on whether DI is enabled in + # Datadog configuration. However, if a new instance of DI::Component + # is created while the previous instance is still running, we are + # guaranteed to not end up with no component when one is running. + def add_current_component(component) + LOCK.synchronize do + @current_components ||= [] + @current_components << component + end + end + + def remove_current_component(component) + LOCK.synchronize do + @current_components&.delete(component) + end + end + end + end +end diff --git a/lib/datadog/di/code_tracker.rb b/lib/datadog/di/code_tracker.rb index 023f7ea4fdd..15878deb9a3 100644 --- a/lib/datadog/di/code_tracker.rb +++ b/lib/datadog/di/code_tracker.rb @@ -2,6 +2,8 @@ # rubocop:disable Lint/AssignmentInCondition +require_relative 'error' + module Datadog module DI # Tracks loaded Ruby code by source file and maintains a map from @@ -87,9 +89,10 @@ def start # rescue any exceptions that might not be handled to not break said # customer applications. rescue => exc - # TODO we do not have DI.component defined yet, remove steep:ignore - # before release. - if component = DI.current_component # steep:ignore + # Code tracker may be loaded without the rest of DI, + # in which case DI.component will not yet be defined, + # but we will have DI.current_component (set to nil). + if component = DI.current_component raise if component.settings.dynamic_instrumentation.internal.propagate_all_exceptions component.logger.debug { "di: unhandled exception in script_compiled trace point: #{exc.class}: #{exc}" } component.telemetry&.report(exc, description: "Unhandled exception in script_compiled trace point") diff --git a/lib/datadog/di/init.rb b/lib/datadog/di/init.rb index 0b6a9217c2d..2af4c29c325 100644 --- a/lib/datadog/di/init.rb +++ b/lib/datadog/di/init.rb @@ -4,7 +4,7 @@ # enable dynamic instrumentation for third-party libraries used by the # application. -require_relative '../di' +require_relative 'base' # Code tracking is required for line probes to work; see the comments # on the activate_tracking methods in di.rb for further details. diff --git a/sig/datadog/di.rbs b/sig/datadog/di.rbs index a8c7f3a4a97..375da13af21 100644 --- a/sig/datadog/di.rbs +++ b/sig/datadog/di.rbs @@ -1,21 +1,6 @@ module Datadog module DI - def self.code_tracker: () -> CodeTracker? - def self.component: () -> Component? - def self.current_component: () -> Component? - - def self.add_current_component: (Component) -> void - - def self.remove_current_component: (Component) -> void - - def self.activate_tracking: () -> void - - def self.activate_tracking!: () -> void - - def self.deactivate_tracking!: () -> void - - LOCK: Mutex end end diff --git a/sig/datadog/di/base.rbs b/sig/datadog/di/base.rbs new file mode 100644 index 00000000000..82d6d74e5dd --- /dev/null +++ b/sig/datadog/di/base.rbs @@ -0,0 +1,23 @@ +module Datadog + module DI + self.@code_tracker: CodeTracker? + + attr_reader self.code_tracker: CodeTracker? + + def self.activate_tracking: () -> void + + def self.activate_tracking!: () -> void + + def self.deactivate_tracking!: () -> void + + def self.code_tracking_active?: () -> bool + + def self.current_component: () -> Component? + + def self.add_current_component: (Component) -> void + + def self.remove_current_component: (Component) -> void + + LOCK: Mutex + end +end diff --git a/spec/datadog/core/environment/execution_spec.rb b/spec/datadog/core/environment/execution_spec.rb index ba709c90601..0cda18a9b00 100644 --- a/spec/datadog/core/environment/execution_spec.rb +++ b/spec/datadog/core/environment/execution_spec.rb @@ -59,10 +59,11 @@ context 'when in an IRB session' do it 'returns true' do # Ruby 2.6 does not have irb by default in a bundle, but has it outside of it. - _, err, = Bundler.with_unbundled_env do + _, err, status = Bundler.with_unbundled_env do Open3.capture3('irb', '--noprompt', '--noverbose', '--noecho', stdin_data: repl_script) end expect(err).to end_with('ACTUAL:true') + expect(status.exitstatus).to eq(0) end end @@ -203,11 +204,12 @@ def test_it_does_something_useful # Add our script to `env.rb`, which is always run before any feature is executed. File.write('features/support/env.rb', repl_script) - _, err, = Bundler.with_unbundled_env do + _, err, status = Bundler.with_unbundled_env do Open3.capture3('ruby', stdin_data: script) end expect(err).to include('ACTUAL:true') + expect(status.exitstatus).to eq(0) end end end @@ -270,7 +272,7 @@ def test_it_does_something_useful context 'when given WebMock', skip: Gem::Version.new(Bundler::VERSION) < Gem::Version.new('2') do it do - out, = Bundler.with_unbundled_env do + out, _err, status = Bundler.with_unbundled_env do Open3.capture3('ruby', stdin_data: <<-RUBY require 'bundler/inline' @@ -292,6 +294,7 @@ def test_it_does_something_useful end expect(out).to end_with('ACTUAL:true') + expect(status.exitstatus).to eq(0) end end end diff --git a/spec/datadog/di/init_spec.rb b/spec/datadog/di/init_spec.rb new file mode 100644 index 00000000000..45a5f650fc4 --- /dev/null +++ b/spec/datadog/di/init_spec.rb @@ -0,0 +1,75 @@ +require "datadog/di/spec_helper" +require 'open3' + +RSpec.describe 'DI initializer' do + di_test + + # rubocop:disable Lint/ConstantDefinitionInBlock + BOOTSTRAP_SCRIPT = <<-SCRIPT + if defined?(Datadog) && Datadog.constants != %i(VERSION) + raise "Datadog code loaded too early" + end + + require 'datadog/di/init' + + if Datadog.constants.sort != %i(DI VERSION) + raise "Too many datadog components loaded: \#{Datadog.constants}" + end + + unless Datadog::DI.code_tracker + raise "Code tracker not instantiated" + end + + unless Datadog::DI.code_tracker.send(:registry).empty? + raise "Code tracker registry is not empty" + end + + # Test load something + require 'open3' + + if Datadog::DI.code_tracker.send(:registry).empty? + raise "Code tracker did not add loaded file to registry" + end + + unless Datadog::DI.code_tracker.send(:registry).detect { |key, value| key =~ /open3.rb\\z/ } + raise "Loaded script not found in code tracker registry" + end + + if Datadog.constants.sort != %i(DI VERSION) + raise "Too many datadog components loaded at the end of execution: \#{Datadog.constants}" + end + SCRIPT + # rubocop:enable Lint/ConstantDefinitionInBlock + + context 'when loaded initially into a clean process' do + it 'loads only DI code tracker' do + out, status = Open3.capture2e('ruby', stdin_data: BOOTSTRAP_SCRIPT) + unless status.exitstatus == 0 + fail("Test script failed with exit status #{status.exitstatus}:\n#{out}") + end + end + end + + context 'when entire library is loaded after di bootstrapper' do + it 'keeps the mappings in code tracker prior to datadog load' do + script = <<-SCRIPT + #{BOOTSTRAP_SCRIPT} + + require 'datadog' + + # Should still have the open3 entry in code tracker + unless Datadog::DI.code_tracker.send(:registry).detect { |key, value| key =~ /open3.rb\\z/ } + raise "Loaded script not found in code tracker registry" + end + + unless defined?(Datadog::Tracing) + raise "Expected Datadog::Tracing to be defined after datadog was loaded" + end + SCRIPT + out, status = Open3.capture2e('ruby', stdin_data: script) + unless status.exitstatus == 0 + fail("Test script failed with exit status #{status.exitstatus}:\n#{out}") + end + end + end +end From 85f6572ed434770845ed3082bb5da7985ec07324 Mon Sep 17 00:00:00 2001 From: Yury Lebedev Date: Thu, 9 Jan 2025 17:02:38 +0100 Subject: [PATCH 122/161] Remove obsolete code from gateway watchers This :monitor event that we are adding to the response in every gateway watcher is not used anywhere. We are only looking for :block events in the method callers and ignoring the rest. --- .../appsec/contrib/graphql/gateway/watcher.rb | 9 +------ .../appsec/contrib/rack/gateway/watcher.rb | 27 +++---------------- .../appsec/contrib/rails/gateway/watcher.rb | 9 +------ .../appsec/contrib/sinatra/gateway/watcher.rb | 18 ++----------- lib/datadog/appsec/monitor/gateway/watcher.rb | 9 +------ 5 files changed, 8 insertions(+), 64 deletions(-) diff --git a/lib/datadog/appsec/contrib/graphql/gateway/watcher.rb b/lib/datadog/appsec/contrib/graphql/gateway/watcher.rb index 4520e05b111..7fae08aad72 100644 --- a/lib/datadog/appsec/contrib/graphql/gateway/watcher.rb +++ b/lib/datadog/appsec/contrib/graphql/gateway/watcher.rb @@ -46,14 +46,7 @@ def watch_multiplex(gateway = Instrumentation.gateway) next [nil, [[:block, event]]] if block - ret, res = stack.call(gateway_multiplex.arguments) - - if event - res ||= [] - res << [:monitor, event] - end - - [ret, res] + stack.call(gateway_multiplex.arguments) end end end diff --git a/lib/datadog/appsec/contrib/rack/gateway/watcher.rb b/lib/datadog/appsec/contrib/rack/gateway/watcher.rb index fb7e095f834..b5c55a15ac9 100644 --- a/lib/datadog/appsec/contrib/rack/gateway/watcher.rb +++ b/lib/datadog/appsec/contrib/rack/gateway/watcher.rb @@ -50,14 +50,7 @@ def watch_request(gateway = Instrumentation.gateway) block = Rack::Reactive::Request.publish(engine, gateway_request) next [nil, [[:block, event]]] if block - ret, res = stack.call(gateway_request.request) - - if event - res ||= [] - res << [:monitor, event] - end - - [ret, res] + stack.call(gateway_request.request) end end @@ -88,14 +81,7 @@ def watch_response(gateway = Instrumentation.gateway) block = Rack::Reactive::Response.publish(engine, gateway_response) next [nil, [[:block, event]]] if block - ret, res = stack.call(gateway_response.response) - - if event - res ||= [] - res << [:monitor, event] - end - - [ret, res] + stack.call(gateway_response.response) end end @@ -126,14 +112,7 @@ def watch_request_body(gateway = Instrumentation.gateway) block = Rack::Reactive::RequestBody.publish(engine, gateway_request) next [nil, [[:block, event]]] if block - ret, res = stack.call(gateway_request.request) - - if event - res ||= [] - res << [:monitor, event] - end - - [ret, res] + stack.call(gateway_request.request) end end end diff --git a/lib/datadog/appsec/contrib/rails/gateway/watcher.rb b/lib/datadog/appsec/contrib/rails/gateway/watcher.rb index 6fb24027f61..0a1bd7ea9f5 100644 --- a/lib/datadog/appsec/contrib/rails/gateway/watcher.rb +++ b/lib/datadog/appsec/contrib/rails/gateway/watcher.rb @@ -46,14 +46,7 @@ def watch_request_action(gateway = Instrumentation.gateway) block = Rails::Reactive::Action.publish(engine, gateway_request) next [nil, [[:block, event]]] if block - ret, res = stack.call(gateway_request.request) - - if event - res ||= [] - res << [:monitor, event] - end - - [ret, res] + stack.call(gateway_request.request) end end end diff --git a/lib/datadog/appsec/contrib/sinatra/gateway/watcher.rb b/lib/datadog/appsec/contrib/sinatra/gateway/watcher.rb index 442d829cd34..6524fef0ada 100644 --- a/lib/datadog/appsec/contrib/sinatra/gateway/watcher.rb +++ b/lib/datadog/appsec/contrib/sinatra/gateway/watcher.rb @@ -48,14 +48,7 @@ def watch_request_dispatch(gateway = Instrumentation.gateway) block = Rack::Reactive::RequestBody.publish(engine, gateway_request) next [nil, [[:block, event]]] if block - ret, res = stack.call(gateway_request.request) - - if event - res ||= [] - res << [:monitor, event] - end - - [ret, res] + stack.call(gateway_request.request) end end @@ -86,14 +79,7 @@ def watch_request_routed(gateway = Instrumentation.gateway) block = Sinatra::Reactive::Routed.publish(engine, [gateway_request, gateway_route_params]) next [nil, [[:block, event]]] if block - ret, res = stack.call(gateway_request.request) - - if event - res ||= [] - res << [:monitor, event] - end - - [ret, res] + stack.call(gateway_request.request) end end end diff --git a/lib/datadog/appsec/monitor/gateway/watcher.rb b/lib/datadog/appsec/monitor/gateway/watcher.rb index e8beb102e52..3a17b7dc831 100644 --- a/lib/datadog/appsec/monitor/gateway/watcher.rb +++ b/lib/datadog/appsec/monitor/gateway/watcher.rb @@ -44,14 +44,7 @@ def watch_user_id(gateway = Instrumentation.gateway) block = Monitor::Reactive::SetUser.publish(engine, user) throw(Datadog::AppSec::Ext::INTERRUPT, [nil, [[:block, event]]]) if block - ret, res = stack.call(user) - - if event - res ||= [] - res << [:monitor, event] - end - - [ret, res] + stack.call(user) end end end From 3cd77595f9cf3de07212ed6a5c164d6bf2ab3bac Mon Sep 17 00:00:00 2001 From: Ivo Anjo Date: Thu, 9 Jan 2025 20:03:39 +0000 Subject: [PATCH 123/161] [NO-TICKET] Enable typechecking more files **What does this PR do?** This PR enables typechecking for a lot more files that it turns out are already passing typechecks. Many of these files we only have skeleton types that still need to be improved, so this is a small win, but it was a quite cheap one so I thought it was worth doing. **Motivation:** I noticed that we had at least one file that was passing typecheck, but still ignored. This sparked my curiosity, and with a bit of scripting I got a huge list of files that we could enable typechecking for already :) **Additional Notes:** N/A **How to test the change?** Validate that `bundle exec steep check` still passes! --- Steepfile | 427 ------------------------------------------------------ 1 file changed, 427 deletions(-) diff --git a/Steepfile b/Steepfile index ffb73d3e43a..b0151312b7d 100644 --- a/Steepfile +++ b/Steepfile @@ -48,96 +48,42 @@ target :datadog do # Excluded due to https://github.com/soutaro/steep/issues/1232 ignore 'lib/datadog/appsec/configuration/settings.rb' ignore 'lib/datadog/appsec/contrib/' - ignore 'lib/datadog/appsec/contrib/auto_instrument.rb' - ignore 'lib/datadog/appsec/contrib/integration.rb' - ignore 'lib/datadog/appsec/contrib/rack/gateway/request.rb' - ignore 'lib/datadog/appsec/contrib/rack/gateway/response.rb' - ignore 'lib/datadog/appsec/contrib/rack/gateway/watcher.rb' - ignore 'lib/datadog/appsec/contrib/rack/integration.rb' - ignore 'lib/datadog/appsec/contrib/rack/reactive/request.rb' - ignore 'lib/datadog/appsec/contrib/rack/reactive/request_body.rb' - ignore 'lib/datadog/appsec/contrib/rack/reactive/response.rb' - ignore 'lib/datadog/appsec/contrib/rack/request_body_middleware.rb' - ignore 'lib/datadog/appsec/contrib/rack/request_middleware.rb' - ignore 'lib/datadog/appsec/contrib/rails/ext.rb' - ignore 'lib/datadog/appsec/contrib/rails/gateway/watcher.rb' - ignore 'lib/datadog/appsec/contrib/rails/integration.rb' - ignore 'lib/datadog/appsec/contrib/rails/patcher.rb' - ignore 'lib/datadog/appsec/contrib/rails/reactive/action.rb' - ignore 'lib/datadog/appsec/contrib/rails/request_middleware.rb' - ignore 'lib/datadog/appsec/contrib/sinatra/ext.rb' - ignore 'lib/datadog/appsec/contrib/sinatra/gateway/request.rb' - ignore 'lib/datadog/appsec/contrib/sinatra/gateway/watcher.rb' - ignore 'lib/datadog/appsec/contrib/sinatra/integration.rb' - ignore 'lib/datadog/appsec/contrib/sinatra/patcher.rb' - ignore 'lib/datadog/appsec/contrib/sinatra/reactive/routed.rb' - ignore 'lib/datadog/appsec/contrib/sinatra/request_middleware.rb' ignore 'lib/datadog/appsec/monitor/gateway/watcher.rb' - ignore 'lib/datadog/appsec/monitor/reactive/set_user.rb' ignore 'lib/datadog/core.rb' - ignore 'lib/datadog/core/buffer/cruby.rb' ignore 'lib/datadog/core/buffer/random.rb' ignore 'lib/datadog/core/buffer/thread_safe.rb' - ignore 'lib/datadog/core/chunker.rb' ignore 'lib/datadog/core/configuration.rb' ignore 'lib/datadog/core/configuration/base.rb' ignore 'lib/datadog/core/configuration/components.rb' - ignore 'lib/datadog/core/configuration/dependency_resolver.rb' ignore 'lib/datadog/core/configuration/ext.rb' ignore 'lib/datadog/core/configuration/option.rb' ignore 'lib/datadog/core/configuration/option_definition.rb' - ignore 'lib/datadog/core/configuration/option_definition_set.rb' ignore 'lib/datadog/core/configuration/options.rb' ignore 'lib/datadog/core/configuration/settings.rb' ignore 'lib/datadog/core/contrib/rails/utils.rb' - ignore 'lib/datadog/core/diagnostics/health.rb' ignore 'lib/datadog/core/encoding.rb' - ignore 'lib/datadog/core/environment/container.rb' ignore 'lib/datadog/core/environment/identity.rb' ignore 'lib/datadog/core/environment/platform.rb' ignore 'lib/datadog/core/environment/socket.rb' ignore 'lib/datadog/core/environment/variable_helpers.rb' ignore 'lib/datadog/core/environment/vm_cache.rb' ignore 'lib/datadog/core/error.rb' - ignore 'lib/datadog/core/extensions.rb' - ignore 'lib/datadog/core/git/ext.rb' - ignore 'lib/datadog/core/header_collection.rb' - ignore 'lib/datadog/core/logging/ext.rb' ignore 'lib/datadog/core/metrics/client.rb' - ignore 'lib/datadog/core/metrics/ext.rb' ignore 'lib/datadog/core/metrics/helpers.rb' - ignore 'lib/datadog/core/metrics/logging.rb' ignore 'lib/datadog/core/metrics/metric.rb' ignore 'lib/datadog/core/metrics/options.rb' - ignore 'lib/datadog/core/pin.rb' # steep fails in this file due to https://github.com/soutaro/steep/issues/1231 ignore 'lib/datadog/core/remote/tie.rb' ignore 'lib/datadog/core/runtime/ext.rb' ignore 'lib/datadog/core/runtime/metrics.rb' - ignore 'lib/datadog/core/transport/ext.rb' ignore 'lib/datadog/core/transport/http/adapters/net.rb' - ignore 'lib/datadog/core/transport/http/adapters/registry.rb' - ignore 'lib/datadog/core/transport/http/adapters/test.rb' ignore 'lib/datadog/core/transport/http/adapters/unix_socket.rb' - ignore 'lib/datadog/core/transport/http/api/fallbacks.rb' - ignore 'lib/datadog/core/transport/http/env.rb' - ignore 'lib/datadog/core/transport/http/response.rb' - ignore 'lib/datadog/core/utils.rb' ignore 'lib/datadog/core/utils/at_fork_monkey_patch.rb' # @ivoanjo: I wasn't able to type this one, it's kinda weird ignore 'lib/datadog/core/utils/forking.rb' ignore 'lib/datadog/core/utils/hash.rb' # Refinement module ignore 'lib/datadog/core/utils/network.rb' - ignore 'lib/datadog/core/utils/only_once.rb' - ignore 'lib/datadog/core/utils/safe_dup.rb' - ignore 'lib/datadog/core/utils/sequence.rb' ignore 'lib/datadog/core/utils/time.rb' - ignore 'lib/datadog/core/vendor/multipart-post/multipart.rb' - ignore 'lib/datadog/core/vendor/multipart-post/multipart/post.rb' - ignore 'lib/datadog/core/vendor/multipart-post/multipart/post/composite_read_io.rb' ignore 'lib/datadog/core/vendor/multipart-post/multipart/post/multipartable.rb' - ignore 'lib/datadog/core/vendor/multipart-post/multipart/post/parts.rb' - ignore 'lib/datadog/core/vendor/multipart-post/multipart/post/version.rb' - ignore 'lib/datadog/core/vendor/multipart-post/net/http/post/multipart.rb' ignore 'lib/datadog/core/worker.rb' ignore 'lib/datadog/core/workers/async.rb' ignore 'lib/datadog/core/workers/interval_loop.rb' @@ -155,405 +101,36 @@ target :datadog do ignore 'lib/datadog/opentelemetry/sdk/propagator.rb' ignore 'lib/datadog/opentelemetry/sdk/span_processor.rb' ignore 'lib/datadog/opentelemetry/sdk/trace/span.rb' - ignore 'lib/datadog/profiling/collectors/code_provenance.rb' ignore 'lib/datadog/profiling/scheduler.rb' ignore 'lib/datadog/profiling/tag_builder.rb' ignore 'lib/datadog/profiling/tasks/setup.rb' ignore 'lib/datadog/tracing.rb' - ignore 'lib/datadog/tracing/analytics.rb' ignore 'lib/datadog/tracing/buffer.rb' ignore 'lib/datadog/tracing/client_ip.rb' ignore 'lib/datadog/tracing/component.rb' - ignore 'lib/datadog/tracing/configuration/agent_settings_resolver.rb' ignore 'lib/datadog/tracing/configuration/ext.rb' ignore 'lib/datadog/tracing/configuration/settings.rb' ignore 'lib/datadog/tracing/context.rb' - ignore 'lib/datadog/tracing/context_provider.rb' - ignore 'lib/datadog/tracing/contrib.rb' ignore 'lib/datadog/tracing/contrib/' - ignore 'lib/datadog/tracing/contrib/action_cable/configuration/settings.rb' - ignore 'lib/datadog/tracing/contrib/action_cable/event.rb' - ignore 'lib/datadog/tracing/contrib/action_cable/events.rb' - ignore 'lib/datadog/tracing/contrib/action_cable/events/broadcast.rb' - ignore 'lib/datadog/tracing/contrib/action_cable/events/perform_action.rb' - ignore 'lib/datadog/tracing/contrib/action_cable/events/transmit.rb' - ignore 'lib/datadog/tracing/contrib/action_cable/ext.rb' - ignore 'lib/datadog/tracing/contrib/action_cable/instrumentation.rb' - ignore 'lib/datadog/tracing/contrib/action_cable/integration.rb' - ignore 'lib/datadog/tracing/contrib/action_cable/patcher.rb' - ignore 'lib/datadog/tracing/contrib/action_mailer/configuration/settings.rb' - ignore 'lib/datadog/tracing/contrib/action_mailer/event.rb' - ignore 'lib/datadog/tracing/contrib/action_mailer/events.rb' - ignore 'lib/datadog/tracing/contrib/action_mailer/events/deliver.rb' - ignore 'lib/datadog/tracing/contrib/action_mailer/events/process.rb' - ignore 'lib/datadog/tracing/contrib/action_mailer/ext.rb' - ignore 'lib/datadog/tracing/contrib/action_mailer/integration.rb' - ignore 'lib/datadog/tracing/contrib/action_mailer/patcher.rb' - ignore 'lib/datadog/tracing/contrib/action_pack/action_controller/instrumentation.rb' - ignore 'lib/datadog/tracing/contrib/action_pack/action_controller/patcher.rb' - ignore 'lib/datadog/tracing/contrib/action_pack/configuration/settings.rb' - ignore 'lib/datadog/tracing/contrib/action_pack/ext.rb' - ignore 'lib/datadog/tracing/contrib/action_pack/integration.rb' - ignore 'lib/datadog/tracing/contrib/action_pack/patcher.rb' - ignore 'lib/datadog/tracing/contrib/action_pack/utils.rb' - ignore 'lib/datadog/tracing/contrib/action_view/configuration/settings.rb' - ignore 'lib/datadog/tracing/contrib/action_view/event.rb' - ignore 'lib/datadog/tracing/contrib/action_view/events.rb' - ignore 'lib/datadog/tracing/contrib/action_view/events/render_partial.rb' - ignore 'lib/datadog/tracing/contrib/action_view/events/render_template.rb' - ignore 'lib/datadog/tracing/contrib/action_view/ext.rb' - ignore 'lib/datadog/tracing/contrib/action_view/integration.rb' - ignore 'lib/datadog/tracing/contrib/action_view/patcher.rb' - ignore 'lib/datadog/tracing/contrib/action_view/utils.rb' - ignore 'lib/datadog/tracing/contrib/active_job/configuration/settings.rb' - ignore 'lib/datadog/tracing/contrib/active_job/event.rb' - ignore 'lib/datadog/tracing/contrib/active_job/events.rb' - ignore 'lib/datadog/tracing/contrib/active_job/events/discard.rb' - ignore 'lib/datadog/tracing/contrib/active_job/events/enqueue.rb' - ignore 'lib/datadog/tracing/contrib/active_job/events/enqueue_at.rb' - ignore 'lib/datadog/tracing/contrib/active_job/events/enqueue_retry.rb' - ignore 'lib/datadog/tracing/contrib/active_job/events/perform.rb' - ignore 'lib/datadog/tracing/contrib/active_job/events/retry_stopped.rb' - ignore 'lib/datadog/tracing/contrib/active_job/ext.rb' - ignore 'lib/datadog/tracing/contrib/active_job/integration.rb' - ignore 'lib/datadog/tracing/contrib/active_job/log_injection.rb' - ignore 'lib/datadog/tracing/contrib/active_job/patcher.rb' - ignore 'lib/datadog/tracing/contrib/active_model_serializers/configuration/settings.rb' - ignore 'lib/datadog/tracing/contrib/active_model_serializers/event.rb' - ignore 'lib/datadog/tracing/contrib/active_model_serializers/events.rb' - ignore 'lib/datadog/tracing/contrib/active_model_serializers/events/render.rb' - ignore 'lib/datadog/tracing/contrib/active_model_serializers/events/serialize.rb' - ignore 'lib/datadog/tracing/contrib/active_model_serializers/ext.rb' - ignore 'lib/datadog/tracing/contrib/active_model_serializers/integration.rb' - ignore 'lib/datadog/tracing/contrib/active_model_serializers/patcher.rb' - ignore 'lib/datadog/tracing/contrib/active_record/configuration/makara_resolver.rb' - ignore 'lib/datadog/tracing/contrib/active_record/configuration/resolver.rb' - ignore 'lib/datadog/tracing/contrib/active_record/configuration/settings.rb' - ignore 'lib/datadog/tracing/contrib/active_record/event.rb' - ignore 'lib/datadog/tracing/contrib/active_record/events.rb' - ignore 'lib/datadog/tracing/contrib/active_record/events/instantiation.rb' - ignore 'lib/datadog/tracing/contrib/active_record/events/sql.rb' - ignore 'lib/datadog/tracing/contrib/active_record/ext.rb' - ignore 'lib/datadog/tracing/contrib/active_record/integration.rb' - ignore 'lib/datadog/tracing/contrib/active_record/patcher.rb' - ignore 'lib/datadog/tracing/contrib/active_record/utils.rb' - ignore 'lib/datadog/tracing/contrib/active_support/cache/instrumentation.rb' - ignore 'lib/datadog/tracing/contrib/active_support/cache/patcher.rb' - ignore 'lib/datadog/tracing/contrib/active_support/cache/redis.rb' - ignore 'lib/datadog/tracing/contrib/active_support/configuration/settings.rb' - ignore 'lib/datadog/tracing/contrib/active_support/ext.rb' - ignore 'lib/datadog/tracing/contrib/active_support/integration.rb' - ignore 'lib/datadog/tracing/contrib/active_support/notifications/event.rb' - ignore 'lib/datadog/tracing/contrib/active_support/notifications/subscriber.rb' - ignore 'lib/datadog/tracing/contrib/active_support/notifications/subscription.rb' - ignore 'lib/datadog/tracing/contrib/active_support/patcher.rb' - ignore 'lib/datadog/tracing/contrib/analytics.rb' - ignore 'lib/datadog/tracing/contrib/auto_instrument.rb' - ignore 'lib/datadog/tracing/contrib/aws/configuration/settings.rb' - ignore 'lib/datadog/tracing/contrib/aws/ext.rb' - ignore 'lib/datadog/tracing/contrib/aws/instrumentation.rb' - ignore 'lib/datadog/tracing/contrib/aws/integration.rb' - ignore 'lib/datadog/tracing/contrib/aws/parsed_context.rb' - ignore 'lib/datadog/tracing/contrib/aws/patcher.rb' - ignore 'lib/datadog/tracing/contrib/aws/services.rb' - ignore 'lib/datadog/tracing/contrib/concurrent_ruby/configuration/settings.rb' - ignore 'lib/datadog/tracing/contrib/concurrent_ruby/context_composite_executor_service.rb' - ignore 'lib/datadog/tracing/contrib/concurrent_ruby/ext.rb' - ignore 'lib/datadog/tracing/contrib/concurrent_ruby/future_patch.rb' - ignore 'lib/datadog/tracing/contrib/concurrent_ruby/integration.rb' - ignore 'lib/datadog/tracing/contrib/concurrent_ruby/patcher.rb' - ignore 'lib/datadog/tracing/contrib/configurable.rb' - ignore 'lib/datadog/tracing/contrib/configuration/resolver.rb' - ignore 'lib/datadog/tracing/contrib/configuration/resolvers/pattern_resolver.rb' - ignore 'lib/datadog/tracing/contrib/configuration/settings.rb' - ignore 'lib/datadog/tracing/contrib/dalli/configuration/settings.rb' - ignore 'lib/datadog/tracing/contrib/dalli/ext.rb' - ignore 'lib/datadog/tracing/contrib/dalli/instrumentation.rb' - ignore 'lib/datadog/tracing/contrib/dalli/integration.rb' - ignore 'lib/datadog/tracing/contrib/dalli/patcher.rb' - ignore 'lib/datadog/tracing/contrib/dalli/quantize.rb' - ignore 'lib/datadog/tracing/contrib/delayed_job/configuration/settings.rb' - ignore 'lib/datadog/tracing/contrib/delayed_job/ext.rb' - ignore 'lib/datadog/tracing/contrib/delayed_job/integration.rb' - ignore 'lib/datadog/tracing/contrib/delayed_job/patcher.rb' - ignore 'lib/datadog/tracing/contrib/delayed_job/plugin.rb' - ignore 'lib/datadog/tracing/contrib/delayed_job/server_internal_tracer/worker.rb' - ignore 'lib/datadog/tracing/contrib/elasticsearch/configuration/settings.rb' - ignore 'lib/datadog/tracing/contrib/elasticsearch/ext.rb' - ignore 'lib/datadog/tracing/contrib/elasticsearch/integration.rb' - ignore 'lib/datadog/tracing/contrib/elasticsearch/patcher.rb' - ignore 'lib/datadog/tracing/contrib/elasticsearch/quantize.rb' - ignore 'lib/datadog/tracing/contrib/ethon/configuration/settings.rb' - ignore 'lib/datadog/tracing/contrib/ethon/easy_patch.rb' - ignore 'lib/datadog/tracing/contrib/ethon/ext.rb' - ignore 'lib/datadog/tracing/contrib/ethon/integration.rb' - ignore 'lib/datadog/tracing/contrib/ethon/multi_patch.rb' - ignore 'lib/datadog/tracing/contrib/ethon/patcher.rb' - ignore 'lib/datadog/tracing/contrib/excon/configuration/settings.rb' - ignore 'lib/datadog/tracing/contrib/excon/ext.rb' - ignore 'lib/datadog/tracing/contrib/excon/integration.rb' - ignore 'lib/datadog/tracing/contrib/excon/middleware.rb' - ignore 'lib/datadog/tracing/contrib/excon/patcher.rb' - ignore 'lib/datadog/tracing/contrib/ext.rb' - ignore 'lib/datadog/tracing/contrib/extensions.rb' - ignore 'lib/datadog/tracing/contrib/faraday/configuration/settings.rb' - ignore 'lib/datadog/tracing/contrib/faraday/connection.rb' - ignore 'lib/datadog/tracing/contrib/faraday/ext.rb' - ignore 'lib/datadog/tracing/contrib/faraday/integration.rb' - ignore 'lib/datadog/tracing/contrib/faraday/middleware.rb' - ignore 'lib/datadog/tracing/contrib/faraday/patcher.rb' - ignore 'lib/datadog/tracing/contrib/faraday/rack_builder.rb' - ignore 'lib/datadog/tracing/contrib/grape/configuration/settings.rb' - ignore 'lib/datadog/tracing/contrib/grape/endpoint.rb' - ignore 'lib/datadog/tracing/contrib/grape/ext.rb' - ignore 'lib/datadog/tracing/contrib/grape/instrumentation.rb' - ignore 'lib/datadog/tracing/contrib/grape/integration.rb' - ignore 'lib/datadog/tracing/contrib/grape/patcher.rb' - ignore 'lib/datadog/tracing/contrib/graphql/configuration/settings.rb' - ignore 'lib/datadog/tracing/contrib/graphql/ext.rb' - ignore 'lib/datadog/tracing/contrib/graphql/integration.rb' - ignore 'lib/datadog/tracing/contrib/graphql/patcher.rb' - ignore 'lib/datadog/tracing/contrib/grpc/configuration/settings.rb' - ignore 'lib/datadog/tracing/contrib/grpc/datadog_interceptor.rb' - ignore 'lib/datadog/tracing/contrib/grpc/datadog_interceptor/client.rb' - ignore 'lib/datadog/tracing/contrib/grpc/datadog_interceptor/server.rb' - ignore 'lib/datadog/tracing/contrib/grpc/distributed/fetcher.rb' - ignore 'lib/datadog/tracing/contrib/grpc/distributed/propagation.rb' - ignore 'lib/datadog/tracing/contrib/grpc/ext.rb' - ignore 'lib/datadog/tracing/contrib/grpc/integration.rb' - ignore 'lib/datadog/tracing/contrib/grpc/intercept_with_datadog.rb' - ignore 'lib/datadog/tracing/contrib/grpc/patcher.rb' - ignore 'lib/datadog/tracing/contrib/hanami/action_tracer.rb' - ignore 'lib/datadog/tracing/contrib/hanami/configuration/settings.rb' - ignore 'lib/datadog/tracing/contrib/hanami/ext.rb' - ignore 'lib/datadog/tracing/contrib/hanami/integration.rb' - ignore 'lib/datadog/tracing/contrib/hanami/patcher.rb' - ignore 'lib/datadog/tracing/contrib/hanami/plugin.rb' - ignore 'lib/datadog/tracing/contrib/hanami/renderer_policy_tracing.rb' - ignore 'lib/datadog/tracing/contrib/hanami/router_tracing.rb' - ignore 'lib/datadog/tracing/contrib/http/circuit_breaker.rb' - ignore 'lib/datadog/tracing/contrib/http/configuration/settings.rb' - ignore 'lib/datadog/tracing/contrib/http/distributed/fetcher.rb' - ignore 'lib/datadog/tracing/contrib/http/distributed/propagation.rb' - ignore 'lib/datadog/tracing/contrib/http/ext.rb' - ignore 'lib/datadog/tracing/contrib/http/instrumentation.rb' - ignore 'lib/datadog/tracing/contrib/http/integration.rb' - ignore 'lib/datadog/tracing/contrib/http/patcher.rb' - ignore 'lib/datadog/tracing/contrib/http_annotation_helper.rb' - ignore 'lib/datadog/tracing/contrib/httpclient/configuration/settings.rb' - ignore 'lib/datadog/tracing/contrib/httpclient/ext.rb' - ignore 'lib/datadog/tracing/contrib/httpclient/instrumentation.rb' - ignore 'lib/datadog/tracing/contrib/httpclient/integration.rb' - ignore 'lib/datadog/tracing/contrib/httpclient/patcher.rb' - ignore 'lib/datadog/tracing/contrib/httprb/configuration/settings.rb' - ignore 'lib/datadog/tracing/contrib/httprb/ext.rb' - ignore 'lib/datadog/tracing/contrib/httprb/instrumentation.rb' - ignore 'lib/datadog/tracing/contrib/httprb/integration.rb' - ignore 'lib/datadog/tracing/contrib/httprb/patcher.rb' - ignore 'lib/datadog/tracing/contrib/integration.rb' - ignore 'lib/datadog/tracing/contrib/kafka/configuration/settings.rb' - ignore 'lib/datadog/tracing/contrib/kafka/consumer_event.rb' - ignore 'lib/datadog/tracing/contrib/kafka/consumer_group_event.rb' - ignore 'lib/datadog/tracing/contrib/kafka/event.rb' - ignore 'lib/datadog/tracing/contrib/kafka/events.rb' - ignore 'lib/datadog/tracing/contrib/kafka/events/connection/request.rb' - ignore 'lib/datadog/tracing/contrib/kafka/events/consumer/process_batch.rb' - ignore 'lib/datadog/tracing/contrib/kafka/events/consumer/process_message.rb' - ignore 'lib/datadog/tracing/contrib/kafka/events/consumer_group/heartbeat.rb' - ignore 'lib/datadog/tracing/contrib/kafka/events/consumer_group/join_group.rb' - ignore 'lib/datadog/tracing/contrib/kafka/events/consumer_group/leave_group.rb' - ignore 'lib/datadog/tracing/contrib/kafka/events/consumer_group/sync_group.rb' - ignore 'lib/datadog/tracing/contrib/kafka/events/produce_operation/send_messages.rb' - ignore 'lib/datadog/tracing/contrib/kafka/events/producer/deliver_messages.rb' - ignore 'lib/datadog/tracing/contrib/kafka/ext.rb' - ignore 'lib/datadog/tracing/contrib/kafka/integration.rb' - ignore 'lib/datadog/tracing/contrib/kafka/patcher.rb' - ignore 'lib/datadog/tracing/contrib/lograge/configuration/settings.rb' - ignore 'lib/datadog/tracing/contrib/lograge/ext.rb' - ignore 'lib/datadog/tracing/contrib/lograge/instrumentation.rb' - ignore 'lib/datadog/tracing/contrib/lograge/integration.rb' - ignore 'lib/datadog/tracing/contrib/lograge/patcher.rb' - ignore 'lib/datadog/tracing/contrib/mongodb/configuration/settings.rb' - ignore 'lib/datadog/tracing/contrib/mongodb/ext.rb' - ignore 'lib/datadog/tracing/contrib/mongodb/instrumentation.rb' - ignore 'lib/datadog/tracing/contrib/mongodb/integration.rb' - ignore 'lib/datadog/tracing/contrib/mongodb/parsers.rb' - ignore 'lib/datadog/tracing/contrib/mongodb/patcher.rb' - ignore 'lib/datadog/tracing/contrib/mongodb/subscribers.rb' - ignore 'lib/datadog/tracing/contrib/mysql2/configuration/settings.rb' - ignore 'lib/datadog/tracing/contrib/mysql2/ext.rb' - ignore 'lib/datadog/tracing/contrib/mysql2/instrumentation.rb' - ignore 'lib/datadog/tracing/contrib/mysql2/integration.rb' - ignore 'lib/datadog/tracing/contrib/mysql2/patcher.rb' - ignore 'lib/datadog/tracing/contrib/patchable.rb' - ignore 'lib/datadog/tracing/contrib/patcher.rb' - ignore 'lib/datadog/tracing/contrib/pg/configuration/settings.rb' - ignore 'lib/datadog/tracing/contrib/pg/ext.rb' - ignore 'lib/datadog/tracing/contrib/pg/instrumentation.rb' - ignore 'lib/datadog/tracing/contrib/pg/integration.rb' - ignore 'lib/datadog/tracing/contrib/pg/patcher.rb' - ignore 'lib/datadog/tracing/contrib/presto/configuration/settings.rb' - ignore 'lib/datadog/tracing/contrib/presto/ext.rb' - ignore 'lib/datadog/tracing/contrib/presto/instrumentation.rb' - ignore 'lib/datadog/tracing/contrib/presto/integration.rb' - ignore 'lib/datadog/tracing/contrib/presto/patcher.rb' - ignore 'lib/datadog/tracing/contrib/que/configuration/settings.rb' - ignore 'lib/datadog/tracing/contrib/que/ext.rb' - ignore 'lib/datadog/tracing/contrib/que/integration.rb' - ignore 'lib/datadog/tracing/contrib/que/patcher.rb' - ignore 'lib/datadog/tracing/contrib/que/tracer.rb' - ignore 'lib/datadog/tracing/contrib/racecar/configuration/settings.rb' - ignore 'lib/datadog/tracing/contrib/racecar/event.rb' - ignore 'lib/datadog/tracing/contrib/racecar/events.rb' - ignore 'lib/datadog/tracing/contrib/racecar/events/batch.rb' - ignore 'lib/datadog/tracing/contrib/racecar/events/consume.rb' - ignore 'lib/datadog/tracing/contrib/racecar/events/message.rb' - ignore 'lib/datadog/tracing/contrib/racecar/ext.rb' - ignore 'lib/datadog/tracing/contrib/racecar/integration.rb' - ignore 'lib/datadog/tracing/contrib/racecar/patcher.rb' - ignore 'lib/datadog/tracing/contrib/rack/configuration/settings.rb' - ignore 'lib/datadog/tracing/contrib/rack/ext.rb' - ignore 'lib/datadog/tracing/contrib/rack/header_collection.rb' - ignore 'lib/datadog/tracing/contrib/rack/integration.rb' - ignore 'lib/datadog/tracing/contrib/rack/middlewares.rb' - ignore 'lib/datadog/tracing/contrib/rack/patcher.rb' - ignore 'lib/datadog/tracing/contrib/rack/request_queue.rb' - ignore 'lib/datadog/tracing/contrib/rails/auto_instrument_railtie.rb' - ignore 'lib/datadog/tracing/contrib/rails/configuration/settings.rb' - ignore 'lib/datadog/tracing/contrib/rails/ext.rb' - ignore 'lib/datadog/tracing/contrib/rails/framework.rb' - ignore 'lib/datadog/tracing/contrib/rails/integration.rb' - ignore 'lib/datadog/tracing/contrib/rails/log_injection.rb' - ignore 'lib/datadog/tracing/contrib/rails/middlewares.rb' - ignore 'lib/datadog/tracing/contrib/rails/patcher.rb' - ignore 'lib/datadog/tracing/contrib/rails/railtie.rb' - ignore 'lib/datadog/tracing/contrib/rake/configuration/settings.rb' - ignore 'lib/datadog/tracing/contrib/rake/ext.rb' - ignore 'lib/datadog/tracing/contrib/rake/instrumentation.rb' - ignore 'lib/datadog/tracing/contrib/rake/integration.rb' - ignore 'lib/datadog/tracing/contrib/rake/patcher.rb' - ignore 'lib/datadog/tracing/contrib/redis/configuration/resolver.rb' - ignore 'lib/datadog/tracing/contrib/redis/configuration/settings.rb' - ignore 'lib/datadog/tracing/contrib/redis/ext.rb' - ignore 'lib/datadog/tracing/contrib/redis/instrumentation.rb' - ignore 'lib/datadog/tracing/contrib/redis/integration.rb' - ignore 'lib/datadog/tracing/contrib/redis/patcher.rb' - ignore 'lib/datadog/tracing/contrib/redis/quantize.rb' - ignore 'lib/datadog/tracing/contrib/redis/tags.rb' - ignore 'lib/datadog/tracing/contrib/redis/trace_middleware.rb' - ignore 'lib/datadog/tracing/contrib/redis/vendor/resolver.rb' - ignore 'lib/datadog/tracing/contrib/registerable.rb' - ignore 'lib/datadog/tracing/contrib/registry.rb' - ignore 'lib/datadog/tracing/contrib/resque/configuration/settings.rb' - ignore 'lib/datadog/tracing/contrib/resque/ext.rb' - ignore 'lib/datadog/tracing/contrib/resque/integration.rb' - ignore 'lib/datadog/tracing/contrib/resque/patcher.rb' - ignore 'lib/datadog/tracing/contrib/resque/resque_job.rb' - ignore 'lib/datadog/tracing/contrib/rest_client/configuration/settings.rb' - ignore 'lib/datadog/tracing/contrib/rest_client/ext.rb' - ignore 'lib/datadog/tracing/contrib/rest_client/integration.rb' - ignore 'lib/datadog/tracing/contrib/rest_client/patcher.rb' - ignore 'lib/datadog/tracing/contrib/rest_client/request_patch.rb' - ignore 'lib/datadog/tracing/contrib/semantic_logger/configuration/settings.rb' - ignore 'lib/datadog/tracing/contrib/semantic_logger/ext.rb' - ignore 'lib/datadog/tracing/contrib/semantic_logger/instrumentation.rb' - ignore 'lib/datadog/tracing/contrib/semantic_logger/integration.rb' - ignore 'lib/datadog/tracing/contrib/semantic_logger/patcher.rb' - ignore 'lib/datadog/tracing/contrib/sequel/configuration/settings.rb' - ignore 'lib/datadog/tracing/contrib/sequel/database.rb' - ignore 'lib/datadog/tracing/contrib/sequel/dataset.rb' - ignore 'lib/datadog/tracing/contrib/sequel/ext.rb' - ignore 'lib/datadog/tracing/contrib/sequel/integration.rb' - ignore 'lib/datadog/tracing/contrib/sequel/patcher.rb' - ignore 'lib/datadog/tracing/contrib/sequel/utils.rb' - ignore 'lib/datadog/tracing/contrib/shoryuken/configuration/settings.rb' - ignore 'lib/datadog/tracing/contrib/shoryuken/ext.rb' - ignore 'lib/datadog/tracing/contrib/shoryuken/integration.rb' - ignore 'lib/datadog/tracing/contrib/shoryuken/patcher.rb' - ignore 'lib/datadog/tracing/contrib/shoryuken/tracer.rb' - ignore 'lib/datadog/tracing/contrib/sidekiq/client_tracer.rb' - ignore 'lib/datadog/tracing/contrib/sidekiq/configuration/settings.rb' - ignore 'lib/datadog/tracing/contrib/sidekiq/ext.rb' - ignore 'lib/datadog/tracing/contrib/sidekiq/integration.rb' - ignore 'lib/datadog/tracing/contrib/sidekiq/patcher.rb' - ignore 'lib/datadog/tracing/contrib/sidekiq/server_internal_tracer/heartbeat.rb' - ignore 'lib/datadog/tracing/contrib/sidekiq/server_internal_tracer/job_fetch.rb' - ignore 'lib/datadog/tracing/contrib/sidekiq/server_internal_tracer/redis_info.rb' - ignore 'lib/datadog/tracing/contrib/sidekiq/server_internal_tracer/scheduled_poller.rb' - ignore 'lib/datadog/tracing/contrib/sidekiq/server_tracer.rb' - ignore 'lib/datadog/tracing/contrib/sidekiq/tracing.rb' - ignore 'lib/datadog/tracing/contrib/sinatra/configuration/settings.rb' - ignore 'lib/datadog/tracing/contrib/sinatra/env.rb' - ignore 'lib/datadog/tracing/contrib/sinatra/ext.rb' - ignore 'lib/datadog/tracing/contrib/sinatra/framework.rb' - ignore 'lib/datadog/tracing/contrib/sinatra/headers.rb' - ignore 'lib/datadog/tracing/contrib/sinatra/integration.rb' - ignore 'lib/datadog/tracing/contrib/sinatra/patcher.rb' - ignore 'lib/datadog/tracing/contrib/sinatra/tracer.rb' - ignore 'lib/datadog/tracing/contrib/sinatra/tracer_middleware.rb' - ignore 'lib/datadog/tracing/contrib/sneakers/configuration/settings.rb' - ignore 'lib/datadog/tracing/contrib/sneakers/ext.rb' - ignore 'lib/datadog/tracing/contrib/sneakers/integration.rb' - ignore 'lib/datadog/tracing/contrib/sneakers/patcher.rb' - ignore 'lib/datadog/tracing/contrib/sneakers/tracer.rb' - ignore 'lib/datadog/tracing/contrib/status_code_matcher.rb' - ignore 'lib/datadog/tracing/contrib/stripe/configuration/settings.rb' - ignore 'lib/datadog/tracing/contrib/stripe/ext.rb' - ignore 'lib/datadog/tracing/contrib/stripe/integration.rb' - ignore 'lib/datadog/tracing/contrib/stripe/patcher.rb' - ignore 'lib/datadog/tracing/contrib/stripe/request.rb' - ignore 'lib/datadog/tracing/contrib/sucker_punch/configuration/settings.rb' - ignore 'lib/datadog/tracing/contrib/sucker_punch/exception_handler.rb' - ignore 'lib/datadog/tracing/contrib/sucker_punch/ext.rb' - ignore 'lib/datadog/tracing/contrib/sucker_punch/instrumentation.rb' - ignore 'lib/datadog/tracing/contrib/sucker_punch/integration.rb' - ignore 'lib/datadog/tracing/contrib/sucker_punch/patcher.rb' - ignore 'lib/datadog/tracing/contrib/utils/quantization/hash.rb' - ignore 'lib/datadog/tracing/contrib/utils/quantization/http.rb' ignore 'lib/datadog/tracing/correlation.rb' ignore 'lib/datadog/tracing/diagnostics/environment_logger.rb' - ignore 'lib/datadog/tracing/diagnostics/ext.rb' ignore 'lib/datadog/tracing/diagnostics/health.rb' - ignore 'lib/datadog/tracing/distributed/b3_multi.rb' - ignore 'lib/datadog/tracing/distributed/b3_single.rb' ignore 'lib/datadog/tracing/distributed/datadog.rb' ignore 'lib/datadog/tracing/distributed/datadog_tags_codec.rb' - ignore 'lib/datadog/tracing/distributed/fetcher.rb' - ignore 'lib/datadog/tracing/distributed/helpers.rb' - ignore 'lib/datadog/tracing/distributed/none.rb' ignore 'lib/datadog/tracing/distributed/propagation.rb' ignore 'lib/datadog/tracing/distributed/trace_context.rb' ignore 'lib/datadog/tracing/event.rb' - ignore 'lib/datadog/tracing/flush.rb' - ignore 'lib/datadog/tracing/metadata/analytics.rb' ignore 'lib/datadog/tracing/metadata/errors.rb' ignore 'lib/datadog/tracing/metadata/ext.rb' - ignore 'lib/datadog/tracing/metadata/tagging.rb' - ignore 'lib/datadog/tracing/pipeline.rb' - ignore 'lib/datadog/tracing/pipeline/span_filter.rb' - ignore 'lib/datadog/tracing/pipeline/span_processor.rb' - ignore 'lib/datadog/tracing/propagation/http.rb' - ignore 'lib/datadog/tracing/runtime/metrics.rb' - ignore 'lib/datadog/tracing/sampling/all_sampler.rb' ignore 'lib/datadog/tracing/sampling/matcher.rb' - ignore 'lib/datadog/tracing/sampling/priority_sampler.rb' - ignore 'lib/datadog/tracing/sampling/rate_by_key_sampler.rb' ignore 'lib/datadog/tracing/sampling/rate_by_service_sampler.rb' - ignore 'lib/datadog/tracing/sampling/rate_sampler.rb' ignore 'lib/datadog/tracing/sampling/rule.rb' ignore 'lib/datadog/tracing/sampling/rule_sampler.rb' - ignore 'lib/datadog/tracing/sampling/sampler.rb' - ignore 'lib/datadog/tracing/sampling/span/ext.rb' - ignore 'lib/datadog/tracing/sampling/span/matcher.rb' ignore 'lib/datadog/tracing/sampling/span/rule.rb' - ignore 'lib/datadog/tracing/sampling/span/rule_parser.rb' - ignore 'lib/datadog/tracing/sampling/span/sampler.rb' ignore 'lib/datadog/tracing/span.rb' ignore 'lib/datadog/tracing/span_operation.rb' ignore 'lib/datadog/tracing/sync_writer.rb' - ignore 'lib/datadog/tracing/trace_digest.rb' ignore 'lib/datadog/tracing/trace_operation.rb' - ignore 'lib/datadog/tracing/trace_segment.rb' ignore 'lib/datadog/tracing/tracer.rb' ignore 'lib/datadog/tracing/transport/http.rb' ignore 'lib/datadog/tracing/transport/http/api.rb' @@ -567,13 +144,9 @@ target :datadog do ignore 'lib/datadog/tracing/transport/statistics.rb' ignore 'lib/datadog/tracing/transport/trace_formatter.rb' ignore 'lib/datadog/tracing/transport/traces.rb' - ignore 'lib/datadog/tracing/utils.rb' ignore 'lib/datadog/tracing/workers.rb' ignore 'lib/datadog/tracing/workers/trace_writer.rb' ignore 'lib/datadog/tracing/writer.rb' - ignore 'lib/datadog/auto_instrument.rb' - ignore 'lib/datadog/auto_instrument_base.rb' - ignore 'lib/datadog/version.rb' # References `RubyVM::YJIT`, which does not have type information. ignore 'lib/datadog/core/environment/yjit.rb' From de276c7aa12c4147ac7bd6ea5ce94640f6fcc5dd Mon Sep 17 00:00:00 2001 From: Ivo Anjo Date: Thu, 9 Jan 2025 20:15:25 +0000 Subject: [PATCH 124/161] Add `ostruct` to Ruby 3.5 gemfile This is needed to unblock the test-asan check. I'm working with upstream ( https://github.com/ruby/setup-ruby/issues/682 ) to see if we can get an asan build based off a stable Ruby to avoid the "flakiness" of testing with a Ruby based on ruby-head. --- ruby-3.5.gemfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ruby-3.5.gemfile b/ruby-3.5.gemfile index 84d2a4327cf..e00703e4341 100644 --- a/ruby-3.5.gemfile +++ b/ruby-3.5.gemfile @@ -62,3 +62,5 @@ group :dev do gem 'ruby-lsp', require: false gem 'appraisal', '~> 2.4.0', require: false end + +gem 'ostruct' From 08041d2e6c0c34b4480a49f68eecf8249b71797e Mon Sep 17 00:00:00 2001 From: Marco Costa Date: Thu, 9 Jan 2025 16:02:59 -0800 Subject: [PATCH 125/161] Increase benchmark validation timeout (#4225) * Increase benchmark validation timeout * Reduce to 20 --- spec/datadog/tracing/validate_benchmarks_spec.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/datadog/tracing/validate_benchmarks_spec.rb b/spec/datadog/tracing/validate_benchmarks_spec.rb index f54a2c5d6d3..b6828c28de1 100644 --- a/spec/datadog/tracing/validate_benchmarks_spec.rb +++ b/spec/datadog/tracing/validate_benchmarks_spec.rb @@ -16,7 +16,7 @@ benchmarks_to_validate.each do |benchmark| describe benchmark do it 'runs without raising errors' do - expect_in_fork do + expect_in_fork(timeout_seconds: 20) do load "./benchmarks/#{benchmark}.rb" end end From f66f48a34e2814237df1244cf637b239c6f94854 Mon Sep 17 00:00:00 2001 From: Ivo Anjo Date: Fri, 10 Jan 2025 08:51:07 +0000 Subject: [PATCH 126/161] [NO-TICKET] Disable flaky barrier spec **What does this PR do?** This PR disables a spec that's been flaky for a very long time (see https://github.com/DataDog/ruby-guild/issues/191, but I suspect I saw it back in https://github.com/DataDog/ruby-guild/issues/50#issuecomment-1874210356 ) and it just failed on me again: https://github.com/DataDog/dd-trace-rb/actions/runs/12706052002/job/35418238631?pr=4234 I'm not sure this test is getting us a lot of value, so let's stop the flaky impact until we can dedicate time to fixing it. (Maybe @lloeki can help here as the original author of the class and tests?) **Motivation:** Get to zero flaky tests in our codebase! **Additional Notes:** N/A **How to test the change?** Validate spec is now skipped. --- spec/datadog/core/remote/component_spec.rb | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/spec/datadog/core/remote/component_spec.rb b/spec/datadog/core/remote/component_spec.rb index b579a97bdac..a6245127b4b 100644 --- a/spec/datadog/core/remote/component_spec.rb +++ b/spec/datadog/core/remote/component_spec.rb @@ -258,8 +258,26 @@ context 'with waiters' do it 'unblocks waiters' do + skip('Known flaky (assertion below sometimes fails with timeout)') + waiter_thread = Thread.new(record) do |record| record << :one + # Failures: + # + # 1) Datadog::Core::Remote::Component::Barrier#lift with waiters unblocks waiters + # Failure/Error: expect(barrier.wait_once).to eq :lift + # + # expected: :lift + # got: :timeout + # + # (compared using ==) + # + # Diff: + # @@ -1 +1 @@ + # -:lift + # +:timeout + # # ./spec/datadog/core/remote/component_spec.rb:263:in `block (5 levels) in ' + # # ./spec/spec_helper.rb:254:in `block in initialize' expect(barrier.wait_once).to eq :lift record << :two end.run From 75c4d8aa54375f7c4f3a911c1efd04a2db7613f5 Mon Sep 17 00:00:00 2001 From: Tony Hsu Date: Fri, 10 Jan 2025 15:27:37 +0100 Subject: [PATCH 127/161] Move rubocop group --- .circleci/config.yml | 2 +- jruby-9.3.gemfile | 14 +++++++------- jruby-9.4.gemfile | 14 +++++++------- ruby-2.6.gemfile | 14 +++++++------- ruby-2.7.gemfile | 14 +++++++------- ruby-3.0.gemfile | 14 +++++++------- ruby-3.1.gemfile | 14 +++++++------- ruby-3.2.gemfile | 14 +++++++------- ruby-3.3.gemfile | 14 +++++++------- ruby-3.4.gemfile | 14 +++++++------- ruby-3.5.gemfile | 14 +++++++------- 11 files changed, 71 insertions(+), 71 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 6aabbeeb7f8..31075f7c9aa 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -65,7 +65,7 @@ save_bundle_checksum: &save_bundle_checksum command: | if [ "$CI_BUNDLE_CACHE_HIT" != 1 ]; then # Recompute gemfiles/*.lock checksum, as those files might have changed - cat Gemfile Gemfile.lock ruby-*.gemfile gemfiles/*.gemfile gemfiles/*.gemfile.lock | md5sum > .circleci/bundle_checksum + cat Gemfile Gemfile.lock jruby-*.gemfile ruby-*.gemfile gemfiles/*.gemfile gemfiles/*.gemfile.lock | md5sum > .circleci/bundle_checksum fi cp .circleci/bundle_checksum /usr/local/bundle/bundle_checksum step_bundle_install: &step_bundle_install diff --git a/jruby-9.3.gemfile b/jruby-9.3.gemfile index 06130347bfc..761aa6b2efe 100644 --- a/jruby-9.3.gemfile +++ b/jruby-9.3.gemfile @@ -26,13 +26,6 @@ gem 'rspec-collection_matchers', '~> 1.1' gem 'rspec-wait', '~> 0' gem 'rspec_junit_formatter', '>= 0.5.1' -# 1.50 is the last version to support Ruby 2.6 -gem 'rubocop', '~> 1.50.0', require: false -gem 'rubocop-packaging', '~> 0.5.2', require: false -gem 'rubocop-performance', '~> 1.9', require: false -# 2.20 is the last version to support Ruby 2.6 -gem 'rubocop-rspec', ['~> 2.20', '< 2.21'], require: false - gem 'simplecov' gem 'simplecov-cobertura', '~> 2.1.0' # Used by codecov @@ -41,6 +34,13 @@ gem 'webmock', '>= 3.10.0' group :check do gem 'standard', require: false + + # 1.50 is the last version to support Ruby 2.6 + gem 'rubocop', '~> 1.50.0', require: false + gem 'rubocop-packaging', '~> 0.5.2', require: false + gem 'rubocop-performance', '~> 1.9', require: false + # 2.20 is the last version to support Ruby 2.6 + gem 'rubocop-rspec', ['~> 2.20', '< 2.21'], require: false end group :dev do diff --git a/jruby-9.4.gemfile b/jruby-9.4.gemfile index 439c6cd40e0..58f6e430e15 100644 --- a/jruby-9.4.gemfile +++ b/jruby-9.4.gemfile @@ -27,13 +27,6 @@ gem 'rspec-collection_matchers', '~> 1.1' gem 'rspec-wait', '~> 0' gem 'rspec_junit_formatter', '>= 0.5.1' -# 1.50 is the last version to support Ruby 2.6 -gem 'rubocop', '~> 1.50.0', require: false -gem 'rubocop-packaging', '~> 0.5.2', require: false -gem 'rubocop-performance', '~> 1.9', require: false -# 2.20 is the last version to support Ruby 2.6 -gem 'rubocop-rspec', ['~> 2.20', '< 2.21'], require: false - gem 'simplecov' gem 'simplecov-cobertura', '~> 2.1.0' # Used by codecov @@ -43,6 +36,13 @@ gem 'webrick', '>= 1.7.0' group :check do gem 'standard', require: false + + # 1.50 is the last version to support Ruby 2.6 + gem 'rubocop', '~> 1.50.0', require: false + gem 'rubocop-packaging', '~> 0.5.2', require: false + gem 'rubocop-performance', '~> 1.9', require: false + # 2.20 is the last version to support Ruby 2.6 + gem 'rubocop-rspec', ['~> 2.20', '< 2.21'], require: false end group :dev do diff --git a/ruby-2.6.gemfile b/ruby-2.6.gemfile index 27266605d0a..eebb115a867 100644 --- a/ruby-2.6.gemfile +++ b/ruby-2.6.gemfile @@ -35,13 +35,6 @@ gem 'rspec-collection_matchers', '~> 1.1' gem 'rspec-wait', '~> 0' gem 'rspec_junit_formatter', '>= 0.5.1' -# 1.50 is the last version to support Ruby 2.6 -gem 'rubocop', '~> 1.50.0', require: false -gem 'rubocop-packaging', '~> 0.5.2', require: false -gem 'rubocop-performance', '~> 1.9', require: false -# 2.20 is the last version to support Ruby 2.6 -gem 'rubocop-rspec', ['~> 2.20', '< 2.21'], require: false - gem 'simplecov' gem 'simplecov-cobertura', '~> 2.1.0' # Used by codecov @@ -50,6 +43,13 @@ gem 'webmock', '>= 3.10.0' group :check do gem 'standard', require: false + + # 1.50 is the last version to support Ruby 2.6 + gem 'rubocop', '~> 1.50.0', require: false + gem 'rubocop-packaging', '~> 0.5.2', require: false + gem 'rubocop-performance', '~> 1.9', require: false + # 2.20 is the last version to support Ruby 2.6 + gem 'rubocop-rspec', ['~> 2.20', '< 2.21'], require: false end group :dev do diff --git a/ruby-2.7.gemfile b/ruby-2.7.gemfile index fa7fba5474e..bf5e73a950d 100644 --- a/ruby-2.7.gemfile +++ b/ruby-2.7.gemfile @@ -35,13 +35,6 @@ gem 'rspec-collection_matchers', '~> 1.1' gem 'rspec-wait', '~> 0' gem 'rspec_junit_formatter', '>= 0.5.1' -# 1.50 is the last version to support Ruby 2.6 -gem 'rubocop', '~> 1.50.0', require: false -gem 'rubocop-packaging', '~> 0.5.2', require: false -gem 'rubocop-performance', '~> 1.9', require: false -# 2.20 is the last version to support Ruby 2.6 -gem 'rubocop-rspec', ['~> 2.20', '< 2.21'], require: false - gem 'simplecov' gem 'simplecov-cobertura', '~> 2.1.0' # Used by codecov @@ -51,6 +44,13 @@ gem 'webmock', '>= 3.10.0' group :check do gem 'ruby_memcheck', '>= 3' if RUBY_VERSION >= '3.4.0' && RUBY_PLATFORM != 'java' gem 'standard', require: false + + # 1.50 is the last version to support Ruby 2.6 + gem 'rubocop', '~> 1.50.0', require: false + gem 'rubocop-packaging', '~> 0.5.2', require: false + gem 'rubocop-performance', '~> 1.9', require: false + # 2.20 is the last version to support Ruby 2.6 + gem 'rubocop-rspec', ['~> 2.20', '< 2.21'], require: false end group :dev do diff --git a/ruby-3.0.gemfile b/ruby-3.0.gemfile index 46fe32fe1bb..d7aa6f93304 100644 --- a/ruby-3.0.gemfile +++ b/ruby-3.0.gemfile @@ -35,13 +35,6 @@ gem 'rspec-collection_matchers', '~> 1.1' gem 'rspec-wait', '~> 0' gem 'rspec_junit_formatter', '>= 0.5.1' -# 1.50 is the last version to support Ruby 2.6 -gem 'rubocop', '~> 1.50.0', require: false -gem 'rubocop-packaging', '~> 0.5.2', require: false -gem 'rubocop-performance', '~> 1.9', require: false -# 2.20 is the last version to support Ruby 2.6 -gem 'rubocop-rspec', ['~> 2.20', '< 2.21'], require: false - gem 'simplecov' gem 'simplecov-cobertura', '~> 2.1.0' # Used by codecov @@ -51,6 +44,13 @@ gem 'webrick', '>= 1.7.0' group :check do gem 'standard', require: false + + # 1.50 is the last version to support Ruby 2.6 + gem 'rubocop', '~> 1.50.0', require: false + gem 'rubocop-packaging', '~> 0.5.2', require: false + gem 'rubocop-performance', '~> 1.9', require: false + # 2.20 is the last version to support Ruby 2.6 + gem 'rubocop-rspec', ['~> 2.20', '< 2.21'], require: false end group :dev do diff --git a/ruby-3.1.gemfile b/ruby-3.1.gemfile index 63430e1029e..a75a93d9c1a 100644 --- a/ruby-3.1.gemfile +++ b/ruby-3.1.gemfile @@ -35,13 +35,6 @@ gem 'rspec-collection_matchers', '~> 1.1' gem 'rspec-wait', '~> 0' gem 'rspec_junit_formatter', '>= 0.5.1' -# 1.50 is the last version to support Ruby 2.6 -gem 'rubocop', '~> 1.50.0', require: false -gem 'rubocop-packaging', '~> 0.5.2', require: false -gem 'rubocop-performance', '~> 1.9', require: false -# 2.20 is the last version to support Ruby 2.6 -gem 'rubocop-rspec', ['~> 2.20', '< 2.21'], require: false - gem 'simplecov' gem 'simplecov-cobertura', '~> 2.1.0' # Used by codecov @@ -53,6 +46,13 @@ group :check do gem 'rbs', '~> 3.7', require: false gem 'steep', '~> 1', '>= 1.9.1', require: false gem 'standard', require: false + + # 1.50 is the last version to support Ruby 2.6 + gem 'rubocop', '~> 1.50.0', require: false + gem 'rubocop-packaging', '~> 0.5.2', require: false + gem 'rubocop-performance', '~> 1.9', require: false + # 2.20 is the last version to support Ruby 2.6 + gem 'rubocop-rspec', ['~> 2.20', '< 2.21'], require: false end group :dev do diff --git a/ruby-3.2.gemfile b/ruby-3.2.gemfile index 245150568b4..1500dcdac6c 100644 --- a/ruby-3.2.gemfile +++ b/ruby-3.2.gemfile @@ -34,13 +34,6 @@ gem 'rspec-collection_matchers', '~> 1.1' gem 'rspec-wait', '~> 0' gem 'rspec_junit_formatter', '>= 0.5.1' -# 1.50 is the last version to support Ruby 2.6 -gem 'rubocop', '~> 1.50.0', require: false -gem 'rubocop-packaging', '~> 0.5.2', require: false -gem 'rubocop-performance', '~> 1.9', require: false -# 2.20 is the last version to support Ruby 2.6 -gem 'rubocop-rspec', ['~> 2.20', '< 2.21'], require: false - gem 'simplecov' gem 'simplecov-cobertura', '~> 2.1.0' # Used by codecov @@ -52,6 +45,13 @@ group :check do gem 'rbs', '~> 3.7', require: false gem 'steep', '~> 1', '>= 1.9.1', require: false gem 'standard', require: false + + # 1.50 is the last version to support Ruby 2.6 + gem 'rubocop', '~> 1.50.0', require: false + gem 'rubocop-packaging', '~> 0.5.2', require: false + gem 'rubocop-performance', '~> 1.9', require: false + # 2.20 is the last version to support Ruby 2.6 + gem 'rubocop-rspec', ['~> 2.20', '< 2.21'], require: false end group :dev do diff --git a/ruby-3.3.gemfile b/ruby-3.3.gemfile index 245150568b4..1500dcdac6c 100644 --- a/ruby-3.3.gemfile +++ b/ruby-3.3.gemfile @@ -34,13 +34,6 @@ gem 'rspec-collection_matchers', '~> 1.1' gem 'rspec-wait', '~> 0' gem 'rspec_junit_formatter', '>= 0.5.1' -# 1.50 is the last version to support Ruby 2.6 -gem 'rubocop', '~> 1.50.0', require: false -gem 'rubocop-packaging', '~> 0.5.2', require: false -gem 'rubocop-performance', '~> 1.9', require: false -# 2.20 is the last version to support Ruby 2.6 -gem 'rubocop-rspec', ['~> 2.20', '< 2.21'], require: false - gem 'simplecov' gem 'simplecov-cobertura', '~> 2.1.0' # Used by codecov @@ -52,6 +45,13 @@ group :check do gem 'rbs', '~> 3.7', require: false gem 'steep', '~> 1', '>= 1.9.1', require: false gem 'standard', require: false + + # 1.50 is the last version to support Ruby 2.6 + gem 'rubocop', '~> 1.50.0', require: false + gem 'rubocop-packaging', '~> 0.5.2', require: false + gem 'rubocop-performance', '~> 1.9', require: false + # 2.20 is the last version to support Ruby 2.6 + gem 'rubocop-rspec', ['~> 2.20', '< 2.21'], require: false end group :dev do diff --git a/ruby-3.4.gemfile b/ruby-3.4.gemfile index 09c61b74a50..0509cdc69ae 100644 --- a/ruby-3.4.gemfile +++ b/ruby-3.4.gemfile @@ -37,13 +37,6 @@ gem 'rspec-collection_matchers', '~> 1.1' gem 'rspec-wait', '~> 0' gem 'rspec_junit_formatter', '>= 0.5.1' -# 1.50 is the last version to support Ruby 2.6 -gem 'rubocop', '~> 1.50.0', require: false -gem 'rubocop-packaging', '~> 0.5.2', require: false -gem 'rubocop-performance', '~> 1.9', require: false -# 2.20 is the last version to support Ruby 2.6 -gem 'rubocop-rspec', ['~> 2.20', '< 2.21'], require: false - gem 'simplecov' gem 'simplecov-cobertura', '~> 2.1.0' # Used by codecov gem 'warning', '~> 1' # NOTE: Used in spec_helper.rb @@ -55,6 +48,13 @@ group :check do gem 'steep', '~> 1', '>= 1.9.1', require: false gem 'ruby_memcheck', '>= 3' gem 'standard', require: false + + # 1.50 is the last version to support Ruby 2.6 + gem 'rubocop', '~> 1.50.0', require: false + gem 'rubocop-packaging', '~> 0.5.2', require: false + gem 'rubocop-performance', '~> 1.9', require: false + # 2.20 is the last version to support Ruby 2.6 + gem 'rubocop-rspec', ['~> 2.20', '< 2.21'], require: false end group :dev do diff --git a/ruby-3.5.gemfile b/ruby-3.5.gemfile index e00703e4341..426a18b4b1d 100644 --- a/ruby-3.5.gemfile +++ b/ruby-3.5.gemfile @@ -37,13 +37,6 @@ gem 'rspec-collection_matchers', '~> 1.1' gem 'rspec-wait', '~> 0' gem 'rspec_junit_formatter', '>= 0.5.1' -# 1.50 is the last version to support Ruby 2.6 -gem 'rubocop', '~> 1.50.0', require: false -gem 'rubocop-packaging', '~> 0.5.2', require: false -gem 'rubocop-performance', '~> 1.9', require: false -# 2.20 is the last version to support Ruby 2.6 -gem 'rubocop-rspec', ['~> 2.20', '< 2.21'], require: false - gem 'simplecov' gem 'simplecov-cobertura', '~> 2.1.0' # Used by codecov @@ -56,6 +49,13 @@ group :check do gem 'steep', '~> 1', '>= 1.9.1', require: false gem 'ruby_memcheck', '>= 3' gem 'standard', require: false + + # 1.50 is the last version to support Ruby 2.6 + gem 'rubocop', '~> 1.50.0', require: false + gem 'rubocop-packaging', '~> 0.5.2', require: false + gem 'rubocop-performance', '~> 1.9', require: false + # 2.20 is the last version to support Ruby 2.6 + gem 'rubocop-rspec', ['~> 2.20', '< 2.21'], require: false end group :dev do From e3a23b31d9d2f01826a0854921cf87b53daab988 Mon Sep 17 00:00:00 2001 From: TonyCTHsu Date: Fri, 10 Jan 2025 14:35:51 +0000 Subject: [PATCH 128/161] =?UTF-8?q?[=F0=9F=A4=96]=20Lock=20Dependency:=20h?= =?UTF-8?q?ttps://github.com/DataDog/dd-trace-rb/actions/runs/12711409236?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- gemfiles/jruby_9.3_activesupport.gemfile | 4 -- gemfiles/jruby_9.3_activesupport.gemfile.lock | 36 ------------------ gemfiles/jruby_9.3_aws.gemfile | 4 -- gemfiles/jruby_9.3_aws.gemfile.lock | 37 ------------------- gemfiles/jruby_9.3_contrib.gemfile | 4 -- gemfiles/jruby_9.3_contrib.gemfile.lock | 37 ------------------- gemfiles/jruby_9.3_contrib_old.gemfile | 4 -- gemfiles/jruby_9.3_contrib_old.gemfile.lock | 37 ------------------- gemfiles/jruby_9.3_core_old.gemfile | 4 -- gemfiles/jruby_9.3_core_old.gemfile.lock | 37 ------------------- gemfiles/jruby_9.3_elasticsearch_7.gemfile | 4 -- .../jruby_9.3_elasticsearch_7.gemfile.lock | 37 ------------------- gemfiles/jruby_9.3_elasticsearch_8.gemfile | 4 -- .../jruby_9.3_elasticsearch_8.gemfile.lock | 37 ------------------- .../jruby_9.3_elasticsearch_latest.gemfile | 4 -- ...ruby_9.3_elasticsearch_latest.gemfile.lock | 37 ------------------- gemfiles/jruby_9.3_graphql_1.13.gemfile | 4 -- gemfiles/jruby_9.3_graphql_1.13.gemfile.lock | 36 ------------------ gemfiles/jruby_9.3_graphql_2.0.gemfile | 4 -- gemfiles/jruby_9.3_graphql_2.0.gemfile.lock | 36 ------------------ gemfiles/jruby_9.3_http.gemfile | 4 -- gemfiles/jruby_9.3_http.gemfile.lock | 37 ------------------- gemfiles/jruby_9.3_opensearch_2.gemfile | 4 -- gemfiles/jruby_9.3_opensearch_2.gemfile.lock | 37 ------------------- gemfiles/jruby_9.3_opensearch_3.gemfile | 4 -- gemfiles/jruby_9.3_opensearch_3.gemfile.lock | 37 ------------------- gemfiles/jruby_9.3_opensearch_latest.gemfile | 4 -- .../jruby_9.3_opensearch_latest.gemfile.lock | 37 ------------------- gemfiles/jruby_9.3_rack_1.gemfile | 4 -- gemfiles/jruby_9.3_rack_1.gemfile.lock | 37 ------------------- gemfiles/jruby_9.3_rack_2.gemfile | 4 -- gemfiles/jruby_9.3_rack_2.gemfile.lock | 37 ------------------- gemfiles/jruby_9.3_rack_3.gemfile | 4 -- gemfiles/jruby_9.3_rack_3.gemfile.lock | 37 ------------------- gemfiles/jruby_9.3_rack_latest.gemfile | 4 -- gemfiles/jruby_9.3_rack_latest.gemfile.lock | 37 ------------------- gemfiles/jruby_9.3_rails5_mysql2.gemfile | 4 -- gemfiles/jruby_9.3_rails5_mysql2.gemfile.lock | 36 ------------------ gemfiles/jruby_9.3_rails5_postgres.gemfile | 4 -- .../jruby_9.3_rails5_postgres.gemfile.lock | 36 ------------------ .../jruby_9.3_rails5_postgres_redis.gemfile | 4 -- ...uby_9.3_rails5_postgres_redis.gemfile.lock | 36 ------------------ ...ails5_postgres_redis_activesupport.gemfile | 4 -- ..._postgres_redis_activesupport.gemfile.lock | 36 ------------------ .../jruby_9.3_rails5_postgres_sidekiq.gemfile | 4 -- ...y_9.3_rails5_postgres_sidekiq.gemfile.lock | 36 ------------------ .../jruby_9.3_rails5_semantic_logger.gemfile | 4 -- ...by_9.3_rails5_semantic_logger.gemfile.lock | 36 ------------------ gemfiles/jruby_9.3_rails61_mysql2.gemfile | 4 -- .../jruby_9.3_rails61_mysql2.gemfile.lock | 36 ------------------ gemfiles/jruby_9.3_rails61_postgres.gemfile | 4 -- .../jruby_9.3_rails61_postgres.gemfile.lock | 36 ------------------ .../jruby_9.3_rails61_postgres_redis.gemfile | 4 -- ...by_9.3_rails61_postgres_redis.gemfile.lock | 36 ------------------ ...jruby_9.3_rails61_postgres_sidekiq.gemfile | 4 -- ..._9.3_rails61_postgres_sidekiq.gemfile.lock | 36 ------------------ .../jruby_9.3_rails61_semantic_logger.gemfile | 4 -- ...y_9.3_rails61_semantic_logger.gemfile.lock | 36 ------------------ gemfiles/jruby_9.3_rails6_mysql2.gemfile | 4 -- gemfiles/jruby_9.3_rails6_mysql2.gemfile.lock | 36 ------------------ gemfiles/jruby_9.3_rails6_postgres.gemfile | 4 -- .../jruby_9.3_rails6_postgres.gemfile.lock | 36 ------------------ .../jruby_9.3_rails6_postgres_redis.gemfile | 4 -- ...uby_9.3_rails6_postgres_redis.gemfile.lock | 36 ------------------ ...ails6_postgres_redis_activesupport.gemfile | 4 -- ..._postgres_redis_activesupport.gemfile.lock | 36 ------------------ .../jruby_9.3_rails6_postgres_sidekiq.gemfile | 4 -- ...y_9.3_rails6_postgres_sidekiq.gemfile.lock | 36 ------------------ .../jruby_9.3_rails6_semantic_logger.gemfile | 4 -- ...by_9.3_rails6_semantic_logger.gemfile.lock | 36 ------------------ gemfiles/jruby_9.3_rails_old_redis.gemfile | 4 -- gemfiles/jruby_9.3_redis_3.gemfile | 4 -- gemfiles/jruby_9.3_redis_3.gemfile.lock | 37 ------------------- gemfiles/jruby_9.3_redis_4.gemfile | 4 -- gemfiles/jruby_9.3_redis_4.gemfile.lock | 37 ------------------- gemfiles/jruby_9.3_redis_5.gemfile | 4 -- gemfiles/jruby_9.3_redis_5.gemfile.lock | 37 ------------------- gemfiles/jruby_9.3_relational_db.gemfile | 4 -- gemfiles/jruby_9.3_relational_db.gemfile.lock | 37 ------------------- gemfiles/jruby_9.3_resque2_redis3.gemfile | 4 -- .../jruby_9.3_resque2_redis3.gemfile.lock | 37 ------------------- gemfiles/jruby_9.3_resque2_redis4.gemfile | 4 -- .../jruby_9.3_resque2_redis4.gemfile.lock | 37 ------------------- gemfiles/jruby_9.3_sinatra_2.gemfile | 4 -- gemfiles/jruby_9.3_sinatra_2.gemfile.lock | 37 ------------------- gemfiles/jruby_9.3_sinatra_3.gemfile | 4 -- gemfiles/jruby_9.3_sinatra_3.gemfile.lock | 37 ------------------- gemfiles/jruby_9.3_stripe_10.gemfile | 4 -- gemfiles/jruby_9.3_stripe_10.gemfile.lock | 37 ------------------- gemfiles/jruby_9.3_stripe_11.gemfile | 4 -- gemfiles/jruby_9.3_stripe_11.gemfile.lock | 37 ------------------- gemfiles/jruby_9.3_stripe_12.gemfile | 4 -- gemfiles/jruby_9.3_stripe_12.gemfile.lock | 37 ------------------- gemfiles/jruby_9.3_stripe_7.gemfile | 4 -- gemfiles/jruby_9.3_stripe_7.gemfile.lock | 37 ------------------- gemfiles/jruby_9.3_stripe_8.gemfile | 4 -- gemfiles/jruby_9.3_stripe_8.gemfile.lock | 37 ------------------- gemfiles/jruby_9.3_stripe_9.gemfile | 4 -- gemfiles/jruby_9.3_stripe_9.gemfile.lock | 37 ------------------- gemfiles/jruby_9.3_stripe_latest.gemfile | 4 -- gemfiles/jruby_9.3_stripe_latest.gemfile.lock | 37 ------------------- gemfiles/jruby_9.3_stripe_min.gemfile | 4 -- gemfiles/jruby_9.3_stripe_min.gemfile.lock | 37 ------------------- gemfiles/jruby_9.4_activesupport.gemfile | 4 -- gemfiles/jruby_9.4_activesupport.gemfile.lock | 36 ------------------ gemfiles/jruby_9.4_aws.gemfile | 4 -- gemfiles/jruby_9.4_aws.gemfile.lock | 37 ------------------- gemfiles/jruby_9.4_contrib.gemfile | 4 -- gemfiles/jruby_9.4_contrib.gemfile.lock | 37 ------------------- gemfiles/jruby_9.4_contrib_old.gemfile | 4 -- gemfiles/jruby_9.4_contrib_old.gemfile.lock | 37 ------------------- gemfiles/jruby_9.4_core_old.gemfile | 4 -- gemfiles/jruby_9.4_core_old.gemfile.lock | 37 ------------------- gemfiles/jruby_9.4_elasticsearch_7.gemfile | 4 -- .../jruby_9.4_elasticsearch_7.gemfile.lock | 36 ------------------ gemfiles/jruby_9.4_elasticsearch_8.gemfile | 4 -- .../jruby_9.4_elasticsearch_8.gemfile.lock | 36 ------------------ .../jruby_9.4_elasticsearch_latest.gemfile | 4 -- ...ruby_9.4_elasticsearch_latest.gemfile.lock | 36 ------------------ gemfiles/jruby_9.4_graphql_1.13.gemfile | 4 -- gemfiles/jruby_9.4_graphql_1.13.gemfile.lock | 36 ------------------ gemfiles/jruby_9.4_graphql_2.0.gemfile | 4 -- gemfiles/jruby_9.4_graphql_2.0.gemfile.lock | 36 ------------------ gemfiles/jruby_9.4_graphql_2.1.gemfile | 4 -- gemfiles/jruby_9.4_graphql_2.1.gemfile.lock | 36 ------------------ gemfiles/jruby_9.4_graphql_2.2.gemfile | 4 -- gemfiles/jruby_9.4_graphql_2.2.gemfile.lock | 36 ------------------ gemfiles/jruby_9.4_graphql_2.3.gemfile | 4 -- gemfiles/jruby_9.4_graphql_2.3.gemfile.lock | 36 ------------------ gemfiles/jruby_9.4_http.gemfile | 4 -- gemfiles/jruby_9.4_http.gemfile.lock | 37 ------------------- gemfiles/jruby_9.4_opensearch_2.gemfile | 4 -- gemfiles/jruby_9.4_opensearch_2.gemfile.lock | 36 ------------------ gemfiles/jruby_9.4_opensearch_3.gemfile | 4 -- gemfiles/jruby_9.4_opensearch_3.gemfile.lock | 36 ------------------ gemfiles/jruby_9.4_opensearch_latest.gemfile | 4 -- .../jruby_9.4_opensearch_latest.gemfile.lock | 36 ------------------ gemfiles/jruby_9.4_rack_1.gemfile | 4 -- gemfiles/jruby_9.4_rack_1.gemfile.lock | 37 ------------------- gemfiles/jruby_9.4_rack_2.gemfile | 4 -- gemfiles/jruby_9.4_rack_2.gemfile.lock | 37 ------------------- gemfiles/jruby_9.4_rack_3.gemfile | 4 -- gemfiles/jruby_9.4_rack_3.gemfile.lock | 37 ------------------- gemfiles/jruby_9.4_rack_latest.gemfile | 4 -- gemfiles/jruby_9.4_rack_latest.gemfile.lock | 37 ------------------- gemfiles/jruby_9.4_rails61_mysql2.gemfile | 4 -- .../jruby_9.4_rails61_mysql2.gemfile.lock | 36 ------------------ gemfiles/jruby_9.4_rails61_postgres.gemfile | 4 -- .../jruby_9.4_rails61_postgres.gemfile.lock | 36 ------------------ .../jruby_9.4_rails61_postgres_redis.gemfile | 4 -- ...by_9.4_rails61_postgres_redis.gemfile.lock | 36 ------------------ ...jruby_9.4_rails61_postgres_sidekiq.gemfile | 4 -- ..._9.4_rails61_postgres_sidekiq.gemfile.lock | 36 ------------------ .../jruby_9.4_rails61_semantic_logger.gemfile | 4 -- ...y_9.4_rails61_semantic_logger.gemfile.lock | 36 ------------------ gemfiles/jruby_9.4_rails_old_redis.gemfile | 4 -- gemfiles/jruby_9.4_redis_3.gemfile | 4 -- gemfiles/jruby_9.4_redis_3.gemfile.lock | 37 ------------------- gemfiles/jruby_9.4_redis_4.gemfile | 4 -- gemfiles/jruby_9.4_redis_4.gemfile.lock | 37 ------------------- gemfiles/jruby_9.4_redis_5.gemfile | 4 -- gemfiles/jruby_9.4_redis_5.gemfile.lock | 37 ------------------- gemfiles/jruby_9.4_relational_db.gemfile | 4 -- gemfiles/jruby_9.4_relational_db.gemfile.lock | 37 ------------------- gemfiles/jruby_9.4_resque2_redis3.gemfile | 4 -- .../jruby_9.4_resque2_redis3.gemfile.lock | 37 ------------------- gemfiles/jruby_9.4_resque2_redis4.gemfile | 4 -- .../jruby_9.4_resque2_redis4.gemfile.lock | 37 ------------------- gemfiles/jruby_9.4_sinatra_2.gemfile | 4 -- gemfiles/jruby_9.4_sinatra_2.gemfile.lock | 37 ------------------- gemfiles/jruby_9.4_sinatra_3.gemfile | 4 -- gemfiles/jruby_9.4_sinatra_3.gemfile.lock | 37 ------------------- gemfiles/jruby_9.4_sinatra_4.gemfile | 4 -- gemfiles/jruby_9.4_sinatra_4.gemfile.lock | 37 ------------------- gemfiles/jruby_9.4_stripe_10.gemfile | 4 -- gemfiles/jruby_9.4_stripe_10.gemfile.lock | 37 ------------------- gemfiles/jruby_9.4_stripe_11.gemfile | 4 -- gemfiles/jruby_9.4_stripe_11.gemfile.lock | 37 ------------------- gemfiles/jruby_9.4_stripe_12.gemfile | 4 -- gemfiles/jruby_9.4_stripe_12.gemfile.lock | 37 ------------------- gemfiles/jruby_9.4_stripe_7.gemfile | 4 -- gemfiles/jruby_9.4_stripe_7.gemfile.lock | 37 ------------------- gemfiles/jruby_9.4_stripe_8.gemfile | 4 -- gemfiles/jruby_9.4_stripe_8.gemfile.lock | 37 ------------------- gemfiles/jruby_9.4_stripe_9.gemfile | 4 -- gemfiles/jruby_9.4_stripe_9.gemfile.lock | 37 ------------------- gemfiles/jruby_9.4_stripe_latest.gemfile | 4 -- gemfiles/jruby_9.4_stripe_latest.gemfile.lock | 37 ------------------- gemfiles/jruby_9.4_stripe_min.gemfile | 4 -- gemfiles/jruby_9.4_stripe_min.gemfile.lock | 37 ------------------- gemfiles/ruby_2.6_activesupport.gemfile | 4 -- gemfiles/ruby_2.6_activesupport.gemfile.lock | 36 ------------------ gemfiles/ruby_2.6_aws.gemfile | 4 -- gemfiles/ruby_2.6_aws.gemfile.lock | 37 ------------------- gemfiles/ruby_2.6_contrib.gemfile | 4 -- gemfiles/ruby_2.6_contrib.gemfile.lock | 35 ------------------ gemfiles/ruby_2.6_contrib_old.gemfile | 4 -- gemfiles/ruby_2.6_contrib_old.gemfile.lock | 35 ------------------ gemfiles/ruby_2.6_core_old.gemfile | 4 -- gemfiles/ruby_2.6_core_old.gemfile.lock | 35 ------------------ gemfiles/ruby_2.6_elasticsearch_7.gemfile | 4 -- .../ruby_2.6_elasticsearch_7.gemfile.lock | 37 ------------------- gemfiles/ruby_2.6_elasticsearch_8.gemfile | 4 -- .../ruby_2.6_elasticsearch_8.gemfile.lock | 37 ------------------- .../ruby_2.6_elasticsearch_latest.gemfile | 4 -- ...ruby_2.6_elasticsearch_latest.gemfile.lock | 37 ------------------- gemfiles/ruby_2.6_graphql_1.13.gemfile | 4 -- gemfiles/ruby_2.6_graphql_1.13.gemfile.lock | 36 ------------------ gemfiles/ruby_2.6_graphql_2.0.gemfile | 4 -- gemfiles/ruby_2.6_graphql_2.0.gemfile.lock | 36 ------------------ gemfiles/ruby_2.6_hanami_1.gemfile | 4 -- gemfiles/ruby_2.6_hanami_1.gemfile.lock | 35 ------------------ gemfiles/ruby_2.6_http.gemfile | 4 -- gemfiles/ruby_2.6_http.gemfile.lock | 37 ------------------- gemfiles/ruby_2.6_opensearch_2.gemfile | 4 -- gemfiles/ruby_2.6_opensearch_2.gemfile.lock | 37 ------------------- gemfiles/ruby_2.6_opensearch_3.gemfile | 4 -- gemfiles/ruby_2.6_opensearch_3.gemfile.lock | 37 ------------------- gemfiles/ruby_2.6_opensearch_latest.gemfile | 4 -- .../ruby_2.6_opensearch_latest.gemfile.lock | 37 ------------------- gemfiles/ruby_2.6_opentelemetry.gemfile | 4 -- gemfiles/ruby_2.6_opentelemetry.gemfile.lock | 35 ------------------ gemfiles/ruby_2.6_opentelemetry_otlp.gemfile | 4 -- .../ruby_2.6_opentelemetry_otlp.gemfile.lock | 37 ------------------- gemfiles/ruby_2.6_rack_1.gemfile | 4 -- gemfiles/ruby_2.6_rack_1.gemfile.lock | 37 ------------------- gemfiles/ruby_2.6_rack_2.gemfile | 4 -- gemfiles/ruby_2.6_rack_2.gemfile.lock | 37 ------------------- gemfiles/ruby_2.6_rack_3.gemfile | 4 -- gemfiles/ruby_2.6_rack_3.gemfile.lock | 37 ------------------- gemfiles/ruby_2.6_rack_latest.gemfile | 4 -- gemfiles/ruby_2.6_rack_latest.gemfile.lock | 37 ------------------- gemfiles/ruby_2.6_rails5_mysql2.gemfile | 4 -- gemfiles/ruby_2.6_rails5_mysql2.gemfile.lock | 35 ------------------ gemfiles/ruby_2.6_rails5_postgres.gemfile | 4 -- .../ruby_2.6_rails5_postgres.gemfile.lock | 35 ------------------ .../ruby_2.6_rails5_postgres_redis.gemfile | 4 -- ...uby_2.6_rails5_postgres_redis.gemfile.lock | 35 ------------------ ...ails5_postgres_redis_activesupport.gemfile | 4 -- ..._postgres_redis_activesupport.gemfile.lock | 35 ------------------ .../ruby_2.6_rails5_postgres_sidekiq.gemfile | 4 -- ...y_2.6_rails5_postgres_sidekiq.gemfile.lock | 35 ------------------ .../ruby_2.6_rails5_semantic_logger.gemfile | 4 -- ...by_2.6_rails5_semantic_logger.gemfile.lock | 35 ------------------ gemfiles/ruby_2.6_rails61_mysql2.gemfile | 4 -- gemfiles/ruby_2.6_rails61_mysql2.gemfile.lock | 35 ------------------ gemfiles/ruby_2.6_rails61_postgres.gemfile | 4 -- .../ruby_2.6_rails61_postgres.gemfile.lock | 35 ------------------ .../ruby_2.6_rails61_postgres_redis.gemfile | 4 -- ...by_2.6_rails61_postgres_redis.gemfile.lock | 35 ------------------ .../ruby_2.6_rails61_postgres_sidekiq.gemfile | 4 -- ..._2.6_rails61_postgres_sidekiq.gemfile.lock | 35 ------------------ .../ruby_2.6_rails61_semantic_logger.gemfile | 4 -- ...y_2.6_rails61_semantic_logger.gemfile.lock | 35 ------------------ gemfiles/ruby_2.6_rails6_mysql2.gemfile | 4 -- gemfiles/ruby_2.6_rails6_mysql2.gemfile.lock | 35 ------------------ gemfiles/ruby_2.6_rails6_postgres.gemfile | 4 -- .../ruby_2.6_rails6_postgres.gemfile.lock | 35 ------------------ .../ruby_2.6_rails6_postgres_redis.gemfile | 4 -- ...uby_2.6_rails6_postgres_redis.gemfile.lock | 35 ------------------ ...ails6_postgres_redis_activesupport.gemfile | 4 -- ..._postgres_redis_activesupport.gemfile.lock | 35 ------------------ .../ruby_2.6_rails6_postgres_sidekiq.gemfile | 4 -- ...y_2.6_rails6_postgres_sidekiq.gemfile.lock | 35 ------------------ .../ruby_2.6_rails6_semantic_logger.gemfile | 4 -- ...by_2.6_rails6_semantic_logger.gemfile.lock | 35 ------------------ gemfiles/ruby_2.6_rails_old_redis.gemfile | 4 -- gemfiles/ruby_2.6_redis_3.gemfile | 4 -- gemfiles/ruby_2.6_redis_3.gemfile.lock | 35 ------------------ gemfiles/ruby_2.6_redis_4.gemfile | 4 -- gemfiles/ruby_2.6_redis_4.gemfile.lock | 35 ------------------ gemfiles/ruby_2.6_redis_5.gemfile | 4 -- gemfiles/ruby_2.6_redis_5.gemfile.lock | 35 ------------------ gemfiles/ruby_2.6_relational_db.gemfile | 4 -- gemfiles/ruby_2.6_relational_db.gemfile.lock | 37 ------------------- gemfiles/ruby_2.6_resque2_redis3.gemfile | 4 -- gemfiles/ruby_2.6_resque2_redis3.gemfile.lock | 35 ------------------ gemfiles/ruby_2.6_resque2_redis4.gemfile | 4 -- gemfiles/ruby_2.6_resque2_redis4.gemfile.lock | 35 ------------------ gemfiles/ruby_2.6_sinatra_2.gemfile | 4 -- gemfiles/ruby_2.6_sinatra_2.gemfile.lock | 37 ------------------- gemfiles/ruby_2.6_sinatra_3.gemfile | 4 -- gemfiles/ruby_2.6_sinatra_3.gemfile.lock | 37 ------------------- gemfiles/ruby_2.6_stripe_10.gemfile | 4 -- gemfiles/ruby_2.6_stripe_10.gemfile.lock | 37 ------------------- gemfiles/ruby_2.6_stripe_11.gemfile | 4 -- gemfiles/ruby_2.6_stripe_11.gemfile.lock | 37 ------------------- gemfiles/ruby_2.6_stripe_12.gemfile | 4 -- gemfiles/ruby_2.6_stripe_12.gemfile.lock | 37 ------------------- gemfiles/ruby_2.6_stripe_7.gemfile | 4 -- gemfiles/ruby_2.6_stripe_7.gemfile.lock | 37 ------------------- gemfiles/ruby_2.6_stripe_8.gemfile | 4 -- gemfiles/ruby_2.6_stripe_8.gemfile.lock | 37 ------------------- gemfiles/ruby_2.6_stripe_9.gemfile | 4 -- gemfiles/ruby_2.6_stripe_9.gemfile.lock | 37 ------------------- gemfiles/ruby_2.6_stripe_latest.gemfile | 4 -- gemfiles/ruby_2.6_stripe_latest.gemfile.lock | 37 ------------------- gemfiles/ruby_2.6_stripe_min.gemfile | 4 -- gemfiles/ruby_2.6_stripe_min.gemfile.lock | 37 ------------------- gemfiles/ruby_2.7_activesupport.gemfile | 4 -- gemfiles/ruby_2.7_activesupport.gemfile.lock | 36 ------------------ gemfiles/ruby_2.7_aws.gemfile | 4 -- gemfiles/ruby_2.7_aws.gemfile.lock | 37 ------------------- gemfiles/ruby_2.7_contrib.gemfile | 4 -- gemfiles/ruby_2.7_contrib.gemfile.lock | 35 ------------------ gemfiles/ruby_2.7_contrib_old.gemfile | 4 -- gemfiles/ruby_2.7_contrib_old.gemfile.lock | 35 ------------------ gemfiles/ruby_2.7_core_old.gemfile | 4 -- gemfiles/ruby_2.7_core_old.gemfile.lock | 35 ------------------ gemfiles/ruby_2.7_elasticsearch_7.gemfile | 4 -- .../ruby_2.7_elasticsearch_7.gemfile.lock | 37 ------------------- gemfiles/ruby_2.7_elasticsearch_8.gemfile | 4 -- .../ruby_2.7_elasticsearch_8.gemfile.lock | 37 ------------------- .../ruby_2.7_elasticsearch_latest.gemfile | 4 -- ...ruby_2.7_elasticsearch_latest.gemfile.lock | 37 ------------------- gemfiles/ruby_2.7_graphql_1.13.gemfile | 4 -- gemfiles/ruby_2.7_graphql_1.13.gemfile.lock | 36 ------------------ gemfiles/ruby_2.7_graphql_2.0.gemfile | 4 -- gemfiles/ruby_2.7_graphql_2.0.gemfile.lock | 36 ------------------ gemfiles/ruby_2.7_graphql_2.1.gemfile | 4 -- gemfiles/ruby_2.7_graphql_2.1.gemfile.lock | 36 ------------------ gemfiles/ruby_2.7_graphql_2.2.gemfile | 4 -- gemfiles/ruby_2.7_graphql_2.2.gemfile.lock | 36 ------------------ gemfiles/ruby_2.7_graphql_2.3.gemfile | 4 -- gemfiles/ruby_2.7_graphql_2.3.gemfile.lock | 36 ------------------ gemfiles/ruby_2.7_hanami_1.gemfile | 4 -- gemfiles/ruby_2.7_hanami_1.gemfile.lock | 35 ------------------ gemfiles/ruby_2.7_http.gemfile | 4 -- gemfiles/ruby_2.7_http.gemfile.lock | 37 ------------------- gemfiles/ruby_2.7_opensearch_2.gemfile | 4 -- gemfiles/ruby_2.7_opensearch_2.gemfile.lock | 37 ------------------- gemfiles/ruby_2.7_opensearch_3.gemfile | 4 -- gemfiles/ruby_2.7_opensearch_3.gemfile.lock | 37 ------------------- gemfiles/ruby_2.7_opensearch_latest.gemfile | 4 -- .../ruby_2.7_opensearch_latest.gemfile.lock | 37 ------------------- gemfiles/ruby_2.7_opentelemetry.gemfile | 4 -- gemfiles/ruby_2.7_opentelemetry.gemfile.lock | 35 ------------------ gemfiles/ruby_2.7_opentelemetry_otlp.gemfile | 4 -- .../ruby_2.7_opentelemetry_otlp.gemfile.lock | 37 ------------------- gemfiles/ruby_2.7_rack_1.gemfile | 4 -- gemfiles/ruby_2.7_rack_1.gemfile.lock | 37 ------------------- gemfiles/ruby_2.7_rack_2.gemfile | 4 -- gemfiles/ruby_2.7_rack_2.gemfile.lock | 37 ------------------- gemfiles/ruby_2.7_rack_3.gemfile | 4 -- gemfiles/ruby_2.7_rack_3.gemfile.lock | 37 ------------------- gemfiles/ruby_2.7_rack_latest.gemfile | 4 -- gemfiles/ruby_2.7_rack_latest.gemfile.lock | 37 ------------------- gemfiles/ruby_2.7_rails5_mysql2.gemfile | 4 -- gemfiles/ruby_2.7_rails5_mysql2.gemfile.lock | 35 ------------------ gemfiles/ruby_2.7_rails5_postgres.gemfile | 4 -- .../ruby_2.7_rails5_postgres.gemfile.lock | 35 ------------------ .../ruby_2.7_rails5_postgres_redis.gemfile | 4 -- ...uby_2.7_rails5_postgres_redis.gemfile.lock | 35 ------------------ ...ails5_postgres_redis_activesupport.gemfile | 4 -- ..._postgres_redis_activesupport.gemfile.lock | 35 ------------------ .../ruby_2.7_rails5_postgres_sidekiq.gemfile | 4 -- ...y_2.7_rails5_postgres_sidekiq.gemfile.lock | 35 ------------------ .../ruby_2.7_rails5_semantic_logger.gemfile | 4 -- ...by_2.7_rails5_semantic_logger.gemfile.lock | 35 ------------------ gemfiles/ruby_2.7_rails61_mysql2.gemfile | 4 -- gemfiles/ruby_2.7_rails61_mysql2.gemfile.lock | 35 ------------------ gemfiles/ruby_2.7_rails61_postgres.gemfile | 4 -- .../ruby_2.7_rails61_postgres.gemfile.lock | 35 ------------------ .../ruby_2.7_rails61_postgres_redis.gemfile | 4 -- ...by_2.7_rails61_postgres_redis.gemfile.lock | 35 ------------------ .../ruby_2.7_rails61_postgres_sidekiq.gemfile | 4 -- ..._2.7_rails61_postgres_sidekiq.gemfile.lock | 35 ------------------ .../ruby_2.7_rails61_semantic_logger.gemfile | 4 -- ...y_2.7_rails61_semantic_logger.gemfile.lock | 35 ------------------ gemfiles/ruby_2.7_rails6_mysql2.gemfile | 4 -- gemfiles/ruby_2.7_rails6_mysql2.gemfile.lock | 35 ------------------ gemfiles/ruby_2.7_rails6_postgres.gemfile | 4 -- .../ruby_2.7_rails6_postgres.gemfile.lock | 35 ------------------ .../ruby_2.7_rails6_postgres_redis.gemfile | 4 -- ...uby_2.7_rails6_postgres_redis.gemfile.lock | 35 ------------------ ...ails6_postgres_redis_activesupport.gemfile | 4 -- ..._postgres_redis_activesupport.gemfile.lock | 35 ------------------ .../ruby_2.7_rails6_postgres_sidekiq.gemfile | 4 -- ...y_2.7_rails6_postgres_sidekiq.gemfile.lock | 35 ------------------ .../ruby_2.7_rails6_semantic_logger.gemfile | 4 -- ...by_2.7_rails6_semantic_logger.gemfile.lock | 35 ------------------ gemfiles/ruby_2.7_rails_old_redis.gemfile | 4 -- gemfiles/ruby_2.7_redis_3.gemfile | 4 -- gemfiles/ruby_2.7_redis_3.gemfile.lock | 35 ------------------ gemfiles/ruby_2.7_redis_4.gemfile | 4 -- gemfiles/ruby_2.7_redis_4.gemfile.lock | 35 ------------------ gemfiles/ruby_2.7_redis_5.gemfile | 4 -- gemfiles/ruby_2.7_redis_5.gemfile.lock | 35 ------------------ gemfiles/ruby_2.7_relational_db.gemfile | 4 -- gemfiles/ruby_2.7_relational_db.gemfile.lock | 37 ------------------- gemfiles/ruby_2.7_resque2_redis3.gemfile | 4 -- gemfiles/ruby_2.7_resque2_redis3.gemfile.lock | 35 ------------------ gemfiles/ruby_2.7_resque2_redis4.gemfile | 4 -- gemfiles/ruby_2.7_resque2_redis4.gemfile.lock | 35 ------------------ gemfiles/ruby_2.7_sinatra_2.gemfile | 4 -- gemfiles/ruby_2.7_sinatra_2.gemfile.lock | 37 ------------------- gemfiles/ruby_2.7_sinatra_3.gemfile | 4 -- gemfiles/ruby_2.7_sinatra_3.gemfile.lock | 37 ------------------- gemfiles/ruby_2.7_stripe_10.gemfile | 4 -- gemfiles/ruby_2.7_stripe_10.gemfile.lock | 37 ------------------- gemfiles/ruby_2.7_stripe_11.gemfile | 4 -- gemfiles/ruby_2.7_stripe_11.gemfile.lock | 37 ------------------- gemfiles/ruby_2.7_stripe_12.gemfile | 4 -- gemfiles/ruby_2.7_stripe_12.gemfile.lock | 37 ------------------- gemfiles/ruby_2.7_stripe_7.gemfile | 4 -- gemfiles/ruby_2.7_stripe_7.gemfile.lock | 37 ------------------- gemfiles/ruby_2.7_stripe_8.gemfile | 4 -- gemfiles/ruby_2.7_stripe_8.gemfile.lock | 37 ------------------- gemfiles/ruby_2.7_stripe_9.gemfile | 4 -- gemfiles/ruby_2.7_stripe_9.gemfile.lock | 37 ------------------- gemfiles/ruby_2.7_stripe_latest.gemfile | 4 -- gemfiles/ruby_2.7_stripe_latest.gemfile.lock | 37 ------------------- gemfiles/ruby_2.7_stripe_min.gemfile | 4 -- gemfiles/ruby_2.7_stripe_min.gemfile.lock | 37 ------------------- gemfiles/ruby_3.0_activesupport.gemfile | 4 -- gemfiles/ruby_3.0_activesupport.gemfile.lock | 36 ------------------ gemfiles/ruby_3.0_aws.gemfile | 4 -- gemfiles/ruby_3.0_aws.gemfile.lock | 37 ------------------- gemfiles/ruby_3.0_contrib.gemfile | 4 -- gemfiles/ruby_3.0_contrib.gemfile.lock | 35 ------------------ gemfiles/ruby_3.0_contrib_old.gemfile | 4 -- gemfiles/ruby_3.0_contrib_old.gemfile.lock | 35 ------------------ gemfiles/ruby_3.0_core_old.gemfile | 4 -- gemfiles/ruby_3.0_core_old.gemfile.lock | 35 ------------------ gemfiles/ruby_3.0_elasticsearch_7.gemfile | 4 -- .../ruby_3.0_elasticsearch_7.gemfile.lock | 36 ------------------ gemfiles/ruby_3.0_elasticsearch_8.gemfile | 4 -- .../ruby_3.0_elasticsearch_8.gemfile.lock | 36 ------------------ .../ruby_3.0_elasticsearch_latest.gemfile | 4 -- ...ruby_3.0_elasticsearch_latest.gemfile.lock | 36 ------------------ gemfiles/ruby_3.0_graphql_1.13.gemfile | 4 -- gemfiles/ruby_3.0_graphql_1.13.gemfile.lock | 36 ------------------ gemfiles/ruby_3.0_graphql_2.0.gemfile | 4 -- gemfiles/ruby_3.0_graphql_2.0.gemfile.lock | 36 ------------------ gemfiles/ruby_3.0_graphql_2.1.gemfile | 4 -- gemfiles/ruby_3.0_graphql_2.1.gemfile.lock | 36 ------------------ gemfiles/ruby_3.0_graphql_2.2.gemfile | 4 -- gemfiles/ruby_3.0_graphql_2.2.gemfile.lock | 36 ------------------ gemfiles/ruby_3.0_graphql_2.3.gemfile | 4 -- gemfiles/ruby_3.0_graphql_2.3.gemfile.lock | 36 ------------------ gemfiles/ruby_3.0_http.gemfile | 4 -- gemfiles/ruby_3.0_http.gemfile.lock | 37 ------------------- gemfiles/ruby_3.0_opensearch_2.gemfile | 4 -- gemfiles/ruby_3.0_opensearch_2.gemfile.lock | 36 ------------------ gemfiles/ruby_3.0_opensearch_3.gemfile | 4 -- gemfiles/ruby_3.0_opensearch_3.gemfile.lock | 36 ------------------ gemfiles/ruby_3.0_opensearch_latest.gemfile | 4 -- .../ruby_3.0_opensearch_latest.gemfile.lock | 36 ------------------ gemfiles/ruby_3.0_opentelemetry.gemfile | 4 -- gemfiles/ruby_3.0_opentelemetry.gemfile.lock | 35 ------------------ gemfiles/ruby_3.0_opentelemetry_otlp.gemfile | 4 -- .../ruby_3.0_opentelemetry_otlp.gemfile.lock | 37 ------------------- gemfiles/ruby_3.0_rack_1.gemfile | 4 -- gemfiles/ruby_3.0_rack_1.gemfile.lock | 37 ------------------- gemfiles/ruby_3.0_rack_2.gemfile | 4 -- gemfiles/ruby_3.0_rack_2.gemfile.lock | 37 ------------------- gemfiles/ruby_3.0_rack_3.gemfile | 4 -- gemfiles/ruby_3.0_rack_3.gemfile.lock | 37 ------------------- gemfiles/ruby_3.0_rack_latest.gemfile | 4 -- gemfiles/ruby_3.0_rack_latest.gemfile.lock | 37 ------------------- gemfiles/ruby_3.0_rails61_mysql2.gemfile | 4 -- gemfiles/ruby_3.0_rails61_mysql2.gemfile.lock | 35 ------------------ gemfiles/ruby_3.0_rails61_postgres.gemfile | 4 -- .../ruby_3.0_rails61_postgres.gemfile.lock | 35 ------------------ .../ruby_3.0_rails61_postgres_redis.gemfile | 4 -- ...by_3.0_rails61_postgres_redis.gemfile.lock | 35 ------------------ .../ruby_3.0_rails61_postgres_sidekiq.gemfile | 4 -- ..._3.0_rails61_postgres_sidekiq.gemfile.lock | 35 ------------------ .../ruby_3.0_rails61_semantic_logger.gemfile | 4 -- ...y_3.0_rails61_semantic_logger.gemfile.lock | 35 ------------------ gemfiles/ruby_3.0_rails61_trilogy.gemfile | 4 -- .../ruby_3.0_rails61_trilogy.gemfile.lock | 36 ------------------ gemfiles/ruby_3.0_rails7.gemfile | 4 -- gemfiles/ruby_3.0_rails7.gemfile.lock | 36 ------------------ gemfiles/ruby_3.0_rails71.gemfile | 4 -- gemfiles/ruby_3.0_rails71.gemfile.lock | 36 ------------------ gemfiles/ruby_3.0_rails_old_redis.gemfile | 4 -- gemfiles/ruby_3.0_redis_3.gemfile | 4 -- gemfiles/ruby_3.0_redis_3.gemfile.lock | 35 ------------------ gemfiles/ruby_3.0_redis_4.gemfile | 4 -- gemfiles/ruby_3.0_redis_4.gemfile.lock | 35 ------------------ gemfiles/ruby_3.0_redis_5.gemfile | 4 -- gemfiles/ruby_3.0_redis_5.gemfile.lock | 35 ------------------ gemfiles/ruby_3.0_relational_db.gemfile | 4 -- gemfiles/ruby_3.0_relational_db.gemfile.lock | 37 ------------------- gemfiles/ruby_3.0_resque2_redis3.gemfile | 4 -- gemfiles/ruby_3.0_resque2_redis3.gemfile.lock | 35 ------------------ gemfiles/ruby_3.0_resque2_redis4.gemfile | 4 -- gemfiles/ruby_3.0_resque2_redis4.gemfile.lock | 35 ------------------ gemfiles/ruby_3.0_sinatra_2.gemfile | 4 -- gemfiles/ruby_3.0_sinatra_2.gemfile.lock | 37 ------------------- gemfiles/ruby_3.0_sinatra_3.gemfile | 4 -- gemfiles/ruby_3.0_sinatra_3.gemfile.lock | 37 ------------------- gemfiles/ruby_3.0_sinatra_4.gemfile | 4 -- gemfiles/ruby_3.0_sinatra_4.gemfile.lock | 37 ------------------- gemfiles/ruby_3.0_stripe_10.gemfile | 4 -- gemfiles/ruby_3.0_stripe_10.gemfile.lock | 37 ------------------- gemfiles/ruby_3.0_stripe_11.gemfile | 4 -- gemfiles/ruby_3.0_stripe_11.gemfile.lock | 37 ------------------- gemfiles/ruby_3.0_stripe_12.gemfile | 4 -- gemfiles/ruby_3.0_stripe_12.gemfile.lock | 37 ------------------- gemfiles/ruby_3.0_stripe_7.gemfile | 4 -- gemfiles/ruby_3.0_stripe_7.gemfile.lock | 37 ------------------- gemfiles/ruby_3.0_stripe_8.gemfile | 4 -- gemfiles/ruby_3.0_stripe_8.gemfile.lock | 37 ------------------- gemfiles/ruby_3.0_stripe_9.gemfile | 4 -- gemfiles/ruby_3.0_stripe_9.gemfile.lock | 37 ------------------- gemfiles/ruby_3.0_stripe_latest.gemfile | 4 -- gemfiles/ruby_3.0_stripe_latest.gemfile.lock | 37 ------------------- gemfiles/ruby_3.0_stripe_min.gemfile | 4 -- gemfiles/ruby_3.0_stripe_min.gemfile.lock | 37 ------------------- gemfiles/ruby_3.1_activesupport.gemfile | 4 -- gemfiles/ruby_3.1_activesupport.gemfile.lock | 36 ------------------ gemfiles/ruby_3.1_aws.gemfile | 4 -- gemfiles/ruby_3.1_aws.gemfile.lock | 37 ------------------- gemfiles/ruby_3.1_contrib.gemfile | 4 -- gemfiles/ruby_3.1_contrib.gemfile.lock | 35 ------------------ gemfiles/ruby_3.1_contrib_old.gemfile | 4 -- gemfiles/ruby_3.1_contrib_old.gemfile.lock | 35 ------------------ gemfiles/ruby_3.1_core_old.gemfile | 4 -- gemfiles/ruby_3.1_core_old.gemfile.lock | 35 ------------------ gemfiles/ruby_3.1_elasticsearch_7.gemfile | 4 -- .../ruby_3.1_elasticsearch_7.gemfile.lock | 36 ------------------ gemfiles/ruby_3.1_elasticsearch_8.gemfile | 4 -- .../ruby_3.1_elasticsearch_8.gemfile.lock | 36 ------------------ .../ruby_3.1_elasticsearch_latest.gemfile | 4 -- ...ruby_3.1_elasticsearch_latest.gemfile.lock | 36 ------------------ gemfiles/ruby_3.1_graphql_1.13.gemfile | 4 -- gemfiles/ruby_3.1_graphql_1.13.gemfile.lock | 36 ------------------ gemfiles/ruby_3.1_graphql_2.0.gemfile | 4 -- gemfiles/ruby_3.1_graphql_2.0.gemfile.lock | 36 ------------------ gemfiles/ruby_3.1_graphql_2.1.gemfile | 4 -- gemfiles/ruby_3.1_graphql_2.1.gemfile.lock | 36 ------------------ gemfiles/ruby_3.1_graphql_2.2.gemfile | 4 -- gemfiles/ruby_3.1_graphql_2.2.gemfile.lock | 36 ------------------ gemfiles/ruby_3.1_graphql_2.3.gemfile | 4 -- gemfiles/ruby_3.1_graphql_2.3.gemfile.lock | 36 ------------------ gemfiles/ruby_3.1_http.gemfile | 4 -- gemfiles/ruby_3.1_http.gemfile.lock | 37 ------------------- gemfiles/ruby_3.1_opensearch_2.gemfile | 4 -- gemfiles/ruby_3.1_opensearch_2.gemfile.lock | 36 ------------------ gemfiles/ruby_3.1_opensearch_3.gemfile | 4 -- gemfiles/ruby_3.1_opensearch_3.gemfile.lock | 36 ------------------ gemfiles/ruby_3.1_opensearch_latest.gemfile | 4 -- .../ruby_3.1_opensearch_latest.gemfile.lock | 36 ------------------ gemfiles/ruby_3.1_opentelemetry.gemfile | 4 -- gemfiles/ruby_3.1_opentelemetry.gemfile.lock | 35 ------------------ gemfiles/ruby_3.1_opentelemetry_otlp.gemfile | 4 -- .../ruby_3.1_opentelemetry_otlp.gemfile.lock | 37 ------------------- gemfiles/ruby_3.1_rack_1.gemfile | 4 -- gemfiles/ruby_3.1_rack_1.gemfile.lock | 37 ------------------- gemfiles/ruby_3.1_rack_2.gemfile | 4 -- gemfiles/ruby_3.1_rack_2.gemfile.lock | 37 ------------------- gemfiles/ruby_3.1_rack_3.gemfile | 4 -- gemfiles/ruby_3.1_rack_3.gemfile.lock | 37 ------------------- gemfiles/ruby_3.1_rack_latest.gemfile | 4 -- gemfiles/ruby_3.1_rack_latest.gemfile.lock | 37 ------------------- gemfiles/ruby_3.1_rails61_mysql2.gemfile | 4 -- gemfiles/ruby_3.1_rails61_mysql2.gemfile.lock | 35 ------------------ gemfiles/ruby_3.1_rails61_postgres.gemfile | 4 -- .../ruby_3.1_rails61_postgres.gemfile.lock | 35 ------------------ .../ruby_3.1_rails61_postgres_redis.gemfile | 4 -- ...by_3.1_rails61_postgres_redis.gemfile.lock | 35 ------------------ .../ruby_3.1_rails61_postgres_sidekiq.gemfile | 4 -- ..._3.1_rails61_postgres_sidekiq.gemfile.lock | 35 ------------------ .../ruby_3.1_rails61_semantic_logger.gemfile | 4 -- ...y_3.1_rails61_semantic_logger.gemfile.lock | 35 ------------------ gemfiles/ruby_3.1_rails61_trilogy.gemfile | 4 -- .../ruby_3.1_rails61_trilogy.gemfile.lock | 36 ------------------ gemfiles/ruby_3.1_rails7.gemfile | 4 -- gemfiles/ruby_3.1_rails7.gemfile.lock | 36 ------------------ gemfiles/ruby_3.1_rails71.gemfile | 4 -- gemfiles/ruby_3.1_rails71.gemfile.lock | 36 ------------------ gemfiles/ruby_3.1_rails_old_redis.gemfile | 4 -- gemfiles/ruby_3.1_redis_3.gemfile | 4 -- gemfiles/ruby_3.1_redis_3.gemfile.lock | 35 ------------------ gemfiles/ruby_3.1_redis_4.gemfile | 4 -- gemfiles/ruby_3.1_redis_4.gemfile.lock | 35 ------------------ gemfiles/ruby_3.1_redis_5.gemfile | 4 -- gemfiles/ruby_3.1_redis_5.gemfile.lock | 35 ------------------ gemfiles/ruby_3.1_relational_db.gemfile | 4 -- gemfiles/ruby_3.1_relational_db.gemfile.lock | 37 ------------------- gemfiles/ruby_3.1_resque2_redis3.gemfile | 4 -- gemfiles/ruby_3.1_resque2_redis3.gemfile.lock | 35 ------------------ gemfiles/ruby_3.1_resque2_redis4.gemfile | 4 -- gemfiles/ruby_3.1_resque2_redis4.gemfile.lock | 35 ------------------ gemfiles/ruby_3.1_sinatra_2.gemfile | 4 -- gemfiles/ruby_3.1_sinatra_2.gemfile.lock | 37 ------------------- gemfiles/ruby_3.1_sinatra_3.gemfile | 4 -- gemfiles/ruby_3.1_sinatra_3.gemfile.lock | 37 ------------------- gemfiles/ruby_3.1_sinatra_4.gemfile | 4 -- gemfiles/ruby_3.1_sinatra_4.gemfile.lock | 37 ------------------- gemfiles/ruby_3.1_stripe_10.gemfile | 4 -- gemfiles/ruby_3.1_stripe_10.gemfile.lock | 37 ------------------- gemfiles/ruby_3.1_stripe_11.gemfile | 4 -- gemfiles/ruby_3.1_stripe_11.gemfile.lock | 37 ------------------- gemfiles/ruby_3.1_stripe_12.gemfile | 4 -- gemfiles/ruby_3.1_stripe_12.gemfile.lock | 37 ------------------- gemfiles/ruby_3.1_stripe_7.gemfile | 4 -- gemfiles/ruby_3.1_stripe_7.gemfile.lock | 37 ------------------- gemfiles/ruby_3.1_stripe_8.gemfile | 4 -- gemfiles/ruby_3.1_stripe_8.gemfile.lock | 37 ------------------- gemfiles/ruby_3.1_stripe_9.gemfile | 4 -- gemfiles/ruby_3.1_stripe_9.gemfile.lock | 37 ------------------- gemfiles/ruby_3.1_stripe_latest.gemfile | 4 -- gemfiles/ruby_3.1_stripe_latest.gemfile.lock | 37 ------------------- gemfiles/ruby_3.1_stripe_min.gemfile | 4 -- gemfiles/ruby_3.1_stripe_min.gemfile.lock | 37 ------------------- gemfiles/ruby_3.2_activesupport.gemfile | 4 -- gemfiles/ruby_3.2_activesupport.gemfile.lock | 36 ------------------ gemfiles/ruby_3.2_aws.gemfile | 4 -- gemfiles/ruby_3.2_aws.gemfile.lock | 37 ------------------- gemfiles/ruby_3.2_contrib.gemfile | 4 -- gemfiles/ruby_3.2_contrib.gemfile.lock | 35 ------------------ gemfiles/ruby_3.2_contrib_old.gemfile | 4 -- gemfiles/ruby_3.2_contrib_old.gemfile.lock | 35 ------------------ gemfiles/ruby_3.2_core_old.gemfile | 4 -- gemfiles/ruby_3.2_core_old.gemfile.lock | 35 ------------------ gemfiles/ruby_3.2_elasticsearch_7.gemfile | 4 -- .../ruby_3.2_elasticsearch_7.gemfile.lock | 36 ------------------ gemfiles/ruby_3.2_elasticsearch_8.gemfile | 4 -- .../ruby_3.2_elasticsearch_8.gemfile.lock | 36 ------------------ .../ruby_3.2_elasticsearch_latest.gemfile | 4 -- ...ruby_3.2_elasticsearch_latest.gemfile.lock | 36 ------------------ gemfiles/ruby_3.2_graphql_1.13.gemfile | 4 -- gemfiles/ruby_3.2_graphql_1.13.gemfile.lock | 36 ------------------ gemfiles/ruby_3.2_graphql_2.0.gemfile | 4 -- gemfiles/ruby_3.2_graphql_2.0.gemfile.lock | 36 ------------------ gemfiles/ruby_3.2_graphql_2.1.gemfile | 4 -- gemfiles/ruby_3.2_graphql_2.1.gemfile.lock | 36 ------------------ gemfiles/ruby_3.2_graphql_2.2.gemfile | 4 -- gemfiles/ruby_3.2_graphql_2.2.gemfile.lock | 36 ------------------ gemfiles/ruby_3.2_graphql_2.3.gemfile | 4 -- gemfiles/ruby_3.2_graphql_2.3.gemfile.lock | 36 ------------------ gemfiles/ruby_3.2_http.gemfile | 4 -- gemfiles/ruby_3.2_http.gemfile.lock | 37 ------------------- gemfiles/ruby_3.2_opensearch_2.gemfile | 4 -- gemfiles/ruby_3.2_opensearch_2.gemfile.lock | 36 ------------------ gemfiles/ruby_3.2_opensearch_3.gemfile | 4 -- gemfiles/ruby_3.2_opensearch_3.gemfile.lock | 36 ------------------ gemfiles/ruby_3.2_opensearch_latest.gemfile | 4 -- .../ruby_3.2_opensearch_latest.gemfile.lock | 36 ------------------ gemfiles/ruby_3.2_opentelemetry.gemfile | 4 -- gemfiles/ruby_3.2_opentelemetry.gemfile.lock | 35 ------------------ gemfiles/ruby_3.2_opentelemetry_otlp.gemfile | 4 -- .../ruby_3.2_opentelemetry_otlp.gemfile.lock | 37 ------------------- gemfiles/ruby_3.2_rack_1.gemfile | 4 -- gemfiles/ruby_3.2_rack_1.gemfile.lock | 37 ------------------- gemfiles/ruby_3.2_rack_2.gemfile | 4 -- gemfiles/ruby_3.2_rack_2.gemfile.lock | 37 ------------------- gemfiles/ruby_3.2_rack_3.gemfile | 4 -- gemfiles/ruby_3.2_rack_3.gemfile.lock | 37 ------------------- gemfiles/ruby_3.2_rack_latest.gemfile | 4 -- gemfiles/ruby_3.2_rack_latest.gemfile.lock | 37 ------------------- gemfiles/ruby_3.2_rails61_mysql2.gemfile | 4 -- gemfiles/ruby_3.2_rails61_mysql2.gemfile.lock | 35 ------------------ gemfiles/ruby_3.2_rails61_postgres.gemfile | 4 -- .../ruby_3.2_rails61_postgres.gemfile.lock | 35 ------------------ .../ruby_3.2_rails61_postgres_redis.gemfile | 4 -- ...by_3.2_rails61_postgres_redis.gemfile.lock | 35 ------------------ .../ruby_3.2_rails61_postgres_sidekiq.gemfile | 4 -- ..._3.2_rails61_postgres_sidekiq.gemfile.lock | 35 ------------------ .../ruby_3.2_rails61_semantic_logger.gemfile | 4 -- ...y_3.2_rails61_semantic_logger.gemfile.lock | 35 ------------------ gemfiles/ruby_3.2_rails61_trilogy.gemfile | 4 -- .../ruby_3.2_rails61_trilogy.gemfile.lock | 36 ------------------ gemfiles/ruby_3.2_rails7.gemfile | 4 -- gemfiles/ruby_3.2_rails7.gemfile.lock | 36 ------------------ gemfiles/ruby_3.2_rails71.gemfile | 4 -- gemfiles/ruby_3.2_rails71.gemfile.lock | 36 ------------------ gemfiles/ruby_3.2_rails_old_redis.gemfile | 4 -- gemfiles/ruby_3.2_redis_3.gemfile | 4 -- gemfiles/ruby_3.2_redis_3.gemfile.lock | 35 ------------------ gemfiles/ruby_3.2_redis_4.gemfile | 4 -- gemfiles/ruby_3.2_redis_4.gemfile.lock | 35 ------------------ gemfiles/ruby_3.2_redis_5.gemfile | 4 -- gemfiles/ruby_3.2_redis_5.gemfile.lock | 35 ------------------ gemfiles/ruby_3.2_relational_db.gemfile | 4 -- gemfiles/ruby_3.2_relational_db.gemfile.lock | 37 ------------------- gemfiles/ruby_3.2_resque2_redis3.gemfile | 4 -- gemfiles/ruby_3.2_resque2_redis3.gemfile.lock | 35 ------------------ gemfiles/ruby_3.2_resque2_redis4.gemfile | 4 -- gemfiles/ruby_3.2_resque2_redis4.gemfile.lock | 35 ------------------ gemfiles/ruby_3.2_sinatra_2.gemfile | 4 -- gemfiles/ruby_3.2_sinatra_2.gemfile.lock | 37 ------------------- gemfiles/ruby_3.2_sinatra_3.gemfile | 4 -- gemfiles/ruby_3.2_sinatra_3.gemfile.lock | 37 ------------------- gemfiles/ruby_3.2_sinatra_4.gemfile | 4 -- gemfiles/ruby_3.2_sinatra_4.gemfile.lock | 37 ------------------- gemfiles/ruby_3.2_stripe_10.gemfile | 4 -- gemfiles/ruby_3.2_stripe_10.gemfile.lock | 37 ------------------- gemfiles/ruby_3.2_stripe_11.gemfile | 4 -- gemfiles/ruby_3.2_stripe_11.gemfile.lock | 37 ------------------- gemfiles/ruby_3.2_stripe_12.gemfile | 4 -- gemfiles/ruby_3.2_stripe_12.gemfile.lock | 37 ------------------- gemfiles/ruby_3.2_stripe_7.gemfile | 4 -- gemfiles/ruby_3.2_stripe_7.gemfile.lock | 37 ------------------- gemfiles/ruby_3.2_stripe_8.gemfile | 4 -- gemfiles/ruby_3.2_stripe_8.gemfile.lock | 37 ------------------- gemfiles/ruby_3.2_stripe_9.gemfile | 4 -- gemfiles/ruby_3.2_stripe_9.gemfile.lock | 37 ------------------- gemfiles/ruby_3.2_stripe_latest.gemfile | 4 -- gemfiles/ruby_3.2_stripe_latest.gemfile.lock | 37 ------------------- gemfiles/ruby_3.2_stripe_min.gemfile | 4 -- gemfiles/ruby_3.2_stripe_min.gemfile.lock | 37 ------------------- gemfiles/ruby_3.3_activesupport.gemfile | 4 -- gemfiles/ruby_3.3_activesupport.gemfile.lock | 36 ------------------ gemfiles/ruby_3.3_aws.gemfile | 4 -- gemfiles/ruby_3.3_aws.gemfile.lock | 37 ------------------- gemfiles/ruby_3.3_contrib.gemfile | 4 -- gemfiles/ruby_3.3_contrib.gemfile.lock | 35 ------------------ gemfiles/ruby_3.3_contrib_old.gemfile | 4 -- gemfiles/ruby_3.3_contrib_old.gemfile.lock | 35 ------------------ gemfiles/ruby_3.3_core_old.gemfile | 4 -- gemfiles/ruby_3.3_core_old.gemfile.lock | 35 ------------------ gemfiles/ruby_3.3_elasticsearch_7.gemfile | 4 -- .../ruby_3.3_elasticsearch_7.gemfile.lock | 36 ------------------ gemfiles/ruby_3.3_elasticsearch_8.gemfile | 4 -- .../ruby_3.3_elasticsearch_8.gemfile.lock | 36 ------------------ .../ruby_3.3_elasticsearch_latest.gemfile | 4 -- ...ruby_3.3_elasticsearch_latest.gemfile.lock | 36 ------------------ gemfiles/ruby_3.3_graphql_1.13.gemfile | 4 -- gemfiles/ruby_3.3_graphql_1.13.gemfile.lock | 36 ------------------ gemfiles/ruby_3.3_graphql_2.0.gemfile | 4 -- gemfiles/ruby_3.3_graphql_2.0.gemfile.lock | 36 ------------------ gemfiles/ruby_3.3_graphql_2.1.gemfile | 4 -- gemfiles/ruby_3.3_graphql_2.1.gemfile.lock | 36 ------------------ gemfiles/ruby_3.3_graphql_2.2.gemfile | 4 -- gemfiles/ruby_3.3_graphql_2.2.gemfile.lock | 36 ------------------ gemfiles/ruby_3.3_graphql_2.3.gemfile | 4 -- gemfiles/ruby_3.3_graphql_2.3.gemfile.lock | 36 ------------------ gemfiles/ruby_3.3_http.gemfile | 4 -- gemfiles/ruby_3.3_http.gemfile.lock | 37 ------------------- gemfiles/ruby_3.3_opensearch_2.gemfile | 4 -- gemfiles/ruby_3.3_opensearch_2.gemfile.lock | 36 ------------------ gemfiles/ruby_3.3_opensearch_3.gemfile | 4 -- gemfiles/ruby_3.3_opensearch_3.gemfile.lock | 36 ------------------ gemfiles/ruby_3.3_opensearch_latest.gemfile | 4 -- .../ruby_3.3_opensearch_latest.gemfile.lock | 36 ------------------ gemfiles/ruby_3.3_opentelemetry.gemfile | 4 -- gemfiles/ruby_3.3_opentelemetry.gemfile.lock | 35 ------------------ gemfiles/ruby_3.3_opentelemetry_otlp.gemfile | 4 -- .../ruby_3.3_opentelemetry_otlp.gemfile.lock | 37 ------------------- gemfiles/ruby_3.3_rack_2.gemfile | 4 -- gemfiles/ruby_3.3_rack_2.gemfile.lock | 37 ------------------- gemfiles/ruby_3.3_rack_3.gemfile | 4 -- gemfiles/ruby_3.3_rack_3.gemfile.lock | 37 ------------------- gemfiles/ruby_3.3_rack_latest.gemfile | 4 -- gemfiles/ruby_3.3_rack_latest.gemfile.lock | 37 ------------------- gemfiles/ruby_3.3_rails61_mysql2.gemfile | 4 -- gemfiles/ruby_3.3_rails61_mysql2.gemfile.lock | 35 ------------------ gemfiles/ruby_3.3_rails61_postgres.gemfile | 4 -- .../ruby_3.3_rails61_postgres.gemfile.lock | 35 ------------------ .../ruby_3.3_rails61_postgres_redis.gemfile | 4 -- ...by_3.3_rails61_postgres_redis.gemfile.lock | 35 ------------------ .../ruby_3.3_rails61_postgres_sidekiq.gemfile | 4 -- ..._3.3_rails61_postgres_sidekiq.gemfile.lock | 35 ------------------ .../ruby_3.3_rails61_semantic_logger.gemfile | 4 -- ...y_3.3_rails61_semantic_logger.gemfile.lock | 35 ------------------ gemfiles/ruby_3.3_rails61_trilogy.gemfile | 4 -- .../ruby_3.3_rails61_trilogy.gemfile.lock | 36 ------------------ gemfiles/ruby_3.3_rails7.gemfile | 4 -- gemfiles/ruby_3.3_rails7.gemfile.lock | 36 ------------------ gemfiles/ruby_3.3_rails71.gemfile | 4 -- gemfiles/ruby_3.3_rails71.gemfile.lock | 36 ------------------ gemfiles/ruby_3.3_rails_old_redis.gemfile | 4 -- gemfiles/ruby_3.3_redis_3.gemfile | 4 -- gemfiles/ruby_3.3_redis_3.gemfile.lock | 35 ------------------ gemfiles/ruby_3.3_redis_4.gemfile | 4 -- gemfiles/ruby_3.3_redis_4.gemfile.lock | 35 ------------------ gemfiles/ruby_3.3_redis_5.gemfile | 4 -- gemfiles/ruby_3.3_redis_5.gemfile.lock | 35 ------------------ gemfiles/ruby_3.3_relational_db.gemfile | 4 -- gemfiles/ruby_3.3_relational_db.gemfile.lock | 37 ------------------- gemfiles/ruby_3.3_resque2_redis3.gemfile | 4 -- gemfiles/ruby_3.3_resque2_redis3.gemfile.lock | 35 ------------------ gemfiles/ruby_3.3_resque2_redis4.gemfile | 4 -- gemfiles/ruby_3.3_resque2_redis4.gemfile.lock | 35 ------------------ gemfiles/ruby_3.3_sinatra_2.gemfile | 4 -- gemfiles/ruby_3.3_sinatra_2.gemfile.lock | 37 ------------------- gemfiles/ruby_3.3_sinatra_3.gemfile | 4 -- gemfiles/ruby_3.3_sinatra_3.gemfile.lock | 37 ------------------- gemfiles/ruby_3.3_sinatra_4.gemfile | 4 -- gemfiles/ruby_3.3_sinatra_4.gemfile.lock | 37 ------------------- gemfiles/ruby_3.3_stripe_10.gemfile | 4 -- gemfiles/ruby_3.3_stripe_10.gemfile.lock | 37 ------------------- gemfiles/ruby_3.3_stripe_11.gemfile | 4 -- gemfiles/ruby_3.3_stripe_11.gemfile.lock | 37 ------------------- gemfiles/ruby_3.3_stripe_12.gemfile | 4 -- gemfiles/ruby_3.3_stripe_12.gemfile.lock | 37 ------------------- gemfiles/ruby_3.3_stripe_7.gemfile | 4 -- gemfiles/ruby_3.3_stripe_7.gemfile.lock | 37 ------------------- gemfiles/ruby_3.3_stripe_8.gemfile | 4 -- gemfiles/ruby_3.3_stripe_8.gemfile.lock | 37 ------------------- gemfiles/ruby_3.3_stripe_9.gemfile | 4 -- gemfiles/ruby_3.3_stripe_9.gemfile.lock | 37 ------------------- gemfiles/ruby_3.3_stripe_latest.gemfile | 4 -- gemfiles/ruby_3.3_stripe_latest.gemfile.lock | 37 ------------------- gemfiles/ruby_3.3_stripe_min.gemfile | 4 -- gemfiles/ruby_3.3_stripe_min.gemfile.lock | 37 ------------------- gemfiles/ruby_3.4_activesupport.gemfile | 4 -- gemfiles/ruby_3.4_activesupport.gemfile.lock | 36 ------------------ gemfiles/ruby_3.4_aws.gemfile | 4 -- gemfiles/ruby_3.4_aws.gemfile.lock | 37 ------------------- gemfiles/ruby_3.4_contrib.gemfile | 4 -- gemfiles/ruby_3.4_contrib.gemfile.lock | 37 ------------------- gemfiles/ruby_3.4_contrib_old.gemfile | 4 -- gemfiles/ruby_3.4_contrib_old.gemfile.lock | 37 ------------------- gemfiles/ruby_3.4_core_old.gemfile | 4 -- gemfiles/ruby_3.4_core_old.gemfile.lock | 37 ------------------- gemfiles/ruby_3.4_elasticsearch_7.gemfile | 4 -- .../ruby_3.4_elasticsearch_7.gemfile.lock | 36 ------------------ gemfiles/ruby_3.4_elasticsearch_8.gemfile | 4 -- .../ruby_3.4_elasticsearch_8.gemfile.lock | 36 ------------------ .../ruby_3.4_elasticsearch_latest.gemfile | 4 -- ...ruby_3.4_elasticsearch_latest.gemfile.lock | 36 ------------------ gemfiles/ruby_3.4_graphql_1.13.gemfile | 4 -- gemfiles/ruby_3.4_graphql_1.13.gemfile.lock | 36 ------------------ gemfiles/ruby_3.4_graphql_2.0.gemfile | 4 -- gemfiles/ruby_3.4_graphql_2.0.gemfile.lock | 36 ------------------ gemfiles/ruby_3.4_graphql_2.1.gemfile | 4 -- gemfiles/ruby_3.4_graphql_2.1.gemfile.lock | 36 ------------------ gemfiles/ruby_3.4_graphql_2.2.gemfile | 4 -- gemfiles/ruby_3.4_graphql_2.2.gemfile.lock | 36 ------------------ gemfiles/ruby_3.4_graphql_2.3.gemfile | 4 -- gemfiles/ruby_3.4_graphql_2.3.gemfile.lock | 36 ------------------ gemfiles/ruby_3.4_http.gemfile | 4 -- gemfiles/ruby_3.4_http.gemfile.lock | 37 ------------------- gemfiles/ruby_3.4_opensearch_2.gemfile | 4 -- gemfiles/ruby_3.4_opensearch_2.gemfile.lock | 36 ------------------ gemfiles/ruby_3.4_opensearch_3.gemfile | 4 -- gemfiles/ruby_3.4_opensearch_3.gemfile.lock | 36 ------------------ gemfiles/ruby_3.4_opensearch_latest.gemfile | 4 -- .../ruby_3.4_opensearch_latest.gemfile.lock | 36 ------------------ gemfiles/ruby_3.4_opentelemetry.gemfile | 4 -- gemfiles/ruby_3.4_opentelemetry.gemfile.lock | 37 ------------------- gemfiles/ruby_3.4_opentelemetry_otlp.gemfile | 4 -- .../ruby_3.4_opentelemetry_otlp.gemfile.lock | 37 ------------------- gemfiles/ruby_3.4_rack_2.gemfile | 4 -- gemfiles/ruby_3.4_rack_2.gemfile.lock | 37 ------------------- gemfiles/ruby_3.4_rack_3.gemfile | 4 -- gemfiles/ruby_3.4_rack_3.gemfile.lock | 37 ------------------- gemfiles/ruby_3.4_rack_latest.gemfile | 4 -- gemfiles/ruby_3.4_rack_latest.gemfile.lock | 37 ------------------- gemfiles/ruby_3.4_rails61_mysql2.gemfile | 4 -- gemfiles/ruby_3.4_rails61_mysql2.gemfile.lock | 36 ------------------ gemfiles/ruby_3.4_rails61_postgres.gemfile | 4 -- .../ruby_3.4_rails61_postgres.gemfile.lock | 36 ------------------ .../ruby_3.4_rails61_postgres_redis.gemfile | 4 -- ...by_3.4_rails61_postgres_redis.gemfile.lock | 36 ------------------ .../ruby_3.4_rails61_postgres_sidekiq.gemfile | 4 -- ..._3.4_rails61_postgres_sidekiq.gemfile.lock | 36 ------------------ .../ruby_3.4_rails61_semantic_logger.gemfile | 4 -- ...y_3.4_rails61_semantic_logger.gemfile.lock | 36 ------------------ gemfiles/ruby_3.4_rails61_trilogy.gemfile | 4 -- .../ruby_3.4_rails61_trilogy.gemfile.lock | 36 ------------------ gemfiles/ruby_3.4_rails7.gemfile | 4 -- gemfiles/ruby_3.4_rails7.gemfile.lock | 36 ------------------ gemfiles/ruby_3.4_rails71.gemfile | 4 -- gemfiles/ruby_3.4_rails71.gemfile.lock | 36 ------------------ gemfiles/ruby_3.4_rails_old_redis.gemfile | 4 -- gemfiles/ruby_3.4_redis_3.gemfile | 4 -- gemfiles/ruby_3.4_redis_3.gemfile.lock | 37 ------------------- gemfiles/ruby_3.4_redis_4.gemfile | 4 -- gemfiles/ruby_3.4_redis_4.gemfile.lock | 37 ------------------- gemfiles/ruby_3.4_redis_5.gemfile | 4 -- gemfiles/ruby_3.4_redis_5.gemfile.lock | 37 ------------------- gemfiles/ruby_3.4_relational_db.gemfile | 4 -- gemfiles/ruby_3.4_relational_db.gemfile.lock | 37 ------------------- gemfiles/ruby_3.4_resque2_redis3.gemfile | 4 -- gemfiles/ruby_3.4_resque2_redis3.gemfile.lock | 37 ------------------- gemfiles/ruby_3.4_resque2_redis4.gemfile | 4 -- gemfiles/ruby_3.4_resque2_redis4.gemfile.lock | 37 ------------------- gemfiles/ruby_3.4_sinatra_2.gemfile | 4 -- gemfiles/ruby_3.4_sinatra_2.gemfile.lock | 37 ------------------- gemfiles/ruby_3.4_sinatra_3.gemfile | 4 -- gemfiles/ruby_3.4_sinatra_3.gemfile.lock | 37 ------------------- gemfiles/ruby_3.4_sinatra_4.gemfile | 4 -- gemfiles/ruby_3.4_sinatra_4.gemfile.lock | 37 ------------------- gemfiles/ruby_3.4_stripe_10.gemfile | 4 -- gemfiles/ruby_3.4_stripe_10.gemfile.lock | 37 ------------------- gemfiles/ruby_3.4_stripe_11.gemfile | 4 -- gemfiles/ruby_3.4_stripe_11.gemfile.lock | 37 ------------------- gemfiles/ruby_3.4_stripe_12.gemfile | 4 -- gemfiles/ruby_3.4_stripe_12.gemfile.lock | 37 ------------------- gemfiles/ruby_3.4_stripe_7.gemfile | 4 -- gemfiles/ruby_3.4_stripe_7.gemfile.lock | 37 ------------------- gemfiles/ruby_3.4_stripe_8.gemfile | 4 -- gemfiles/ruby_3.4_stripe_8.gemfile.lock | 37 ------------------- gemfiles/ruby_3.4_stripe_9.gemfile | 4 -- gemfiles/ruby_3.4_stripe_9.gemfile.lock | 37 ------------------- gemfiles/ruby_3.4_stripe_latest.gemfile | 4 -- gemfiles/ruby_3.4_stripe_latest.gemfile.lock | 37 ------------------- gemfiles/ruby_3.4_stripe_min.gemfile | 4 -- gemfiles/ruby_3.4_stripe_min.gemfile.lock | 37 ------------------- 895 files changed, 17853 deletions(-) diff --git a/gemfiles/jruby_9.3_activesupport.gemfile b/gemfiles/jruby_9.3_activesupport.gemfile index caa9dea0040..d320a3bc8ec 100644 --- a/gemfiles/jruby_9.3_activesupport.gemfile +++ b/gemfiles/jruby_9.3_activesupport.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.3_activesupport.gemfile.lock b/gemfiles/jruby_9.3_activesupport.gemfile.lock index 2392bca3bed..c8d2269d6c4 100644 --- a/gemfiles/jruby_9.3_activesupport.gemfile.lock +++ b/gemfiles/jruby_9.3_activesupport.gemfile.lock @@ -37,7 +37,6 @@ GEM tzinfo (~> 1.1) zeitwerk (~> 2.2, >= 2.2.2) addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.12.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -86,7 +85,6 @@ GEM hashdiff (1.0.1) i18n (1.14.1) concurrent-ruby (~> 1.0) - json (2.6.3-java) json-schema (2.8.1) addressable (>= 2.4) jsonapi-renderer (0.2.2) @@ -114,10 +112,6 @@ GEM nokogiri (1.13.10-java) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -147,7 +141,6 @@ GEM method_source rake (>= 0.8.7) thor (>= 0.20.3, < 2.0) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake @@ -155,7 +148,6 @@ GEM ffi (~> 1.15) mini_portile2 (~> 2.6) rake (> 12) - regexp_parser (2.8.1) request_store (1.5.1) rack (>= 1.4) rexml (3.2.8) @@ -179,32 +171,9 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) ruby-kafka (1.5.0) digest-crc - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) simplecov (0.21.2) docile (~> 1.1) @@ -222,7 +191,6 @@ GEM thread_safe (0.3.6-java) tzinfo (1.2.11) thread_safe (~> 0.1) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -259,10 +227,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) ruby-kafka (>= 0.7.10) simplecov simplecov-cobertura (~> 2.1.0) diff --git a/gemfiles/jruby_9.3_aws.gemfile b/gemfiles/jruby_9.3_aws.gemfile index 04be9facbf7..6c9a4988ba4 100644 --- a/gemfiles/jruby_9.3_aws.gemfile +++ b/gemfiles/jruby_9.3_aws.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.3_aws.gemfile.lock b/gemfiles/jruby_9.3_aws.gemfile.lock index 6f9eaee5ca4..5b63f518857 100644 --- a/gemfiles/jruby_9.3_aws.gemfile.lock +++ b/gemfiles/jruby_9.3_aws.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) aws-eventstream (1.2.0) aws-partitions (1.813.0) aws-sdk (3.1.0) @@ -1448,7 +1447,6 @@ GEM ffi (1.17.1-java) hashdiff (1.0.1) jmespath (1.6.2) - json (2.6.3-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -1458,10 +1456,6 @@ GEM method_source (1.0.0) msgpack (1.7.5-java) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -1470,12 +1464,9 @@ GEM pry-debugger-jruby (2.1.1-java) pry (>= 0.13, < 0.15) ruby-debug-base (>= 0.10.4, < 0.12) - racc (1.7.1-java) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.1) rexml (3.2.6) rspec (3.13.0) rspec-core (~> 3.13.0) @@ -1496,30 +1487,7 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) shoryuken (6.0.0) aws-sdk-core (>= 2) concurrent-ruby @@ -1536,7 +1504,6 @@ GEM spoon (0.0.6) ffi thor (1.2.2) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -1567,10 +1534,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) shoryuken simplecov simplecov-cobertura (~> 2.1.0) diff --git a/gemfiles/jruby_9.3_contrib.gemfile b/gemfiles/jruby_9.3_contrib.gemfile index 61abd879e58..be331b4c16c 100644 --- a/gemfiles/jruby_9.3_contrib.gemfile +++ b/gemfiles/jruby_9.3_contrib.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.3_contrib.gemfile.lock b/gemfiles/jruby_9.3_contrib.gemfile.lock index a37f4fc147a..240ec02dc8b 100644 --- a/gemfiles/jruby_9.3_contrib.gemfile.lock +++ b/gemfiles/jruby_9.3_contrib.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.4.0) amq-protocol (2.3.2) - ast (2.4.2) benchmark-ips (2.10.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -33,7 +32,6 @@ GEM dogstatsd-ruby (5.6.1) ffi (1.17.1-java) hashdiff (1.0.1) - json (2.6.3-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -49,10 +47,6 @@ GEM mustermann (3.0.0) ruby2_keywords (~> 0.0.1) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -62,20 +56,17 @@ GEM pry (>= 0.13, < 0.15) ruby-debug-base (>= 0.10.4, < 0.12) que (1.4.1) - racc (1.7.1-java) rack (2.2.8) rack-protection (3.0.5) rack rack-test (2.1.0) rack (>= 1.3) - rainbow (3.1.1) rake (12.3.3) rake-compiler (1.2.5) rake redis (4.8.0) redis-namespace (1.10.0) redis (>= 4) - regexp_parser (2.8.1) resque (2.4.0) mono_logger (~> 1.0) multi_json (~> 1.0) @@ -104,30 +95,7 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) semantic_logger (4.12.0) concurrent-ruby (~> 1.0) @@ -166,7 +134,6 @@ GEM concurrent-ruby (~> 1.0) thor (1.2.1) tilt (2.0.11) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -202,10 +169,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) semantic_logger (~> 4.0) sidekiq (~> 6.5) simplecov diff --git a/gemfiles/jruby_9.3_contrib_old.gemfile b/gemfiles/jruby_9.3_contrib_old.gemfile index cb161fdd849..e6e722154f9 100644 --- a/gemfiles/jruby_9.3_contrib_old.gemfile +++ b/gemfiles/jruby_9.3_contrib_old.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.3_contrib_old.gemfile.lock b/gemfiles/jruby_9.3_contrib_old.gemfile.lock index 747485ff399..b0d288edaff 100644 --- a/gemfiles/jruby_9.3_contrib_old.gemfile.lock +++ b/gemfiles/jruby_9.3_contrib_old.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.10.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -31,7 +30,6 @@ GEM faraday (>= 0.7.4, < 1.0) ffi (1.17.1-java) hashdiff (1.0.1) - json (2.6.3-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -42,10 +40,6 @@ GEM msgpack (1.7.5-java) multipart-post (2.2.3) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) presto-client (0.6.6) faraday (~> 0.12) @@ -60,13 +54,10 @@ GEM ruby-debug-base (>= 0.10.4, < 0.12) qless (0.10.0) redis (>= 2.2) - racc (1.7.1-java) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake redis (3.3.5) - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -88,30 +79,7 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -124,7 +92,6 @@ GEM spoon (0.0.6) ffi strscan (3.1.0-java) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -158,10 +125,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/jruby_9.3_core_old.gemfile b/gemfiles/jruby_9.3_core_old.gemfile index 5a92773428c..4b556852f84 100644 --- a/gemfiles/jruby_9.3_core_old.gemfile +++ b/gemfiles/jruby_9.3_core_old.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.3_core_old.gemfile.lock b/gemfiles/jruby_9.3_core_old.gemfile.lock index 8a9376dd957..8682ae56c5d 100644 --- a/gemfiles/jruby_9.3_core_old.gemfile.lock +++ b/gemfiles/jruby_9.3_core_old.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.10.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -26,7 +25,6 @@ GEM dogstatsd-ruby (4.8.3) ffi (1.17.1-java) hashdiff (1.0.1) - json (2.6.3-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -36,10 +34,6 @@ GEM method_source (1.0.0) msgpack (1.7.5-java) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -48,12 +42,9 @@ GEM pry-debugger-jruby (2.1.1-java) pry (>= 0.13, < 0.15) ruby-debug-base (>= 0.10.4, < 0.12) - racc (1.7.1-java) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -75,30 +66,7 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -111,7 +79,6 @@ GEM spoon (0.0.6) ffi strscan (3.1.0-java) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -140,10 +107,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/jruby_9.3_elasticsearch_7.gemfile b/gemfiles/jruby_9.3_elasticsearch_7.gemfile index 6805077a993..4f90b94b745 100644 --- a/gemfiles/jruby_9.3_elasticsearch_7.gemfile +++ b/gemfiles/jruby_9.3_elasticsearch_7.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.3_elasticsearch_7.gemfile.lock b/gemfiles/jruby_9.3_elasticsearch_7.gemfile.lock index fdb61982b89..0484bf32a07 100644 --- a/gemfiles/jruby_9.3_elasticsearch_7.gemfile.lock +++ b/gemfiles/jruby_9.3_elasticsearch_7.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.5) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.12.0) benchmark-memory (0.1.2) @@ -42,7 +41,6 @@ GEM faraday-net_http (3.0.2) ffi (1.17.1-java) hashdiff (1.0.1) - json (2.6.3-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -53,10 +51,6 @@ GEM msgpack (1.7.5-java) multi_json (1.15.0) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.4) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -66,12 +60,9 @@ GEM pry (>= 0.13, < 0.15) ruby-debug-base (>= 0.10.4, < 0.12) public_suffix (5.0.3) - racc (1.7.1-java) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.2) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -93,30 +84,7 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) simplecov (0.21.2) docile (~> 1.1) @@ -130,7 +98,6 @@ GEM spoon (0.0.6) ffi strscan (3.1.0-java) - unicode-display_width (2.5.0) warning (1.3.0) webmock (3.19.1) addressable (>= 2.8.0) @@ -160,10 +127,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/jruby_9.3_elasticsearch_8.gemfile b/gemfiles/jruby_9.3_elasticsearch_8.gemfile index 69c7b4da0d9..449c9ac82d3 100644 --- a/gemfiles/jruby_9.3_elasticsearch_8.gemfile +++ b/gemfiles/jruby_9.3_elasticsearch_8.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.3_elasticsearch_8.gemfile.lock b/gemfiles/jruby_9.3_elasticsearch_8.gemfile.lock index 8b502e0c0f9..eb151284916 100644 --- a/gemfiles/jruby_9.3_elasticsearch_8.gemfile.lock +++ b/gemfiles/jruby_9.3_elasticsearch_8.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.5) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.12.0) benchmark-memory (0.1.2) @@ -41,7 +40,6 @@ GEM faraday-net_http (3.0.2) ffi (1.17.1-java) hashdiff (1.0.1) - json (2.6.3-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -52,10 +50,6 @@ GEM msgpack (1.7.5-java) multi_json (1.15.0) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.4) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -65,12 +59,9 @@ GEM pry (>= 0.13, < 0.15) ruby-debug-base (>= 0.10.4, < 0.12) public_suffix (5.0.3) - racc (1.7.1-java) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.2) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -92,30 +83,7 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) simplecov (0.21.2) docile (~> 1.1) @@ -129,7 +97,6 @@ GEM spoon (0.0.6) ffi strscan (3.1.0-java) - unicode-display_width (2.5.0) warning (1.3.0) webmock (3.19.1) addressable (>= 2.8.0) @@ -159,10 +126,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/jruby_9.3_elasticsearch_latest.gemfile b/gemfiles/jruby_9.3_elasticsearch_latest.gemfile index 7031271e77e..f076ec51da6 100644 --- a/gemfiles/jruby_9.3_elasticsearch_latest.gemfile +++ b/gemfiles/jruby_9.3_elasticsearch_latest.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.3_elasticsearch_latest.gemfile.lock b/gemfiles/jruby_9.3_elasticsearch_latest.gemfile.lock index 63b1bab0325..a0d39caf32e 100644 --- a/gemfiles/jruby_9.3_elasticsearch_latest.gemfile.lock +++ b/gemfiles/jruby_9.3_elasticsearch_latest.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.14.0) benchmark-memory (0.1.2) @@ -43,7 +42,6 @@ GEM faraday-net_http (3.0.2) ffi (1.17.1-java) hashdiff (1.1.1) - json (2.7.2-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -54,10 +52,6 @@ GEM msgpack (1.7.5-java) multi_json (1.15.0) os (1.1.4) - parallel (1.24.0) - parser (3.3.5.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -67,12 +61,9 @@ GEM pry (>= 0.13, < 0.15) ruby-debug-base (>= 0.10.4, < 0.12) public_suffix (5.1.1) - racc (1.8.1-java) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.7) rspec (3.13.0) rspec-core (~> 3.13.0) @@ -93,30 +84,7 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.30.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) simplecov (0.21.2) docile (~> 1.1) @@ -129,7 +97,6 @@ GEM simplecov_json_formatter (0.1.4) spoon (0.0.6) ffi - unicode-display_width (2.6.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -159,10 +126,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/jruby_9.3_graphql_1.13.gemfile b/gemfiles/jruby_9.3_graphql_1.13.gemfile index 0fd41438d1c..1aefe7d9a22 100644 --- a/gemfiles/jruby_9.3_graphql_1.13.gemfile +++ b/gemfiles/jruby_9.3_graphql_1.13.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.3_graphql_1.13.gemfile.lock b/gemfiles/jruby_9.3_graphql_1.13.gemfile.lock index 92c24d0a661..4ee4de7252b 100644 --- a/gemfiles/jruby_9.3_graphql_1.13.gemfile.lock +++ b/gemfiles/jruby_9.3_graphql_1.13.gemfile.lock @@ -71,7 +71,6 @@ GEM zeitwerk (~> 2.3) addressable (2.8.6) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -96,7 +95,6 @@ GEM hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) - json (2.7.1-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -134,10 +132,6 @@ GEM nokogiri (1.13.10-java) racc (~> 1.4) os (1.1.4) - parallel (1.24.0) - parser (3.3.0.5) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -178,11 +172,9 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.1.0) rake-compiler (1.2.6) rake - regexp_parser (2.9.0) request_store (1.7.0) rack (>= 1.4) rexml (3.2.8) @@ -206,30 +198,7 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.30.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -254,7 +223,6 @@ GEM timeout (0.4.1) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.5.0) warning (1.3.0) webmock (3.19.1) addressable (>= 2.8.0) @@ -290,10 +258,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/jruby_9.3_graphql_2.0.gemfile b/gemfiles/jruby_9.3_graphql_2.0.gemfile index f464e4ccdb2..7e796e9df6a 100644 --- a/gemfiles/jruby_9.3_graphql_2.0.gemfile +++ b/gemfiles/jruby_9.3_graphql_2.0.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.3_graphql_2.0.gemfile.lock b/gemfiles/jruby_9.3_graphql_2.0.gemfile.lock index 3a277386255..eb809c8120b 100644 --- a/gemfiles/jruby_9.3_graphql_2.0.gemfile.lock +++ b/gemfiles/jruby_9.3_graphql_2.0.gemfile.lock @@ -71,7 +71,6 @@ GEM zeitwerk (~> 2.3) addressable (2.8.6) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -96,7 +95,6 @@ GEM hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) - json (2.7.1-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -134,10 +132,6 @@ GEM nokogiri (1.13.10-java) racc (~> 1.4) os (1.1.4) - parallel (1.24.0) - parser (3.3.0.5) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -178,11 +172,9 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.1.0) rake-compiler (1.2.6) rake - regexp_parser (2.9.0) request_store (1.7.0) rack (>= 1.4) rexml (3.2.8) @@ -206,30 +198,7 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.30.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -254,7 +223,6 @@ GEM timeout (0.4.1) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.5.0) warning (1.3.0) webmock (3.19.1) addressable (>= 2.8.0) @@ -290,10 +258,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/jruby_9.3_http.gemfile b/gemfiles/jruby_9.3_http.gemfile index 0998dd57356..7e9c26211ed 100644 --- a/gemfiles/jruby_9.3_http.gemfile +++ b/gemfiles/jruby_9.3_http.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.3_http.gemfile.lock b/gemfiles/jruby_9.3_http.gemfile.lock index b9bb0a29a93..4b6f2f275a2 100644 --- a/gemfiles/jruby_9.3_http.gemfile.lock +++ b/gemfiles/jruby_9.3_http.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.12.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -50,7 +49,6 @@ GEM http-parser (1.2.3) ffi-compiler (>= 1.0, < 2.0) httpclient (2.8.3) - json (2.6.3-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -64,10 +62,6 @@ GEM msgpack (1.7.5-java) netrc (0.11.0) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -76,12 +70,9 @@ GEM pry-debugger-jruby (2.1.1-java) pry (>= 0.13, < 0.15) ruby-debug-base (>= 0.10.4, < 0.12) - racc (1.7.1-java) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.1) rest-client (2.1.0) http-accept (>= 1.7.0, < 2.0) http-cookie (>= 1.0.2, < 2.0) @@ -108,30 +99,7 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) simplecov (0.21.2) docile (~> 1.1) @@ -148,7 +116,6 @@ GEM typhoeus (1.4.0) ethon (>= 0.9.0) unf (0.1.4-java) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -183,10 +150,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) typhoeus diff --git a/gemfiles/jruby_9.3_opensearch_2.gemfile b/gemfiles/jruby_9.3_opensearch_2.gemfile index ba519b5bd90..cd851d3320c 100644 --- a/gemfiles/jruby_9.3_opensearch_2.gemfile +++ b/gemfiles/jruby_9.3_opensearch_2.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.3_opensearch_2.gemfile.lock b/gemfiles/jruby_9.3_opensearch_2.gemfile.lock index cdcd2bc1ae8..e87190f322c 100644 --- a/gemfiles/jruby_9.3_opensearch_2.gemfile.lock +++ b/gemfiles/jruby_9.3_opensearch_2.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.5) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.12.0) benchmark-memory (0.1.2) @@ -33,7 +32,6 @@ GEM faraday-net_http (3.0.2) ffi (1.17.1-java) hashdiff (1.0.1) - json (2.6.3-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -52,10 +50,6 @@ GEM faraday (>= 1.0, < 3) multi_json os (1.1.4) - parallel (1.23.0) - parser (3.2.2.4) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -65,12 +59,9 @@ GEM pry (>= 0.13, < 0.15) ruby-debug-base (>= 0.10.4, < 0.12) public_suffix (5.0.3) - racc (1.7.1-java) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -92,30 +83,7 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) simplecov (0.21.2) docile (~> 1.1) @@ -129,7 +97,6 @@ GEM spoon (0.0.6) ffi strscan (3.1.0-java) - unicode-display_width (2.5.0) warning (1.3.0) webmock (3.19.1) addressable (>= 2.8.0) @@ -159,10 +126,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/jruby_9.3_opensearch_3.gemfile b/gemfiles/jruby_9.3_opensearch_3.gemfile index 1b869b7ccbc..0a4ce6a7696 100644 --- a/gemfiles/jruby_9.3_opensearch_3.gemfile +++ b/gemfiles/jruby_9.3_opensearch_3.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.3_opensearch_3.gemfile.lock b/gemfiles/jruby_9.3_opensearch_3.gemfile.lock index 77ab48808e1..c63d0af9b23 100644 --- a/gemfiles/jruby_9.3_opensearch_3.gemfile.lock +++ b/gemfiles/jruby_9.3_opensearch_3.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.5) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.12.0) benchmark-memory (0.1.2) @@ -33,7 +32,6 @@ GEM faraday-net_http (3.0.2) ffi (1.17.1-java) hashdiff (1.0.1) - json (2.6.3-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -47,10 +45,6 @@ GEM faraday (>= 1.0, < 3) multi_json (>= 1.0) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.4) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -60,12 +54,9 @@ GEM pry (>= 0.13, < 0.15) ruby-debug-base (>= 0.10.4, < 0.12) public_suffix (5.0.3) - racc (1.7.1-java) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -87,30 +78,7 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) simplecov (0.21.2) docile (~> 1.1) @@ -124,7 +92,6 @@ GEM spoon (0.0.6) ffi strscan (3.1.0-java) - unicode-display_width (2.5.0) warning (1.3.0) webmock (3.19.1) addressable (>= 2.8.0) @@ -154,10 +121,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/jruby_9.3_opensearch_latest.gemfile b/gemfiles/jruby_9.3_opensearch_latest.gemfile index c17f59f4ccd..1a569f23dd3 100644 --- a/gemfiles/jruby_9.3_opensearch_latest.gemfile +++ b/gemfiles/jruby_9.3_opensearch_latest.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.3_opensearch_latest.gemfile.lock b/gemfiles/jruby_9.3_opensearch_latest.gemfile.lock index 0a690420913..9525641d313 100644 --- a/gemfiles/jruby_9.3_opensearch_latest.gemfile.lock +++ b/gemfiles/jruby_9.3_opensearch_latest.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.14.0) benchmark-memory (0.1.2) @@ -35,7 +34,6 @@ GEM faraday-net_http (3.0.2) ffi (1.17.1-java) hashdiff (1.1.1) - json (2.7.2-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -49,10 +47,6 @@ GEM faraday (>= 1.0, < 3) multi_json (>= 1.0) os (1.1.4) - parallel (1.24.0) - parser (3.3.5.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -62,12 +56,9 @@ GEM pry (>= 0.13, < 0.15) ruby-debug-base (>= 0.10.4, < 0.12) public_suffix (5.1.1) - racc (1.8.1-java) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.7) rspec (3.13.0) rspec-core (~> 3.13.0) @@ -88,30 +79,7 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.30.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) simplecov (0.21.2) docile (~> 1.1) @@ -124,7 +92,6 @@ GEM simplecov_json_formatter (0.1.4) spoon (0.0.6) ffi - unicode-display_width (2.6.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -154,10 +121,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/jruby_9.3_rack_1.gemfile b/gemfiles/jruby_9.3_rack_1.gemfile index 76013c9b5e5..d1e5f089eed 100644 --- a/gemfiles/jruby_9.3_rack_1.gemfile +++ b/gemfiles/jruby_9.3_rack_1.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.3_rack_1.gemfile.lock b/gemfiles/jruby_9.3_rack_1.gemfile.lock index b4230fd1ccc..529e8b43341 100644 --- a/gemfiles/jruby_9.3_rack_1.gemfile.lock +++ b/gemfiles/jruby_9.3_rack_1.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.12.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -26,7 +25,6 @@ GEM dogstatsd-ruby (5.6.1) ffi (1.17.1-java) hashdiff (1.0.1) - json (2.6.3-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -36,10 +34,6 @@ GEM method_source (1.0.0) msgpack (1.7.5-java) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -48,17 +42,14 @@ GEM pry-debugger-jruby (2.1.1-java) pry (>= 0.13, < 0.15) ruby-debug-base (>= 0.10.4, < 0.12) - racc (1.7.1-java) rack (1.6.13) rack-contrib (1.8.0) rack (~> 1.4) rack-test (2.1.0) rack (>= 1.3) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -80,30 +71,7 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -116,7 +84,6 @@ GEM spoon (0.0.6) ffi strscan (3.1.0-java) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -148,10 +115,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/jruby_9.3_rack_2.gemfile b/gemfiles/jruby_9.3_rack_2.gemfile index 7b23bd4c29c..3a477a041e3 100644 --- a/gemfiles/jruby_9.3_rack_2.gemfile +++ b/gemfiles/jruby_9.3_rack_2.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.3_rack_2.gemfile.lock b/gemfiles/jruby_9.3_rack_2.gemfile.lock index 813a7eb3212..16d49541f4e 100644 --- a/gemfiles/jruby_9.3_rack_2.gemfile.lock +++ b/gemfiles/jruby_9.3_rack_2.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.12.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -26,7 +25,6 @@ GEM dogstatsd-ruby (5.6.1) ffi (1.17.1-java) hashdiff (1.0.1) - json (2.6.3-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -36,10 +34,6 @@ GEM method_source (1.0.0) msgpack (1.7.5-java) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -48,17 +42,14 @@ GEM pry-debugger-jruby (2.1.1-java) pry (>= 0.13, < 0.15) ruby-debug-base (>= 0.10.4, < 0.12) - racc (1.7.1-java) rack (2.2.10) rack-contrib (2.3.0) rack (~> 2.0) rack-test (2.1.0) rack (>= 1.3) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -80,30 +71,7 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -116,7 +84,6 @@ GEM spoon (0.0.6) ffi strscan (3.1.0-java) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -148,10 +115,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/jruby_9.3_rack_3.gemfile b/gemfiles/jruby_9.3_rack_3.gemfile index d939a58ee75..aca27f9ad27 100644 --- a/gemfiles/jruby_9.3_rack_3.gemfile +++ b/gemfiles/jruby_9.3_rack_3.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.3_rack_3.gemfile.lock b/gemfiles/jruby_9.3_rack_3.gemfile.lock index e9628f1db39..880d5532e24 100644 --- a/gemfiles/jruby_9.3_rack_3.gemfile.lock +++ b/gemfiles/jruby_9.3_rack_3.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.12.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -26,7 +25,6 @@ GEM dogstatsd-ruby (5.6.1) ffi (1.17.1-java) hashdiff (1.0.1) - json (2.6.3-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -36,10 +34,6 @@ GEM method_source (1.0.0) msgpack (1.7.5-java) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -48,17 +42,14 @@ GEM pry-debugger-jruby (2.1.1-java) pry (>= 0.13, < 0.15) ruby-debug-base (>= 0.10.4, < 0.12) - racc (1.7.1-java) rack (3.1.8) rack-contrib (1.2.0) rack (>= 0.9.1) rack-test (2.1.0) rack (>= 1.3) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -80,30 +71,7 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -116,7 +84,6 @@ GEM spoon (0.0.6) ffi strscan (3.1.0-java) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -148,10 +115,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/jruby_9.3_rack_latest.gemfile b/gemfiles/jruby_9.3_rack_latest.gemfile index 218f599c4f2..651ea9fe890 100644 --- a/gemfiles/jruby_9.3_rack_latest.gemfile +++ b/gemfiles/jruby_9.3_rack_latest.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.3_rack_latest.gemfile.lock b/gemfiles/jruby_9.3_rack_latest.gemfile.lock index d1b163e8048..48187a4afa5 100644 --- a/gemfiles/jruby_9.3_rack_latest.gemfile.lock +++ b/gemfiles/jruby_9.3_rack_latest.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.14.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -29,7 +28,6 @@ GEM dogstatsd-ruby (5.6.2) ffi (1.17.1-java) hashdiff (1.1.1) - json (2.7.2-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -39,10 +37,6 @@ GEM method_source (1.1.0) msgpack (1.7.5-java) os (1.1.4) - parallel (1.24.0) - parser (3.3.5.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -52,17 +46,14 @@ GEM pry (>= 0.13, < 0.15) ruby-debug-base (>= 0.10.4, < 0.12) public_suffix (5.1.1) - racc (1.8.1-java) rack (3.1.8) rack-contrib (2.5.0) rack (< 4) rack-test (2.1.0) rack (>= 1.3) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.7) rspec (3.13.0) rspec-core (~> 3.13.0) @@ -83,30 +74,7 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.30.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -118,7 +86,6 @@ GEM simplecov_json_formatter (0.1.4) spoon (0.0.6) ffi - unicode-display_width (2.6.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -150,10 +117,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/jruby_9.3_rails5_mysql2.gemfile b/gemfiles/jruby_9.3_rails5_mysql2.gemfile index 033796f4229..c33d6dc5109 100644 --- a/gemfiles/jruby_9.3_rails5_mysql2.gemfile +++ b/gemfiles/jruby_9.3_rails5_mysql2.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.3_rails5_mysql2.gemfile.lock b/gemfiles/jruby_9.3_rails5_mysql2.gemfile.lock index c63e5aaec0f..6da2e536d51 100644 --- a/gemfiles/jruby_9.3_rails5_mysql2.gemfile.lock +++ b/gemfiles/jruby_9.3_rails5_mysql2.gemfile.lock @@ -58,7 +58,6 @@ GEM tzinfo (~> 1.1) addressable (2.4.0) arel (9.0.0) - ast (2.4.2) benchmark-ips (2.10.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -82,7 +81,6 @@ GEM i18n (1.12.0) concurrent-ruby (~> 1.0) jdbc-mysql (8.0.27) - json (2.6.3-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -120,10 +118,6 @@ GEM nokogiri (1.13.10-java) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -160,11 +154,9 @@ GEM method_source rake (>= 0.8.7) thor (>= 0.19.0, < 2.0) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.1) request_store (1.5.1) rack (>= 1.4) rexml (3.2.8) @@ -188,30 +180,7 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -236,7 +205,6 @@ GEM timeout (0.3.1) tzinfo (1.2.10) thread_safe (~> 0.1) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -271,10 +239,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/jruby_9.3_rails5_postgres.gemfile b/gemfiles/jruby_9.3_rails5_postgres.gemfile index a98d882fdc5..f4ca541cffe 100644 --- a/gemfiles/jruby_9.3_rails5_postgres.gemfile +++ b/gemfiles/jruby_9.3_rails5_postgres.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.3_rails5_postgres.gemfile.lock b/gemfiles/jruby_9.3_rails5_postgres.gemfile.lock index fd45b5b7b00..703aace8aad 100644 --- a/gemfiles/jruby_9.3_rails5_postgres.gemfile.lock +++ b/gemfiles/jruby_9.3_rails5_postgres.gemfile.lock @@ -58,7 +58,6 @@ GEM tzinfo (~> 1.1) addressable (2.4.0) arel (9.0.0) - ast (2.4.2) benchmark-ips (2.10.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -82,7 +81,6 @@ GEM i18n (1.12.0) concurrent-ruby (~> 1.0) jdbc-postgres (42.2.25) - json (2.6.3-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -120,10 +118,6 @@ GEM nokogiri (1.13.10-java) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -160,11 +154,9 @@ GEM method_source rake (>= 0.8.7) thor (>= 0.19.0, < 2.0) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.1) request_store (1.5.1) rack (>= 1.4) rexml (3.2.8) @@ -188,30 +180,7 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -236,7 +205,6 @@ GEM timeout (0.3.1) tzinfo (1.2.10) thread_safe (~> 0.1) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -271,10 +239,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/jruby_9.3_rails5_postgres_redis.gemfile b/gemfiles/jruby_9.3_rails5_postgres_redis.gemfile index 30993738c31..5aa7d756268 100644 --- a/gemfiles/jruby_9.3_rails5_postgres_redis.gemfile +++ b/gemfiles/jruby_9.3_rails5_postgres_redis.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.3_rails5_postgres_redis.gemfile.lock b/gemfiles/jruby_9.3_rails5_postgres_redis.gemfile.lock index a516f6f9383..7d95847557d 100644 --- a/gemfiles/jruby_9.3_rails5_postgres_redis.gemfile.lock +++ b/gemfiles/jruby_9.3_rails5_postgres_redis.gemfile.lock @@ -58,7 +58,6 @@ GEM tzinfo (~> 1.1) addressable (2.4.0) arel (9.0.0) - ast (2.4.2) benchmark-ips (2.10.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -82,7 +81,6 @@ GEM i18n (1.12.0) concurrent-ruby (~> 1.0) jdbc-postgres (42.2.25) - json (2.6.3-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -120,10 +118,6 @@ GEM nokogiri (1.13.10-java) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -160,12 +154,10 @@ GEM method_source rake (>= 0.8.7) thor (>= 0.19.0, < 2.0) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake redis (4.8.0) - regexp_parser (2.8.1) request_store (1.5.1) rack (>= 1.4) rexml (3.2.8) @@ -189,30 +181,7 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -237,7 +206,6 @@ GEM timeout (0.3.1) tzinfo (1.2.10) thread_safe (~> 0.1) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -273,10 +241,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/jruby_9.3_rails5_postgres_redis_activesupport.gemfile b/gemfiles/jruby_9.3_rails5_postgres_redis_activesupport.gemfile index 17b3f40824c..5e779bed3f0 100644 --- a/gemfiles/jruby_9.3_rails5_postgres_redis_activesupport.gemfile +++ b/gemfiles/jruby_9.3_rails5_postgres_redis_activesupport.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.3_rails5_postgres_redis_activesupport.gemfile.lock b/gemfiles/jruby_9.3_rails5_postgres_redis_activesupport.gemfile.lock index 95f3d18e578..f0011d05946 100644 --- a/gemfiles/jruby_9.3_rails5_postgres_redis_activesupport.gemfile.lock +++ b/gemfiles/jruby_9.3_rails5_postgres_redis_activesupport.gemfile.lock @@ -58,7 +58,6 @@ GEM tzinfo (~> 1.1) addressable (2.4.0) arel (9.0.0) - ast (2.4.2) benchmark-ips (2.10.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -82,7 +81,6 @@ GEM i18n (1.12.0) concurrent-ruby (~> 1.0) jdbc-postgres (42.2.25) - json (2.6.3-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -120,10 +118,6 @@ GEM nokogiri (1.13.10-java) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -160,7 +154,6 @@ GEM method_source rake (>= 0.8.7) thor (>= 0.19.0, < 2.0) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake @@ -181,7 +174,6 @@ GEM redis-store (>= 1.2, < 2) redis-store (1.9.1) redis (>= 4, < 5) - regexp_parser (2.8.1) request_store (1.5.1) rack (>= 1.4) rexml (3.2.8) @@ -205,30 +197,7 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -253,7 +222,6 @@ GEM timeout (0.3.1) tzinfo (1.2.10) thread_safe (~> 0.1) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -291,10 +259,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/jruby_9.3_rails5_postgres_sidekiq.gemfile b/gemfiles/jruby_9.3_rails5_postgres_sidekiq.gemfile index 30e87d56f54..4bf6a9ffe8c 100644 --- a/gemfiles/jruby_9.3_rails5_postgres_sidekiq.gemfile +++ b/gemfiles/jruby_9.3_rails5_postgres_sidekiq.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.3_rails5_postgres_sidekiq.gemfile.lock b/gemfiles/jruby_9.3_rails5_postgres_sidekiq.gemfile.lock index 7d15696c948..513cde899ff 100644 --- a/gemfiles/jruby_9.3_rails5_postgres_sidekiq.gemfile.lock +++ b/gemfiles/jruby_9.3_rails5_postgres_sidekiq.gemfile.lock @@ -58,7 +58,6 @@ GEM tzinfo (~> 1.1) addressable (2.4.0) arel (9.0.0) - ast (2.4.2) benchmark-ips (2.10.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -83,7 +82,6 @@ GEM i18n (1.12.0) concurrent-ruby (~> 1.0) jdbc-postgres (42.2.25) - json (2.6.3-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -121,10 +119,6 @@ GEM nokogiri (1.13.10-java) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -161,12 +155,10 @@ GEM method_source rake (>= 0.8.7) thor (>= 0.19.0, < 2.0) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake redis (4.8.0) - regexp_parser (2.8.1) request_store (1.5.1) rack (>= 1.4) rexml (3.2.8) @@ -190,30 +182,7 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) sidekiq (6.5.8) connection_pool (>= 2.2.5, < 3) rack (~> 2.0) @@ -242,7 +211,6 @@ GEM timeout (0.3.1) tzinfo (1.2.10) thread_safe (~> 0.1) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -278,10 +246,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) sidekiq simplecov simplecov-cobertura (~> 2.1.0) diff --git a/gemfiles/jruby_9.3_rails5_semantic_logger.gemfile b/gemfiles/jruby_9.3_rails5_semantic_logger.gemfile index 8281cda2434..0fa1afc8ca7 100644 --- a/gemfiles/jruby_9.3_rails5_semantic_logger.gemfile +++ b/gemfiles/jruby_9.3_rails5_semantic_logger.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.3_rails5_semantic_logger.gemfile.lock b/gemfiles/jruby_9.3_rails5_semantic_logger.gemfile.lock index 64bee287658..cb32cb0ff66 100644 --- a/gemfiles/jruby_9.3_rails5_semantic_logger.gemfile.lock +++ b/gemfiles/jruby_9.3_rails5_semantic_logger.gemfile.lock @@ -58,7 +58,6 @@ GEM tzinfo (~> 1.1) addressable (2.4.0) arel (9.0.0) - ast (2.4.2) benchmark-ips (2.10.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -82,7 +81,6 @@ GEM i18n (1.12.0) concurrent-ruby (~> 1.0) jdbc-postgres (42.2.25) - json (2.6.3-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -115,10 +113,6 @@ GEM nokogiri (1.13.10-java) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -159,11 +153,9 @@ GEM method_source rake (>= 0.8.7) thor (>= 0.19.0, < 2.0) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -185,30 +177,7 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) semantic_logger (4.12.0) concurrent-ruby (~> 1.0) simplecov (0.21.2) @@ -235,7 +204,6 @@ GEM timeout (0.3.1) tzinfo (1.2.10) thread_safe (~> 0.1) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -270,10 +238,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/jruby_9.3_rails61_mysql2.gemfile b/gemfiles/jruby_9.3_rails61_mysql2.gemfile index 61ec8cb90c4..c77c23b0afd 100644 --- a/gemfiles/jruby_9.3_rails61_mysql2.gemfile +++ b/gemfiles/jruby_9.3_rails61_mysql2.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.3_rails61_mysql2.gemfile.lock b/gemfiles/jruby_9.3_rails61_mysql2.gemfile.lock index f2ce37e120b..1934b7dc8b4 100644 --- a/gemfiles/jruby_9.3_rails61_mysql2.gemfile.lock +++ b/gemfiles/jruby_9.3_rails61_mysql2.gemfile.lock @@ -75,7 +75,6 @@ GEM tzinfo (~> 2.0) zeitwerk (~> 2.3) addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.10.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -99,7 +98,6 @@ GEM i18n (1.12.0) concurrent-ruby (~> 1.0) jdbc-mysql (8.0.27) - json (2.6.3-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -137,10 +135,6 @@ GEM nokogiri (1.13.10-java) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -179,11 +173,9 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.1) request_store (1.5.1) rack (>= 1.4) rexml (3.2.8) @@ -207,30 +199,7 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -254,7 +223,6 @@ GEM timeout (0.3.1) tzinfo (2.0.5) concurrent-ruby (~> 1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -290,10 +258,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/jruby_9.3_rails61_postgres.gemfile b/gemfiles/jruby_9.3_rails61_postgres.gemfile index f09ebcce73d..68897cc3f8d 100644 --- a/gemfiles/jruby_9.3_rails61_postgres.gemfile +++ b/gemfiles/jruby_9.3_rails61_postgres.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.3_rails61_postgres.gemfile.lock b/gemfiles/jruby_9.3_rails61_postgres.gemfile.lock index dcc7c8cf64d..f4ec0dde46b 100644 --- a/gemfiles/jruby_9.3_rails61_postgres.gemfile.lock +++ b/gemfiles/jruby_9.3_rails61_postgres.gemfile.lock @@ -75,7 +75,6 @@ GEM tzinfo (~> 2.0) zeitwerk (~> 2.3) addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.10.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -99,7 +98,6 @@ GEM i18n (1.12.0) concurrent-ruby (~> 1.0) jdbc-postgres (42.2.25) - json (2.6.3-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -137,10 +135,6 @@ GEM nokogiri (1.13.10-java) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -179,11 +173,9 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.1) request_store (1.5.1) rack (>= 1.4) rexml (3.2.8) @@ -207,30 +199,7 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -254,7 +223,6 @@ GEM timeout (0.3.1) tzinfo (2.0.5) concurrent-ruby (~> 1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -290,10 +258,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/jruby_9.3_rails61_postgres_redis.gemfile b/gemfiles/jruby_9.3_rails61_postgres_redis.gemfile index 01c2b985466..fe455da1a14 100644 --- a/gemfiles/jruby_9.3_rails61_postgres_redis.gemfile +++ b/gemfiles/jruby_9.3_rails61_postgres_redis.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.3_rails61_postgres_redis.gemfile.lock b/gemfiles/jruby_9.3_rails61_postgres_redis.gemfile.lock index 65bdc38703b..0aec0e527c4 100644 --- a/gemfiles/jruby_9.3_rails61_postgres_redis.gemfile.lock +++ b/gemfiles/jruby_9.3_rails61_postgres_redis.gemfile.lock @@ -75,7 +75,6 @@ GEM tzinfo (~> 2.0) zeitwerk (~> 2.3) addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.10.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -99,7 +98,6 @@ GEM i18n (1.12.0) concurrent-ruby (~> 1.0) jdbc-postgres (42.2.25) - json (2.6.3-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -137,10 +135,6 @@ GEM nokogiri (1.13.10-java) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -179,12 +173,10 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake redis (4.8.0) - regexp_parser (2.8.1) request_store (1.5.1) rack (>= 1.4) rexml (3.2.8) @@ -208,30 +200,7 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -255,7 +224,6 @@ GEM timeout (0.3.1) tzinfo (2.0.5) concurrent-ruby (~> 1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -292,10 +260,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/jruby_9.3_rails61_postgres_sidekiq.gemfile b/gemfiles/jruby_9.3_rails61_postgres_sidekiq.gemfile index ba931710032..a29a9a0ca05 100644 --- a/gemfiles/jruby_9.3_rails61_postgres_sidekiq.gemfile +++ b/gemfiles/jruby_9.3_rails61_postgres_sidekiq.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.3_rails61_postgres_sidekiq.gemfile.lock b/gemfiles/jruby_9.3_rails61_postgres_sidekiq.gemfile.lock index 4d4290151c1..23e99dc0ee8 100644 --- a/gemfiles/jruby_9.3_rails61_postgres_sidekiq.gemfile.lock +++ b/gemfiles/jruby_9.3_rails61_postgres_sidekiq.gemfile.lock @@ -75,7 +75,6 @@ GEM tzinfo (~> 2.0) zeitwerk (~> 2.3) addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.10.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -100,7 +99,6 @@ GEM i18n (1.12.0) concurrent-ruby (~> 1.0) jdbc-postgres (42.2.25) - json (2.6.3-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -138,10 +136,6 @@ GEM nokogiri (1.13.10-java) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -180,12 +174,10 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake redis (4.8.0) - regexp_parser (2.8.1) request_store (1.5.1) rack (>= 1.4) rexml (3.2.8) @@ -209,30 +201,7 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) sidekiq (6.5.8) connection_pool (>= 2.2.5, < 3) rack (~> 2.0) @@ -260,7 +229,6 @@ GEM timeout (0.3.1) tzinfo (2.0.5) concurrent-ruby (~> 1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -296,10 +264,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) sidekiq (>= 6.1.2) simplecov simplecov-cobertura (~> 2.1.0) diff --git a/gemfiles/jruby_9.3_rails61_semantic_logger.gemfile b/gemfiles/jruby_9.3_rails61_semantic_logger.gemfile index 740e9c2e112..873e23c0cad 100644 --- a/gemfiles/jruby_9.3_rails61_semantic_logger.gemfile +++ b/gemfiles/jruby_9.3_rails61_semantic_logger.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.3_rails61_semantic_logger.gemfile.lock b/gemfiles/jruby_9.3_rails61_semantic_logger.gemfile.lock index 7a420684bd8..6bbbf3e072b 100644 --- a/gemfiles/jruby_9.3_rails61_semantic_logger.gemfile.lock +++ b/gemfiles/jruby_9.3_rails61_semantic_logger.gemfile.lock @@ -75,7 +75,6 @@ GEM tzinfo (~> 2.0) zeitwerk (~> 2.3) addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.10.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -99,7 +98,6 @@ GEM i18n (1.12.0) concurrent-ruby (~> 1.0) jdbc-postgres (42.2.25) - json (2.6.3-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -132,10 +130,6 @@ GEM nokogiri (1.13.10-java) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -178,11 +172,9 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -204,30 +196,7 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) semantic_logger (4.12.0) concurrent-ruby (~> 1.0) simplecov (0.21.2) @@ -253,7 +222,6 @@ GEM timeout (0.3.1) tzinfo (2.0.5) concurrent-ruby (~> 1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -289,10 +257,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/jruby_9.3_rails6_mysql2.gemfile b/gemfiles/jruby_9.3_rails6_mysql2.gemfile index 248da64d3a2..34f9efbf557 100644 --- a/gemfiles/jruby_9.3_rails6_mysql2.gemfile +++ b/gemfiles/jruby_9.3_rails6_mysql2.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.3_rails6_mysql2.gemfile.lock b/gemfiles/jruby_9.3_rails6_mysql2.gemfile.lock index 0c8444e0baa..ef5393de888 100644 --- a/gemfiles/jruby_9.3_rails6_mysql2.gemfile.lock +++ b/gemfiles/jruby_9.3_rails6_mysql2.gemfile.lock @@ -71,7 +71,6 @@ GEM tzinfo (~> 1.1) zeitwerk (~> 2.2, >= 2.2.2) addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.10.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -95,7 +94,6 @@ GEM i18n (1.12.0) concurrent-ruby (~> 1.0) jdbc-mysql (8.0.27) - json (2.6.3-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -133,10 +131,6 @@ GEM nokogiri (1.13.10-java) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -175,11 +169,9 @@ GEM method_source rake (>= 0.8.7) thor (>= 0.20.3, < 2.0) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.1) request_store (1.5.1) rack (>= 1.4) rexml (3.2.8) @@ -203,30 +195,7 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -251,7 +220,6 @@ GEM timeout (0.3.1) tzinfo (1.2.10) thread_safe (~> 0.1) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -287,10 +255,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/jruby_9.3_rails6_postgres.gemfile b/gemfiles/jruby_9.3_rails6_postgres.gemfile index 498b1bce57d..44a36e69b2e 100644 --- a/gemfiles/jruby_9.3_rails6_postgres.gemfile +++ b/gemfiles/jruby_9.3_rails6_postgres.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.3_rails6_postgres.gemfile.lock b/gemfiles/jruby_9.3_rails6_postgres.gemfile.lock index f3bdb2cedb1..63f71eb64ee 100644 --- a/gemfiles/jruby_9.3_rails6_postgres.gemfile.lock +++ b/gemfiles/jruby_9.3_rails6_postgres.gemfile.lock @@ -71,7 +71,6 @@ GEM tzinfo (~> 1.1) zeitwerk (~> 2.2, >= 2.2.2) addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.10.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -95,7 +94,6 @@ GEM i18n (1.12.0) concurrent-ruby (~> 1.0) jdbc-postgres (42.2.25) - json (2.6.3-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -133,10 +131,6 @@ GEM nokogiri (1.13.10-java) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -175,11 +169,9 @@ GEM method_source rake (>= 0.8.7) thor (>= 0.20.3, < 2.0) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.1) request_store (1.5.1) rack (>= 1.4) rexml (3.2.8) @@ -203,30 +195,7 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -251,7 +220,6 @@ GEM timeout (0.3.1) tzinfo (1.2.10) thread_safe (~> 0.1) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -287,10 +255,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/jruby_9.3_rails6_postgres_redis.gemfile b/gemfiles/jruby_9.3_rails6_postgres_redis.gemfile index a2ba50a91fa..63d6cc83ea2 100644 --- a/gemfiles/jruby_9.3_rails6_postgres_redis.gemfile +++ b/gemfiles/jruby_9.3_rails6_postgres_redis.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.3_rails6_postgres_redis.gemfile.lock b/gemfiles/jruby_9.3_rails6_postgres_redis.gemfile.lock index a92862df794..00cf49e8f1e 100644 --- a/gemfiles/jruby_9.3_rails6_postgres_redis.gemfile.lock +++ b/gemfiles/jruby_9.3_rails6_postgres_redis.gemfile.lock @@ -71,7 +71,6 @@ GEM tzinfo (~> 1.1) zeitwerk (~> 2.2, >= 2.2.2) addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.10.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -95,7 +94,6 @@ GEM i18n (1.12.0) concurrent-ruby (~> 1.0) jdbc-postgres (42.2.25) - json (2.6.3-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -133,10 +131,6 @@ GEM nokogiri (1.13.10-java) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -175,12 +169,10 @@ GEM method_source rake (>= 0.8.7) thor (>= 0.20.3, < 2.0) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake redis (4.8.0) - regexp_parser (2.8.1) request_store (1.5.1) rack (>= 1.4) rexml (3.2.8) @@ -204,30 +196,7 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -252,7 +221,6 @@ GEM timeout (0.3.1) tzinfo (1.2.10) thread_safe (~> 0.1) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -289,10 +257,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/jruby_9.3_rails6_postgres_redis_activesupport.gemfile b/gemfiles/jruby_9.3_rails6_postgres_redis_activesupport.gemfile index 87ae8bd7ea5..a68103160e2 100644 --- a/gemfiles/jruby_9.3_rails6_postgres_redis_activesupport.gemfile +++ b/gemfiles/jruby_9.3_rails6_postgres_redis_activesupport.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.3_rails6_postgres_redis_activesupport.gemfile.lock b/gemfiles/jruby_9.3_rails6_postgres_redis_activesupport.gemfile.lock index 5fbd53774d7..1c384de0277 100644 --- a/gemfiles/jruby_9.3_rails6_postgres_redis_activesupport.gemfile.lock +++ b/gemfiles/jruby_9.3_rails6_postgres_redis_activesupport.gemfile.lock @@ -71,7 +71,6 @@ GEM tzinfo (~> 1.1) zeitwerk (~> 2.2, >= 2.2.2) addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.10.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -95,7 +94,6 @@ GEM i18n (1.12.0) concurrent-ruby (~> 1.0) jdbc-postgres (42.2.25) - json (2.6.3-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -133,10 +131,6 @@ GEM nokogiri (1.13.10-java) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -175,7 +169,6 @@ GEM method_source rake (>= 0.8.7) thor (>= 0.20.3, < 2.0) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake @@ -196,7 +189,6 @@ GEM redis-store (>= 1.2, < 2) redis-store (1.9.1) redis (>= 4, < 5) - regexp_parser (2.8.1) request_store (1.5.1) rack (>= 1.4) rexml (3.2.8) @@ -220,30 +212,7 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -268,7 +237,6 @@ GEM timeout (0.3.1) tzinfo (1.2.10) thread_safe (~> 0.1) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -307,10 +275,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/jruby_9.3_rails6_postgres_sidekiq.gemfile b/gemfiles/jruby_9.3_rails6_postgres_sidekiq.gemfile index b7f34736e29..47442328ae4 100644 --- a/gemfiles/jruby_9.3_rails6_postgres_sidekiq.gemfile +++ b/gemfiles/jruby_9.3_rails6_postgres_sidekiq.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.3_rails6_postgres_sidekiq.gemfile.lock b/gemfiles/jruby_9.3_rails6_postgres_sidekiq.gemfile.lock index 08e89aaf739..9664bf1fc33 100644 --- a/gemfiles/jruby_9.3_rails6_postgres_sidekiq.gemfile.lock +++ b/gemfiles/jruby_9.3_rails6_postgres_sidekiq.gemfile.lock @@ -71,7 +71,6 @@ GEM tzinfo (~> 1.1) zeitwerk (~> 2.2, >= 2.2.2) addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.10.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -96,7 +95,6 @@ GEM i18n (1.12.0) concurrent-ruby (~> 1.0) jdbc-postgres (42.2.25) - json (2.6.3-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -134,10 +132,6 @@ GEM nokogiri (1.13.10-java) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -176,12 +170,10 @@ GEM method_source rake (>= 0.8.7) thor (>= 0.20.3, < 2.0) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake redis (4.8.0) - regexp_parser (2.8.1) request_store (1.5.1) rack (>= 1.4) rexml (3.2.8) @@ -205,30 +197,7 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) sidekiq (6.5.8) connection_pool (>= 2.2.5, < 3) rack (~> 2.0) @@ -257,7 +226,6 @@ GEM timeout (0.3.1) tzinfo (1.2.10) thread_safe (~> 0.1) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -294,10 +262,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) sidekiq simplecov simplecov-cobertura (~> 2.1.0) diff --git a/gemfiles/jruby_9.3_rails6_semantic_logger.gemfile b/gemfiles/jruby_9.3_rails6_semantic_logger.gemfile index a03f4b03fab..c9de9356354 100644 --- a/gemfiles/jruby_9.3_rails6_semantic_logger.gemfile +++ b/gemfiles/jruby_9.3_rails6_semantic_logger.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.3_rails6_semantic_logger.gemfile.lock b/gemfiles/jruby_9.3_rails6_semantic_logger.gemfile.lock index 732470afe57..c377e38a1c0 100644 --- a/gemfiles/jruby_9.3_rails6_semantic_logger.gemfile.lock +++ b/gemfiles/jruby_9.3_rails6_semantic_logger.gemfile.lock @@ -71,7 +71,6 @@ GEM tzinfo (~> 1.1) zeitwerk (~> 2.2, >= 2.2.2) addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.10.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -95,7 +94,6 @@ GEM i18n (1.12.0) concurrent-ruby (~> 1.0) jdbc-postgres (42.2.25) - json (2.6.3-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -128,10 +126,6 @@ GEM nokogiri (1.13.10-java) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -174,11 +168,9 @@ GEM method_source rake (>= 0.8.7) thor (>= 0.20.3, < 2.0) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -200,30 +192,7 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) semantic_logger (4.12.0) concurrent-ruby (~> 1.0) simplecov (0.21.2) @@ -250,7 +219,6 @@ GEM timeout (0.3.1) tzinfo (1.2.10) thread_safe (~> 0.1) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -286,10 +254,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/jruby_9.3_rails_old_redis.gemfile b/gemfiles/jruby_9.3_rails_old_redis.gemfile index 27f0816fe3b..a839e79b61f 100644 --- a/gemfiles/jruby_9.3_rails_old_redis.gemfile +++ b/gemfiles/jruby_9.3_rails_old_redis.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.3_redis_3.gemfile b/gemfiles/jruby_9.3_redis_3.gemfile index 73d4f8c8417..5f179afa342 100644 --- a/gemfiles/jruby_9.3_redis_3.gemfile +++ b/gemfiles/jruby_9.3_redis_3.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.3_redis_3.gemfile.lock b/gemfiles/jruby_9.3_redis_3.gemfile.lock index 938668ceb55..0c659204a7f 100644 --- a/gemfiles/jruby_9.3_redis_3.gemfile.lock +++ b/gemfiles/jruby_9.3_redis_3.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.10.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -26,7 +25,6 @@ GEM dogstatsd-ruby (5.6.1) ffi (1.17.1-java) hashdiff (1.0.1) - json (2.6.3-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -36,10 +34,6 @@ GEM method_source (1.0.0) msgpack (1.7.5-java) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -48,13 +42,10 @@ GEM pry-debugger-jruby (2.1.1-java) pry (>= 0.13, < 0.15) ruby-debug-base (>= 0.10.4, < 0.12) - racc (1.7.1-java) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake redis (3.3.5) - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -76,30 +67,7 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -112,7 +80,6 @@ GEM spoon (0.0.6) ffi strscan (3.1.0-java) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -142,10 +109,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/jruby_9.3_redis_4.gemfile b/gemfiles/jruby_9.3_redis_4.gemfile index 3a6f531faeb..e90a14494fb 100644 --- a/gemfiles/jruby_9.3_redis_4.gemfile +++ b/gemfiles/jruby_9.3_redis_4.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.3_redis_4.gemfile.lock b/gemfiles/jruby_9.3_redis_4.gemfile.lock index 83755a7bd9e..3453a1cbbf5 100644 --- a/gemfiles/jruby_9.3_redis_4.gemfile.lock +++ b/gemfiles/jruby_9.3_redis_4.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.10.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -26,7 +25,6 @@ GEM dogstatsd-ruby (5.6.1) ffi (1.17.1-java) hashdiff (1.0.1) - json (2.6.3-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -36,10 +34,6 @@ GEM method_source (1.0.0) msgpack (1.7.5-java) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -48,13 +42,10 @@ GEM pry-debugger-jruby (2.1.1-java) pry (>= 0.13, < 0.15) ruby-debug-base (>= 0.10.4, < 0.12) - racc (1.7.1-java) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake redis (4.8.0) - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -76,30 +67,7 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -112,7 +80,6 @@ GEM spoon (0.0.6) ffi strscan (3.1.0-java) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -142,10 +109,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/jruby_9.3_redis_5.gemfile b/gemfiles/jruby_9.3_redis_5.gemfile index 84c84eb6d72..b5824c32d8a 100644 --- a/gemfiles/jruby_9.3_redis_5.gemfile +++ b/gemfiles/jruby_9.3_redis_5.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.3_redis_5.gemfile.lock b/gemfiles/jruby_9.3_redis_5.gemfile.lock index f06f5d404df..92757f668f1 100644 --- a/gemfiles/jruby_9.3_redis_5.gemfile.lock +++ b/gemfiles/jruby_9.3_redis_5.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.10.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -27,7 +26,6 @@ GEM dogstatsd-ruby (5.6.1) ffi (1.17.1-java) hashdiff (1.0.1) - json (2.6.3-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -37,10 +35,6 @@ GEM method_source (1.0.0) msgpack (1.7.5-java) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -49,8 +43,6 @@ GEM pry-debugger-jruby (2.1.1-java) pry (>= 0.13, < 0.15) ruby-debug-base (>= 0.10.4, < 0.12) - racc (1.7.1-java) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake @@ -58,7 +50,6 @@ GEM redis-client (>= 0.9.0) redis-client (0.12.1) connection_pool - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -80,30 +71,7 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -116,7 +84,6 @@ GEM spoon (0.0.6) ffi strscan (3.1.0-java) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -146,10 +113,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/jruby_9.3_relational_db.gemfile b/gemfiles/jruby_9.3_relational_db.gemfile index b36f22ecfa5..8d0dc7e4ece 100644 --- a/gemfiles/jruby_9.3_relational_db.gemfile +++ b/gemfiles/jruby_9.3_relational_db.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.3_relational_db.gemfile.lock b/gemfiles/jruby_9.3_relational_db.gemfile.lock index af7305fa4b0..904f26d7f48 100644 --- a/gemfiles/jruby_9.3_relational_db.gemfile.lock +++ b/gemfiles/jruby_9.3_relational_db.gemfile.lock @@ -30,7 +30,6 @@ GEM tzinfo (~> 1.1) zeitwerk (~> 2.2, >= 2.2.2) addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.12.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -56,7 +55,6 @@ GEM jdbc-mysql (8.0.30) jdbc-postgres (42.6.0) jdbc-sqlite3 (3.42.0.0) - json (2.6.3-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -69,10 +67,6 @@ GEM minitest (5.20.0) msgpack (1.7.5-java) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -81,12 +75,9 @@ GEM pry-debugger-jruby (2.1.1-java) pry (>= 0.13, < 0.15) ruby-debug-base (>= 0.10.4, < 0.12) - racc (1.7.1-java) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -108,30 +99,7 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) sequel (5.83.1) bigdecimal simplecov (0.21.2) @@ -149,7 +117,6 @@ GEM thread_safe (0.3.6-java) tzinfo (1.2.11) thread_safe (~> 0.1) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -186,10 +153,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) sequel simplecov simplecov-cobertura (~> 2.1.0) diff --git a/gemfiles/jruby_9.3_resque2_redis3.gemfile b/gemfiles/jruby_9.3_resque2_redis3.gemfile index 67433e5936b..32902aed35c 100644 --- a/gemfiles/jruby_9.3_resque2_redis3.gemfile +++ b/gemfiles/jruby_9.3_resque2_redis3.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.3_resque2_redis3.gemfile.lock b/gemfiles/jruby_9.3_resque2_redis3.gemfile.lock index a36e92a7374..2dcf785a788 100644 --- a/gemfiles/jruby_9.3_resque2_redis3.gemfile.lock +++ b/gemfiles/jruby_9.3_resque2_redis3.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.10.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -26,7 +25,6 @@ GEM dogstatsd-ruby (5.6.1) ffi (1.17.1-java) hashdiff (1.0.1) - json (2.6.3-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -40,10 +38,6 @@ GEM mustermann (3.0.0) ruby2_keywords (~> 0.0.1) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -52,18 +46,15 @@ GEM pry-debugger-jruby (2.1.1-java) pry (>= 0.13, < 0.15) ruby-debug-base (>= 0.10.4, < 0.12) - racc (1.7.1-java) rack (2.2.6.2) rack-protection (3.0.5) rack - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake redis (3.3.5) redis-namespace (1.8.2) redis (>= 3.0.4) - regexp_parser (2.8.1) resque (2.4.0) mono_logger (~> 1.0) multi_json (~> 1.0) @@ -90,30 +81,7 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) simplecov (0.21.2) docile (~> 1.1) @@ -133,7 +101,6 @@ GEM ffi strscan (3.1.0-java) tilt (2.0.11) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -164,10 +131,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/jruby_9.3_resque2_redis4.gemfile b/gemfiles/jruby_9.3_resque2_redis4.gemfile index 6daa2980f59..ce2a99a113c 100644 --- a/gemfiles/jruby_9.3_resque2_redis4.gemfile +++ b/gemfiles/jruby_9.3_resque2_redis4.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.3_resque2_redis4.gemfile.lock b/gemfiles/jruby_9.3_resque2_redis4.gemfile.lock index 131483136fe..852888c0fa6 100644 --- a/gemfiles/jruby_9.3_resque2_redis4.gemfile.lock +++ b/gemfiles/jruby_9.3_resque2_redis4.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.10.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -26,7 +25,6 @@ GEM dogstatsd-ruby (5.6.1) ffi (1.17.1-java) hashdiff (1.0.1) - json (2.6.3-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -40,10 +38,6 @@ GEM mustermann (3.0.0) ruby2_keywords (~> 0.0.1) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -52,18 +46,15 @@ GEM pry-debugger-jruby (2.1.1-java) pry (>= 0.13, < 0.15) ruby-debug-base (>= 0.10.4, < 0.12) - racc (1.7.1-java) rack (2.2.6.2) rack-protection (3.0.5) rack - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake redis (4.8.0) redis-namespace (1.10.0) redis (>= 4) - regexp_parser (2.8.1) resque (2.4.0) mono_logger (~> 1.0) multi_json (~> 1.0) @@ -90,30 +81,7 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) simplecov (0.21.2) docile (~> 1.1) @@ -133,7 +101,6 @@ GEM ffi strscan (3.1.0-java) tilt (2.0.11) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -164,10 +131,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/jruby_9.3_sinatra_2.gemfile b/gemfiles/jruby_9.3_sinatra_2.gemfile index 33903f69cc7..3c2eedb98ef 100644 --- a/gemfiles/jruby_9.3_sinatra_2.gemfile +++ b/gemfiles/jruby_9.3_sinatra_2.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.3_sinatra_2.gemfile.lock b/gemfiles/jruby_9.3_sinatra_2.gemfile.lock index 56f6447f1fc..a91b024f025 100644 --- a/gemfiles/jruby_9.3_sinatra_2.gemfile.lock +++ b/gemfiles/jruby_9.3_sinatra_2.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.6) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) benchmark-ips (2.13.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -29,7 +28,6 @@ GEM dogstatsd-ruby (5.6.1) ffi (1.17.1-java) hashdiff (1.1.0) - json (2.7.2-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -41,10 +39,6 @@ GEM mustermann (2.0.2) ruby2_keywords (~> 0.0.1) os (1.1.4) - parallel (1.24.0) - parser (3.3.0.5) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -54,7 +48,6 @@ GEM pry (>= 0.13, < 0.15) ruby-debug-base (>= 0.10.4, < 0.12) public_suffix (5.0.5) - racc (1.7.3-java) rack (2.2.9) rack-contrib (2.4.0) rack (< 4) @@ -62,11 +55,9 @@ GEM rack rack-test (2.1.0) rack (>= 1.3) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.0) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -88,30 +79,7 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.30.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) simplecov (0.21.2) docile (~> 1.1) @@ -131,7 +99,6 @@ GEM ffi strscan (3.1.0-java) tilt (2.3.0) - unicode-display_width (2.5.0) warning (1.3.0) webmock (3.23.0) addressable (>= 2.8.0) @@ -162,10 +129,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sinatra (~> 2) diff --git a/gemfiles/jruby_9.3_sinatra_3.gemfile b/gemfiles/jruby_9.3_sinatra_3.gemfile index d996364285d..1b6226e0f1d 100644 --- a/gemfiles/jruby_9.3_sinatra_3.gemfile +++ b/gemfiles/jruby_9.3_sinatra_3.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.3_sinatra_3.gemfile.lock b/gemfiles/jruby_9.3_sinatra_3.gemfile.lock index f7c95b0bbac..51215c8df8c 100644 --- a/gemfiles/jruby_9.3_sinatra_3.gemfile.lock +++ b/gemfiles/jruby_9.3_sinatra_3.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.6) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -30,7 +29,6 @@ GEM dogstatsd-ruby (5.6.1) ffi (1.17.1-java) hashdiff (1.1.0) - json (2.7.2-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -42,10 +40,6 @@ GEM mustermann (3.0.0) ruby2_keywords (~> 0.0.1) os (1.1.4) - parallel (1.24.0) - parser (3.3.0.5) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -55,7 +49,6 @@ GEM pry (>= 0.13, < 0.15) ruby-debug-base (>= 0.10.4, < 0.12) public_suffix (5.0.5) - racc (1.7.3-java) rack (2.2.9) rack-contrib (2.4.0) rack (< 4) @@ -64,11 +57,9 @@ GEM rack (~> 2.2, >= 2.2.4) rack-test (2.1.0) rack (>= 1.3) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.0) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -90,30 +81,7 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.30.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) simplecov (0.21.2) docile (~> 1.1) @@ -133,7 +101,6 @@ GEM ffi strscan (3.1.0-java) tilt (2.3.0) - unicode-display_width (2.5.0) warning (1.3.0) webmock (3.23.0) addressable (>= 2.8.0) @@ -164,10 +131,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sinatra (~> 3) diff --git a/gemfiles/jruby_9.3_stripe_10.gemfile b/gemfiles/jruby_9.3_stripe_10.gemfile index f7408eb0dea..2ab238b25d4 100644 --- a/gemfiles/jruby_9.3_stripe_10.gemfile +++ b/gemfiles/jruby_9.3_stripe_10.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.3_stripe_10.gemfile.lock b/gemfiles/jruby_9.3_stripe_10.gemfile.lock index 99bf91b679d..f8c15c4bc98 100644 --- a/gemfiles/jruby_9.3_stripe_10.gemfile.lock +++ b/gemfiles/jruby_9.3_stripe_10.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.13.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -29,7 +28,6 @@ GEM dogstatsd-ruby (5.6.1) ffi (1.17.1-java) hashdiff (1.1.1) - json (2.7.2-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -39,10 +37,6 @@ GEM method_source (1.1.0) msgpack (1.7.5-java) os (1.1.4) - parallel (1.24.0) - parser (3.3.4.2) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -52,12 +46,9 @@ GEM pry (>= 0.13, < 0.15) ruby-debug-base (>= 0.10.4, < 0.12) public_suffix (5.1.1) - racc (1.8.1-java) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.6) strscan rspec (3.13.0) @@ -79,30 +70,7 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.30.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -116,7 +84,6 @@ GEM ffi stripe (10.15.0) strscan (3.1.0-java) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -145,10 +112,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 10) diff --git a/gemfiles/jruby_9.3_stripe_11.gemfile b/gemfiles/jruby_9.3_stripe_11.gemfile index dd638c1e99e..0ce879b28e4 100644 --- a/gemfiles/jruby_9.3_stripe_11.gemfile +++ b/gemfiles/jruby_9.3_stripe_11.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.3_stripe_11.gemfile.lock b/gemfiles/jruby_9.3_stripe_11.gemfile.lock index 4838eb08fe6..521548836e1 100644 --- a/gemfiles/jruby_9.3_stripe_11.gemfile.lock +++ b/gemfiles/jruby_9.3_stripe_11.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.13.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -29,7 +28,6 @@ GEM dogstatsd-ruby (5.6.1) ffi (1.17.1-java) hashdiff (1.1.1) - json (2.7.2-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -39,10 +37,6 @@ GEM method_source (1.1.0) msgpack (1.7.5-java) os (1.1.4) - parallel (1.24.0) - parser (3.3.4.2) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -52,12 +46,9 @@ GEM pry (>= 0.13, < 0.15) ruby-debug-base (>= 0.10.4, < 0.12) public_suffix (5.1.1) - racc (1.8.1-java) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.6) strscan rspec (3.13.0) @@ -79,30 +70,7 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.30.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -116,7 +84,6 @@ GEM ffi stripe (11.7.0) strscan (3.1.0-java) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -145,10 +112,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 11) diff --git a/gemfiles/jruby_9.3_stripe_12.gemfile b/gemfiles/jruby_9.3_stripe_12.gemfile index 35370e3afbc..37742d718d0 100644 --- a/gemfiles/jruby_9.3_stripe_12.gemfile +++ b/gemfiles/jruby_9.3_stripe_12.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.3_stripe_12.gemfile.lock b/gemfiles/jruby_9.3_stripe_12.gemfile.lock index baa10fa1737..1dcdf1af90e 100644 --- a/gemfiles/jruby_9.3_stripe_12.gemfile.lock +++ b/gemfiles/jruby_9.3_stripe_12.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.13.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -29,7 +28,6 @@ GEM dogstatsd-ruby (5.6.1) ffi (1.17.1-java) hashdiff (1.1.1) - json (2.7.2-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -39,10 +37,6 @@ GEM method_source (1.1.0) msgpack (1.7.5-java) os (1.1.4) - parallel (1.24.0) - parser (3.3.4.2) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -52,12 +46,9 @@ GEM pry (>= 0.13, < 0.15) ruby-debug-base (>= 0.10.4, < 0.12) public_suffix (5.1.1) - racc (1.8.1-java) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.6) strscan rspec (3.13.0) @@ -79,30 +70,7 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.30.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -116,7 +84,6 @@ GEM ffi stripe (12.6.0) strscan (3.1.0-java) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -145,10 +112,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 12) diff --git a/gemfiles/jruby_9.3_stripe_7.gemfile b/gemfiles/jruby_9.3_stripe_7.gemfile index 1408fdc6b85..b57ca37efcc 100644 --- a/gemfiles/jruby_9.3_stripe_7.gemfile +++ b/gemfiles/jruby_9.3_stripe_7.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.3_stripe_7.gemfile.lock b/gemfiles/jruby_9.3_stripe_7.gemfile.lock index ae3a487f929..4e0d4932a98 100644 --- a/gemfiles/jruby_9.3_stripe_7.gemfile.lock +++ b/gemfiles/jruby_9.3_stripe_7.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.13.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -29,7 +28,6 @@ GEM dogstatsd-ruby (5.6.1) ffi (1.17.1-java) hashdiff (1.1.1) - json (2.7.2-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -39,10 +37,6 @@ GEM method_source (1.1.0) msgpack (1.7.5-java) os (1.1.4) - parallel (1.24.0) - parser (3.3.4.2) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -52,12 +46,9 @@ GEM pry (>= 0.13, < 0.15) ruby-debug-base (>= 0.10.4, < 0.12) public_suffix (5.1.1) - racc (1.8.1-java) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.6) strscan rspec (3.13.0) @@ -79,30 +70,7 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.30.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -116,7 +84,6 @@ GEM ffi stripe (7.1.0) strscan (3.1.0-java) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -145,10 +112,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 7) diff --git a/gemfiles/jruby_9.3_stripe_8.gemfile b/gemfiles/jruby_9.3_stripe_8.gemfile index d1ea1e6c0e2..4e5f5f74408 100644 --- a/gemfiles/jruby_9.3_stripe_8.gemfile +++ b/gemfiles/jruby_9.3_stripe_8.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.3_stripe_8.gemfile.lock b/gemfiles/jruby_9.3_stripe_8.gemfile.lock index 6fd47e9892f..f4bdf4eb587 100644 --- a/gemfiles/jruby_9.3_stripe_8.gemfile.lock +++ b/gemfiles/jruby_9.3_stripe_8.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.13.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -29,7 +28,6 @@ GEM dogstatsd-ruby (5.6.1) ffi (1.17.1-java) hashdiff (1.1.1) - json (2.7.2-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -39,10 +37,6 @@ GEM method_source (1.1.0) msgpack (1.7.5-java) os (1.1.4) - parallel (1.24.0) - parser (3.3.4.2) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -52,12 +46,9 @@ GEM pry (>= 0.13, < 0.15) ruby-debug-base (>= 0.10.4, < 0.12) public_suffix (5.1.1) - racc (1.8.1-java) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.6) strscan rspec (3.13.0) @@ -79,30 +70,7 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.30.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -116,7 +84,6 @@ GEM ffi stripe (8.7.0) strscan (3.1.0-java) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -145,10 +112,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 8) diff --git a/gemfiles/jruby_9.3_stripe_9.gemfile b/gemfiles/jruby_9.3_stripe_9.gemfile index 109b9959e43..cf79371164b 100644 --- a/gemfiles/jruby_9.3_stripe_9.gemfile +++ b/gemfiles/jruby_9.3_stripe_9.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.3_stripe_9.gemfile.lock b/gemfiles/jruby_9.3_stripe_9.gemfile.lock index a9a63886328..26f5914a7e4 100644 --- a/gemfiles/jruby_9.3_stripe_9.gemfile.lock +++ b/gemfiles/jruby_9.3_stripe_9.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.13.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -29,7 +28,6 @@ GEM dogstatsd-ruby (5.6.1) ffi (1.17.1-java) hashdiff (1.1.1) - json (2.7.2-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -39,10 +37,6 @@ GEM method_source (1.1.0) msgpack (1.7.5-java) os (1.1.4) - parallel (1.24.0) - parser (3.3.4.2) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -52,12 +46,9 @@ GEM pry (>= 0.13, < 0.15) ruby-debug-base (>= 0.10.4, < 0.12) public_suffix (5.1.1) - racc (1.8.1-java) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.6) strscan rspec (3.13.0) @@ -79,30 +70,7 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.30.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -116,7 +84,6 @@ GEM ffi stripe (9.4.0) strscan (3.1.0-java) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -145,10 +112,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 9) diff --git a/gemfiles/jruby_9.3_stripe_latest.gemfile b/gemfiles/jruby_9.3_stripe_latest.gemfile index ee6d27be27f..65b1abda99d 100644 --- a/gemfiles/jruby_9.3_stripe_latest.gemfile +++ b/gemfiles/jruby_9.3_stripe_latest.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.3_stripe_latest.gemfile.lock b/gemfiles/jruby_9.3_stripe_latest.gemfile.lock index 354992074af..b86db5c8601 100644 --- a/gemfiles/jruby_9.3_stripe_latest.gemfile.lock +++ b/gemfiles/jruby_9.3_stripe_latest.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.14.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -29,7 +28,6 @@ GEM dogstatsd-ruby (5.6.1) ffi (1.17.1-java) hashdiff (1.1.1) - json (2.7.2-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -39,10 +37,6 @@ GEM method_source (1.1.0) msgpack (1.7.5-java) os (1.1.4) - parallel (1.24.0) - parser (3.3.5.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -52,12 +46,9 @@ GEM pry (>= 0.13, < 0.15) ruby-debug-base (>= 0.10.4, < 0.12) public_suffix (5.1.1) - racc (1.8.1-java) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.7) rspec (3.13.0) rspec-core (~> 3.13.0) @@ -78,30 +69,7 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.30.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -114,7 +82,6 @@ GEM spoon (0.0.6) ffi stripe (13.3.0) - unicode-display_width (2.6.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -143,10 +110,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) stripe diff --git a/gemfiles/jruby_9.3_stripe_min.gemfile b/gemfiles/jruby_9.3_stripe_min.gemfile index 6a095bab796..10309f0512e 100644 --- a/gemfiles/jruby_9.3_stripe_min.gemfile +++ b/gemfiles/jruby_9.3_stripe_min.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.3_stripe_min.gemfile.lock b/gemfiles/jruby_9.3_stripe_min.gemfile.lock index dad776c5c37..9fafa3472e3 100644 --- a/gemfiles/jruby_9.3_stripe_min.gemfile.lock +++ b/gemfiles/jruby_9.3_stripe_min.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.14.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -29,7 +28,6 @@ GEM dogstatsd-ruby (5.6.1) ffi (1.17.1-java) hashdiff (1.1.1) - json (2.7.2-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -39,10 +37,6 @@ GEM method_source (1.1.0) msgpack (1.7.5-java) os (1.1.4) - parallel (1.24.0) - parser (3.3.5.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -52,12 +46,9 @@ GEM pry (>= 0.13, < 0.15) ruby-debug-base (>= 0.10.4, < 0.12) public_suffix (5.1.1) - racc (1.8.1-java) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.7) rspec (3.13.0) rspec-core (~> 3.13.0) @@ -78,30 +69,7 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.30.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -114,7 +82,6 @@ GEM spoon (0.0.6) ffi stripe (5.15.0) - unicode-display_width (2.6.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -143,10 +110,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) stripe (= 5.15.0) diff --git a/gemfiles/jruby_9.4_activesupport.gemfile b/gemfiles/jruby_9.4_activesupport.gemfile index 91265afc4a4..99c35071501 100644 --- a/gemfiles/jruby_9.4_activesupport.gemfile +++ b/gemfiles/jruby_9.4_activesupport.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.4_activesupport.gemfile.lock b/gemfiles/jruby_9.4_activesupport.gemfile.lock index 4612a36fa33..3ed54f9f1b0 100644 --- a/gemfiles/jruby_9.4_activesupport.gemfile.lock +++ b/gemfiles/jruby_9.4_activesupport.gemfile.lock @@ -36,7 +36,6 @@ GEM minitest (>= 5.1) tzinfo (~> 2.0) addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.12.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -81,7 +80,6 @@ GEM hashdiff (1.0.1) i18n (1.14.1) concurrent-ruby (~> 1.0) - json (2.6.3-java) json-schema (2.8.1) addressable (>= 2.4) jsonapi-renderer (0.2.2) @@ -109,10 +107,6 @@ GEM nokogiri (1.15.4-java) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -144,7 +138,6 @@ GEM rake (>= 12.2) thor (~> 1.0) zeitwerk (~> 2.5) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake @@ -152,7 +145,6 @@ GEM ffi (~> 1.15) mini_portile2 (~> 2.6) rake (> 12) - regexp_parser (2.8.1) request_store (1.5.1) rack (>= 1.4) rexml (3.2.8) @@ -176,32 +168,9 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.0) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) ruby-kafka (1.5.0) digest-crc - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) simplecov (0.21.2) docile (~> 1.1) @@ -218,7 +187,6 @@ GEM thor (1.2.2) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -256,10 +224,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) ruby-kafka (>= 0.7.10) simplecov simplecov-cobertura (~> 2.1.0) diff --git a/gemfiles/jruby_9.4_aws.gemfile b/gemfiles/jruby_9.4_aws.gemfile index 97e0afcb90a..14f7eb86205 100644 --- a/gemfiles/jruby_9.4_aws.gemfile +++ b/gemfiles/jruby_9.4_aws.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.4_aws.gemfile.lock b/gemfiles/jruby_9.4_aws.gemfile.lock index aae302257a6..5ecdd5b172d 100644 --- a/gemfiles/jruby_9.4_aws.gemfile.lock +++ b/gemfiles/jruby_9.4_aws.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) aws-eventstream (1.2.0) aws-partitions (1.813.0) aws-sdk (3.1.0) @@ -1448,7 +1447,6 @@ GEM ffi (1.17.1-java) hashdiff (1.0.1) jmespath (1.6.2) - json (2.6.3-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -1458,10 +1456,6 @@ GEM method_source (1.0.0) msgpack (1.7.5-java) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -1470,12 +1464,9 @@ GEM pry-debugger-jruby (2.1.1-java) pry (>= 0.13, < 0.15) ruby-debug-base (>= 0.10.4, < 0.12) - racc (1.7.1-java) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -1497,30 +1488,7 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.0) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) shoryuken (6.0.0) aws-sdk-core (>= 2) concurrent-ruby @@ -1538,7 +1506,6 @@ GEM ffi strscan (3.1.0-java) thor (1.2.2) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -1569,10 +1536,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) shoryuken simplecov simplecov-cobertura (~> 2.1.0) diff --git a/gemfiles/jruby_9.4_contrib.gemfile b/gemfiles/jruby_9.4_contrib.gemfile index 24ee7bdc687..7e150fe4271 100644 --- a/gemfiles/jruby_9.4_contrib.gemfile +++ b/gemfiles/jruby_9.4_contrib.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.4_contrib.gemfile.lock b/gemfiles/jruby_9.4_contrib.gemfile.lock index ddedc86899c..b9599f9dc24 100644 --- a/gemfiles/jruby_9.4_contrib.gemfile.lock +++ b/gemfiles/jruby_9.4_contrib.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.4.0) amq-protocol (2.3.2) - ast (2.4.2) benchmark-ips (2.10.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -33,7 +32,6 @@ GEM dogstatsd-ruby (5.5.0) ffi (1.17.1-java) hashdiff (1.0.1) - json (2.6.3-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -49,10 +47,6 @@ GEM mustermann (3.0.0) ruby2_keywords (~> 0.0.1) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -62,13 +56,11 @@ GEM pry (>= 0.13, < 0.15) ruby-debug-base (>= 0.10.4, < 0.12) que (2.2.0) - racc (1.7.1-java) rack (2.2.8) rack-protection (3.0.5) rack rack-test (2.1.0) rack (>= 1.3) - rainbow (3.1.1) rake (12.3.3) rake-compiler (1.2.1) rake @@ -77,7 +69,6 @@ GEM connection_pool redis-namespace (1.10.0) redis (>= 4) - regexp_parser (2.8.1) resque (2.4.0) mono_logger (~> 1.0) multi_json (~> 1.0) @@ -106,30 +97,7 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) semantic_logger (4.12.0) concurrent-ruby (~> 1.0) @@ -169,7 +137,6 @@ GEM concurrent-ruby (~> 1.0) thor (1.2.1) tilt (2.0.11) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -205,10 +172,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) semantic_logger (~> 4.0) sidekiq (~> 7) simplecov diff --git a/gemfiles/jruby_9.4_contrib_old.gemfile b/gemfiles/jruby_9.4_contrib_old.gemfile index 17467a3c477..c3776718de8 100644 --- a/gemfiles/jruby_9.4_contrib_old.gemfile +++ b/gemfiles/jruby_9.4_contrib_old.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.4_contrib_old.gemfile.lock b/gemfiles/jruby_9.4_contrib_old.gemfile.lock index cd4830bacb1..a5eb7712a50 100644 --- a/gemfiles/jruby_9.4_contrib_old.gemfile.lock +++ b/gemfiles/jruby_9.4_contrib_old.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.10.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -31,7 +30,6 @@ GEM faraday (>= 0.7.4, < 1.0) ffi (1.17.1-java) hashdiff (1.0.1) - json (2.6.3-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -42,10 +40,6 @@ GEM msgpack (1.7.5-java) multipart-post (2.2.3) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) presto-client (0.6.6) faraday (~> 0.12) @@ -60,13 +54,10 @@ GEM ruby-debug-base (>= 0.10.4, < 0.12) qless (0.10.0) redis (>= 2.2) - racc (1.7.1-java) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake redis (3.3.5) - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -88,30 +79,7 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -124,7 +92,6 @@ GEM spoon (0.0.6) ffi strscan (3.1.0-java) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -158,10 +125,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/jruby_9.4_core_old.gemfile b/gemfiles/jruby_9.4_core_old.gemfile index eadbd244a6e..2cbf46d1357 100644 --- a/gemfiles/jruby_9.4_core_old.gemfile +++ b/gemfiles/jruby_9.4_core_old.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.4_core_old.gemfile.lock b/gemfiles/jruby_9.4_core_old.gemfile.lock index e9e5956a0b5..10d05123fd8 100644 --- a/gemfiles/jruby_9.4_core_old.gemfile.lock +++ b/gemfiles/jruby_9.4_core_old.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.10.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -26,7 +25,6 @@ GEM dogstatsd-ruby (4.8.3) ffi (1.17.1-java) hashdiff (1.0.1) - json (2.6.3-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -36,10 +34,6 @@ GEM method_source (1.0.0) msgpack (1.7.5-java) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -48,12 +42,9 @@ GEM pry-debugger-jruby (2.1.1-java) pry (>= 0.13, < 0.15) ruby-debug-base (>= 0.10.4, < 0.12) - racc (1.7.1-java) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -75,30 +66,7 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -111,7 +79,6 @@ GEM spoon (0.0.6) ffi strscan (3.1.0-java) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -141,10 +108,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/jruby_9.4_elasticsearch_7.gemfile b/gemfiles/jruby_9.4_elasticsearch_7.gemfile index a3ab55b7c4c..4349a490284 100644 --- a/gemfiles/jruby_9.4_elasticsearch_7.gemfile +++ b/gemfiles/jruby_9.4_elasticsearch_7.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.4_elasticsearch_7.gemfile.lock b/gemfiles/jruby_9.4_elasticsearch_7.gemfile.lock index 58fd61f9322..fd8baa1ddc0 100644 --- a/gemfiles/jruby_9.4_elasticsearch_7.gemfile.lock +++ b/gemfiles/jruby_9.4_elasticsearch_7.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.5) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.12.0) benchmark-memory (0.1.2) @@ -57,10 +56,6 @@ GEM net-http (0.6.0) uri os (1.1.4) - parallel (1.23.0) - parser (3.2.2.4) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -70,12 +65,9 @@ GEM pry (>= 0.13, < 0.15) ruby-debug-base (>= 0.10.4, < 0.12) public_suffix (5.0.3) - racc (1.7.1-java) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.2) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -97,30 +89,7 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -133,7 +102,6 @@ GEM spoon (0.0.6) ffi strscan (3.1.0-java) - unicode-display_width (2.5.0) uri (1.0.2) warning (1.3.0) webmock (3.19.1) @@ -165,10 +133,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/jruby_9.4_elasticsearch_8.gemfile b/gemfiles/jruby_9.4_elasticsearch_8.gemfile index a570d37a332..e457e2d23f5 100644 --- a/gemfiles/jruby_9.4_elasticsearch_8.gemfile +++ b/gemfiles/jruby_9.4_elasticsearch_8.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.4_elasticsearch_8.gemfile.lock b/gemfiles/jruby_9.4_elasticsearch_8.gemfile.lock index 5b6662b7957..403fd0f3b46 100644 --- a/gemfiles/jruby_9.4_elasticsearch_8.gemfile.lock +++ b/gemfiles/jruby_9.4_elasticsearch_8.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.5) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) benchmark-ips (2.12.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -55,10 +54,6 @@ GEM net-http (0.6.0) uri os (1.1.4) - parallel (1.23.0) - parser (3.2.2.4) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -68,12 +63,9 @@ GEM pry (>= 0.13, < 0.15) ruby-debug-base (>= 0.10.4, < 0.12) public_suffix (5.0.3) - racc (1.7.1-java) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.2) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -95,30 +87,7 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -131,7 +100,6 @@ GEM spoon (0.0.6) ffi strscan (3.1.0-java) - unicode-display_width (2.5.0) uri (1.0.2) warning (1.3.0) webmock (3.19.1) @@ -163,10 +131,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/jruby_9.4_elasticsearch_latest.gemfile b/gemfiles/jruby_9.4_elasticsearch_latest.gemfile index e7d4ec78039..68c48468192 100644 --- a/gemfiles/jruby_9.4_elasticsearch_latest.gemfile +++ b/gemfiles/jruby_9.4_elasticsearch_latest.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.4_elasticsearch_latest.gemfile.lock b/gemfiles/jruby_9.4_elasticsearch_latest.gemfile.lock index 60cf110d825..1ce368e870a 100644 --- a/gemfiles/jruby_9.4_elasticsearch_latest.gemfile.lock +++ b/gemfiles/jruby_9.4_elasticsearch_latest.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.14.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -57,10 +56,6 @@ GEM net-http (0.6.0) uri os (1.1.4) - parallel (1.26.3) - parser (3.3.5.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -70,12 +65,9 @@ GEM pry (>= 0.13, < 0.15) ruby-debug-base (>= 0.10.4, < 0.12) public_suffix (6.0.1) - racc (1.8.1-java) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.7) rspec (3.13.0) rspec-core (~> 3.13.0) @@ -96,30 +88,7 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.3) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.22.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -131,7 +100,6 @@ GEM simplecov_json_formatter (0.1.4) spoon (0.0.6) ffi - unicode-display_width (2.6.0) uri (1.0.2) warning (1.4.0) webmock (3.23.1) @@ -163,10 +131,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/jruby_9.4_graphql_1.13.gemfile b/gemfiles/jruby_9.4_graphql_1.13.gemfile index b5dde5a3246..1875fc96980 100644 --- a/gemfiles/jruby_9.4_graphql_1.13.gemfile +++ b/gemfiles/jruby_9.4_graphql_1.13.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.4_graphql_1.13.gemfile.lock b/gemfiles/jruby_9.4_graphql_1.13.gemfile.lock index 166fe4df7ed..1e163a96b9f 100644 --- a/gemfiles/jruby_9.4_graphql_1.13.gemfile.lock +++ b/gemfiles/jruby_9.4_graphql_1.13.gemfile.lock @@ -71,7 +71,6 @@ GEM zeitwerk (~> 2.3) addressable (2.8.6) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -96,7 +95,6 @@ GEM hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) - json (2.7.1-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -134,10 +132,6 @@ GEM nokogiri (1.16.6-java) racc (~> 1.4) os (1.1.4) - parallel (1.24.0) - parser (3.3.0.5) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -179,11 +173,9 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.1.0) rake-compiler (1.2.6) rake - regexp_parser (2.9.0) request_store (1.7.0) rack (>= 1.4) rexml (3.2.8) @@ -207,30 +199,7 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.30.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.20.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.20.2) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.30.0, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -255,7 +224,6 @@ GEM timeout (0.4.1) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.5.0) warning (1.3.0) webmock (3.19.1) addressable (>= 2.8.0) @@ -292,10 +260,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/jruby_9.4_graphql_2.0.gemfile b/gemfiles/jruby_9.4_graphql_2.0.gemfile index 61e2581778e..e729d469a9c 100644 --- a/gemfiles/jruby_9.4_graphql_2.0.gemfile +++ b/gemfiles/jruby_9.4_graphql_2.0.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.4_graphql_2.0.gemfile.lock b/gemfiles/jruby_9.4_graphql_2.0.gemfile.lock index 7d20a779447..c33a0026e42 100644 --- a/gemfiles/jruby_9.4_graphql_2.0.gemfile.lock +++ b/gemfiles/jruby_9.4_graphql_2.0.gemfile.lock @@ -71,7 +71,6 @@ GEM zeitwerk (~> 2.3) addressable (2.8.6) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -96,7 +95,6 @@ GEM hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) - json (2.7.1-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -134,10 +132,6 @@ GEM nokogiri (1.16.6-java) racc (~> 1.4) os (1.1.4) - parallel (1.24.0) - parser (3.3.0.5) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -179,11 +173,9 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.1.0) rake-compiler (1.2.6) rake - regexp_parser (2.9.0) request_store (1.7.0) rack (>= 1.4) rexml (3.2.8) @@ -207,30 +199,7 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.30.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.20.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.20.2) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.30.0, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -255,7 +224,6 @@ GEM timeout (0.4.1) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.5.0) warning (1.3.0) webmock (3.19.1) addressable (>= 2.8.0) @@ -292,10 +260,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/jruby_9.4_graphql_2.1.gemfile b/gemfiles/jruby_9.4_graphql_2.1.gemfile index 3f2658ed0d1..4c04f5baaa3 100644 --- a/gemfiles/jruby_9.4_graphql_2.1.gemfile +++ b/gemfiles/jruby_9.4_graphql_2.1.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.4_graphql_2.1.gemfile.lock b/gemfiles/jruby_9.4_graphql_2.1.gemfile.lock index 7bd091ca78b..8efca7fea96 100644 --- a/gemfiles/jruby_9.4_graphql_2.1.gemfile.lock +++ b/gemfiles/jruby_9.4_graphql_2.1.gemfile.lock @@ -71,7 +71,6 @@ GEM zeitwerk (~> 2.3) addressable (2.8.6) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -97,7 +96,6 @@ GEM hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) - json (2.7.1-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -135,10 +133,6 @@ GEM nokogiri (1.16.6-java) racc (~> 1.4) os (1.1.4) - parallel (1.24.0) - parser (3.3.0.5) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -180,11 +174,9 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.1.0) rake-compiler (1.2.6) rake - regexp_parser (2.9.0) request_store (1.7.0) rack (>= 1.4) rexml (3.2.8) @@ -208,30 +200,7 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.30.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.20.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.20.2) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.30.0, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -256,7 +225,6 @@ GEM timeout (0.4.1) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.5.0) warning (1.3.0) webmock (3.19.1) addressable (>= 2.8.0) @@ -293,10 +261,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/jruby_9.4_graphql_2.2.gemfile b/gemfiles/jruby_9.4_graphql_2.2.gemfile index eb0ce13dd83..bb13661a6d8 100644 --- a/gemfiles/jruby_9.4_graphql_2.2.gemfile +++ b/gemfiles/jruby_9.4_graphql_2.2.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.4_graphql_2.2.gemfile.lock b/gemfiles/jruby_9.4_graphql_2.2.gemfile.lock index 883430ada30..c2e108cb476 100644 --- a/gemfiles/jruby_9.4_graphql_2.2.gemfile.lock +++ b/gemfiles/jruby_9.4_graphql_2.2.gemfile.lock @@ -71,7 +71,6 @@ GEM zeitwerk (~> 2.3) addressable (2.8.6) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -97,7 +96,6 @@ GEM hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) - json (2.7.1-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -135,10 +133,6 @@ GEM nokogiri (1.16.6-java) racc (~> 1.4) os (1.1.4) - parallel (1.24.0) - parser (3.3.0.5) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -180,11 +174,9 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.1.0) rake-compiler (1.2.6) rake - regexp_parser (2.9.0) request_store (1.7.0) rack (>= 1.4) rexml (3.2.8) @@ -208,30 +200,7 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.30.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.20.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.20.2) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.30.0, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -256,7 +225,6 @@ GEM timeout (0.4.1) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.5.0) warning (1.3.0) webmock (3.19.1) addressable (>= 2.8.0) @@ -293,10 +261,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/jruby_9.4_graphql_2.3.gemfile b/gemfiles/jruby_9.4_graphql_2.3.gemfile index a4d037b1d29..58f77948803 100644 --- a/gemfiles/jruby_9.4_graphql_2.3.gemfile +++ b/gemfiles/jruby_9.4_graphql_2.3.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.4_graphql_2.3.gemfile.lock b/gemfiles/jruby_9.4_graphql_2.3.gemfile.lock index cc00a23e155..073e39e6ace 100644 --- a/gemfiles/jruby_9.4_graphql_2.3.gemfile.lock +++ b/gemfiles/jruby_9.4_graphql_2.3.gemfile.lock @@ -71,7 +71,6 @@ GEM zeitwerk (~> 2.3) addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -99,7 +98,6 @@ GEM hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) - json (2.7.2-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -137,10 +135,6 @@ GEM nokogiri (1.16.6-java) racc (~> 1.4) os (1.1.4) - parallel (1.25.1) - parser (3.3.3.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -182,11 +176,9 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) request_store (1.7.0) rack (>= 1.4) rexml (3.3.1) @@ -210,30 +202,7 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.31.3) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -258,7 +227,6 @@ GEM timeout (0.4.1) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -295,10 +263,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/jruby_9.4_http.gemfile b/gemfiles/jruby_9.4_http.gemfile index b1feea035e1..33287df0391 100644 --- a/gemfiles/jruby_9.4_http.gemfile +++ b/gemfiles/jruby_9.4_http.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.4_http.gemfile.lock b/gemfiles/jruby_9.4_http.gemfile.lock index 2cfb36dcd97..469ace04f52 100644 --- a/gemfiles/jruby_9.4_http.gemfile.lock +++ b/gemfiles/jruby_9.4_http.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.12.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -50,7 +49,6 @@ GEM http-parser (1.2.3) ffi-compiler (>= 1.0, < 2.0) httpclient (2.8.3) - json (2.6.3-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -64,10 +62,6 @@ GEM msgpack (1.7.5-java) netrc (0.11.0) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -76,12 +70,9 @@ GEM pry-debugger-jruby (2.1.1-java) pry (>= 0.13, < 0.15) ruby-debug-base (>= 0.10.4, < 0.12) - racc (1.7.1-java) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.1) rest-client (2.1.0) http-accept (>= 1.7.0, < 2.0) http-cookie (>= 1.0.2, < 2.0) @@ -108,30 +99,7 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.0) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) simplecov (0.21.2) docile (~> 1.1) @@ -148,7 +116,6 @@ GEM typhoeus (1.4.0) ethon (>= 0.9.0) unf (0.1.4-java) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -184,10 +151,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) typhoeus diff --git a/gemfiles/jruby_9.4_opensearch_2.gemfile b/gemfiles/jruby_9.4_opensearch_2.gemfile index eef39c3687a..e3dd78c43c9 100644 --- a/gemfiles/jruby_9.4_opensearch_2.gemfile +++ b/gemfiles/jruby_9.4_opensearch_2.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.4_opensearch_2.gemfile.lock b/gemfiles/jruby_9.4_opensearch_2.gemfile.lock index 66611d2971b..9ebba407af7 100644 --- a/gemfiles/jruby_9.4_opensearch_2.gemfile.lock +++ b/gemfiles/jruby_9.4_opensearch_2.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.5) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) benchmark-ips (2.12.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -55,10 +54,6 @@ GEM faraday (>= 1.0, < 3) multi_json os (1.1.4) - parallel (1.23.0) - parser (3.2.2.4) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -68,12 +63,9 @@ GEM pry (>= 0.13, < 0.15) ruby-debug-base (>= 0.10.4, < 0.12) public_suffix (5.0.3) - racc (1.7.1-java) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -95,30 +87,7 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -131,7 +100,6 @@ GEM spoon (0.0.6) ffi strscan (3.1.0-java) - unicode-display_width (2.5.0) uri (1.0.2) warning (1.3.0) webmock (3.19.1) @@ -163,10 +131,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/jruby_9.4_opensearch_3.gemfile b/gemfiles/jruby_9.4_opensearch_3.gemfile index eb0e9dcd7d4..0ea85b9ba48 100644 --- a/gemfiles/jruby_9.4_opensearch_3.gemfile +++ b/gemfiles/jruby_9.4_opensearch_3.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.4_opensearch_3.gemfile.lock b/gemfiles/jruby_9.4_opensearch_3.gemfile.lock index f9d5de81b29..22c10fda3bf 100644 --- a/gemfiles/jruby_9.4_opensearch_3.gemfile.lock +++ b/gemfiles/jruby_9.4_opensearch_3.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.5) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) benchmark-ips (2.12.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -50,10 +49,6 @@ GEM faraday (>= 1.0, < 3) multi_json (>= 1.0) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.4) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -63,12 +58,9 @@ GEM pry (>= 0.13, < 0.15) ruby-debug-base (>= 0.10.4, < 0.12) public_suffix (5.0.3) - racc (1.7.1-java) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -90,30 +82,7 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -126,7 +95,6 @@ GEM spoon (0.0.6) ffi strscan (3.1.0-java) - unicode-display_width (2.5.0) uri (1.0.2) warning (1.3.0) webmock (3.19.1) @@ -158,10 +126,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/jruby_9.4_opensearch_latest.gemfile b/gemfiles/jruby_9.4_opensearch_latest.gemfile index 145c1e0a7b7..29a7d68cb28 100644 --- a/gemfiles/jruby_9.4_opensearch_latest.gemfile +++ b/gemfiles/jruby_9.4_opensearch_latest.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.4_opensearch_latest.gemfile.lock b/gemfiles/jruby_9.4_opensearch_latest.gemfile.lock index 2e5086bfebc..a281f0cb0fa 100644 --- a/gemfiles/jruby_9.4_opensearch_latest.gemfile.lock +++ b/gemfiles/jruby_9.4_opensearch_latest.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.14.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -52,10 +51,6 @@ GEM faraday (>= 1.0, < 3) multi_json (>= 1.0) os (1.1.4) - parallel (1.26.3) - parser (3.3.5.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -65,12 +60,9 @@ GEM pry (>= 0.13, < 0.15) ruby-debug-base (>= 0.10.4, < 0.12) public_suffix (6.0.1) - racc (1.8.1-java) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.7) rspec (3.13.0) rspec-core (~> 3.13.0) @@ -91,30 +83,7 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.3) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.22.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -126,7 +95,6 @@ GEM simplecov_json_formatter (0.1.4) spoon (0.0.6) ffi - unicode-display_width (2.6.0) uri (1.0.2) warning (1.4.0) webmock (3.23.1) @@ -158,10 +126,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/jruby_9.4_rack_1.gemfile b/gemfiles/jruby_9.4_rack_1.gemfile index 249bd653194..312cffb51d9 100644 --- a/gemfiles/jruby_9.4_rack_1.gemfile +++ b/gemfiles/jruby_9.4_rack_1.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.4_rack_1.gemfile.lock b/gemfiles/jruby_9.4_rack_1.gemfile.lock index cc65b046bae..4569b3ebc0a 100644 --- a/gemfiles/jruby_9.4_rack_1.gemfile.lock +++ b/gemfiles/jruby_9.4_rack_1.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.12.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -26,7 +25,6 @@ GEM dogstatsd-ruby (5.6.1) ffi (1.17.1-java) hashdiff (1.0.1) - json (2.6.3-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -36,10 +34,6 @@ GEM method_source (1.0.0) msgpack (1.7.5-java) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -48,17 +42,14 @@ GEM pry-debugger-jruby (2.1.1-java) pry (>= 0.13, < 0.15) ruby-debug-base (>= 0.10.4, < 0.12) - racc (1.7.1-java) rack (1.6.13) rack-contrib (1.8.0) rack (~> 1.4) rack-test (2.1.0) rack (>= 1.3) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -80,30 +71,7 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.0) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -116,7 +84,6 @@ GEM spoon (0.0.6) ffi strscan (3.1.0-java) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -149,10 +116,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/jruby_9.4_rack_2.gemfile b/gemfiles/jruby_9.4_rack_2.gemfile index df9d7a24618..55d8ebadb0e 100644 --- a/gemfiles/jruby_9.4_rack_2.gemfile +++ b/gemfiles/jruby_9.4_rack_2.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.4_rack_2.gemfile.lock b/gemfiles/jruby_9.4_rack_2.gemfile.lock index 3f1306c029f..ced5234ec8f 100644 --- a/gemfiles/jruby_9.4_rack_2.gemfile.lock +++ b/gemfiles/jruby_9.4_rack_2.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.12.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -26,7 +25,6 @@ GEM dogstatsd-ruby (5.6.1) ffi (1.17.1-java) hashdiff (1.0.1) - json (2.6.3-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -36,10 +34,6 @@ GEM method_source (1.0.0) msgpack (1.7.5-java) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -48,17 +42,14 @@ GEM pry-debugger-jruby (2.1.1-java) pry (>= 0.13, < 0.15) ruby-debug-base (>= 0.10.4, < 0.12) - racc (1.7.1-java) rack (2.2.10) rack-contrib (2.3.0) rack (~> 2.0) rack-test (2.1.0) rack (>= 1.3) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -80,30 +71,7 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.0) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -116,7 +84,6 @@ GEM spoon (0.0.6) ffi strscan (3.1.0-java) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -149,10 +116,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/jruby_9.4_rack_3.gemfile b/gemfiles/jruby_9.4_rack_3.gemfile index 5ee90b356d4..ee218e298d4 100644 --- a/gemfiles/jruby_9.4_rack_3.gemfile +++ b/gemfiles/jruby_9.4_rack_3.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.4_rack_3.gemfile.lock b/gemfiles/jruby_9.4_rack_3.gemfile.lock index 7641b325363..ef234610b59 100644 --- a/gemfiles/jruby_9.4_rack_3.gemfile.lock +++ b/gemfiles/jruby_9.4_rack_3.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.12.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -26,7 +25,6 @@ GEM dogstatsd-ruby (5.6.1) ffi (1.17.1-java) hashdiff (1.0.1) - json (2.6.3-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -36,10 +34,6 @@ GEM method_source (1.0.0) msgpack (1.7.5-java) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -48,17 +42,14 @@ GEM pry-debugger-jruby (2.1.1-java) pry (>= 0.13, < 0.15) ruby-debug-base (>= 0.10.4, < 0.12) - racc (1.7.1-java) rack (3.1.8) rack-contrib (1.2.0) rack (>= 0.9.1) rack-test (2.1.0) rack (>= 1.3) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -80,30 +71,7 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.0) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -116,7 +84,6 @@ GEM spoon (0.0.6) ffi strscan (3.1.0-java) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -149,10 +116,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/jruby_9.4_rack_latest.gemfile b/gemfiles/jruby_9.4_rack_latest.gemfile index da8a5ffbd50..9247fd70f37 100644 --- a/gemfiles/jruby_9.4_rack_latest.gemfile +++ b/gemfiles/jruby_9.4_rack_latest.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.4_rack_latest.gemfile.lock b/gemfiles/jruby_9.4_rack_latest.gemfile.lock index b064a457822..c1181080d03 100644 --- a/gemfiles/jruby_9.4_rack_latest.gemfile.lock +++ b/gemfiles/jruby_9.4_rack_latest.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.14.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -29,7 +28,6 @@ GEM dogstatsd-ruby (5.6.2) ffi (1.17.1-java) hashdiff (1.1.1) - json (2.7.2-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -39,10 +37,6 @@ GEM method_source (1.1.0) msgpack (1.7.5-java) os (1.1.4) - parallel (1.26.3) - parser (3.3.5.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -52,17 +46,14 @@ GEM pry (>= 0.13, < 0.15) ruby-debug-base (>= 0.10.4, < 0.12) public_suffix (6.0.1) - racc (1.8.1-java) rack (3.1.8) rack-contrib (2.5.0) rack (< 4) rack-test (2.1.0) rack (>= 1.3) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.7) rspec (3.13.0) rspec-core (~> 3.13.0) @@ -83,30 +74,7 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.3) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.22.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -118,7 +86,6 @@ GEM simplecov_json_formatter (0.1.4) spoon (0.0.6) ffi - unicode-display_width (2.6.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -151,10 +118,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/jruby_9.4_rails61_mysql2.gemfile b/gemfiles/jruby_9.4_rails61_mysql2.gemfile index e1f7923f7d4..4fa906b1d43 100644 --- a/gemfiles/jruby_9.4_rails61_mysql2.gemfile +++ b/gemfiles/jruby_9.4_rails61_mysql2.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.4_rails61_mysql2.gemfile.lock b/gemfiles/jruby_9.4_rails61_mysql2.gemfile.lock index ba1581fdb20..6ac272814c8 100644 --- a/gemfiles/jruby_9.4_rails61_mysql2.gemfile.lock +++ b/gemfiles/jruby_9.4_rails61_mysql2.gemfile.lock @@ -76,7 +76,6 @@ GEM zeitwerk (~> 2.3) addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -103,7 +102,6 @@ GEM i18n (1.14.5) concurrent-ruby (~> 1.0) jdbc-mysql (8.0.30) - json (2.7.2-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -141,10 +139,6 @@ GEM nokogiri (1.16.6-java) racc (~> 1.4) os (1.1.4) - parallel (1.25.1) - parser (3.3.3.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -186,11 +180,9 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) request_store (1.7.0) rack (>= 1.4) rexml (3.3.1) @@ -214,30 +206,7 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.31.3) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -262,7 +231,6 @@ GEM timeout (0.4.1) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -300,10 +268,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/jruby_9.4_rails61_postgres.gemfile b/gemfiles/jruby_9.4_rails61_postgres.gemfile index 0406806df55..61353511a16 100644 --- a/gemfiles/jruby_9.4_rails61_postgres.gemfile +++ b/gemfiles/jruby_9.4_rails61_postgres.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.4_rails61_postgres.gemfile.lock b/gemfiles/jruby_9.4_rails61_postgres.gemfile.lock index 31ee0ba16df..ae6ee885859 100644 --- a/gemfiles/jruby_9.4_rails61_postgres.gemfile.lock +++ b/gemfiles/jruby_9.4_rails61_postgres.gemfile.lock @@ -75,7 +75,6 @@ GEM tzinfo (~> 2.0) zeitwerk (~> 2.3) addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.10.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -99,7 +98,6 @@ GEM i18n (1.12.0) concurrent-ruby (~> 1.0) jdbc-postgres (42.2.25) - json (2.6.3-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -137,10 +135,6 @@ GEM nokogiri (1.14.0-java) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -179,11 +173,9 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake - regexp_parser (2.8.1) request_store (1.5.1) rack (>= 1.4) rexml (3.2.8) @@ -207,30 +199,7 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -254,7 +223,6 @@ GEM timeout (0.3.1) tzinfo (2.0.5) concurrent-ruby (~> 1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -292,10 +260,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/jruby_9.4_rails61_postgres_redis.gemfile b/gemfiles/jruby_9.4_rails61_postgres_redis.gemfile index ef476806239..7d63415c047 100644 --- a/gemfiles/jruby_9.4_rails61_postgres_redis.gemfile +++ b/gemfiles/jruby_9.4_rails61_postgres_redis.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.4_rails61_postgres_redis.gemfile.lock b/gemfiles/jruby_9.4_rails61_postgres_redis.gemfile.lock index 5f914c68c70..c207ac0ab38 100644 --- a/gemfiles/jruby_9.4_rails61_postgres_redis.gemfile.lock +++ b/gemfiles/jruby_9.4_rails61_postgres_redis.gemfile.lock @@ -75,7 +75,6 @@ GEM tzinfo (~> 2.0) zeitwerk (~> 2.3) addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.10.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -99,7 +98,6 @@ GEM i18n (1.12.0) concurrent-ruby (~> 1.0) jdbc-postgres (42.2.25) - json (2.6.3-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -137,10 +135,6 @@ GEM nokogiri (1.14.0-java) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -179,12 +173,10 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake redis (4.8.0) - regexp_parser (2.8.1) request_store (1.5.1) rack (>= 1.4) rexml (3.2.8) @@ -208,30 +200,7 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -255,7 +224,6 @@ GEM timeout (0.3.1) tzinfo (2.0.5) concurrent-ruby (~> 1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -294,10 +262,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/jruby_9.4_rails61_postgres_sidekiq.gemfile b/gemfiles/jruby_9.4_rails61_postgres_sidekiq.gemfile index 46d61e6eb49..6bf0f4e21ce 100644 --- a/gemfiles/jruby_9.4_rails61_postgres_sidekiq.gemfile +++ b/gemfiles/jruby_9.4_rails61_postgres_sidekiq.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.4_rails61_postgres_sidekiq.gemfile.lock b/gemfiles/jruby_9.4_rails61_postgres_sidekiq.gemfile.lock index 658c69913df..5cd283351a8 100644 --- a/gemfiles/jruby_9.4_rails61_postgres_sidekiq.gemfile.lock +++ b/gemfiles/jruby_9.4_rails61_postgres_sidekiq.gemfile.lock @@ -75,7 +75,6 @@ GEM tzinfo (~> 2.0) zeitwerk (~> 2.3) addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.10.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -100,7 +99,6 @@ GEM i18n (1.12.0) concurrent-ruby (~> 1.0) jdbc-postgres (42.2.25) - json (2.6.3-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -138,10 +136,6 @@ GEM nokogiri (1.14.0-java) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -184,13 +178,11 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake redis-client (0.12.1) connection_pool - regexp_parser (2.8.1) request_store (1.5.1) rack (>= 1.4) rexml (3.2.8) @@ -214,30 +206,7 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) semantic_logger (4.12.0) concurrent-ruby (~> 1.0) sidekiq (7.0.3) @@ -268,7 +237,6 @@ GEM timeout (0.3.1) tzinfo (2.0.5) concurrent-ruby (~> 1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -307,10 +275,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) sidekiq (>= 6.1.2) simplecov simplecov-cobertura (~> 2.1.0) diff --git a/gemfiles/jruby_9.4_rails61_semantic_logger.gemfile b/gemfiles/jruby_9.4_rails61_semantic_logger.gemfile index a96316b3a62..b8cddcd6532 100644 --- a/gemfiles/jruby_9.4_rails61_semantic_logger.gemfile +++ b/gemfiles/jruby_9.4_rails61_semantic_logger.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.4_rails61_semantic_logger.gemfile.lock b/gemfiles/jruby_9.4_rails61_semantic_logger.gemfile.lock index 9c2ad66f63d..376068b2799 100644 --- a/gemfiles/jruby_9.4_rails61_semantic_logger.gemfile.lock +++ b/gemfiles/jruby_9.4_rails61_semantic_logger.gemfile.lock @@ -75,7 +75,6 @@ GEM tzinfo (~> 2.0) zeitwerk (~> 2.3) addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.10.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -99,7 +98,6 @@ GEM i18n (1.12.0) concurrent-ruby (~> 1.0) jdbc-postgres (42.2.25) - json (2.6.3-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -132,10 +130,6 @@ GEM nokogiri (1.14.0-java) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -178,11 +172,9 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -204,30 +196,7 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) semantic_logger (4.12.0) concurrent-ruby (~> 1.0) simplecov (0.21.2) @@ -253,7 +222,6 @@ GEM timeout (0.3.1) tzinfo (2.0.5) concurrent-ruby (~> 1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -291,10 +259,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/jruby_9.4_rails_old_redis.gemfile b/gemfiles/jruby_9.4_rails_old_redis.gemfile index 70c854e9c6f..bf5ecdeb8a5 100644 --- a/gemfiles/jruby_9.4_rails_old_redis.gemfile +++ b/gemfiles/jruby_9.4_rails_old_redis.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.4_redis_3.gemfile b/gemfiles/jruby_9.4_redis_3.gemfile index 135688c0834..994f6ab0975 100644 --- a/gemfiles/jruby_9.4_redis_3.gemfile +++ b/gemfiles/jruby_9.4_redis_3.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.4_redis_3.gemfile.lock b/gemfiles/jruby_9.4_redis_3.gemfile.lock index a3f6b1b8efb..1fd865d4d9a 100644 --- a/gemfiles/jruby_9.4_redis_3.gemfile.lock +++ b/gemfiles/jruby_9.4_redis_3.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.10.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -26,7 +25,6 @@ GEM dogstatsd-ruby (5.5.0) ffi (1.17.1-java) hashdiff (1.0.1) - json (2.6.3-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -36,10 +34,6 @@ GEM method_source (1.0.0) msgpack (1.7.5-java) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -48,13 +42,10 @@ GEM pry-debugger-jruby (2.1.1-java) pry (>= 0.13, < 0.15) ruby-debug-base (>= 0.10.4, < 0.12) - racc (1.7.1-java) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake redis (3.3.5) - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -76,30 +67,7 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -112,7 +80,6 @@ GEM spoon (0.0.6) ffi strscan (3.1.0-java) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -143,10 +110,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/jruby_9.4_redis_4.gemfile b/gemfiles/jruby_9.4_redis_4.gemfile index 201c60e72a6..f0cc3cbddec 100644 --- a/gemfiles/jruby_9.4_redis_4.gemfile +++ b/gemfiles/jruby_9.4_redis_4.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.4_redis_4.gemfile.lock b/gemfiles/jruby_9.4_redis_4.gemfile.lock index 08fa909198a..2bcce7fec1f 100644 --- a/gemfiles/jruby_9.4_redis_4.gemfile.lock +++ b/gemfiles/jruby_9.4_redis_4.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.10.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -26,7 +25,6 @@ GEM dogstatsd-ruby (5.5.0) ffi (1.17.1-java) hashdiff (1.0.1) - json (2.6.3-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -36,10 +34,6 @@ GEM method_source (1.0.0) msgpack (1.7.5-java) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -48,13 +42,10 @@ GEM pry-debugger-jruby (2.1.1-java) pry (>= 0.13, < 0.15) ruby-debug-base (>= 0.10.4, < 0.12) - racc (1.7.1-java) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake redis (4.8.0) - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -76,30 +67,7 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -112,7 +80,6 @@ GEM spoon (0.0.6) ffi strscan (3.1.0-java) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -143,10 +110,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/jruby_9.4_redis_5.gemfile b/gemfiles/jruby_9.4_redis_5.gemfile index 0f8a1d8d57f..4e349bcfee7 100644 --- a/gemfiles/jruby_9.4_redis_5.gemfile +++ b/gemfiles/jruby_9.4_redis_5.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.4_redis_5.gemfile.lock b/gemfiles/jruby_9.4_redis_5.gemfile.lock index c1e31caa44c..57639c34265 100644 --- a/gemfiles/jruby_9.4_redis_5.gemfile.lock +++ b/gemfiles/jruby_9.4_redis_5.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.10.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -27,7 +26,6 @@ GEM dogstatsd-ruby (5.5.0) ffi (1.17.1-java) hashdiff (1.0.1) - json (2.6.3-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -37,10 +35,6 @@ GEM method_source (1.0.0) msgpack (1.7.5-java) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -49,8 +43,6 @@ GEM pry-debugger-jruby (2.1.1-java) pry (>= 0.13, < 0.15) ruby-debug-base (>= 0.10.4, < 0.12) - racc (1.7.1-java) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake @@ -58,7 +50,6 @@ GEM redis-client (>= 0.9.0) redis-client (0.12.1) connection_pool - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -80,30 +71,7 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -116,7 +84,6 @@ GEM spoon (0.0.6) ffi strscan (3.1.0-java) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -147,10 +114,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/jruby_9.4_relational_db.gemfile b/gemfiles/jruby_9.4_relational_db.gemfile index 017ac9a1026..6a06fb950ec 100644 --- a/gemfiles/jruby_9.4_relational_db.gemfile +++ b/gemfiles/jruby_9.4_relational_db.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.4_relational_db.gemfile.lock b/gemfiles/jruby_9.4_relational_db.gemfile.lock index 9ac6875a982..6c16f9b61ac 100644 --- a/gemfiles/jruby_9.4_relational_db.gemfile.lock +++ b/gemfiles/jruby_9.4_relational_db.gemfile.lock @@ -31,7 +31,6 @@ GEM zeitwerk (~> 2.3) addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.13.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -58,7 +57,6 @@ GEM jdbc-mysql (8.0.30) jdbc-postgres (42.6.0) jdbc-sqlite3 (3.42.0.0) - json (2.7.2-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -71,10 +69,6 @@ GEM minitest (5.24.1) msgpack (1.7.5-java) os (1.1.4) - parallel (1.25.1) - parser (3.3.3.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -84,12 +78,9 @@ GEM pry (>= 0.13, < 0.15) ruby-debug-base (>= 0.10.4, < 0.12) public_suffix (6.0.0) - racc (1.8.0-java) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.1) strscan rspec (3.13.0) @@ -111,30 +102,7 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.31.3) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) sequel (5.83.1) bigdecimal simplecov (0.21.2) @@ -151,7 +119,6 @@ GEM strscan (3.1.0-java) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -189,10 +156,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) sequel simplecov simplecov-cobertura (~> 2.1.0) diff --git a/gemfiles/jruby_9.4_resque2_redis3.gemfile b/gemfiles/jruby_9.4_resque2_redis3.gemfile index a029e56a2cd..860be6b7468 100644 --- a/gemfiles/jruby_9.4_resque2_redis3.gemfile +++ b/gemfiles/jruby_9.4_resque2_redis3.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.4_resque2_redis3.gemfile.lock b/gemfiles/jruby_9.4_resque2_redis3.gemfile.lock index d5aad0f1d1e..7d2bc7f0e82 100644 --- a/gemfiles/jruby_9.4_resque2_redis3.gemfile.lock +++ b/gemfiles/jruby_9.4_resque2_redis3.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.10.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -26,7 +25,6 @@ GEM dogstatsd-ruby (5.5.0) ffi (1.17.1-java) hashdiff (1.0.1) - json (2.6.3-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -40,10 +38,6 @@ GEM mustermann (3.0.0) ruby2_keywords (~> 0.0.1) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -52,18 +46,15 @@ GEM pry-debugger-jruby (2.1.1-java) pry (>= 0.13, < 0.15) ruby-debug-base (>= 0.10.4, < 0.12) - racc (1.7.1-java) rack (2.2.6.2) rack-protection (3.0.5) rack - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake redis (3.3.5) redis-namespace (1.8.2) redis (>= 3.0.4) - regexp_parser (2.8.1) resque (2.4.0) mono_logger (~> 1.0) multi_json (~> 1.0) @@ -90,30 +81,7 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) simplecov (0.21.2) docile (~> 1.1) @@ -133,7 +101,6 @@ GEM ffi strscan (3.1.0-java) tilt (2.0.11) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -165,10 +132,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/jruby_9.4_resque2_redis4.gemfile b/gemfiles/jruby_9.4_resque2_redis4.gemfile index 1d17052a76d..9e810eb56a3 100644 --- a/gemfiles/jruby_9.4_resque2_redis4.gemfile +++ b/gemfiles/jruby_9.4_resque2_redis4.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.4_resque2_redis4.gemfile.lock b/gemfiles/jruby_9.4_resque2_redis4.gemfile.lock index 3580cedac2c..13ae36c00d1 100644 --- a/gemfiles/jruby_9.4_resque2_redis4.gemfile.lock +++ b/gemfiles/jruby_9.4_resque2_redis4.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.10.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -27,7 +26,6 @@ GEM dogstatsd-ruby (5.5.0) ffi (1.17.1-java) hashdiff (1.0.1) - json (2.6.3-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -41,10 +39,6 @@ GEM mustermann (3.0.0) ruby2_keywords (~> 0.0.1) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -53,11 +47,9 @@ GEM pry-debugger-jruby (2.1.1-java) pry (>= 0.13, < 0.15) ruby-debug-base (>= 0.10.4, < 0.12) - racc (1.7.1-java) rack (2.2.6.2) rack-protection (3.0.5) rack - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake @@ -67,7 +59,6 @@ GEM connection_pool redis-namespace (1.10.0) redis (>= 4) - regexp_parser (2.8.1) resque (2.4.0) mono_logger (~> 1.0) multi_json (~> 1.0) @@ -94,30 +85,7 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) simplecov (0.21.2) docile (~> 1.1) @@ -137,7 +105,6 @@ GEM ffi strscan (3.1.0-java) tilt (2.0.11) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -169,10 +136,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/jruby_9.4_sinatra_2.gemfile b/gemfiles/jruby_9.4_sinatra_2.gemfile index b944b0887bf..4a7127fdf2e 100644 --- a/gemfiles/jruby_9.4_sinatra_2.gemfile +++ b/gemfiles/jruby_9.4_sinatra_2.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.4_sinatra_2.gemfile.lock b/gemfiles/jruby_9.4_sinatra_2.gemfile.lock index a96480fcf3f..67e0828dbc2 100644 --- a/gemfiles/jruby_9.4_sinatra_2.gemfile.lock +++ b/gemfiles/jruby_9.4_sinatra_2.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.6) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) benchmark-ips (2.13.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -29,7 +28,6 @@ GEM dogstatsd-ruby (5.6.1) ffi (1.17.1-java) hashdiff (1.1.0) - json (2.7.2-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -41,10 +39,6 @@ GEM mustermann (2.0.2) ruby2_keywords (~> 0.0.1) os (1.1.4) - parallel (1.24.0) - parser (3.3.0.5) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -54,7 +48,6 @@ GEM pry (>= 0.13, < 0.15) ruby-debug-base (>= 0.10.4, < 0.12) public_suffix (5.0.5) - racc (1.7.3-java) rack (2.2.9) rack-contrib (2.4.0) rack (< 4) @@ -62,11 +55,9 @@ GEM rack rack-test (2.1.0) rack (>= 1.3) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.0) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -88,30 +79,7 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.31.2) - parser (>= 3.3.0.4) - rubocop-capybara (2.20.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.0) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) simplecov (0.21.2) docile (~> 1.1) @@ -131,7 +99,6 @@ GEM ffi strscan (3.1.0-java) tilt (2.3.0) - unicode-display_width (2.5.0) warning (1.3.0) webmock (3.23.0) addressable (>= 2.8.0) @@ -163,10 +130,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sinatra (~> 2) diff --git a/gemfiles/jruby_9.4_sinatra_3.gemfile b/gemfiles/jruby_9.4_sinatra_3.gemfile index 8bca9f0555c..b205546e327 100644 --- a/gemfiles/jruby_9.4_sinatra_3.gemfile +++ b/gemfiles/jruby_9.4_sinatra_3.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.4_sinatra_3.gemfile.lock b/gemfiles/jruby_9.4_sinatra_3.gemfile.lock index dd9a3354ba5..3af128dd3c4 100644 --- a/gemfiles/jruby_9.4_sinatra_3.gemfile.lock +++ b/gemfiles/jruby_9.4_sinatra_3.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.6) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -30,7 +29,6 @@ GEM dogstatsd-ruby (5.6.1) ffi (1.17.1-java) hashdiff (1.1.0) - json (2.7.2-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -42,10 +40,6 @@ GEM mustermann (3.0.0) ruby2_keywords (~> 0.0.1) os (1.1.4) - parallel (1.24.0) - parser (3.3.0.5) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -55,7 +49,6 @@ GEM pry (>= 0.13, < 0.15) ruby-debug-base (>= 0.10.4, < 0.12) public_suffix (5.0.5) - racc (1.7.3-java) rack (2.2.9) rack-contrib (2.4.0) rack (< 4) @@ -64,11 +57,9 @@ GEM rack (~> 2.2, >= 2.2.4) rack-test (2.1.0) rack (>= 1.3) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.0) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -90,30 +81,7 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.31.2) - parser (>= 3.3.0.4) - rubocop-capybara (2.20.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.0) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) simplecov (0.21.2) docile (~> 1.1) @@ -133,7 +101,6 @@ GEM ffi strscan (3.1.0-java) tilt (2.3.0) - unicode-display_width (2.5.0) warning (1.3.0) webmock (3.23.0) addressable (>= 2.8.0) @@ -165,10 +132,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sinatra (~> 3) diff --git a/gemfiles/jruby_9.4_sinatra_4.gemfile b/gemfiles/jruby_9.4_sinatra_4.gemfile index dc3bc9410d6..33e9e19653e 100644 --- a/gemfiles/jruby_9.4_sinatra_4.gemfile +++ b/gemfiles/jruby_9.4_sinatra_4.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.4_sinatra_4.gemfile.lock b/gemfiles/jruby_9.4_sinatra_4.gemfile.lock index 07d986251fd..e1363e13c52 100644 --- a/gemfiles/jruby_9.4_sinatra_4.gemfile.lock +++ b/gemfiles/jruby_9.4_sinatra_4.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.6) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -30,7 +29,6 @@ GEM dogstatsd-ruby (5.6.1) ffi (1.17.1-java) hashdiff (1.1.0) - json (2.7.2-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -42,10 +40,6 @@ GEM mustermann (3.0.0) ruby2_keywords (~> 0.0.1) os (1.1.4) - parallel (1.24.0) - parser (3.3.0.5) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -55,7 +49,6 @@ GEM pry (>= 0.13, < 0.15) ruby-debug-base (>= 0.10.4, < 0.12) public_suffix (5.0.5) - racc (1.7.3-java) rack (3.0.10) rack-contrib (2.4.0) rack (< 4) @@ -66,11 +59,9 @@ GEM rack (>= 3.0.0) rack-test (2.1.0) rack (>= 1.3) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.0) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -92,30 +83,7 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.31.2) - parser (>= 3.3.0.4) - rubocop-capybara (2.20.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.0) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) simplecov (0.21.2) docile (~> 1.1) @@ -136,7 +104,6 @@ GEM ffi strscan (3.1.0-java) tilt (2.3.0) - unicode-display_width (2.5.0) warning (1.3.0) webmock (3.23.0) addressable (>= 2.8.0) @@ -168,10 +135,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sinatra (~> 4) diff --git a/gemfiles/jruby_9.4_stripe_10.gemfile b/gemfiles/jruby_9.4_stripe_10.gemfile index d45cf068582..b8d4fc3298d 100644 --- a/gemfiles/jruby_9.4_stripe_10.gemfile +++ b/gemfiles/jruby_9.4_stripe_10.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.4_stripe_10.gemfile.lock b/gemfiles/jruby_9.4_stripe_10.gemfile.lock index e7f4ea7ba53..23f90427a49 100644 --- a/gemfiles/jruby_9.4_stripe_10.gemfile.lock +++ b/gemfiles/jruby_9.4_stripe_10.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.13.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -29,7 +28,6 @@ GEM dogstatsd-ruby (5.6.1) ffi (1.17.1-java) hashdiff (1.1.1) - json (2.7.2-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -39,10 +37,6 @@ GEM method_source (1.1.0) msgpack (1.7.5-java) os (1.1.4) - parallel (1.26.3) - parser (3.3.4.2) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -52,12 +46,9 @@ GEM pry (>= 0.13, < 0.15) ruby-debug-base (>= 0.10.4, < 0.12) public_suffix (6.0.1) - racc (1.8.1-java) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.6) strscan rspec (3.13.0) @@ -79,30 +70,7 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.1) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -116,7 +84,6 @@ GEM ffi stripe (10.15.0) strscan (3.1.0-java) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -146,10 +113,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 10) diff --git a/gemfiles/jruby_9.4_stripe_11.gemfile b/gemfiles/jruby_9.4_stripe_11.gemfile index 30aee1b666a..5fba798c62c 100644 --- a/gemfiles/jruby_9.4_stripe_11.gemfile +++ b/gemfiles/jruby_9.4_stripe_11.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.4_stripe_11.gemfile.lock b/gemfiles/jruby_9.4_stripe_11.gemfile.lock index 960974bd8d8..c6add26ee57 100644 --- a/gemfiles/jruby_9.4_stripe_11.gemfile.lock +++ b/gemfiles/jruby_9.4_stripe_11.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.13.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -29,7 +28,6 @@ GEM dogstatsd-ruby (5.6.1) ffi (1.17.1-java) hashdiff (1.1.1) - json (2.7.2-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -39,10 +37,6 @@ GEM method_source (1.1.0) msgpack (1.7.5-java) os (1.1.4) - parallel (1.26.3) - parser (3.3.4.2) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -52,12 +46,9 @@ GEM pry (>= 0.13, < 0.15) ruby-debug-base (>= 0.10.4, < 0.12) public_suffix (6.0.1) - racc (1.8.1-java) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.6) strscan rspec (3.13.0) @@ -79,30 +70,7 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.1) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -116,7 +84,6 @@ GEM ffi stripe (11.7.0) strscan (3.1.0-java) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -146,10 +113,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 11) diff --git a/gemfiles/jruby_9.4_stripe_12.gemfile b/gemfiles/jruby_9.4_stripe_12.gemfile index 5351d08d0ec..2fd79b90f65 100644 --- a/gemfiles/jruby_9.4_stripe_12.gemfile +++ b/gemfiles/jruby_9.4_stripe_12.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.4_stripe_12.gemfile.lock b/gemfiles/jruby_9.4_stripe_12.gemfile.lock index d963a2f6f18..0796b1799e0 100644 --- a/gemfiles/jruby_9.4_stripe_12.gemfile.lock +++ b/gemfiles/jruby_9.4_stripe_12.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.13.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -29,7 +28,6 @@ GEM dogstatsd-ruby (5.6.1) ffi (1.17.1-java) hashdiff (1.1.1) - json (2.7.2-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -39,10 +37,6 @@ GEM method_source (1.1.0) msgpack (1.7.5-java) os (1.1.4) - parallel (1.26.3) - parser (3.3.4.2) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -52,12 +46,9 @@ GEM pry (>= 0.13, < 0.15) ruby-debug-base (>= 0.10.4, < 0.12) public_suffix (6.0.1) - racc (1.8.1-java) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.6) strscan rspec (3.13.0) @@ -79,30 +70,7 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.1) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -116,7 +84,6 @@ GEM ffi stripe (12.6.0) strscan (3.1.0-java) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -146,10 +113,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 12) diff --git a/gemfiles/jruby_9.4_stripe_7.gemfile b/gemfiles/jruby_9.4_stripe_7.gemfile index d2a4adc5717..aa180405431 100644 --- a/gemfiles/jruby_9.4_stripe_7.gemfile +++ b/gemfiles/jruby_9.4_stripe_7.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.4_stripe_7.gemfile.lock b/gemfiles/jruby_9.4_stripe_7.gemfile.lock index 91170a28688..a8b3a61391e 100644 --- a/gemfiles/jruby_9.4_stripe_7.gemfile.lock +++ b/gemfiles/jruby_9.4_stripe_7.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.13.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -29,7 +28,6 @@ GEM dogstatsd-ruby (5.6.1) ffi (1.17.1-java) hashdiff (1.1.1) - json (2.7.2-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -39,10 +37,6 @@ GEM method_source (1.1.0) msgpack (1.7.5-java) os (1.1.4) - parallel (1.26.3) - parser (3.3.4.2) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -52,12 +46,9 @@ GEM pry (>= 0.13, < 0.15) ruby-debug-base (>= 0.10.4, < 0.12) public_suffix (6.0.1) - racc (1.8.1-java) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.6) strscan rspec (3.13.0) @@ -79,30 +70,7 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.1) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -116,7 +84,6 @@ GEM ffi stripe (7.1.0) strscan (3.1.0-java) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -146,10 +113,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 7) diff --git a/gemfiles/jruby_9.4_stripe_8.gemfile b/gemfiles/jruby_9.4_stripe_8.gemfile index 7913f9562cb..e9693f25f87 100644 --- a/gemfiles/jruby_9.4_stripe_8.gemfile +++ b/gemfiles/jruby_9.4_stripe_8.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.4_stripe_8.gemfile.lock b/gemfiles/jruby_9.4_stripe_8.gemfile.lock index 25173238033..bf6c766abb2 100644 --- a/gemfiles/jruby_9.4_stripe_8.gemfile.lock +++ b/gemfiles/jruby_9.4_stripe_8.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.13.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -29,7 +28,6 @@ GEM dogstatsd-ruby (5.6.1) ffi (1.17.1-java) hashdiff (1.1.1) - json (2.7.2-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -39,10 +37,6 @@ GEM method_source (1.1.0) msgpack (1.7.5-java) os (1.1.4) - parallel (1.26.3) - parser (3.3.4.2) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -52,12 +46,9 @@ GEM pry (>= 0.13, < 0.15) ruby-debug-base (>= 0.10.4, < 0.12) public_suffix (6.0.1) - racc (1.8.1-java) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.6) strscan rspec (3.13.0) @@ -79,30 +70,7 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.1) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -116,7 +84,6 @@ GEM ffi stripe (8.7.0) strscan (3.1.0-java) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -146,10 +113,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 8) diff --git a/gemfiles/jruby_9.4_stripe_9.gemfile b/gemfiles/jruby_9.4_stripe_9.gemfile index d4bc7a64524..fa9b3217d0a 100644 --- a/gemfiles/jruby_9.4_stripe_9.gemfile +++ b/gemfiles/jruby_9.4_stripe_9.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.4_stripe_9.gemfile.lock b/gemfiles/jruby_9.4_stripe_9.gemfile.lock index add44bc28e0..3835f102343 100644 --- a/gemfiles/jruby_9.4_stripe_9.gemfile.lock +++ b/gemfiles/jruby_9.4_stripe_9.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.13.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -29,7 +28,6 @@ GEM dogstatsd-ruby (5.6.1) ffi (1.17.1-java) hashdiff (1.1.1) - json (2.7.2-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -39,10 +37,6 @@ GEM method_source (1.1.0) msgpack (1.7.5-java) os (1.1.4) - parallel (1.26.3) - parser (3.3.4.2) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -52,12 +46,9 @@ GEM pry (>= 0.13, < 0.15) ruby-debug-base (>= 0.10.4, < 0.12) public_suffix (6.0.1) - racc (1.8.1-java) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.6) strscan rspec (3.13.0) @@ -79,30 +70,7 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.1) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -116,7 +84,6 @@ GEM ffi stripe (9.4.0) strscan (3.1.0-java) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -146,10 +113,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 9) diff --git a/gemfiles/jruby_9.4_stripe_latest.gemfile b/gemfiles/jruby_9.4_stripe_latest.gemfile index 738cdc7a811..3ed8a404e44 100644 --- a/gemfiles/jruby_9.4_stripe_latest.gemfile +++ b/gemfiles/jruby_9.4_stripe_latest.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.4_stripe_latest.gemfile.lock b/gemfiles/jruby_9.4_stripe_latest.gemfile.lock index e4bbdd6557c..b9ee5eb6223 100644 --- a/gemfiles/jruby_9.4_stripe_latest.gemfile.lock +++ b/gemfiles/jruby_9.4_stripe_latest.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.14.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -29,7 +28,6 @@ GEM dogstatsd-ruby (5.6.1) ffi (1.17.1-java) hashdiff (1.1.1) - json (2.7.2-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -39,10 +37,6 @@ GEM method_source (1.1.0) msgpack (1.7.5-java) os (1.1.4) - parallel (1.26.3) - parser (3.3.5.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -52,12 +46,9 @@ GEM pry (>= 0.13, < 0.15) ruby-debug-base (>= 0.10.4, < 0.12) public_suffix (6.0.1) - racc (1.8.1-java) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.7) rspec (3.13.0) rspec-core (~> 3.13.0) @@ -78,30 +69,7 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.3) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.22.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -114,7 +82,6 @@ GEM spoon (0.0.6) ffi stripe (13.3.0) - unicode-display_width (2.6.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -144,10 +111,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) stripe diff --git a/gemfiles/jruby_9.4_stripe_min.gemfile b/gemfiles/jruby_9.4_stripe_min.gemfile index 88b7ec30986..c44469b901b 100644 --- a/gemfiles/jruby_9.4_stripe_min.gemfile +++ b/gemfiles/jruby_9.4_stripe_min.gemfile @@ -19,10 +19,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/jruby_9.4_stripe_min.gemfile.lock b/gemfiles/jruby_9.4_stripe_min.gemfile.lock index 67f03ee0d2a..d5010e9430e 100644 --- a/gemfiles/jruby_9.4_stripe_min.gemfile.lock +++ b/gemfiles/jruby_9.4_stripe_min.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.14.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -29,7 +28,6 @@ GEM dogstatsd-ruby (5.6.1) ffi (1.17.1-java) hashdiff (1.1.1) - json (2.7.2-java) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -39,10 +37,6 @@ GEM method_source (1.1.0) msgpack (1.7.5-java) os (1.1.4) - parallel (1.26.3) - parser (3.3.5.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2-java) coderay (~> 1.1) @@ -52,12 +46,9 @@ GEM pry (>= 0.13, < 0.15) ruby-debug-base (>= 0.10.4, < 0.12) public_suffix (6.0.1) - racc (1.8.1-java) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.7) rspec (3.13.0) rspec-core (~> 3.13.0) @@ -78,30 +69,7 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.3) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.22.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-debug-base (0.11.0-java) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -114,7 +82,6 @@ GEM spoon (0.0.6) ffi stripe (5.15.0) - unicode-display_width (2.6.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -144,10 +111,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) stripe (= 5.15.0) diff --git a/gemfiles/ruby_2.6_activesupport.gemfile b/gemfiles/ruby_2.6_activesupport.gemfile index 6a09f4856a6..fe40adc5570 100644 --- a/gemfiles/ruby_2.6_activesupport.gemfile +++ b/gemfiles/ruby_2.6_activesupport.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.6_activesupport.gemfile.lock b/gemfiles/ruby_2.6_activesupport.gemfile.lock index 513400fd561..25e4b5a3160 100644 --- a/gemfiles/ruby_2.6_activesupport.gemfile.lock +++ b/gemfiles/ruby_2.6_activesupport.gemfile.lock @@ -37,7 +37,6 @@ GEM tzinfo (~> 1.1) zeitwerk (~> 2.2, >= 2.2.2) addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.12.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -94,7 +93,6 @@ GEM hashdiff (1.0.1) i18n (1.14.1) concurrent-ruby (~> 1.0) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) jsonapi-renderer (0.2.2) @@ -127,10 +125,6 @@ GEM nokogiri (1.13.10-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -162,7 +156,6 @@ GEM method_source rake (>= 0.8.7) thor (>= 0.20.3, < 2.0) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake @@ -170,7 +163,6 @@ GEM ffi (~> 1.15) mini_portile2 (~> 2.6) rake (> 12) - regexp_parser (2.8.1) request_store (1.5.1) rack (>= 1.4) rexml (3.2.8) @@ -194,31 +186,8 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-kafka (1.5.0) digest-crc - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) simplecov (0.21.2) docile (~> 1.1) @@ -234,7 +203,6 @@ GEM thread_safe (0.3.6) tzinfo (1.2.11) thread_safe (~> 0.1) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -275,10 +243,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) ruby-kafka (>= 0.7.10) simplecov simplecov-cobertura (~> 2.1.0) diff --git a/gemfiles/ruby_2.6_aws.gemfile b/gemfiles/ruby_2.6_aws.gemfile index d23f64885c6..bedf1f3624f 100644 --- a/gemfiles/ruby_2.6_aws.gemfile +++ b/gemfiles/ruby_2.6_aws.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.6_aws.gemfile.lock b/gemfiles/ruby_2.6_aws.gemfile.lock index 53728421e2e..1e561b6e77e 100644 --- a/gemfiles/ruby_2.6_aws.gemfile.lock +++ b/gemfiles/ruby_2.6_aws.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) aws-eventstream (1.2.0) aws-partitions (1.813.0) aws-sdk (3.1.0) @@ -1456,7 +1455,6 @@ GEM google-protobuf (3.19.1-x86_64-linux) hashdiff (1.0.1) jmespath (1.6.2) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -1469,10 +1467,6 @@ GEM method_source (1.0.0) msgpack (1.7.5) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -1483,12 +1477,9 @@ GEM pry-stack_explorer (0.6.1) binding_of_caller (~> 1.0) pry (~> 0.13) - racc (1.7.1) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -1510,29 +1501,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) shoryuken (6.0.0) aws-sdk-core (>= 2) concurrent-ruby @@ -1548,7 +1516,6 @@ GEM simplecov_json_formatter (0.1.4) strscan (3.1.0) thor (1.2.2) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -1582,10 +1549,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) shoryuken simplecov simplecov-cobertura (~> 2.1.0) diff --git a/gemfiles/ruby_2.6_contrib.gemfile b/gemfiles/ruby_2.6_contrib.gemfile index 071e59dfa32..3247649acdd 100644 --- a/gemfiles/ruby_2.6_contrib.gemfile +++ b/gemfiles/ruby_2.6_contrib.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.6_contrib.gemfile.lock b/gemfiles/ruby_2.6_contrib.gemfile.lock index 7d063127207..a3f9fd77094 100644 --- a/gemfiles/ruby_2.6_contrib.gemfile.lock +++ b/gemfiles/ruby_2.6_contrib.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.4.0) amq-protocol (2.3.2) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -49,7 +48,6 @@ GEM google-protobuf (~> 3.19) googleapis-common-protos-types (~> 1.0) hashdiff (1.0.1) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -68,9 +66,6 @@ GEM mustermann (3.0.0) ruby2_keywords (~> 0.0.1) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pimpmychangelog (0.1.3) pry (0.13.1) coderay (~> 1.1) @@ -87,7 +82,6 @@ GEM rack rack-test (2.1.0) rack (>= 1.3) - rainbow (3.1.1) rake (12.3.3) rake-compiler (1.2.5) rake @@ -95,7 +89,6 @@ GEM redis (4.8.1) redis-namespace (1.10.0) redis (>= 4) - regexp_parser (2.8.1) resque (2.4.0) mono_logger (~> 1.0) multi_json (~> 1.0) @@ -124,29 +117,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) semantic_logger (4.12.0) concurrent-ruby (~> 1.0) @@ -186,7 +156,6 @@ GEM concurrent-ruby (~> 1.0) thor (1.2.1) tilt (2.1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -227,10 +196,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) semantic_logger (~> 4.0) sidekiq (~> 6.5) simplecov diff --git a/gemfiles/ruby_2.6_contrib_old.gemfile b/gemfiles/ruby_2.6_contrib_old.gemfile index 50f9e78d306..ec8047f9b61 100644 --- a/gemfiles/ruby_2.6_contrib_old.gemfile +++ b/gemfiles/ruby_2.6_contrib_old.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.6_contrib_old.gemfile.lock b/gemfiles/ruby_2.6_contrib_old.gemfile.lock index a8be46cb89f..4b308c55543 100644 --- a/gemfiles/ruby_2.6_contrib_old.gemfile.lock +++ b/gemfiles/ruby_2.6_contrib_old.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) atomic (1.1.101) avl_tree (1.2.1) atomic (~> 1.1) @@ -45,7 +44,6 @@ GEM google-protobuf (3.19.1-x86_64-linux) hashdiff (1.0.1) hitimes (1.3.1) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -65,9 +63,6 @@ GEM mustermann (1.1.2) ruby2_keywords (~> 0.0.1) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pimpmychangelog (0.1.3) presto-client (0.6.6) faraday (~> 0.12) @@ -95,12 +90,10 @@ GEM rack (2.2.6.2) rack-protection (2.0.8.1) rack - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake redis (3.3.5) - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -122,29 +115,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) rusage (0.2.0) sentry-raven (0.15.6) @@ -171,7 +141,6 @@ GEM rack (>= 1, < 3) thor (0.19.4) tilt (2.1.0) - unicode-display_width (2.4.2) vegas (0.1.11) rack (>= 1.0.0) warning (1.3.0) @@ -210,10 +179,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_2.6_core_old.gemfile b/gemfiles/ruby_2.6_core_old.gemfile index bd22732f425..c0ec3654d5e 100644 --- a/gemfiles/ruby_2.6_core_old.gemfile +++ b/gemfiles/ruby_2.6_core_old.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.6_core_old.gemfile.lock b/gemfiles/ruby_2.6_core_old.gemfile.lock index ea6af13542c..a7586d77091 100644 --- a/gemfiles/ruby_2.6_core_old.gemfile.lock +++ b/gemfiles/ruby_2.6_core_old.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -34,7 +33,6 @@ GEM google-protobuf (3.19.1) google-protobuf (3.19.1-x86_64-linux) hashdiff (1.0.1) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -47,9 +45,6 @@ GEM method_source (1.0.0) msgpack (1.7.5) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -60,11 +55,9 @@ GEM pry-stack_explorer (0.6.1) binding_of_caller (~> 1.0) pry (~> 0.13) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -86,29 +79,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -119,7 +89,6 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) strscan (3.1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -152,10 +121,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_2.6_elasticsearch_7.gemfile b/gemfiles/ruby_2.6_elasticsearch_7.gemfile index 8c0b6dd37a3..43f0be184dd 100644 --- a/gemfiles/ruby_2.6_elasticsearch_7.gemfile +++ b/gemfiles/ruby_2.6_elasticsearch_7.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.6_elasticsearch_7.gemfile.lock b/gemfiles/ruby_2.6_elasticsearch_7.gemfile.lock index 7fa1a7fcc4b..5aa268617b2 100644 --- a/gemfiles/ruby_2.6_elasticsearch_7.gemfile.lock +++ b/gemfiles/ruby_2.6_elasticsearch_7.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.5) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.12.0) benchmark-memory (0.1.2) @@ -50,7 +49,6 @@ GEM google-protobuf (3.19.1) google-protobuf (3.19.1-x86_64-linux) hashdiff (1.0.1) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -64,10 +62,6 @@ GEM msgpack (1.7.5) multi_json (1.15.0) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.4) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -79,12 +73,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (5.0.3) - racc (1.7.1) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.2) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -106,29 +97,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) simplecov (0.21.2) docile (~> 1.1) @@ -140,7 +108,6 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) strscan (3.1.0) - unicode-display_width (2.5.0) warning (1.3.0) webmock (3.19.1) addressable (>= 2.8.0) @@ -174,10 +141,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_2.6_elasticsearch_8.gemfile b/gemfiles/ruby_2.6_elasticsearch_8.gemfile index d6cf6d0e779..c805952d263 100644 --- a/gemfiles/ruby_2.6_elasticsearch_8.gemfile +++ b/gemfiles/ruby_2.6_elasticsearch_8.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.6_elasticsearch_8.gemfile.lock b/gemfiles/ruby_2.6_elasticsearch_8.gemfile.lock index 02d7dc5e450..d58752294c9 100644 --- a/gemfiles/ruby_2.6_elasticsearch_8.gemfile.lock +++ b/gemfiles/ruby_2.6_elasticsearch_8.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.5) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.12.0) benchmark-memory (0.1.2) @@ -49,7 +48,6 @@ GEM google-protobuf (3.19.1) google-protobuf (3.19.1-x86_64-linux) hashdiff (1.0.1) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -63,10 +61,6 @@ GEM msgpack (1.7.5) multi_json (1.15.0) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.4) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -78,12 +72,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (5.0.3) - racc (1.7.1) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.2) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -105,29 +96,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) simplecov (0.21.2) docile (~> 1.1) @@ -139,7 +107,6 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) strscan (3.1.0) - unicode-display_width (2.5.0) warning (1.3.0) webmock (3.19.1) addressable (>= 2.8.0) @@ -173,10 +140,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_2.6_elasticsearch_latest.gemfile b/gemfiles/ruby_2.6_elasticsearch_latest.gemfile index 716b9363a89..e3ba378c37a 100644 --- a/gemfiles/ruby_2.6_elasticsearch_latest.gemfile +++ b/gemfiles/ruby_2.6_elasticsearch_latest.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.6_elasticsearch_latest.gemfile.lock b/gemfiles/ruby_2.6_elasticsearch_latest.gemfile.lock index 73d535f7ebb..ea9b73d4ad3 100644 --- a/gemfiles/ruby_2.6_elasticsearch_latest.gemfile.lock +++ b/gemfiles/ruby_2.6_elasticsearch_latest.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.14.0) benchmark-memory (0.1.2) @@ -51,7 +50,6 @@ GEM google-protobuf (3.19.1) google-protobuf (3.19.1-x86_64-linux) hashdiff (1.1.1) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -65,10 +63,6 @@ GEM msgpack (1.7.5) multi_json (1.15.0) os (1.1.4) - parallel (1.24.0) - parser (3.3.5.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -80,12 +74,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (5.1.1) - racc (1.8.1) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.7) rspec (3.13.0) rspec-core (~> 3.13.0) @@ -106,29 +97,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.30.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) simplecov (0.21.2) docile (~> 1.1) @@ -139,7 +107,6 @@ GEM simplecov (~> 0.19) simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) - unicode-display_width (2.6.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -173,10 +140,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_2.6_graphql_1.13.gemfile b/gemfiles/ruby_2.6_graphql_1.13.gemfile index d7a6e2e9863..41f4fc73b09 100644 --- a/gemfiles/ruby_2.6_graphql_1.13.gemfile +++ b/gemfiles/ruby_2.6_graphql_1.13.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.6_graphql_1.13.gemfile.lock b/gemfiles/ruby_2.6_graphql_1.13.gemfile.lock index 047b0c2966f..0376db20a83 100644 --- a/gemfiles/ruby_2.6_graphql_1.13.gemfile.lock +++ b/gemfiles/ruby_2.6_graphql_1.13.gemfile.lock @@ -71,7 +71,6 @@ GEM zeitwerk (~> 2.3) addressable (2.8.6) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -104,7 +103,6 @@ GEM hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) - json (2.7.1) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -147,10 +145,6 @@ GEM nokogiri (1.13.10-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.24.0) - parser (3.3.0.5) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -193,11 +187,9 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.1.0) rake-compiler (1.2.6) rake - regexp_parser (2.9.0) request_store (1.7.0) rack (>= 1.4) rexml (3.2.8) @@ -221,29 +213,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.30.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -266,7 +235,6 @@ GEM timeout (0.4.1) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.5.0) warning (1.3.0) webmock (3.19.1) addressable (>= 2.8.0) @@ -306,10 +274,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_2.6_graphql_2.0.gemfile b/gemfiles/ruby_2.6_graphql_2.0.gemfile index dd08a725fe9..3ed526dbbcb 100644 --- a/gemfiles/ruby_2.6_graphql_2.0.gemfile +++ b/gemfiles/ruby_2.6_graphql_2.0.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.6_graphql_2.0.gemfile.lock b/gemfiles/ruby_2.6_graphql_2.0.gemfile.lock index 811dec26f75..5bd8885c295 100644 --- a/gemfiles/ruby_2.6_graphql_2.0.gemfile.lock +++ b/gemfiles/ruby_2.6_graphql_2.0.gemfile.lock @@ -71,7 +71,6 @@ GEM zeitwerk (~> 2.3) addressable (2.8.6) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -104,7 +103,6 @@ GEM hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) - json (2.7.1) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -147,10 +145,6 @@ GEM nokogiri (1.13.10-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.24.0) - parser (3.3.0.5) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -193,11 +187,9 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.1.0) rake-compiler (1.2.6) rake - regexp_parser (2.9.0) request_store (1.7.0) rack (>= 1.4) rexml (3.2.8) @@ -221,29 +213,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.30.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -266,7 +235,6 @@ GEM timeout (0.4.1) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.5.0) warning (1.3.0) webmock (3.19.1) addressable (>= 2.8.0) @@ -306,10 +274,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_2.6_hanami_1.gemfile b/gemfiles/ruby_2.6_hanami_1.gemfile index 293fde87aa5..25a2f807c72 100644 --- a/gemfiles/ruby_2.6_hanami_1.gemfile +++ b/gemfiles/ruby_2.6_hanami_1.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.6_hanami_1.gemfile.lock b/gemfiles/ruby_2.6_hanami_1.gemfile.lock index 2f1cd1c3424..0e23745ce2c 100644 --- a/gemfiles/ruby_2.6_hanami_1.gemfile.lock +++ b/gemfiles/ruby_2.6_hanami_1.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -109,7 +108,6 @@ GEM rack (>= 1.0.0) url_mount (~> 0.2.1) inflecto (0.0.2) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -137,9 +135,6 @@ GEM net-smtp (0.3.3) net-protocol os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -153,11 +148,9 @@ GEM rack (2.2.6.2) rack-test (2.0.2) rack (>= 1.3) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -179,29 +172,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -215,7 +185,6 @@ GEM tilt (2.1.0) timeout (0.3.2) transproc (1.1.1) - unicode-display_width (2.4.2) url_mount (0.2.1) rack warning (1.3.0) @@ -253,10 +222,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_2.6_http.gemfile b/gemfiles/ruby_2.6_http.gemfile index f0465c4837a..875681d2e17 100644 --- a/gemfiles/ruby_2.6_http.gemfile +++ b/gemfiles/ruby_2.6_http.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.6_http.gemfile.lock b/gemfiles/ruby_2.6_http.gemfile.lock index a18f10ab564..311ef6cf91f 100644 --- a/gemfiles/ruby_2.6_http.gemfile.lock +++ b/gemfiles/ruby_2.6_http.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.12.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -56,7 +55,6 @@ GEM domain_name (~> 0.5) http-form_data (2.3.0) httpclient (2.8.3) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -76,10 +74,6 @@ GEM msgpack (1.7.5) netrc (0.11.0) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -90,12 +84,9 @@ GEM pry-stack_explorer (0.6.1) binding_of_caller (~> 1.0) pry (~> 0.13) - racc (1.7.1) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.1) rest-client (2.1.0) http-accept (>= 1.7.0, < 2.0) http-cookie (>= 1.0.2, < 2.0) @@ -122,29 +113,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) simplecov (0.21.2) docile (~> 1.1) @@ -161,7 +129,6 @@ GEM unf (0.1.4) unf_ext unf_ext (0.0.8.2) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -200,10 +167,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) typhoeus diff --git a/gemfiles/ruby_2.6_opensearch_2.gemfile b/gemfiles/ruby_2.6_opensearch_2.gemfile index 1a99748f2d1..5305db0aa9f 100644 --- a/gemfiles/ruby_2.6_opensearch_2.gemfile +++ b/gemfiles/ruby_2.6_opensearch_2.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.6_opensearch_2.gemfile.lock b/gemfiles/ruby_2.6_opensearch_2.gemfile.lock index 7a44c869cec..c29a270e147 100644 --- a/gemfiles/ruby_2.6_opensearch_2.gemfile.lock +++ b/gemfiles/ruby_2.6_opensearch_2.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.5) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.12.0) benchmark-memory (0.1.2) @@ -41,7 +40,6 @@ GEM google-protobuf (3.19.1) google-protobuf (3.19.1-x86_64-linux) hashdiff (1.0.1) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -63,10 +61,6 @@ GEM faraday (>= 1.0, < 3) multi_json os (1.1.4) - parallel (1.23.0) - parser (3.2.2.4) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -78,12 +72,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (5.0.3) - racc (1.7.1) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -105,29 +96,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) simplecov (0.21.2) docile (~> 1.1) @@ -139,7 +107,6 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) strscan (3.1.0) - unicode-display_width (2.5.0) warning (1.3.0) webmock (3.19.1) addressable (>= 2.8.0) @@ -173,10 +140,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_2.6_opensearch_3.gemfile b/gemfiles/ruby_2.6_opensearch_3.gemfile index 6c492eebcde..5bb495e022e 100644 --- a/gemfiles/ruby_2.6_opensearch_3.gemfile +++ b/gemfiles/ruby_2.6_opensearch_3.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.6_opensearch_3.gemfile.lock b/gemfiles/ruby_2.6_opensearch_3.gemfile.lock index ba710a9aa49..c8d9f81a007 100644 --- a/gemfiles/ruby_2.6_opensearch_3.gemfile.lock +++ b/gemfiles/ruby_2.6_opensearch_3.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.5) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.12.0) benchmark-memory (0.1.2) @@ -41,7 +40,6 @@ GEM google-protobuf (3.19.1) google-protobuf (3.19.1-x86_64-linux) hashdiff (1.0.1) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -58,10 +56,6 @@ GEM faraday (>= 1.0, < 3) multi_json (>= 1.0) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.4) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -73,12 +67,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (5.0.3) - racc (1.7.1) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -100,29 +91,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) simplecov (0.21.2) docile (~> 1.1) @@ -134,7 +102,6 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) strscan (3.1.0) - unicode-display_width (2.5.0) warning (1.3.0) webmock (3.19.1) addressable (>= 2.8.0) @@ -168,10 +135,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_2.6_opensearch_latest.gemfile b/gemfiles/ruby_2.6_opensearch_latest.gemfile index fe2793dc660..b15f5a5355b 100644 --- a/gemfiles/ruby_2.6_opensearch_latest.gemfile +++ b/gemfiles/ruby_2.6_opensearch_latest.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.6_opensearch_latest.gemfile.lock b/gemfiles/ruby_2.6_opensearch_latest.gemfile.lock index 426734f8662..86958c2b530 100644 --- a/gemfiles/ruby_2.6_opensearch_latest.gemfile.lock +++ b/gemfiles/ruby_2.6_opensearch_latest.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.14.0) benchmark-memory (0.1.2) @@ -43,7 +42,6 @@ GEM google-protobuf (3.19.1) google-protobuf (3.19.1-x86_64-linux) hashdiff (1.1.1) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -60,10 +58,6 @@ GEM faraday (>= 1.0, < 3) multi_json (>= 1.0) os (1.1.4) - parallel (1.24.0) - parser (3.3.5.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -75,12 +69,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (5.1.1) - racc (1.8.1) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.7) rspec (3.13.0) rspec-core (~> 3.13.0) @@ -101,29 +92,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.30.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) simplecov (0.21.2) docile (~> 1.1) @@ -134,7 +102,6 @@ GEM simplecov (~> 0.19) simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) - unicode-display_width (2.6.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -168,10 +135,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_2.6_opentelemetry.gemfile b/gemfiles/ruby_2.6_opentelemetry.gemfile index 5d67345a1fc..5b9bbcab434 100644 --- a/gemfiles/ruby_2.6_opentelemetry.gemfile +++ b/gemfiles/ruby_2.6_opentelemetry.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.6_opentelemetry.gemfile.lock b/gemfiles/ruby_2.6_opentelemetry.gemfile.lock index eebd5e1cd52..2e044dd4f41 100755 --- a/gemfiles/ruby_2.6_opentelemetry.gemfile.lock +++ b/gemfiles/ruby_2.6_opentelemetry.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -34,7 +33,6 @@ GEM google-protobuf (3.19.1) google-protobuf (3.19.1-x86_64-linux) hashdiff (1.0.1) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -59,9 +57,6 @@ GEM opentelemetry-semantic_conventions (1.8.0) opentelemetry-api (~> 1.0) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -72,11 +67,9 @@ GEM pry-stack_explorer (0.6.1) binding_of_caller (~> 1.0) pry (~> 0.13) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -98,29 +91,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -131,7 +101,6 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) strscan (3.1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -165,10 +134,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_2.6_opentelemetry_otlp.gemfile b/gemfiles/ruby_2.6_opentelemetry_otlp.gemfile index 31d41f53cac..e477603d0c6 100644 --- a/gemfiles/ruby_2.6_opentelemetry_otlp.gemfile +++ b/gemfiles/ruby_2.6_opentelemetry_otlp.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.6_opentelemetry_otlp.gemfile.lock b/gemfiles/ruby_2.6_opentelemetry_otlp.gemfile.lock index c487afac955..c780f7fb906 100644 --- a/gemfiles/ruby_2.6_opentelemetry_otlp.gemfile.lock +++ b/gemfiles/ruby_2.6_opentelemetry_otlp.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.6) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) benchmark-ips (2.13.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -39,7 +38,6 @@ GEM googleapis-common-protos-types (1.12.0) google-protobuf (~> 3.18) hashdiff (1.1.0) - json (2.7.1) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -71,10 +69,6 @@ GEM opentelemetry-semantic_conventions (1.10.0) opentelemetry-api (~> 1.0) os (1.1.4) - parallel (1.24.0) - parser (3.3.0.5) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -86,12 +80,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (5.0.4) - racc (1.7.3) - rainbow (3.1.1) rake (13.1.0) rake-compiler (1.2.7) rake - regexp_parser (2.9.0) rexml (3.3.8) rspec (3.13.0) rspec-core (~> 3.13.0) @@ -112,29 +103,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.30.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -144,7 +112,6 @@ GEM simplecov (~> 0.19) simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) - unicode-display_width (2.5.0) warning (1.3.0) webmock (3.23.0) addressable (>= 2.8.0) @@ -179,10 +146,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_2.6_rack_1.gemfile b/gemfiles/ruby_2.6_rack_1.gemfile index 652843fc4b9..63843041604 100644 --- a/gemfiles/ruby_2.6_rack_1.gemfile +++ b/gemfiles/ruby_2.6_rack_1.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.6_rack_1.gemfile.lock b/gemfiles/ruby_2.6_rack_1.gemfile.lock index cd3d0eb648b..81e691003fc 100644 --- a/gemfiles/ruby_2.6_rack_1.gemfile.lock +++ b/gemfiles/ruby_2.6_rack_1.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.12.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -34,7 +33,6 @@ GEM google-protobuf (3.19.1) google-protobuf (3.19.1-x86_64-linux) hashdiff (1.0.1) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -47,10 +45,6 @@ GEM method_source (1.0.0) msgpack (1.7.5) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -61,17 +55,14 @@ GEM pry-stack_explorer (0.6.1) binding_of_caller (~> 1.0) pry (~> 0.13) - racc (1.7.1) rack (1.6.13) rack-contrib (1.8.0) rack (~> 1.4) rack-test (2.1.0) rack (>= 1.3) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -93,29 +84,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -126,7 +94,6 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) strscan (3.1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -162,10 +129,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_2.6_rack_2.gemfile b/gemfiles/ruby_2.6_rack_2.gemfile index ec0147d198e..b078cd5bc1a 100644 --- a/gemfiles/ruby_2.6_rack_2.gemfile +++ b/gemfiles/ruby_2.6_rack_2.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.6_rack_2.gemfile.lock b/gemfiles/ruby_2.6_rack_2.gemfile.lock index bed1678e123..ed8207eb0f3 100644 --- a/gemfiles/ruby_2.6_rack_2.gemfile.lock +++ b/gemfiles/ruby_2.6_rack_2.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.12.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -34,7 +33,6 @@ GEM google-protobuf (3.19.1) google-protobuf (3.19.1-x86_64-linux) hashdiff (1.0.1) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -47,10 +45,6 @@ GEM method_source (1.0.0) msgpack (1.7.5) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -61,17 +55,14 @@ GEM pry-stack_explorer (0.6.1) binding_of_caller (~> 1.0) pry (~> 0.13) - racc (1.7.1) rack (2.2.10) rack-contrib (2.3.0) rack (~> 2.0) rack-test (2.1.0) rack (>= 1.3) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -93,29 +84,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -126,7 +94,6 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) strscan (3.1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -162,10 +129,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_2.6_rack_3.gemfile b/gemfiles/ruby_2.6_rack_3.gemfile index 6777d994708..9edae54865d 100644 --- a/gemfiles/ruby_2.6_rack_3.gemfile +++ b/gemfiles/ruby_2.6_rack_3.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.6_rack_3.gemfile.lock b/gemfiles/ruby_2.6_rack_3.gemfile.lock index aed1bde163c..66af0b2e73f 100644 --- a/gemfiles/ruby_2.6_rack_3.gemfile.lock +++ b/gemfiles/ruby_2.6_rack_3.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.12.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -34,7 +33,6 @@ GEM google-protobuf (3.19.1) google-protobuf (3.19.1-x86_64-linux) hashdiff (1.0.1) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -47,10 +45,6 @@ GEM method_source (1.0.0) msgpack (1.7.5) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -61,17 +55,14 @@ GEM pry-stack_explorer (0.6.1) binding_of_caller (~> 1.0) pry (~> 0.13) - racc (1.7.1) rack (3.1.8) rack-contrib (1.2.0) rack (>= 0.9.1) rack-test (2.1.0) rack (>= 1.3) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -93,29 +84,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -126,7 +94,6 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) strscan (3.1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -162,10 +129,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_2.6_rack_latest.gemfile b/gemfiles/ruby_2.6_rack_latest.gemfile index 1f791c94be3..15f1f9a59d0 100644 --- a/gemfiles/ruby_2.6_rack_latest.gemfile +++ b/gemfiles/ruby_2.6_rack_latest.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.6_rack_latest.gemfile.lock b/gemfiles/ruby_2.6_rack_latest.gemfile.lock index ef26bb05697..d06693c1817 100644 --- a/gemfiles/ruby_2.6_rack_latest.gemfile.lock +++ b/gemfiles/ruby_2.6_rack_latest.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.14.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -37,7 +36,6 @@ GEM google-protobuf (3.19.1) google-protobuf (3.19.1-x86_64-linux) hashdiff (1.1.1) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -50,10 +48,6 @@ GEM method_source (1.1.0) msgpack (1.7.5) os (1.1.4) - parallel (1.24.0) - parser (3.3.5.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -65,17 +59,14 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (5.1.1) - racc (1.8.1) rack (3.1.8) rack-contrib (2.5.0) rack (< 4) rack-test (2.1.0) rack (>= 1.3) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.7) rspec (3.13.0) rspec-core (~> 3.13.0) @@ -96,29 +87,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.30.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -128,7 +96,6 @@ GEM simplecov (~> 0.19) simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) - unicode-display_width (2.6.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -164,10 +131,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_2.6_rails5_mysql2.gemfile b/gemfiles/ruby_2.6_rails5_mysql2.gemfile index ad8a2f84b23..7b8d713056c 100644 --- a/gemfiles/ruby_2.6_rails5_mysql2.gemfile +++ b/gemfiles/ruby_2.6_rails5_mysql2.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.6_rails5_mysql2.gemfile.lock b/gemfiles/ruby_2.6_rails5_mysql2.gemfile.lock index 49d57add690..af311376764 100644 --- a/gemfiles/ruby_2.6_rails5_mysql2.gemfile.lock +++ b/gemfiles/ruby_2.6_rails5_mysql2.gemfile.lock @@ -53,7 +53,6 @@ GEM tzinfo (~> 1.1) addressable (2.4.0) arel (9.0.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -84,7 +83,6 @@ GEM hashdiff (1.0.1) i18n (1.12.0) concurrent-ruby (~> 1.0) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -128,9 +126,6 @@ GEM nokogiri (1.13.10-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -169,11 +164,9 @@ GEM method_source rake (>= 0.8.7) thor (>= 0.19.0, < 2.0) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake - regexp_parser (2.8.1) request_store (1.5.1) rack (>= 1.4) rexml (3.2.8) @@ -197,29 +190,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -242,7 +212,6 @@ GEM timeout (0.3.2) tzinfo (1.2.11) thread_safe (~> 0.1) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -281,10 +250,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_2.6_rails5_postgres.gemfile b/gemfiles/ruby_2.6_rails5_postgres.gemfile index 4e46002aa59..7a8523e485d 100644 --- a/gemfiles/ruby_2.6_rails5_postgres.gemfile +++ b/gemfiles/ruby_2.6_rails5_postgres.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.6_rails5_postgres.gemfile.lock b/gemfiles/ruby_2.6_rails5_postgres.gemfile.lock index b2025347c16..40a4aee5437 100644 --- a/gemfiles/ruby_2.6_rails5_postgres.gemfile.lock +++ b/gemfiles/ruby_2.6_rails5_postgres.gemfile.lock @@ -53,7 +53,6 @@ GEM tzinfo (~> 1.1) addressable (2.4.0) arel (9.0.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -84,7 +83,6 @@ GEM hashdiff (1.0.1) i18n (1.12.0) concurrent-ruby (~> 1.0) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -127,9 +125,6 @@ GEM nokogiri (1.13.10-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pg (0.21.0) pimpmychangelog (0.1.3) pry (0.14.2) @@ -169,11 +164,9 @@ GEM method_source rake (>= 0.8.7) thor (>= 0.19.0, < 2.0) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake - regexp_parser (2.8.1) request_store (1.5.1) rack (>= 1.4) rexml (3.2.8) @@ -197,29 +190,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -242,7 +212,6 @@ GEM timeout (0.3.2) tzinfo (1.2.11) thread_safe (~> 0.1) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -281,10 +250,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_2.6_rails5_postgres_redis.gemfile b/gemfiles/ruby_2.6_rails5_postgres_redis.gemfile index fc43c4c0859..cac4785c9ff 100644 --- a/gemfiles/ruby_2.6_rails5_postgres_redis.gemfile +++ b/gemfiles/ruby_2.6_rails5_postgres_redis.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.6_rails5_postgres_redis.gemfile.lock b/gemfiles/ruby_2.6_rails5_postgres_redis.gemfile.lock index 8d2faae11fb..445e6cdbb2b 100644 --- a/gemfiles/ruby_2.6_rails5_postgres_redis.gemfile.lock +++ b/gemfiles/ruby_2.6_rails5_postgres_redis.gemfile.lock @@ -53,7 +53,6 @@ GEM tzinfo (~> 1.1) addressable (2.4.0) arel (9.0.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -84,7 +83,6 @@ GEM hashdiff (1.0.1) i18n (1.12.0) concurrent-ruby (~> 1.0) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -127,9 +125,6 @@ GEM nokogiri (1.13.10-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pg (0.21.0) pimpmychangelog (0.1.3) pry (0.14.2) @@ -169,12 +164,10 @@ GEM method_source rake (>= 0.8.7) thor (>= 0.19.0, < 2.0) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake redis (4.8.1) - regexp_parser (2.8.1) request_store (1.5.1) rack (>= 1.4) rexml (3.2.8) @@ -198,29 +191,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -243,7 +213,6 @@ GEM timeout (0.3.2) tzinfo (1.2.11) thread_safe (~> 0.1) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -283,10 +252,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_2.6_rails5_postgres_redis_activesupport.gemfile b/gemfiles/ruby_2.6_rails5_postgres_redis_activesupport.gemfile index 764e629470a..673743a7b1a 100644 --- a/gemfiles/ruby_2.6_rails5_postgres_redis_activesupport.gemfile +++ b/gemfiles/ruby_2.6_rails5_postgres_redis_activesupport.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.6_rails5_postgres_redis_activesupport.gemfile.lock b/gemfiles/ruby_2.6_rails5_postgres_redis_activesupport.gemfile.lock index f6febd8ca81..0bb5b3f46f9 100644 --- a/gemfiles/ruby_2.6_rails5_postgres_redis_activesupport.gemfile.lock +++ b/gemfiles/ruby_2.6_rails5_postgres_redis_activesupport.gemfile.lock @@ -53,7 +53,6 @@ GEM tzinfo (~> 1.1) addressable (2.4.0) arel (9.0.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -84,7 +83,6 @@ GEM hashdiff (1.0.1) i18n (1.12.0) concurrent-ruby (~> 1.0) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -127,9 +125,6 @@ GEM nokogiri (1.13.10-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pg (0.21.0) pimpmychangelog (0.1.3) pry (0.14.2) @@ -169,7 +164,6 @@ GEM method_source rake (>= 0.8.7) thor (>= 0.19.0, < 2.0) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake @@ -190,7 +184,6 @@ GEM redis-store (>= 1.2, < 2) redis-store (1.9.2) redis (>= 4, < 6) - regexp_parser (2.8.1) request_store (1.5.1) rack (>= 1.4) rexml (3.2.8) @@ -214,29 +207,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -259,7 +229,6 @@ GEM timeout (0.3.2) tzinfo (1.2.11) thread_safe (~> 0.1) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -301,10 +270,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_2.6_rails5_postgres_sidekiq.gemfile b/gemfiles/ruby_2.6_rails5_postgres_sidekiq.gemfile index 2c68fc14f9c..e29d796b734 100644 --- a/gemfiles/ruby_2.6_rails5_postgres_sidekiq.gemfile +++ b/gemfiles/ruby_2.6_rails5_postgres_sidekiq.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.6_rails5_postgres_sidekiq.gemfile.lock b/gemfiles/ruby_2.6_rails5_postgres_sidekiq.gemfile.lock index 2e3778283f9..f1aa754d1da 100644 --- a/gemfiles/ruby_2.6_rails5_postgres_sidekiq.gemfile.lock +++ b/gemfiles/ruby_2.6_rails5_postgres_sidekiq.gemfile.lock @@ -53,7 +53,6 @@ GEM tzinfo (~> 1.1) addressable (2.4.0) arel (9.0.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -85,7 +84,6 @@ GEM hashdiff (1.0.1) i18n (1.12.0) concurrent-ruby (~> 1.0) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -128,9 +126,6 @@ GEM nokogiri (1.13.10-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pg (0.21.0) pimpmychangelog (0.1.3) pry (0.14.2) @@ -170,12 +165,10 @@ GEM method_source rake (>= 0.8.7) thor (>= 0.19.0, < 2.0) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake redis (4.8.1) - regexp_parser (2.8.1) request_store (1.5.1) rack (>= 1.4) rexml (3.2.8) @@ -199,29 +192,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) sidekiq (6.5.8) connection_pool (>= 2.2.5, < 3) rack (~> 2.0) @@ -248,7 +218,6 @@ GEM timeout (0.3.2) tzinfo (1.2.11) thread_safe (~> 0.1) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -288,10 +257,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) sidekiq simplecov simplecov-cobertura (~> 2.1.0) diff --git a/gemfiles/ruby_2.6_rails5_semantic_logger.gemfile b/gemfiles/ruby_2.6_rails5_semantic_logger.gemfile index aa090ddb522..aacd897f156 100644 --- a/gemfiles/ruby_2.6_rails5_semantic_logger.gemfile +++ b/gemfiles/ruby_2.6_rails5_semantic_logger.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.6_rails5_semantic_logger.gemfile.lock b/gemfiles/ruby_2.6_rails5_semantic_logger.gemfile.lock index d760d8a36e1..19073e1ab2f 100644 --- a/gemfiles/ruby_2.6_rails5_semantic_logger.gemfile.lock +++ b/gemfiles/ruby_2.6_rails5_semantic_logger.gemfile.lock @@ -53,7 +53,6 @@ GEM tzinfo (~> 1.1) addressable (2.4.0) arel (9.0.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -84,7 +83,6 @@ GEM hashdiff (1.0.1) i18n (1.12.0) concurrent-ruby (~> 1.0) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -122,9 +120,6 @@ GEM nokogiri (1.13.10-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pg (0.21.0) pimpmychangelog (0.1.3) pry (0.14.2) @@ -168,11 +163,9 @@ GEM method_source rake (>= 0.8.7) thor (>= 0.19.0, < 2.0) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -194,29 +187,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) semantic_logger (4.12.0) concurrent-ruby (~> 1.0) simplecov (0.21.2) @@ -241,7 +211,6 @@ GEM timeout (0.3.2) tzinfo (1.2.11) thread_safe (~> 0.1) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -280,10 +249,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_2.6_rails61_mysql2.gemfile b/gemfiles/ruby_2.6_rails61_mysql2.gemfile index 9eb0e1aac94..aaddcb06690 100644 --- a/gemfiles/ruby_2.6_rails61_mysql2.gemfile +++ b/gemfiles/ruby_2.6_rails61_mysql2.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.6_rails61_mysql2.gemfile.lock b/gemfiles/ruby_2.6_rails61_mysql2.gemfile.lock index 100c8631d1f..daabbdced97 100644 --- a/gemfiles/ruby_2.6_rails61_mysql2.gemfile.lock +++ b/gemfiles/ruby_2.6_rails61_mysql2.gemfile.lock @@ -70,7 +70,6 @@ GEM tzinfo (~> 2.0) zeitwerk (~> 2.3) addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -101,7 +100,6 @@ GEM hashdiff (1.0.1) i18n (1.12.0) concurrent-ruby (~> 1.0) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -145,9 +143,6 @@ GEM nokogiri (1.13.10-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -188,11 +183,9 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake - regexp_parser (2.8.1) request_store (1.5.1) rack (>= 1.4) rexml (3.2.8) @@ -216,29 +209,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -260,7 +230,6 @@ GEM timeout (0.3.2) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -300,10 +269,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_2.6_rails61_postgres.gemfile b/gemfiles/ruby_2.6_rails61_postgres.gemfile index 9245911a663..e292f2e2c42 100644 --- a/gemfiles/ruby_2.6_rails61_postgres.gemfile +++ b/gemfiles/ruby_2.6_rails61_postgres.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.6_rails61_postgres.gemfile.lock b/gemfiles/ruby_2.6_rails61_postgres.gemfile.lock index cb6a8d33ede..8df7c2bd567 100644 --- a/gemfiles/ruby_2.6_rails61_postgres.gemfile.lock +++ b/gemfiles/ruby_2.6_rails61_postgres.gemfile.lock @@ -70,7 +70,6 @@ GEM tzinfo (~> 2.0) zeitwerk (~> 2.3) addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -101,7 +100,6 @@ GEM hashdiff (1.0.1) i18n (1.12.0) concurrent-ruby (~> 1.0) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -144,9 +142,6 @@ GEM nokogiri (1.13.10-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pg (1.4.6) pimpmychangelog (0.1.3) pry (0.14.2) @@ -188,11 +183,9 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake - regexp_parser (2.8.1) request_store (1.5.1) rack (>= 1.4) rexml (3.2.8) @@ -216,29 +209,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -260,7 +230,6 @@ GEM timeout (0.3.2) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -300,10 +269,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_2.6_rails61_postgres_redis.gemfile b/gemfiles/ruby_2.6_rails61_postgres_redis.gemfile index 2c2acd506af..864965a8ef1 100644 --- a/gemfiles/ruby_2.6_rails61_postgres_redis.gemfile +++ b/gemfiles/ruby_2.6_rails61_postgres_redis.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.6_rails61_postgres_redis.gemfile.lock b/gemfiles/ruby_2.6_rails61_postgres_redis.gemfile.lock index a97eed2f7e9..57fdb2bda9d 100644 --- a/gemfiles/ruby_2.6_rails61_postgres_redis.gemfile.lock +++ b/gemfiles/ruby_2.6_rails61_postgres_redis.gemfile.lock @@ -70,7 +70,6 @@ GEM tzinfo (~> 2.0) zeitwerk (~> 2.3) addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -101,7 +100,6 @@ GEM hashdiff (1.0.1) i18n (1.12.0) concurrent-ruby (~> 1.0) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -144,9 +142,6 @@ GEM nokogiri (1.13.10-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pg (1.4.6) pimpmychangelog (0.1.3) pry (0.14.2) @@ -188,12 +183,10 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake redis (4.8.1) - regexp_parser (2.8.1) request_store (1.5.1) rack (>= 1.4) rexml (3.2.8) @@ -217,29 +210,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -261,7 +231,6 @@ GEM timeout (0.3.2) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -302,10 +271,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_2.6_rails61_postgres_sidekiq.gemfile b/gemfiles/ruby_2.6_rails61_postgres_sidekiq.gemfile index 9bc6c8ced4a..e8e6afe2cc6 100644 --- a/gemfiles/ruby_2.6_rails61_postgres_sidekiq.gemfile +++ b/gemfiles/ruby_2.6_rails61_postgres_sidekiq.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.6_rails61_postgres_sidekiq.gemfile.lock b/gemfiles/ruby_2.6_rails61_postgres_sidekiq.gemfile.lock index 85f4a389019..9689f28a0c6 100644 --- a/gemfiles/ruby_2.6_rails61_postgres_sidekiq.gemfile.lock +++ b/gemfiles/ruby_2.6_rails61_postgres_sidekiq.gemfile.lock @@ -70,7 +70,6 @@ GEM tzinfo (~> 2.0) zeitwerk (~> 2.3) addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -102,7 +101,6 @@ GEM hashdiff (1.0.1) i18n (1.12.0) concurrent-ruby (~> 1.0) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -145,9 +143,6 @@ GEM nokogiri (1.13.10-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pg (1.4.6) pimpmychangelog (0.1.3) pry (0.14.2) @@ -189,12 +184,10 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake redis (4.8.1) - regexp_parser (2.8.1) request_store (1.5.1) rack (>= 1.4) rexml (3.2.8) @@ -218,29 +211,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) sidekiq (6.5.8) connection_pool (>= 2.2.5, < 3) rack (~> 2.0) @@ -266,7 +236,6 @@ GEM timeout (0.3.2) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -306,10 +275,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) sidekiq (>= 6.1.2) simplecov simplecov-cobertura (~> 2.1.0) diff --git a/gemfiles/ruby_2.6_rails61_semantic_logger.gemfile b/gemfiles/ruby_2.6_rails61_semantic_logger.gemfile index 148925e15de..d59528e31b7 100644 --- a/gemfiles/ruby_2.6_rails61_semantic_logger.gemfile +++ b/gemfiles/ruby_2.6_rails61_semantic_logger.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.6_rails61_semantic_logger.gemfile.lock b/gemfiles/ruby_2.6_rails61_semantic_logger.gemfile.lock index 8350fef872e..a86102b016b 100644 --- a/gemfiles/ruby_2.6_rails61_semantic_logger.gemfile.lock +++ b/gemfiles/ruby_2.6_rails61_semantic_logger.gemfile.lock @@ -70,7 +70,6 @@ GEM tzinfo (~> 2.0) zeitwerk (~> 2.3) addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -101,7 +100,6 @@ GEM hashdiff (1.0.1) i18n (1.12.0) concurrent-ruby (~> 1.0) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -139,9 +137,6 @@ GEM nokogiri (1.13.10-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pg (1.4.6) pimpmychangelog (0.1.3) pry (0.14.2) @@ -187,11 +182,9 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -213,29 +206,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) semantic_logger (4.12.0) concurrent-ruby (~> 1.0) simplecov (0.21.2) @@ -259,7 +229,6 @@ GEM timeout (0.3.2) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -299,10 +268,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_2.6_rails6_mysql2.gemfile b/gemfiles/ruby_2.6_rails6_mysql2.gemfile index 02a39c47964..22a6fd29e52 100644 --- a/gemfiles/ruby_2.6_rails6_mysql2.gemfile +++ b/gemfiles/ruby_2.6_rails6_mysql2.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.6_rails6_mysql2.gemfile.lock b/gemfiles/ruby_2.6_rails6_mysql2.gemfile.lock index e66911c0e1f..5bd2c931b3b 100644 --- a/gemfiles/ruby_2.6_rails6_mysql2.gemfile.lock +++ b/gemfiles/ruby_2.6_rails6_mysql2.gemfile.lock @@ -66,7 +66,6 @@ GEM tzinfo (~> 1.1) zeitwerk (~> 2.2, >= 2.2.2) addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -97,7 +96,6 @@ GEM hashdiff (1.0.1) i18n (1.12.0) concurrent-ruby (~> 1.0) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -141,9 +139,6 @@ GEM nokogiri (1.13.10-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -184,11 +179,9 @@ GEM method_source rake (>= 0.8.7) thor (>= 0.20.3, < 2.0) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake - regexp_parser (2.8.1) request_store (1.5.1) rack (>= 1.4) rexml (3.2.8) @@ -212,29 +205,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -257,7 +227,6 @@ GEM timeout (0.3.2) tzinfo (1.2.11) thread_safe (~> 0.1) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -297,10 +266,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_2.6_rails6_postgres.gemfile b/gemfiles/ruby_2.6_rails6_postgres.gemfile index 7e3ea48143a..35843cd37ec 100644 --- a/gemfiles/ruby_2.6_rails6_postgres.gemfile +++ b/gemfiles/ruby_2.6_rails6_postgres.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.6_rails6_postgres.gemfile.lock b/gemfiles/ruby_2.6_rails6_postgres.gemfile.lock index 201d5011b42..9ce6e7e7b1f 100644 --- a/gemfiles/ruby_2.6_rails6_postgres.gemfile.lock +++ b/gemfiles/ruby_2.6_rails6_postgres.gemfile.lock @@ -66,7 +66,6 @@ GEM tzinfo (~> 1.1) zeitwerk (~> 2.2, >= 2.2.2) addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -97,7 +96,6 @@ GEM hashdiff (1.0.1) i18n (1.12.0) concurrent-ruby (~> 1.0) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -140,9 +138,6 @@ GEM nokogiri (1.13.10-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pg (0.21.0) pimpmychangelog (0.1.3) pry (0.14.2) @@ -184,11 +179,9 @@ GEM method_source rake (>= 0.8.7) thor (>= 0.20.3, < 2.0) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake - regexp_parser (2.8.1) request_store (1.5.1) rack (>= 1.4) rexml (3.2.8) @@ -212,29 +205,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -257,7 +227,6 @@ GEM timeout (0.3.2) tzinfo (1.2.11) thread_safe (~> 0.1) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -297,10 +266,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_2.6_rails6_postgres_redis.gemfile b/gemfiles/ruby_2.6_rails6_postgres_redis.gemfile index 38b38382381..659fa2eb5d9 100644 --- a/gemfiles/ruby_2.6_rails6_postgres_redis.gemfile +++ b/gemfiles/ruby_2.6_rails6_postgres_redis.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.6_rails6_postgres_redis.gemfile.lock b/gemfiles/ruby_2.6_rails6_postgres_redis.gemfile.lock index c5757f07de1..846e5857910 100644 --- a/gemfiles/ruby_2.6_rails6_postgres_redis.gemfile.lock +++ b/gemfiles/ruby_2.6_rails6_postgres_redis.gemfile.lock @@ -66,7 +66,6 @@ GEM tzinfo (~> 1.1) zeitwerk (~> 2.2, >= 2.2.2) addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -97,7 +96,6 @@ GEM hashdiff (1.0.1) i18n (1.12.0) concurrent-ruby (~> 1.0) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -140,9 +138,6 @@ GEM nokogiri (1.13.10-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pg (0.21.0) pimpmychangelog (0.1.3) pry (0.14.2) @@ -184,12 +179,10 @@ GEM method_source rake (>= 0.8.7) thor (>= 0.20.3, < 2.0) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake redis (4.8.1) - regexp_parser (2.8.1) request_store (1.5.1) rack (>= 1.4) rexml (3.2.8) @@ -213,29 +206,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -258,7 +228,6 @@ GEM timeout (0.3.2) tzinfo (1.2.11) thread_safe (~> 0.1) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -299,10 +268,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_2.6_rails6_postgres_redis_activesupport.gemfile b/gemfiles/ruby_2.6_rails6_postgres_redis_activesupport.gemfile index b25d109e8c0..b17d742e88b 100644 --- a/gemfiles/ruby_2.6_rails6_postgres_redis_activesupport.gemfile +++ b/gemfiles/ruby_2.6_rails6_postgres_redis_activesupport.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.6_rails6_postgres_redis_activesupport.gemfile.lock b/gemfiles/ruby_2.6_rails6_postgres_redis_activesupport.gemfile.lock index 4f2a49047d9..712ae43853d 100644 --- a/gemfiles/ruby_2.6_rails6_postgres_redis_activesupport.gemfile.lock +++ b/gemfiles/ruby_2.6_rails6_postgres_redis_activesupport.gemfile.lock @@ -66,7 +66,6 @@ GEM tzinfo (~> 1.1) zeitwerk (~> 2.2, >= 2.2.2) addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -97,7 +96,6 @@ GEM hashdiff (1.0.1) i18n (1.12.0) concurrent-ruby (~> 1.0) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -140,9 +138,6 @@ GEM nokogiri (1.13.10-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pg (0.21.0) pimpmychangelog (0.1.3) pry (0.14.2) @@ -184,7 +179,6 @@ GEM method_source rake (>= 0.8.7) thor (>= 0.20.3, < 2.0) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake @@ -205,7 +199,6 @@ GEM redis-store (>= 1.2, < 2) redis-store (1.9.2) redis (>= 4, < 6) - regexp_parser (2.8.1) request_store (1.5.1) rack (>= 1.4) rexml (3.2.8) @@ -229,29 +222,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -274,7 +244,6 @@ GEM timeout (0.3.2) tzinfo (1.2.11) thread_safe (~> 0.1) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -317,10 +286,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_2.6_rails6_postgres_sidekiq.gemfile b/gemfiles/ruby_2.6_rails6_postgres_sidekiq.gemfile index 2176dd02611..5e6cb3a7c16 100644 --- a/gemfiles/ruby_2.6_rails6_postgres_sidekiq.gemfile +++ b/gemfiles/ruby_2.6_rails6_postgres_sidekiq.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.6_rails6_postgres_sidekiq.gemfile.lock b/gemfiles/ruby_2.6_rails6_postgres_sidekiq.gemfile.lock index d8130d4a3f4..6181e92d1a8 100644 --- a/gemfiles/ruby_2.6_rails6_postgres_sidekiq.gemfile.lock +++ b/gemfiles/ruby_2.6_rails6_postgres_sidekiq.gemfile.lock @@ -66,7 +66,6 @@ GEM tzinfo (~> 1.1) zeitwerk (~> 2.2, >= 2.2.2) addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -98,7 +97,6 @@ GEM hashdiff (1.0.1) i18n (1.12.0) concurrent-ruby (~> 1.0) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -141,9 +139,6 @@ GEM nokogiri (1.13.10-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pg (0.21.0) pimpmychangelog (0.1.3) pry (0.14.2) @@ -185,12 +180,10 @@ GEM method_source rake (>= 0.8.7) thor (>= 0.20.3, < 2.0) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake redis (4.8.1) - regexp_parser (2.8.1) request_store (1.5.1) rack (>= 1.4) rexml (3.2.8) @@ -214,29 +207,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) sidekiq (6.5.8) connection_pool (>= 2.2.5, < 3) rack (~> 2.0) @@ -263,7 +233,6 @@ GEM timeout (0.3.2) tzinfo (1.2.11) thread_safe (~> 0.1) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -304,10 +273,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) sidekiq simplecov simplecov-cobertura (~> 2.1.0) diff --git a/gemfiles/ruby_2.6_rails6_semantic_logger.gemfile b/gemfiles/ruby_2.6_rails6_semantic_logger.gemfile index 40f2e53688b..9a6afa8fbae 100644 --- a/gemfiles/ruby_2.6_rails6_semantic_logger.gemfile +++ b/gemfiles/ruby_2.6_rails6_semantic_logger.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.6_rails6_semantic_logger.gemfile.lock b/gemfiles/ruby_2.6_rails6_semantic_logger.gemfile.lock index 636229d497e..66991e1bfac 100644 --- a/gemfiles/ruby_2.6_rails6_semantic_logger.gemfile.lock +++ b/gemfiles/ruby_2.6_rails6_semantic_logger.gemfile.lock @@ -66,7 +66,6 @@ GEM tzinfo (~> 1.1) zeitwerk (~> 2.2, >= 2.2.2) addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -97,7 +96,6 @@ GEM hashdiff (1.0.1) i18n (1.12.0) concurrent-ruby (~> 1.0) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -135,9 +133,6 @@ GEM nokogiri (1.13.10-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pg (0.21.0) pimpmychangelog (0.1.3) pry (0.14.2) @@ -183,11 +178,9 @@ GEM method_source rake (>= 0.8.7) thor (>= 0.20.3, < 2.0) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -209,29 +202,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) semantic_logger (4.12.0) concurrent-ruby (~> 1.0) simplecov (0.21.2) @@ -256,7 +226,6 @@ GEM timeout (0.3.2) tzinfo (1.2.11) thread_safe (~> 0.1) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -296,10 +265,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_2.6_rails_old_redis.gemfile b/gemfiles/ruby_2.6_rails_old_redis.gemfile index bc0b941b06b..f5ce43214f8 100644 --- a/gemfiles/ruby_2.6_rails_old_redis.gemfile +++ b/gemfiles/ruby_2.6_rails_old_redis.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.6_redis_3.gemfile b/gemfiles/ruby_2.6_redis_3.gemfile index b2c72966eda..8933632963f 100644 --- a/gemfiles/ruby_2.6_redis_3.gemfile +++ b/gemfiles/ruby_2.6_redis_3.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.6_redis_3.gemfile.lock b/gemfiles/ruby_2.6_redis_3.gemfile.lock index 01a5da52fc4..d7c2f96b065 100644 --- a/gemfiles/ruby_2.6_redis_3.gemfile.lock +++ b/gemfiles/ruby_2.6_redis_3.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -34,7 +33,6 @@ GEM google-protobuf (3.19.1) google-protobuf (3.19.1-x86_64-linux) hashdiff (1.0.1) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -47,9 +45,6 @@ GEM method_source (1.0.0) msgpack (1.7.5) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -60,12 +55,10 @@ GEM pry-stack_explorer (0.6.1) binding_of_caller (~> 1.0) pry (~> 0.13) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake redis (3.3.5) - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -87,29 +80,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -120,7 +90,6 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) strscan (3.1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -154,10 +123,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_2.6_redis_4.gemfile b/gemfiles/ruby_2.6_redis_4.gemfile index b877afb416c..41b903cdacb 100644 --- a/gemfiles/ruby_2.6_redis_4.gemfile +++ b/gemfiles/ruby_2.6_redis_4.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.6_redis_4.gemfile.lock b/gemfiles/ruby_2.6_redis_4.gemfile.lock index 0dcf84cb2da..e2e32cb29c7 100644 --- a/gemfiles/ruby_2.6_redis_4.gemfile.lock +++ b/gemfiles/ruby_2.6_redis_4.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -34,7 +33,6 @@ GEM google-protobuf (3.19.1) google-protobuf (3.19.1-x86_64-linux) hashdiff (1.0.1) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -47,9 +45,6 @@ GEM method_source (1.0.0) msgpack (1.7.5) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -60,12 +55,10 @@ GEM pry-stack_explorer (0.6.1) binding_of_caller (~> 1.0) pry (~> 0.13) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake redis (4.8.1) - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -87,29 +80,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -120,7 +90,6 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) strscan (3.1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -154,10 +123,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_2.6_redis_5.gemfile b/gemfiles/ruby_2.6_redis_5.gemfile index e4f85389222..67fbcef7901 100644 --- a/gemfiles/ruby_2.6_redis_5.gemfile +++ b/gemfiles/ruby_2.6_redis_5.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.6_redis_5.gemfile.lock b/gemfiles/ruby_2.6_redis_5.gemfile.lock index e7f2ce310ab..d70da47b0c7 100644 --- a/gemfiles/ruby_2.6_redis_5.gemfile.lock +++ b/gemfiles/ruby_2.6_redis_5.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -35,7 +34,6 @@ GEM google-protobuf (3.19.1) google-protobuf (3.19.1-x86_64-linux) hashdiff (1.0.1) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -48,9 +46,6 @@ GEM method_source (1.0.0) msgpack (1.7.5) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -61,7 +56,6 @@ GEM pry-stack_explorer (0.6.1) binding_of_caller (~> 1.0) pry (~> 0.13) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake @@ -69,7 +63,6 @@ GEM redis-client (>= 0.9.0) redis-client (0.12.2) connection_pool - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -91,29 +84,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -124,7 +94,6 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) strscan (3.1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -158,10 +127,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_2.6_relational_db.gemfile b/gemfiles/ruby_2.6_relational_db.gemfile index 40d065e6a69..529bb878854 100644 --- a/gemfiles/ruby_2.6_relational_db.gemfile +++ b/gemfiles/ruby_2.6_relational_db.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.6_relational_db.gemfile.lock b/gemfiles/ruby_2.6_relational_db.gemfile.lock index 77f1bdd7673..1e36ad194e0 100644 --- a/gemfiles/ruby_2.6_relational_db.gemfile.lock +++ b/gemfiles/ruby_2.6_relational_db.gemfile.lock @@ -22,7 +22,6 @@ GEM tzinfo (~> 1.1) zeitwerk (~> 2.2, >= 2.2.2) addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.12.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -53,7 +52,6 @@ GEM hashdiff (1.0.1) i18n (1.14.1) concurrent-ruby (~> 1.0) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -70,10 +68,6 @@ GEM msgpack (1.7.5) mysql2 (0.5.5) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pg (1.5.4) pimpmychangelog (0.1.3) pry (0.14.2) @@ -85,12 +79,9 @@ GEM pry-stack_explorer (0.6.1) binding_of_caller (~> 1.0) pry (~> 0.13) - racc (1.7.1) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -112,29 +103,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) sequel (5.83.1) bigdecimal simplecov (0.21.2) @@ -151,7 +119,6 @@ GEM thread_safe (0.3.6) tzinfo (1.2.11) thread_safe (~> 0.1) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -191,10 +158,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) sequel simplecov simplecov-cobertura (~> 2.1.0) diff --git a/gemfiles/ruby_2.6_resque2_redis3.gemfile b/gemfiles/ruby_2.6_resque2_redis3.gemfile index 1d9a167eb00..b5b43b5fdae 100644 --- a/gemfiles/ruby_2.6_resque2_redis3.gemfile +++ b/gemfiles/ruby_2.6_resque2_redis3.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.6_resque2_redis3.gemfile.lock b/gemfiles/ruby_2.6_resque2_redis3.gemfile.lock index ff019c17852..f60f3fab171 100644 --- a/gemfiles/ruby_2.6_resque2_redis3.gemfile.lock +++ b/gemfiles/ruby_2.6_resque2_redis3.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -34,7 +33,6 @@ GEM google-protobuf (3.19.1) google-protobuf (3.19.1-x86_64-linux) hashdiff (1.0.1) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -51,9 +49,6 @@ GEM mustermann (3.0.0) ruby2_keywords (~> 0.0.1) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -67,14 +62,12 @@ GEM rack (2.2.6.2) rack-protection (3.0.5) rack - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake redis (3.3.5) redis-namespace (1.8.2) redis (>= 3.0.4) - regexp_parser (2.8.1) resque (2.4.0) mono_logger (~> 1.0) multi_json (~> 1.0) @@ -101,29 +94,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) simplecov (0.21.2) docile (~> 1.1) @@ -141,7 +111,6 @@ GEM tilt (~> 2.0) strscan (3.1.0) tilt (2.1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -176,10 +145,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_2.6_resque2_redis4.gemfile b/gemfiles/ruby_2.6_resque2_redis4.gemfile index 6fce168aefb..6d806835bb0 100644 --- a/gemfiles/ruby_2.6_resque2_redis4.gemfile +++ b/gemfiles/ruby_2.6_resque2_redis4.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.6_resque2_redis4.gemfile.lock b/gemfiles/ruby_2.6_resque2_redis4.gemfile.lock index 018c17996d9..c0997d0517e 100644 --- a/gemfiles/ruby_2.6_resque2_redis4.gemfile.lock +++ b/gemfiles/ruby_2.6_resque2_redis4.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -34,7 +33,6 @@ GEM google-protobuf (3.19.1) google-protobuf (3.19.1-x86_64-linux) hashdiff (1.0.1) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -51,9 +49,6 @@ GEM mustermann (3.0.0) ruby2_keywords (~> 0.0.1) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -67,14 +62,12 @@ GEM rack (2.2.6.2) rack-protection (3.0.5) rack - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake redis (4.8.1) redis-namespace (1.10.0) redis (>= 4) - regexp_parser (2.8.1) resque (2.4.0) mono_logger (~> 1.0) multi_json (~> 1.0) @@ -101,29 +94,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) simplecov (0.21.2) docile (~> 1.1) @@ -141,7 +111,6 @@ GEM tilt (~> 2.0) strscan (3.1.0) tilt (2.1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -176,10 +145,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_2.6_sinatra_2.gemfile b/gemfiles/ruby_2.6_sinatra_2.gemfile index 111eb91da35..621ff093714 100644 --- a/gemfiles/ruby_2.6_sinatra_2.gemfile +++ b/gemfiles/ruby_2.6_sinatra_2.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.6_sinatra_2.gemfile.lock b/gemfiles/ruby_2.6_sinatra_2.gemfile.lock index eb0fe3a5f37..3ac7985604a 100644 --- a/gemfiles/ruby_2.6_sinatra_2.gemfile.lock +++ b/gemfiles/ruby_2.6_sinatra_2.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.6) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) benchmark-ips (2.13.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -37,7 +36,6 @@ GEM google-protobuf (3.19.1) google-protobuf (3.19.1-x86_64-linux) hashdiff (1.1.0) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -52,10 +50,6 @@ GEM mustermann (2.0.2) ruby2_keywords (~> 0.0.1) os (1.1.4) - parallel (1.24.0) - parser (3.3.1.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -67,7 +61,6 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (5.0.5) - racc (1.8.0) rack (2.2.9) rack-contrib (2.4.0) rack (< 4) @@ -75,11 +68,9 @@ GEM rack rack-test (2.1.0) rack (>= 1.3) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -101,29 +92,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.30.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) simplecov (0.21.2) docile (~> 1.1) @@ -141,7 +109,6 @@ GEM tilt (~> 2.0) strscan (3.1.0) tilt (2.3.0) - unicode-display_width (2.5.0) warning (1.3.0) webmock (3.23.0) addressable (>= 2.8.0) @@ -176,10 +143,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sinatra (~> 2) diff --git a/gemfiles/ruby_2.6_sinatra_3.gemfile b/gemfiles/ruby_2.6_sinatra_3.gemfile index 23cf27863e7..15a4d64e95f 100644 --- a/gemfiles/ruby_2.6_sinatra_3.gemfile +++ b/gemfiles/ruby_2.6_sinatra_3.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.6_sinatra_3.gemfile.lock b/gemfiles/ruby_2.6_sinatra_3.gemfile.lock index 9ad6c0f1287..a2228005aca 100644 --- a/gemfiles/ruby_2.6_sinatra_3.gemfile.lock +++ b/gemfiles/ruby_2.6_sinatra_3.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.6) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -38,7 +37,6 @@ GEM google-protobuf (3.19.1) google-protobuf (3.19.1-x86_64-linux) hashdiff (1.1.0) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -53,10 +51,6 @@ GEM mustermann (3.0.0) ruby2_keywords (~> 0.0.1) os (1.1.4) - parallel (1.24.0) - parser (3.3.1.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -68,7 +62,6 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (5.0.5) - racc (1.8.0) rack (2.2.9) rack-contrib (2.4.0) rack (< 4) @@ -77,11 +70,9 @@ GEM rack (~> 2.2, >= 2.2.4) rack-test (2.1.0) rack (>= 1.3) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -103,29 +94,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.30.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) simplecov (0.21.2) docile (~> 1.1) @@ -143,7 +111,6 @@ GEM tilt (~> 2.0) strscan (3.1.0) tilt (2.3.0) - unicode-display_width (2.5.0) warning (1.3.0) webmock (3.23.0) addressable (>= 2.8.0) @@ -178,10 +145,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sinatra (~> 3) diff --git a/gemfiles/ruby_2.6_stripe_10.gemfile b/gemfiles/ruby_2.6_stripe_10.gemfile index 6e662ebd7df..9f057403bf5 100644 --- a/gemfiles/ruby_2.6_stripe_10.gemfile +++ b/gemfiles/ruby_2.6_stripe_10.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.6_stripe_10.gemfile.lock b/gemfiles/ruby_2.6_stripe_10.gemfile.lock index 33b2a726986..cde2efeb27c 100644 --- a/gemfiles/ruby_2.6_stripe_10.gemfile.lock +++ b/gemfiles/ruby_2.6_stripe_10.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.13.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -37,7 +36,6 @@ GEM google-protobuf (3.19.1) google-protobuf (3.19.1-x86_64-linux) hashdiff (1.1.1) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -50,10 +48,6 @@ GEM method_source (1.1.0) msgpack (1.7.5) os (1.1.4) - parallel (1.24.0) - parser (3.3.4.2) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -65,12 +59,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (5.1.1) - racc (1.8.1) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.6) strscan rspec (3.13.0) @@ -92,29 +83,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.30.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -126,7 +94,6 @@ GEM simplecov_json_formatter (0.1.4) stripe (10.15.0) strscan (3.1.0) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -159,10 +126,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 10) diff --git a/gemfiles/ruby_2.6_stripe_11.gemfile b/gemfiles/ruby_2.6_stripe_11.gemfile index ba919253b84..1436623888c 100644 --- a/gemfiles/ruby_2.6_stripe_11.gemfile +++ b/gemfiles/ruby_2.6_stripe_11.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.6_stripe_11.gemfile.lock b/gemfiles/ruby_2.6_stripe_11.gemfile.lock index 1005f19282e..7f88df5a034 100644 --- a/gemfiles/ruby_2.6_stripe_11.gemfile.lock +++ b/gemfiles/ruby_2.6_stripe_11.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.13.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -37,7 +36,6 @@ GEM google-protobuf (3.19.1) google-protobuf (3.19.1-x86_64-linux) hashdiff (1.1.1) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -50,10 +48,6 @@ GEM method_source (1.1.0) msgpack (1.7.5) os (1.1.4) - parallel (1.24.0) - parser (3.3.4.2) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -65,12 +59,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (5.1.1) - racc (1.8.1) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.6) strscan rspec (3.13.0) @@ -92,29 +83,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.30.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -126,7 +94,6 @@ GEM simplecov_json_formatter (0.1.4) stripe (11.7.0) strscan (3.1.0) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -159,10 +126,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 11) diff --git a/gemfiles/ruby_2.6_stripe_12.gemfile b/gemfiles/ruby_2.6_stripe_12.gemfile index 554b985605b..fa6df5ee62d 100644 --- a/gemfiles/ruby_2.6_stripe_12.gemfile +++ b/gemfiles/ruby_2.6_stripe_12.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.6_stripe_12.gemfile.lock b/gemfiles/ruby_2.6_stripe_12.gemfile.lock index 0b05cfe37c3..cf6d21e6c0f 100644 --- a/gemfiles/ruby_2.6_stripe_12.gemfile.lock +++ b/gemfiles/ruby_2.6_stripe_12.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.13.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -37,7 +36,6 @@ GEM google-protobuf (3.19.1) google-protobuf (3.19.1-x86_64-linux) hashdiff (1.1.1) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -50,10 +48,6 @@ GEM method_source (1.1.0) msgpack (1.7.5) os (1.1.4) - parallel (1.24.0) - parser (3.3.4.2) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -65,12 +59,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (5.1.1) - racc (1.8.1) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.6) strscan rspec (3.13.0) @@ -92,29 +83,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.30.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -126,7 +94,6 @@ GEM simplecov_json_formatter (0.1.4) stripe (12.6.0) strscan (3.1.0) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -159,10 +126,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 12) diff --git a/gemfiles/ruby_2.6_stripe_7.gemfile b/gemfiles/ruby_2.6_stripe_7.gemfile index 081c9bc5b55..402d284d148 100644 --- a/gemfiles/ruby_2.6_stripe_7.gemfile +++ b/gemfiles/ruby_2.6_stripe_7.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.6_stripe_7.gemfile.lock b/gemfiles/ruby_2.6_stripe_7.gemfile.lock index 527d96dc0ba..09aee3f41bf 100644 --- a/gemfiles/ruby_2.6_stripe_7.gemfile.lock +++ b/gemfiles/ruby_2.6_stripe_7.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.13.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -37,7 +36,6 @@ GEM google-protobuf (3.19.1) google-protobuf (3.19.1-x86_64-linux) hashdiff (1.1.1) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -50,10 +48,6 @@ GEM method_source (1.1.0) msgpack (1.7.5) os (1.1.4) - parallel (1.24.0) - parser (3.3.4.2) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -65,12 +59,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (5.1.1) - racc (1.8.1) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.6) strscan rspec (3.13.0) @@ -92,29 +83,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.30.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -126,7 +94,6 @@ GEM simplecov_json_formatter (0.1.4) stripe (7.1.0) strscan (3.1.0) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -159,10 +126,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 7) diff --git a/gemfiles/ruby_2.6_stripe_8.gemfile b/gemfiles/ruby_2.6_stripe_8.gemfile index 23e2ed3e699..1e639e2beb6 100644 --- a/gemfiles/ruby_2.6_stripe_8.gemfile +++ b/gemfiles/ruby_2.6_stripe_8.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.6_stripe_8.gemfile.lock b/gemfiles/ruby_2.6_stripe_8.gemfile.lock index 2edecd18493..689bec535a3 100644 --- a/gemfiles/ruby_2.6_stripe_8.gemfile.lock +++ b/gemfiles/ruby_2.6_stripe_8.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.13.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -37,7 +36,6 @@ GEM google-protobuf (3.19.1) google-protobuf (3.19.1-x86_64-linux) hashdiff (1.1.1) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -50,10 +48,6 @@ GEM method_source (1.1.0) msgpack (1.7.5) os (1.1.4) - parallel (1.24.0) - parser (3.3.4.2) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -65,12 +59,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (5.1.1) - racc (1.8.1) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.6) strscan rspec (3.13.0) @@ -92,29 +83,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.30.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -126,7 +94,6 @@ GEM simplecov_json_formatter (0.1.4) stripe (8.7.0) strscan (3.1.0) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -159,10 +126,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 8) diff --git a/gemfiles/ruby_2.6_stripe_9.gemfile b/gemfiles/ruby_2.6_stripe_9.gemfile index 2d7aa37dccc..14e6c67e1f0 100644 --- a/gemfiles/ruby_2.6_stripe_9.gemfile +++ b/gemfiles/ruby_2.6_stripe_9.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.6_stripe_9.gemfile.lock b/gemfiles/ruby_2.6_stripe_9.gemfile.lock index 50578a14122..e6666fa5ad0 100644 --- a/gemfiles/ruby_2.6_stripe_9.gemfile.lock +++ b/gemfiles/ruby_2.6_stripe_9.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.13.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -37,7 +36,6 @@ GEM google-protobuf (3.19.1) google-protobuf (3.19.1-x86_64-linux) hashdiff (1.1.1) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -50,10 +48,6 @@ GEM method_source (1.1.0) msgpack (1.7.5) os (1.1.4) - parallel (1.24.0) - parser (3.3.4.2) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -65,12 +59,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (5.1.1) - racc (1.8.1) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.6) strscan rspec (3.13.0) @@ -92,29 +83,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.30.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -126,7 +94,6 @@ GEM simplecov_json_formatter (0.1.4) stripe (9.4.0) strscan (3.1.0) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -159,10 +126,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 9) diff --git a/gemfiles/ruby_2.6_stripe_latest.gemfile b/gemfiles/ruby_2.6_stripe_latest.gemfile index 445fa83b2a6..e67023efc98 100644 --- a/gemfiles/ruby_2.6_stripe_latest.gemfile +++ b/gemfiles/ruby_2.6_stripe_latest.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.6_stripe_latest.gemfile.lock b/gemfiles/ruby_2.6_stripe_latest.gemfile.lock index ab70a923c72..dd9d7bfa776 100644 --- a/gemfiles/ruby_2.6_stripe_latest.gemfile.lock +++ b/gemfiles/ruby_2.6_stripe_latest.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.14.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -37,7 +36,6 @@ GEM google-protobuf (3.19.1) google-protobuf (3.19.1-x86_64-linux) hashdiff (1.1.1) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -50,10 +48,6 @@ GEM method_source (1.1.0) msgpack (1.7.5) os (1.1.4) - parallel (1.24.0) - parser (3.3.5.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -65,12 +59,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (5.1.1) - racc (1.8.1) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.7) rspec (3.13.0) rspec-core (~> 3.13.0) @@ -91,29 +82,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.30.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -124,7 +92,6 @@ GEM simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) stripe (13.3.0) - unicode-display_width (2.6.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -157,10 +124,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) stripe diff --git a/gemfiles/ruby_2.6_stripe_min.gemfile b/gemfiles/ruby_2.6_stripe_min.gemfile index d470de67a8f..96e42d51921 100644 --- a/gemfiles/ruby_2.6_stripe_min.gemfile +++ b/gemfiles/ruby_2.6_stripe_min.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.6_stripe_min.gemfile.lock b/gemfiles/ruby_2.6_stripe_min.gemfile.lock index 817e8abde60..61082055c1a 100644 --- a/gemfiles/ruby_2.6_stripe_min.gemfile.lock +++ b/gemfiles/ruby_2.6_stripe_min.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.14.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -37,7 +36,6 @@ GEM google-protobuf (3.19.1) google-protobuf (3.19.1-x86_64-linux) hashdiff (1.1.1) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -50,10 +48,6 @@ GEM method_source (1.1.0) msgpack (1.7.5) os (1.1.4) - parallel (1.24.0) - parser (3.3.5.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -65,12 +59,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (5.1.1) - racc (1.8.1) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.7) rspec (3.13.0) rspec-core (~> 3.13.0) @@ -91,29 +82,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.30.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.18.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -124,7 +92,6 @@ GEM simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) stripe (5.15.0) - unicode-display_width (2.6.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -157,10 +124,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) stripe (= 5.15.0) diff --git a/gemfiles/ruby_2.7_activesupport.gemfile b/gemfiles/ruby_2.7_activesupport.gemfile index d36adf61bdf..a9d50f158f2 100644 --- a/gemfiles/ruby_2.7_activesupport.gemfile +++ b/gemfiles/ruby_2.7_activesupport.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.7_activesupport.gemfile.lock b/gemfiles/ruby_2.7_activesupport.gemfile.lock index 57e306f993c..c948d7c63a6 100644 --- a/gemfiles/ruby_2.7_activesupport.gemfile.lock +++ b/gemfiles/ruby_2.7_activesupport.gemfile.lock @@ -37,7 +37,6 @@ GEM tzinfo (~> 2.0) zeitwerk (~> 2.3) addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.12.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -90,7 +89,6 @@ GEM hashdiff (1.0.1) i18n (1.14.1) concurrent-ruby (~> 1.0) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) jsonapi-renderer (0.2.2) @@ -123,10 +121,6 @@ GEM nokogiri (1.15.4-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -159,7 +153,6 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake @@ -167,7 +160,6 @@ GEM ffi (~> 1.15) mini_portile2 (~> 2.6) rake (> 12) - regexp_parser (2.8.1) request_store (1.5.1) rack (>= 1.4) rexml (3.2.8) @@ -191,31 +183,8 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.0) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-kafka (1.5.0) digest-crc - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) simplecov (0.21.2) docile (~> 1.1) @@ -230,7 +199,6 @@ GEM thor (1.2.2) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -271,10 +239,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) ruby-kafka (>= 0.7.10) simplecov simplecov-cobertura (~> 2.1.0) diff --git a/gemfiles/ruby_2.7_aws.gemfile b/gemfiles/ruby_2.7_aws.gemfile index ee94de7df40..17e02fefc18 100644 --- a/gemfiles/ruby_2.7_aws.gemfile +++ b/gemfiles/ruby_2.7_aws.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.7_aws.gemfile.lock b/gemfiles/ruby_2.7_aws.gemfile.lock index 704e97ed24f..7dbe70f88c3 100644 --- a/gemfiles/ruby_2.7_aws.gemfile.lock +++ b/gemfiles/ruby_2.7_aws.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) aws-eventstream (1.2.0) aws-partitions (1.813.0) aws-sdk (3.1.0) @@ -1456,7 +1455,6 @@ GEM google-protobuf (3.24.2-x86_64-linux) hashdiff (1.0.1) jmespath (1.6.2) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -1469,10 +1467,6 @@ GEM method_source (1.0.0) msgpack (1.7.5) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -1483,12 +1477,9 @@ GEM pry-stack_explorer (0.6.1) binding_of_caller (~> 1.0) pry (~> 0.13) - racc (1.7.1) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -1510,29 +1501,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.0) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) shoryuken (6.0.0) aws-sdk-core (>= 2) concurrent-ruby @@ -1548,7 +1516,6 @@ GEM simplecov_json_formatter (0.1.4) strscan (3.1.0) thor (1.2.2) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -1582,10 +1549,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) shoryuken simplecov simplecov-cobertura (~> 2.1.0) diff --git a/gemfiles/ruby_2.7_contrib.gemfile b/gemfiles/ruby_2.7_contrib.gemfile index fdc0206e1f0..eedda585e3a 100644 --- a/gemfiles/ruby_2.7_contrib.gemfile +++ b/gemfiles/ruby_2.7_contrib.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.7_contrib.gemfile.lock b/gemfiles/ruby_2.7_contrib.gemfile.lock index 514da5bd12d..e23b2ef319e 100644 --- a/gemfiles/ruby_2.7_contrib.gemfile.lock +++ b/gemfiles/ruby_2.7_contrib.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.4.0) amq-protocol (2.3.2) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -49,7 +48,6 @@ GEM google-protobuf (~> 3.21) googleapis-common-protos-types (~> 1.0) hashdiff (1.0.1) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -68,9 +66,6 @@ GEM mustermann (3.0.0) ruby2_keywords (~> 0.0.1) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -87,7 +82,6 @@ GEM rack rack-test (2.1.0) rack (>= 1.3) - rainbow (3.1.1) rake (12.3.3) rake-compiler (1.2.1) rake @@ -95,7 +89,6 @@ GEM redis (4.8.1) redis-namespace (1.10.0) redis (>= 4) - regexp_parser (2.8.1) resque (2.4.0) mono_logger (~> 1.0) multi_json (~> 1.0) @@ -124,29 +117,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) semantic_logger (4.12.0) concurrent-ruby (~> 1.0) @@ -186,7 +156,6 @@ GEM concurrent-ruby (~> 1.0) thor (1.2.1) tilt (2.1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -226,10 +195,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) semantic_logger (~> 4.0) sidekiq (~> 6) simplecov diff --git a/gemfiles/ruby_2.7_contrib_old.gemfile b/gemfiles/ruby_2.7_contrib_old.gemfile index 830240a5937..354e97e39a4 100644 --- a/gemfiles/ruby_2.7_contrib_old.gemfile +++ b/gemfiles/ruby_2.7_contrib_old.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.7_contrib_old.gemfile.lock b/gemfiles/ruby_2.7_contrib_old.gemfile.lock index 812a7585e44..8bbf070cb69 100644 --- a/gemfiles/ruby_2.7_contrib_old.gemfile.lock +++ b/gemfiles/ruby_2.7_contrib_old.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) atomic (1.1.101) avl_tree (1.2.1) atomic (~> 1.1) @@ -45,7 +44,6 @@ GEM google-protobuf (3.22.0-x86_64-linux) hashdiff (1.0.1) hitimes (1.3.1) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -65,9 +63,6 @@ GEM mustermann (1.1.2) ruby2_keywords (~> 0.0.1) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pimpmychangelog (0.1.3) presto-client (0.6.6) faraday (~> 0.12) @@ -95,12 +90,10 @@ GEM rack (2.2.6.2) rack-protection (2.0.8.1) rack - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake redis (3.3.5) - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -122,29 +115,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) rusage (0.2.0) sentry-raven (0.15.6) @@ -171,7 +141,6 @@ GEM rack (>= 1, < 3) thor (0.19.4) tilt (2.1.0) - unicode-display_width (2.4.2) vegas (0.1.11) rack (>= 1.0.0) warning (1.3.0) @@ -210,10 +179,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_2.7_core_old.gemfile b/gemfiles/ruby_2.7_core_old.gemfile index e5d064da8bd..4fb04799c63 100644 --- a/gemfiles/ruby_2.7_core_old.gemfile +++ b/gemfiles/ruby_2.7_core_old.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.7_core_old.gemfile.lock b/gemfiles/ruby_2.7_core_old.gemfile.lock index b003e90f7d3..7fde72fcc35 100644 --- a/gemfiles/ruby_2.7_core_old.gemfile.lock +++ b/gemfiles/ruby_2.7_core_old.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -34,7 +33,6 @@ GEM google-protobuf (3.22.0) google-protobuf (3.22.0-x86_64-linux) hashdiff (1.0.1) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -47,9 +45,6 @@ GEM method_source (1.0.0) msgpack (1.7.5) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -60,11 +55,9 @@ GEM pry-stack_explorer (0.6.1) binding_of_caller (~> 1.0) pry (~> 0.13) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -86,29 +79,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -119,7 +89,6 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) strscan (3.1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -152,10 +121,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_2.7_elasticsearch_7.gemfile b/gemfiles/ruby_2.7_elasticsearch_7.gemfile index cc5b5c17f29..96c606fa8d3 100644 --- a/gemfiles/ruby_2.7_elasticsearch_7.gemfile +++ b/gemfiles/ruby_2.7_elasticsearch_7.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.7_elasticsearch_7.gemfile.lock b/gemfiles/ruby_2.7_elasticsearch_7.gemfile.lock index 179fc56a8ec..99a30411942 100644 --- a/gemfiles/ruby_2.7_elasticsearch_7.gemfile.lock +++ b/gemfiles/ruby_2.7_elasticsearch_7.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.5) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.12.0) benchmark-memory (0.1.2) @@ -50,7 +49,6 @@ GEM google-protobuf (3.24.4-aarch64-linux) google-protobuf (3.24.4-x86_64-linux) hashdiff (1.0.1) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -64,10 +62,6 @@ GEM msgpack (1.7.5) multi_json (1.15.0) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.4) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -79,12 +73,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (5.0.3) - racc (1.7.1) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.2) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -106,29 +97,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) simplecov (0.21.2) docile (~> 1.1) @@ -140,7 +108,6 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) strscan (3.1.0) - unicode-display_width (2.5.0) warning (1.3.0) webmock (3.19.1) addressable (>= 2.8.0) @@ -174,10 +141,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_2.7_elasticsearch_8.gemfile b/gemfiles/ruby_2.7_elasticsearch_8.gemfile index 925ae8a29c0..93abbf31b41 100644 --- a/gemfiles/ruby_2.7_elasticsearch_8.gemfile +++ b/gemfiles/ruby_2.7_elasticsearch_8.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.7_elasticsearch_8.gemfile.lock b/gemfiles/ruby_2.7_elasticsearch_8.gemfile.lock index 6511a551e29..3264d85b448 100644 --- a/gemfiles/ruby_2.7_elasticsearch_8.gemfile.lock +++ b/gemfiles/ruby_2.7_elasticsearch_8.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.5) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.12.0) benchmark-memory (0.1.2) @@ -49,7 +48,6 @@ GEM google-protobuf (3.24.4-aarch64-linux) google-protobuf (3.24.4-x86_64-linux) hashdiff (1.0.1) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -63,10 +61,6 @@ GEM msgpack (1.7.5) multi_json (1.15.0) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.4) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -78,12 +72,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (5.0.3) - racc (1.7.1) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.2) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -105,29 +96,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) simplecov (0.21.2) docile (~> 1.1) @@ -139,7 +107,6 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) strscan (3.1.0) - unicode-display_width (2.5.0) warning (1.3.0) webmock (3.19.1) addressable (>= 2.8.0) @@ -173,10 +140,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_2.7_elasticsearch_latest.gemfile b/gemfiles/ruby_2.7_elasticsearch_latest.gemfile index b13b4800c5f..f8a253836a2 100644 --- a/gemfiles/ruby_2.7_elasticsearch_latest.gemfile +++ b/gemfiles/ruby_2.7_elasticsearch_latest.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.7_elasticsearch_latest.gemfile.lock b/gemfiles/ruby_2.7_elasticsearch_latest.gemfile.lock index a91c387cea4..d67034b519a 100644 --- a/gemfiles/ruby_2.7_elasticsearch_latest.gemfile.lock +++ b/gemfiles/ruby_2.7_elasticsearch_latest.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.14.0) benchmark-memory (0.1.2) @@ -50,7 +49,6 @@ GEM ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.4) hashdiff (1.1.1) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -64,10 +62,6 @@ GEM msgpack (1.7.5) multi_json (1.15.0) os (1.1.4) - parallel (1.26.3) - parser (3.3.5.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -79,12 +73,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (5.1.1) - racc (1.8.1) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.7) rspec (3.13.0) rspec-core (~> 3.13.0) @@ -105,29 +96,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.3) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.22.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) simplecov (0.21.2) docile (~> 1.1) @@ -138,7 +106,6 @@ GEM simplecov (~> 0.19) simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) - unicode-display_width (2.6.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -172,10 +139,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_2.7_graphql_1.13.gemfile b/gemfiles/ruby_2.7_graphql_1.13.gemfile index 2600f4886bc..5f1da96a46c 100644 --- a/gemfiles/ruby_2.7_graphql_1.13.gemfile +++ b/gemfiles/ruby_2.7_graphql_1.13.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.7_graphql_1.13.gemfile.lock b/gemfiles/ruby_2.7_graphql_1.13.gemfile.lock index f3ae9df59e7..e2fa2703014 100644 --- a/gemfiles/ruby_2.7_graphql_1.13.gemfile.lock +++ b/gemfiles/ruby_2.7_graphql_1.13.gemfile.lock @@ -71,7 +71,6 @@ GEM zeitwerk (~> 2.3) addressable (2.8.6) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -104,7 +103,6 @@ GEM hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) - json (2.7.1) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -147,10 +145,6 @@ GEM nokogiri (1.15.6-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.24.0) - parser (3.3.0.5) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -194,11 +188,9 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.1.0) rake-compiler (1.2.6) rake - regexp_parser (2.9.0) request_store (1.7.0) rack (>= 1.4) rexml (3.2.8) @@ -222,29 +214,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.30.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.20.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.20.2) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.30.0, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -267,7 +236,6 @@ GEM timeout (0.4.1) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.5.0) warning (1.3.0) webmock (3.19.1) addressable (>= 2.8.0) @@ -307,10 +275,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_2.7_graphql_2.0.gemfile b/gemfiles/ruby_2.7_graphql_2.0.gemfile index b0f02a5b783..00a0ddcdc1c 100644 --- a/gemfiles/ruby_2.7_graphql_2.0.gemfile +++ b/gemfiles/ruby_2.7_graphql_2.0.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.7_graphql_2.0.gemfile.lock b/gemfiles/ruby_2.7_graphql_2.0.gemfile.lock index 1a13c7212f7..1f88198c0a0 100644 --- a/gemfiles/ruby_2.7_graphql_2.0.gemfile.lock +++ b/gemfiles/ruby_2.7_graphql_2.0.gemfile.lock @@ -71,7 +71,6 @@ GEM zeitwerk (~> 2.3) addressable (2.8.6) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -104,7 +103,6 @@ GEM hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) - json (2.7.1) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -147,10 +145,6 @@ GEM nokogiri (1.15.6-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.24.0) - parser (3.3.0.5) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -194,11 +188,9 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.1.0) rake-compiler (1.2.6) rake - regexp_parser (2.9.0) request_store (1.7.0) rack (>= 1.4) rexml (3.2.8) @@ -222,29 +214,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.30.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.20.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.20.2) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.30.0, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -267,7 +236,6 @@ GEM timeout (0.4.1) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.5.0) warning (1.3.0) webmock (3.19.1) addressable (>= 2.8.0) @@ -307,10 +275,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_2.7_graphql_2.1.gemfile b/gemfiles/ruby_2.7_graphql_2.1.gemfile index c54e22d4847..3c79c693e5f 100644 --- a/gemfiles/ruby_2.7_graphql_2.1.gemfile +++ b/gemfiles/ruby_2.7_graphql_2.1.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.7_graphql_2.1.gemfile.lock b/gemfiles/ruby_2.7_graphql_2.1.gemfile.lock index 460dccbb2a6..a0678483399 100644 --- a/gemfiles/ruby_2.7_graphql_2.1.gemfile.lock +++ b/gemfiles/ruby_2.7_graphql_2.1.gemfile.lock @@ -71,7 +71,6 @@ GEM zeitwerk (~> 2.3) addressable (2.8.6) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -105,7 +104,6 @@ GEM hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) - json (2.7.1) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -148,10 +146,6 @@ GEM nokogiri (1.15.6-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.24.0) - parser (3.3.0.5) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -195,11 +189,9 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.1.0) rake-compiler (1.2.6) rake - regexp_parser (2.9.0) request_store (1.7.0) rack (>= 1.4) rexml (3.2.8) @@ -223,29 +215,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.30.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.20.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.20.2) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.30.0, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -268,7 +237,6 @@ GEM timeout (0.4.1) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.5.0) warning (1.3.0) webmock (3.19.1) addressable (>= 2.8.0) @@ -308,10 +276,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_2.7_graphql_2.2.gemfile b/gemfiles/ruby_2.7_graphql_2.2.gemfile index a366f5a3da6..887884938d4 100644 --- a/gemfiles/ruby_2.7_graphql_2.2.gemfile +++ b/gemfiles/ruby_2.7_graphql_2.2.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.7_graphql_2.2.gemfile.lock b/gemfiles/ruby_2.7_graphql_2.2.gemfile.lock index dc32262a8e9..421118831c7 100644 --- a/gemfiles/ruby_2.7_graphql_2.2.gemfile.lock +++ b/gemfiles/ruby_2.7_graphql_2.2.gemfile.lock @@ -71,7 +71,6 @@ GEM zeitwerk (~> 2.3) addressable (2.8.6) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -105,7 +104,6 @@ GEM hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) - json (2.7.1) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -148,10 +146,6 @@ GEM nokogiri (1.15.6-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.24.0) - parser (3.3.0.5) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -195,11 +189,9 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.1.0) rake-compiler (1.2.6) rake - regexp_parser (2.9.0) request_store (1.7.0) rack (>= 1.4) rexml (3.2.8) @@ -223,29 +215,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.30.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.20.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.20.2) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.30.0, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -268,7 +237,6 @@ GEM timeout (0.4.1) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.5.0) warning (1.3.0) webmock (3.19.1) addressable (>= 2.8.0) @@ -308,10 +276,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_2.7_graphql_2.3.gemfile b/gemfiles/ruby_2.7_graphql_2.3.gemfile index 0995e8a34ea..ce135f24733 100644 --- a/gemfiles/ruby_2.7_graphql_2.3.gemfile +++ b/gemfiles/ruby_2.7_graphql_2.3.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.7_graphql_2.3.gemfile.lock b/gemfiles/ruby_2.7_graphql_2.3.gemfile.lock index 7c3cc33063d..a49739ef2d3 100644 --- a/gemfiles/ruby_2.7_graphql_2.3.gemfile.lock +++ b/gemfiles/ruby_2.7_graphql_2.3.gemfile.lock @@ -71,7 +71,6 @@ GEM zeitwerk (~> 2.3) addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -106,7 +105,6 @@ GEM hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -149,10 +147,6 @@ GEM nokogiri (1.15.6-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.25.1) - parser (3.3.3.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -196,11 +190,9 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) request_store (1.7.0) rack (>= 1.4) rexml (3.3.1) @@ -224,29 +216,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.31.3) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -269,7 +238,6 @@ GEM timeout (0.4.1) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -309,10 +277,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_2.7_hanami_1.gemfile b/gemfiles/ruby_2.7_hanami_1.gemfile index 64fb3053933..63c066cb67d 100644 --- a/gemfiles/ruby_2.7_hanami_1.gemfile +++ b/gemfiles/ruby_2.7_hanami_1.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.7_hanami_1.gemfile.lock b/gemfiles/ruby_2.7_hanami_1.gemfile.lock index a69d9f116f3..6d6cf387423 100644 --- a/gemfiles/ruby_2.7_hanami_1.gemfile.lock +++ b/gemfiles/ruby_2.7_hanami_1.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -110,7 +109,6 @@ GEM rack (>= 1.0.0) url_mount (~> 0.2.1) inflecto (0.0.2) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -138,9 +136,6 @@ GEM net-smtp (0.3.3) net-protocol os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -154,11 +149,9 @@ GEM rack (2.2.6.2) rack-test (2.0.2) rack (>= 1.3) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -180,29 +173,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -216,7 +186,6 @@ GEM tilt (2.1.0) timeout (0.3.2) transproc (1.1.1) - unicode-display_width (2.4.2) url_mount (0.2.1) rack warning (1.3.0) @@ -255,10 +224,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_2.7_http.gemfile b/gemfiles/ruby_2.7_http.gemfile index 4eb06a6c37f..15f7b84977f 100644 --- a/gemfiles/ruby_2.7_http.gemfile +++ b/gemfiles/ruby_2.7_http.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.7_http.gemfile.lock b/gemfiles/ruby_2.7_http.gemfile.lock index bda7c85ba41..755d6912d55 100644 --- a/gemfiles/ruby_2.7_http.gemfile.lock +++ b/gemfiles/ruby_2.7_http.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.12.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -56,7 +55,6 @@ GEM domain_name (~> 0.5) http-form_data (2.3.0) httpclient (2.8.3) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -76,10 +74,6 @@ GEM msgpack (1.7.5) netrc (0.11.0) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -90,12 +84,9 @@ GEM pry-stack_explorer (0.6.1) binding_of_caller (~> 1.0) pry (~> 0.13) - racc (1.7.1) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.1) rest-client (2.1.0) http-accept (>= 1.7.0, < 2.0) http-cookie (>= 1.0.2, < 2.0) @@ -122,29 +113,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.0) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) simplecov (0.21.2) docile (~> 1.1) @@ -161,7 +129,6 @@ GEM unf (0.1.4) unf_ext unf_ext (0.0.8.2) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -200,10 +167,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) typhoeus diff --git a/gemfiles/ruby_2.7_opensearch_2.gemfile b/gemfiles/ruby_2.7_opensearch_2.gemfile index b0b72a794f7..219492f7b2b 100644 --- a/gemfiles/ruby_2.7_opensearch_2.gemfile +++ b/gemfiles/ruby_2.7_opensearch_2.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.7_opensearch_2.gemfile.lock b/gemfiles/ruby_2.7_opensearch_2.gemfile.lock index a3900f5e341..1e9fb19e23e 100644 --- a/gemfiles/ruby_2.7_opensearch_2.gemfile.lock +++ b/gemfiles/ruby_2.7_opensearch_2.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.5) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.12.0) benchmark-memory (0.1.2) @@ -41,7 +40,6 @@ GEM google-protobuf (3.24.4-aarch64-linux) google-protobuf (3.24.4-x86_64-linux) hashdiff (1.0.1) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -63,10 +61,6 @@ GEM faraday (>= 1.0, < 3) multi_json os (1.1.4) - parallel (1.23.0) - parser (3.2.2.4) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -78,12 +72,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (5.0.3) - racc (1.7.1) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -105,29 +96,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) simplecov (0.21.2) docile (~> 1.1) @@ -139,7 +107,6 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) strscan (3.1.0) - unicode-display_width (2.5.0) warning (1.3.0) webmock (3.19.1) addressable (>= 2.8.0) @@ -173,10 +140,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_2.7_opensearch_3.gemfile b/gemfiles/ruby_2.7_opensearch_3.gemfile index 601d4ff4049..cb3dc7b3e74 100644 --- a/gemfiles/ruby_2.7_opensearch_3.gemfile +++ b/gemfiles/ruby_2.7_opensearch_3.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.7_opensearch_3.gemfile.lock b/gemfiles/ruby_2.7_opensearch_3.gemfile.lock index 42604bc4bc9..ee9bac1fa97 100644 --- a/gemfiles/ruby_2.7_opensearch_3.gemfile.lock +++ b/gemfiles/ruby_2.7_opensearch_3.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.5) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.12.0) benchmark-memory (0.1.2) @@ -41,7 +40,6 @@ GEM google-protobuf (3.24.4-aarch64-linux) google-protobuf (3.24.4-x86_64-linux) hashdiff (1.0.1) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -58,10 +56,6 @@ GEM faraday (>= 1.0, < 3) multi_json (>= 1.0) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.4) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -73,12 +67,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (5.0.3) - racc (1.7.1) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -100,29 +91,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) simplecov (0.21.2) docile (~> 1.1) @@ -134,7 +102,6 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) strscan (3.1.0) - unicode-display_width (2.5.0) warning (1.3.0) webmock (3.19.1) addressable (>= 2.8.0) @@ -168,10 +135,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_2.7_opensearch_latest.gemfile b/gemfiles/ruby_2.7_opensearch_latest.gemfile index ff83be947d3..8750f1886dd 100644 --- a/gemfiles/ruby_2.7_opensearch_latest.gemfile +++ b/gemfiles/ruby_2.7_opensearch_latest.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.7_opensearch_latest.gemfile.lock b/gemfiles/ruby_2.7_opensearch_latest.gemfile.lock index 6b0ea143731..fece29c451c 100644 --- a/gemfiles/ruby_2.7_opensearch_latest.gemfile.lock +++ b/gemfiles/ruby_2.7_opensearch_latest.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.14.0) benchmark-memory (0.1.2) @@ -42,7 +41,6 @@ GEM ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.4) hashdiff (1.1.1) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -59,10 +57,6 @@ GEM faraday (>= 1.0, < 3) multi_json (>= 1.0) os (1.1.4) - parallel (1.26.3) - parser (3.3.5.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -74,12 +68,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (5.1.1) - racc (1.8.1) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.7) rspec (3.13.0) rspec-core (~> 3.13.0) @@ -100,29 +91,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.3) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.22.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) simplecov (0.21.2) docile (~> 1.1) @@ -133,7 +101,6 @@ GEM simplecov (~> 0.19) simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) - unicode-display_width (2.6.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -167,10 +134,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_2.7_opentelemetry.gemfile b/gemfiles/ruby_2.7_opentelemetry.gemfile index 480ef887726..4f0a6416f7f 100644 --- a/gemfiles/ruby_2.7_opentelemetry.gemfile +++ b/gemfiles/ruby_2.7_opentelemetry.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.7_opentelemetry.gemfile.lock b/gemfiles/ruby_2.7_opentelemetry.gemfile.lock index 220f626f989..b34b6e0bfd8 100755 --- a/gemfiles/ruby_2.7_opentelemetry.gemfile.lock +++ b/gemfiles/ruby_2.7_opentelemetry.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -34,7 +33,6 @@ GEM google-protobuf (3.22.0) google-protobuf (3.22.0-x86_64-linux) hashdiff (1.0.1) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -59,9 +57,6 @@ GEM opentelemetry-semantic_conventions (1.8.0) opentelemetry-api (~> 1.0) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -72,11 +67,9 @@ GEM pry-stack_explorer (0.6.1) binding_of_caller (~> 1.0) pry (~> 0.13) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -98,29 +91,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -131,7 +101,6 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) strscan (3.1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -165,10 +134,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_2.7_opentelemetry_otlp.gemfile b/gemfiles/ruby_2.7_opentelemetry_otlp.gemfile index a29c3d0fd84..ffabf3314e9 100644 --- a/gemfiles/ruby_2.7_opentelemetry_otlp.gemfile +++ b/gemfiles/ruby_2.7_opentelemetry_otlp.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.7_opentelemetry_otlp.gemfile.lock b/gemfiles/ruby_2.7_opentelemetry_otlp.gemfile.lock index 405ab83ff35..75506046c27 100644 --- a/gemfiles/ruby_2.7_opentelemetry_otlp.gemfile.lock +++ b/gemfiles/ruby_2.7_opentelemetry_otlp.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.6) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) benchmark-ips (2.13.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -39,7 +38,6 @@ GEM googleapis-common-protos-types (1.13.0) google-protobuf (~> 3.18) hashdiff (1.1.0) - json (2.7.1) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -71,10 +69,6 @@ GEM opentelemetry-semantic_conventions (1.10.0) opentelemetry-api (~> 1.0) os (1.1.4) - parallel (1.24.0) - parser (3.3.0.5) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -86,12 +80,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (5.0.4) - racc (1.7.3) - rainbow (3.1.1) rake (13.1.0) rake-compiler (1.2.7) rake - regexp_parser (2.9.0) rexml (3.3.8) rspec (3.13.0) rspec-core (~> 3.13.0) @@ -112,29 +103,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.31.1) - parser (>= 3.3.0.4) - rubocop-capybara (2.20.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.20.2) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.30.0, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -144,7 +112,6 @@ GEM simplecov (~> 0.19) simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) - unicode-display_width (2.5.0) warning (1.3.0) webmock (3.23.0) addressable (>= 2.8.0) @@ -179,10 +146,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_2.7_rack_1.gemfile b/gemfiles/ruby_2.7_rack_1.gemfile index 6fa965f9d3e..7921d2328c7 100644 --- a/gemfiles/ruby_2.7_rack_1.gemfile +++ b/gemfiles/ruby_2.7_rack_1.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.7_rack_1.gemfile.lock b/gemfiles/ruby_2.7_rack_1.gemfile.lock index ab082541ec4..d2d3d109669 100644 --- a/gemfiles/ruby_2.7_rack_1.gemfile.lock +++ b/gemfiles/ruby_2.7_rack_1.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.12.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -34,7 +33,6 @@ GEM google-protobuf (3.24.3-aarch64-linux) google-protobuf (3.24.3-x86_64-linux) hashdiff (1.0.1) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -47,10 +45,6 @@ GEM method_source (1.0.0) msgpack (1.7.5) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -61,17 +55,14 @@ GEM pry-stack_explorer (0.6.1) binding_of_caller (~> 1.0) pry (~> 0.13) - racc (1.7.1) rack (1.6.13) rack-contrib (1.8.0) rack (~> 1.4) rack-test (2.1.0) rack (>= 1.3) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -93,29 +84,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.0) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -126,7 +94,6 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) strscan (3.1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -162,10 +129,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_2.7_rack_2.gemfile b/gemfiles/ruby_2.7_rack_2.gemfile index 79c90e1e5a5..aad5aee47d2 100644 --- a/gemfiles/ruby_2.7_rack_2.gemfile +++ b/gemfiles/ruby_2.7_rack_2.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.7_rack_2.gemfile.lock b/gemfiles/ruby_2.7_rack_2.gemfile.lock index aae73a3dc3a..d426605c5f8 100644 --- a/gemfiles/ruby_2.7_rack_2.gemfile.lock +++ b/gemfiles/ruby_2.7_rack_2.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.12.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -34,7 +33,6 @@ GEM google-protobuf (3.24.3-aarch64-linux) google-protobuf (3.24.3-x86_64-linux) hashdiff (1.0.1) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -47,10 +45,6 @@ GEM method_source (1.0.0) msgpack (1.7.5) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -61,17 +55,14 @@ GEM pry-stack_explorer (0.6.1) binding_of_caller (~> 1.0) pry (~> 0.13) - racc (1.7.1) rack (2.2.10) rack-contrib (2.3.0) rack (~> 2.0) rack-test (2.1.0) rack (>= 1.3) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -93,29 +84,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.0) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -126,7 +94,6 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) strscan (3.1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -162,10 +129,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_2.7_rack_3.gemfile b/gemfiles/ruby_2.7_rack_3.gemfile index 3ccae012106..989d876c619 100644 --- a/gemfiles/ruby_2.7_rack_3.gemfile +++ b/gemfiles/ruby_2.7_rack_3.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.7_rack_3.gemfile.lock b/gemfiles/ruby_2.7_rack_3.gemfile.lock index aa28b3b5f46..b59371f9534 100644 --- a/gemfiles/ruby_2.7_rack_3.gemfile.lock +++ b/gemfiles/ruby_2.7_rack_3.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.12.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -34,7 +33,6 @@ GEM google-protobuf (3.24.3-aarch64-linux) google-protobuf (3.24.3-x86_64-linux) hashdiff (1.0.1) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -47,10 +45,6 @@ GEM method_source (1.0.0) msgpack (1.7.5) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -61,17 +55,14 @@ GEM pry-stack_explorer (0.6.1) binding_of_caller (~> 1.0) pry (~> 0.13) - racc (1.7.1) rack (3.1.8) rack-contrib (1.2.0) rack (>= 0.9.1) rack-test (2.1.0) rack (>= 1.3) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -93,29 +84,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.0) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -126,7 +94,6 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) strscan (3.1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -162,10 +129,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_2.7_rack_latest.gemfile b/gemfiles/ruby_2.7_rack_latest.gemfile index 7ff05140ed0..007a780f6e3 100644 --- a/gemfiles/ruby_2.7_rack_latest.gemfile +++ b/gemfiles/ruby_2.7_rack_latest.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.7_rack_latest.gemfile.lock b/gemfiles/ruby_2.7_rack_latest.gemfile.lock index 826ee7fa80b..3bf4b0ca73a 100644 --- a/gemfiles/ruby_2.7_rack_latest.gemfile.lock +++ b/gemfiles/ruby_2.7_rack_latest.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.14.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -37,7 +36,6 @@ GEM google-protobuf (3.25.5-aarch64-linux) google-protobuf (3.25.5-x86_64-linux) hashdiff (1.1.1) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -50,10 +48,6 @@ GEM method_source (1.1.0) msgpack (1.7.5) os (1.1.4) - parallel (1.26.3) - parser (3.3.5.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -65,17 +59,14 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (5.1.1) - racc (1.8.1) rack (3.1.8) rack-contrib (2.5.0) rack (< 4) rack-test (2.1.0) rack (>= 1.3) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.7) rspec (3.13.0) rspec-core (~> 3.13.0) @@ -96,29 +87,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.3) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.22.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -128,7 +96,6 @@ GEM simplecov (~> 0.19) simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) - unicode-display_width (2.6.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -164,10 +131,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_2.7_rails5_mysql2.gemfile b/gemfiles/ruby_2.7_rails5_mysql2.gemfile index 70d9b634096..7d163834702 100644 --- a/gemfiles/ruby_2.7_rails5_mysql2.gemfile +++ b/gemfiles/ruby_2.7_rails5_mysql2.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.7_rails5_mysql2.gemfile.lock b/gemfiles/ruby_2.7_rails5_mysql2.gemfile.lock index 1927ebc8bd6..424d090d00e 100644 --- a/gemfiles/ruby_2.7_rails5_mysql2.gemfile.lock +++ b/gemfiles/ruby_2.7_rails5_mysql2.gemfile.lock @@ -53,7 +53,6 @@ GEM tzinfo (~> 1.1) addressable (2.4.0) arel (9.0.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -84,7 +83,6 @@ GEM hashdiff (1.0.1) i18n (1.12.0) concurrent-ruby (~> 1.0) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -128,9 +126,6 @@ GEM nokogiri (1.14.2-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -169,11 +164,9 @@ GEM method_source rake (>= 0.8.7) thor (>= 0.19.0, < 2.0) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake - regexp_parser (2.8.1) request_store (1.5.1) rack (>= 1.4) rexml (3.2.8) @@ -197,29 +190,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -242,7 +212,6 @@ GEM timeout (0.3.2) tzinfo (1.2.11) thread_safe (~> 0.1) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -281,10 +250,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_2.7_rails5_postgres.gemfile b/gemfiles/ruby_2.7_rails5_postgres.gemfile index c4b319a96aa..1bda962ad26 100644 --- a/gemfiles/ruby_2.7_rails5_postgres.gemfile +++ b/gemfiles/ruby_2.7_rails5_postgres.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.7_rails5_postgres.gemfile.lock b/gemfiles/ruby_2.7_rails5_postgres.gemfile.lock index a0ea3a3abfc..866c91a7f58 100644 --- a/gemfiles/ruby_2.7_rails5_postgres.gemfile.lock +++ b/gemfiles/ruby_2.7_rails5_postgres.gemfile.lock @@ -53,7 +53,6 @@ GEM tzinfo (~> 1.1) addressable (2.4.0) arel (9.0.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -84,7 +83,6 @@ GEM hashdiff (1.0.1) i18n (1.12.0) concurrent-ruby (~> 1.0) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -127,9 +125,6 @@ GEM nokogiri (1.14.2-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pg (0.21.0) pimpmychangelog (0.1.3) pry (0.14.2) @@ -169,11 +164,9 @@ GEM method_source rake (>= 0.8.7) thor (>= 0.19.0, < 2.0) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake - regexp_parser (2.8.1) request_store (1.5.1) rack (>= 1.4) rexml (3.2.8) @@ -197,29 +190,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -242,7 +212,6 @@ GEM timeout (0.3.2) tzinfo (1.2.11) thread_safe (~> 0.1) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -281,10 +250,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_2.7_rails5_postgres_redis.gemfile b/gemfiles/ruby_2.7_rails5_postgres_redis.gemfile index df474e5b2fc..8c78cdad294 100644 --- a/gemfiles/ruby_2.7_rails5_postgres_redis.gemfile +++ b/gemfiles/ruby_2.7_rails5_postgres_redis.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.7_rails5_postgres_redis.gemfile.lock b/gemfiles/ruby_2.7_rails5_postgres_redis.gemfile.lock index e79e5d2fd0e..1dce5094937 100644 --- a/gemfiles/ruby_2.7_rails5_postgres_redis.gemfile.lock +++ b/gemfiles/ruby_2.7_rails5_postgres_redis.gemfile.lock @@ -53,7 +53,6 @@ GEM tzinfo (~> 1.1) addressable (2.4.0) arel (9.0.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -84,7 +83,6 @@ GEM hashdiff (1.0.1) i18n (1.12.0) concurrent-ruby (~> 1.0) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -127,9 +125,6 @@ GEM nokogiri (1.14.2-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pg (0.21.0) pimpmychangelog (0.1.3) pry (0.14.2) @@ -169,12 +164,10 @@ GEM method_source rake (>= 0.8.7) thor (>= 0.19.0, < 2.0) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake redis (4.8.1) - regexp_parser (2.8.1) request_store (1.5.1) rack (>= 1.4) rexml (3.2.8) @@ -198,29 +191,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -243,7 +213,6 @@ GEM timeout (0.3.2) tzinfo (1.2.11) thread_safe (~> 0.1) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -283,10 +252,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_2.7_rails5_postgres_redis_activesupport.gemfile b/gemfiles/ruby_2.7_rails5_postgres_redis_activesupport.gemfile index f6d1d494949..293a1e0f638 100644 --- a/gemfiles/ruby_2.7_rails5_postgres_redis_activesupport.gemfile +++ b/gemfiles/ruby_2.7_rails5_postgres_redis_activesupport.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.7_rails5_postgres_redis_activesupport.gemfile.lock b/gemfiles/ruby_2.7_rails5_postgres_redis_activesupport.gemfile.lock index 1610407bcb1..920afd58914 100644 --- a/gemfiles/ruby_2.7_rails5_postgres_redis_activesupport.gemfile.lock +++ b/gemfiles/ruby_2.7_rails5_postgres_redis_activesupport.gemfile.lock @@ -53,7 +53,6 @@ GEM tzinfo (~> 1.1) addressable (2.4.0) arel (9.0.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -84,7 +83,6 @@ GEM hashdiff (1.0.1) i18n (1.12.0) concurrent-ruby (~> 1.0) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -127,9 +125,6 @@ GEM nokogiri (1.14.2-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pg (0.21.0) pimpmychangelog (0.1.3) pry (0.14.2) @@ -169,7 +164,6 @@ GEM method_source rake (>= 0.8.7) thor (>= 0.19.0, < 2.0) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake @@ -190,7 +184,6 @@ GEM redis-store (>= 1.2, < 2) redis-store (1.9.2) redis (>= 4, < 6) - regexp_parser (2.8.1) request_store (1.5.1) rack (>= 1.4) rexml (3.2.8) @@ -214,29 +207,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -259,7 +229,6 @@ GEM timeout (0.3.2) tzinfo (1.2.11) thread_safe (~> 0.1) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -301,10 +270,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_2.7_rails5_postgres_sidekiq.gemfile b/gemfiles/ruby_2.7_rails5_postgres_sidekiq.gemfile index ade2b5d3e45..523a5466cff 100644 --- a/gemfiles/ruby_2.7_rails5_postgres_sidekiq.gemfile +++ b/gemfiles/ruby_2.7_rails5_postgres_sidekiq.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.7_rails5_postgres_sidekiq.gemfile.lock b/gemfiles/ruby_2.7_rails5_postgres_sidekiq.gemfile.lock index 90c6cfeb000..15b9379b1cd 100644 --- a/gemfiles/ruby_2.7_rails5_postgres_sidekiq.gemfile.lock +++ b/gemfiles/ruby_2.7_rails5_postgres_sidekiq.gemfile.lock @@ -53,7 +53,6 @@ GEM tzinfo (~> 1.1) addressable (2.4.0) arel (9.0.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -85,7 +84,6 @@ GEM hashdiff (1.0.1) i18n (1.12.0) concurrent-ruby (~> 1.0) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -128,9 +126,6 @@ GEM nokogiri (1.14.2-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pg (0.21.0) pimpmychangelog (0.1.3) pry (0.14.2) @@ -170,12 +165,10 @@ GEM method_source rake (>= 0.8.7) thor (>= 0.19.0, < 2.0) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake redis (4.8.1) - regexp_parser (2.8.1) request_store (1.5.1) rack (>= 1.4) rexml (3.2.8) @@ -199,29 +192,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) sidekiq (6.5.8) connection_pool (>= 2.2.5, < 3) rack (~> 2.0) @@ -248,7 +218,6 @@ GEM timeout (0.3.2) tzinfo (1.2.11) thread_safe (~> 0.1) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -288,10 +257,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) sidekiq (~> 6) simplecov simplecov-cobertura (~> 2.1.0) diff --git a/gemfiles/ruby_2.7_rails5_semantic_logger.gemfile b/gemfiles/ruby_2.7_rails5_semantic_logger.gemfile index 0ef9f6dd2ea..60ec8aa5050 100644 --- a/gemfiles/ruby_2.7_rails5_semantic_logger.gemfile +++ b/gemfiles/ruby_2.7_rails5_semantic_logger.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.7_rails5_semantic_logger.gemfile.lock b/gemfiles/ruby_2.7_rails5_semantic_logger.gemfile.lock index 0503c9bd8f5..236f3e092d6 100644 --- a/gemfiles/ruby_2.7_rails5_semantic_logger.gemfile.lock +++ b/gemfiles/ruby_2.7_rails5_semantic_logger.gemfile.lock @@ -53,7 +53,6 @@ GEM tzinfo (~> 1.1) addressable (2.4.0) arel (9.0.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -84,7 +83,6 @@ GEM hashdiff (1.0.1) i18n (1.12.0) concurrent-ruby (~> 1.0) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -122,9 +120,6 @@ GEM nokogiri (1.14.2-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pg (0.21.0) pimpmychangelog (0.1.3) pry (0.14.2) @@ -168,11 +163,9 @@ GEM method_source rake (>= 0.8.7) thor (>= 0.19.0, < 2.0) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -194,29 +187,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) semantic_logger (4.12.0) concurrent-ruby (~> 1.0) simplecov (0.21.2) @@ -241,7 +211,6 @@ GEM timeout (0.3.2) tzinfo (1.2.11) thread_safe (~> 0.1) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -280,10 +249,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_2.7_rails61_mysql2.gemfile b/gemfiles/ruby_2.7_rails61_mysql2.gemfile index 6a82159132f..e4fd2aef5c5 100644 --- a/gemfiles/ruby_2.7_rails61_mysql2.gemfile +++ b/gemfiles/ruby_2.7_rails61_mysql2.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.7_rails61_mysql2.gemfile.lock b/gemfiles/ruby_2.7_rails61_mysql2.gemfile.lock index 9ef57fd6c7a..f4ef59b90c9 100644 --- a/gemfiles/ruby_2.7_rails61_mysql2.gemfile.lock +++ b/gemfiles/ruby_2.7_rails61_mysql2.gemfile.lock @@ -70,7 +70,6 @@ GEM tzinfo (~> 2.0) zeitwerk (~> 2.3) addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -101,7 +100,6 @@ GEM hashdiff (1.0.1) i18n (1.12.0) concurrent-ruby (~> 1.0) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -145,9 +143,6 @@ GEM nokogiri (1.14.2-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -188,11 +183,9 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake - regexp_parser (2.8.1) request_store (1.5.1) rack (>= 1.4) rexml (3.2.8) @@ -216,29 +209,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -260,7 +230,6 @@ GEM timeout (0.3.2) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -300,10 +269,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_2.7_rails61_postgres.gemfile b/gemfiles/ruby_2.7_rails61_postgres.gemfile index 3dff9c0b1e8..c1117623e53 100644 --- a/gemfiles/ruby_2.7_rails61_postgres.gemfile +++ b/gemfiles/ruby_2.7_rails61_postgres.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.7_rails61_postgres.gemfile.lock b/gemfiles/ruby_2.7_rails61_postgres.gemfile.lock index 4bb384d90ed..2d510daa38c 100644 --- a/gemfiles/ruby_2.7_rails61_postgres.gemfile.lock +++ b/gemfiles/ruby_2.7_rails61_postgres.gemfile.lock @@ -70,7 +70,6 @@ GEM tzinfo (~> 2.0) zeitwerk (~> 2.3) addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -101,7 +100,6 @@ GEM hashdiff (1.0.1) i18n (1.12.0) concurrent-ruby (~> 1.0) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -144,9 +142,6 @@ GEM nokogiri (1.14.2-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pg (1.4.6) pimpmychangelog (0.1.3) pry (0.14.2) @@ -188,11 +183,9 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake - regexp_parser (2.8.1) request_store (1.5.1) rack (>= 1.4) rexml (3.2.8) @@ -216,29 +209,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -260,7 +230,6 @@ GEM timeout (0.3.2) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -300,10 +269,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_2.7_rails61_postgres_redis.gemfile b/gemfiles/ruby_2.7_rails61_postgres_redis.gemfile index e5298911fa1..c6228e2f081 100644 --- a/gemfiles/ruby_2.7_rails61_postgres_redis.gemfile +++ b/gemfiles/ruby_2.7_rails61_postgres_redis.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.7_rails61_postgres_redis.gemfile.lock b/gemfiles/ruby_2.7_rails61_postgres_redis.gemfile.lock index f9e447a252f..6d5a71141eb 100644 --- a/gemfiles/ruby_2.7_rails61_postgres_redis.gemfile.lock +++ b/gemfiles/ruby_2.7_rails61_postgres_redis.gemfile.lock @@ -70,7 +70,6 @@ GEM tzinfo (~> 2.0) zeitwerk (~> 2.3) addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -101,7 +100,6 @@ GEM hashdiff (1.0.1) i18n (1.12.0) concurrent-ruby (~> 1.0) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -144,9 +142,6 @@ GEM nokogiri (1.14.2-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pg (1.4.6) pimpmychangelog (0.1.3) pry (0.14.2) @@ -188,12 +183,10 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake redis (4.8.1) - regexp_parser (2.8.1) request_store (1.5.1) rack (>= 1.4) rexml (3.2.8) @@ -217,29 +210,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -261,7 +231,6 @@ GEM timeout (0.3.2) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -302,10 +271,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_2.7_rails61_postgres_sidekiq.gemfile b/gemfiles/ruby_2.7_rails61_postgres_sidekiq.gemfile index 6fe20f31935..227afd93ffd 100644 --- a/gemfiles/ruby_2.7_rails61_postgres_sidekiq.gemfile +++ b/gemfiles/ruby_2.7_rails61_postgres_sidekiq.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.7_rails61_postgres_sidekiq.gemfile.lock b/gemfiles/ruby_2.7_rails61_postgres_sidekiq.gemfile.lock index a113c3f2c22..acdd39e7843 100644 --- a/gemfiles/ruby_2.7_rails61_postgres_sidekiq.gemfile.lock +++ b/gemfiles/ruby_2.7_rails61_postgres_sidekiq.gemfile.lock @@ -70,7 +70,6 @@ GEM tzinfo (~> 2.0) zeitwerk (~> 2.3) addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -102,7 +101,6 @@ GEM hashdiff (1.0.1) i18n (1.12.0) concurrent-ruby (~> 1.0) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -145,9 +143,6 @@ GEM nokogiri (1.14.2-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pg (1.4.6) pimpmychangelog (0.1.3) pry (0.14.2) @@ -189,13 +184,11 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake redis-client (0.12.2) connection_pool - regexp_parser (2.8.1) request_store (1.5.1) rack (>= 1.4) rexml (3.2.8) @@ -219,29 +212,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) sidekiq (7.0.6) concurrent-ruby (< 2) connection_pool (>= 2.3.0) @@ -268,7 +238,6 @@ GEM timeout (0.3.2) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -308,10 +277,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) sidekiq (>= 6.1.2) simplecov simplecov-cobertura (~> 2.1.0) diff --git a/gemfiles/ruby_2.7_rails61_semantic_logger.gemfile b/gemfiles/ruby_2.7_rails61_semantic_logger.gemfile index 3d04beee500..d52a1837f8d 100644 --- a/gemfiles/ruby_2.7_rails61_semantic_logger.gemfile +++ b/gemfiles/ruby_2.7_rails61_semantic_logger.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.7_rails61_semantic_logger.gemfile.lock b/gemfiles/ruby_2.7_rails61_semantic_logger.gemfile.lock index a52add233a7..2de66475556 100644 --- a/gemfiles/ruby_2.7_rails61_semantic_logger.gemfile.lock +++ b/gemfiles/ruby_2.7_rails61_semantic_logger.gemfile.lock @@ -70,7 +70,6 @@ GEM tzinfo (~> 2.0) zeitwerk (~> 2.3) addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -101,7 +100,6 @@ GEM hashdiff (1.0.1) i18n (1.12.0) concurrent-ruby (~> 1.0) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -139,9 +137,6 @@ GEM nokogiri (1.14.2-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pg (1.4.6) pimpmychangelog (0.1.3) pry (0.14.2) @@ -187,11 +182,9 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -213,29 +206,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) semantic_logger (4.12.0) concurrent-ruby (~> 1.0) simplecov (0.21.2) @@ -259,7 +229,6 @@ GEM timeout (0.3.2) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -299,10 +268,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_2.7_rails6_mysql2.gemfile b/gemfiles/ruby_2.7_rails6_mysql2.gemfile index 4306b203b08..95c453457dc 100644 --- a/gemfiles/ruby_2.7_rails6_mysql2.gemfile +++ b/gemfiles/ruby_2.7_rails6_mysql2.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.7_rails6_mysql2.gemfile.lock b/gemfiles/ruby_2.7_rails6_mysql2.gemfile.lock index 096565fc7f4..1a276292e0d 100644 --- a/gemfiles/ruby_2.7_rails6_mysql2.gemfile.lock +++ b/gemfiles/ruby_2.7_rails6_mysql2.gemfile.lock @@ -66,7 +66,6 @@ GEM tzinfo (~> 1.1) zeitwerk (~> 2.2, >= 2.2.2) addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -97,7 +96,6 @@ GEM hashdiff (1.0.1) i18n (1.12.0) concurrent-ruby (~> 1.0) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -141,9 +139,6 @@ GEM nokogiri (1.14.2-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -184,11 +179,9 @@ GEM method_source rake (>= 0.8.7) thor (>= 0.20.3, < 2.0) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake - regexp_parser (2.8.1) request_store (1.5.1) rack (>= 1.4) rexml (3.2.8) @@ -212,29 +205,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -257,7 +227,6 @@ GEM timeout (0.3.2) tzinfo (1.2.11) thread_safe (~> 0.1) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -297,10 +266,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_2.7_rails6_postgres.gemfile b/gemfiles/ruby_2.7_rails6_postgres.gemfile index 624fadec311..747e43290ed 100644 --- a/gemfiles/ruby_2.7_rails6_postgres.gemfile +++ b/gemfiles/ruby_2.7_rails6_postgres.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.7_rails6_postgres.gemfile.lock b/gemfiles/ruby_2.7_rails6_postgres.gemfile.lock index 6680001093b..f5e984a884b 100644 --- a/gemfiles/ruby_2.7_rails6_postgres.gemfile.lock +++ b/gemfiles/ruby_2.7_rails6_postgres.gemfile.lock @@ -66,7 +66,6 @@ GEM tzinfo (~> 1.1) zeitwerk (~> 2.2, >= 2.2.2) addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -97,7 +96,6 @@ GEM hashdiff (1.0.1) i18n (1.12.0) concurrent-ruby (~> 1.0) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -140,9 +138,6 @@ GEM nokogiri (1.14.2-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pg (0.21.0) pimpmychangelog (0.1.3) pry (0.14.2) @@ -184,11 +179,9 @@ GEM method_source rake (>= 0.8.7) thor (>= 0.20.3, < 2.0) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake - regexp_parser (2.8.1) request_store (1.5.1) rack (>= 1.4) rexml (3.2.8) @@ -212,29 +205,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -257,7 +227,6 @@ GEM timeout (0.3.2) tzinfo (1.2.11) thread_safe (~> 0.1) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -297,10 +266,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_2.7_rails6_postgres_redis.gemfile b/gemfiles/ruby_2.7_rails6_postgres_redis.gemfile index c7a94a70854..edf1bd0be3a 100644 --- a/gemfiles/ruby_2.7_rails6_postgres_redis.gemfile +++ b/gemfiles/ruby_2.7_rails6_postgres_redis.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.7_rails6_postgres_redis.gemfile.lock b/gemfiles/ruby_2.7_rails6_postgres_redis.gemfile.lock index 07dac23a8ac..5f8056da84e 100644 --- a/gemfiles/ruby_2.7_rails6_postgres_redis.gemfile.lock +++ b/gemfiles/ruby_2.7_rails6_postgres_redis.gemfile.lock @@ -66,7 +66,6 @@ GEM tzinfo (~> 1.1) zeitwerk (~> 2.2, >= 2.2.2) addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -97,7 +96,6 @@ GEM hashdiff (1.0.1) i18n (1.12.0) concurrent-ruby (~> 1.0) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -140,9 +138,6 @@ GEM nokogiri (1.14.2-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pg (0.21.0) pimpmychangelog (0.1.3) pry (0.14.2) @@ -184,12 +179,10 @@ GEM method_source rake (>= 0.8.7) thor (>= 0.20.3, < 2.0) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake redis (4.8.1) - regexp_parser (2.8.1) request_store (1.5.1) rack (>= 1.4) rexml (3.2.8) @@ -213,29 +206,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -258,7 +228,6 @@ GEM timeout (0.3.2) tzinfo (1.2.11) thread_safe (~> 0.1) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -299,10 +268,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_2.7_rails6_postgres_redis_activesupport.gemfile b/gemfiles/ruby_2.7_rails6_postgres_redis_activesupport.gemfile index 68fb53124e5..9a2604b64b5 100644 --- a/gemfiles/ruby_2.7_rails6_postgres_redis_activesupport.gemfile +++ b/gemfiles/ruby_2.7_rails6_postgres_redis_activesupport.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.7_rails6_postgres_redis_activesupport.gemfile.lock b/gemfiles/ruby_2.7_rails6_postgres_redis_activesupport.gemfile.lock index b6c75246c31..8d6092aad53 100644 --- a/gemfiles/ruby_2.7_rails6_postgres_redis_activesupport.gemfile.lock +++ b/gemfiles/ruby_2.7_rails6_postgres_redis_activesupport.gemfile.lock @@ -66,7 +66,6 @@ GEM tzinfo (~> 1.1) zeitwerk (~> 2.2, >= 2.2.2) addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -97,7 +96,6 @@ GEM hashdiff (1.0.1) i18n (1.12.0) concurrent-ruby (~> 1.0) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -140,9 +138,6 @@ GEM nokogiri (1.14.2-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pg (0.21.0) pimpmychangelog (0.1.3) pry (0.14.2) @@ -184,7 +179,6 @@ GEM method_source rake (>= 0.8.7) thor (>= 0.20.3, < 2.0) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake @@ -205,7 +199,6 @@ GEM redis-store (>= 1.2, < 2) redis-store (1.9.2) redis (>= 4, < 6) - regexp_parser (2.8.1) request_store (1.5.1) rack (>= 1.4) rexml (3.2.8) @@ -229,29 +222,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -274,7 +244,6 @@ GEM timeout (0.3.2) tzinfo (1.2.11) thread_safe (~> 0.1) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -317,10 +286,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_2.7_rails6_postgres_sidekiq.gemfile b/gemfiles/ruby_2.7_rails6_postgres_sidekiq.gemfile index f6807d362e1..355ea79888f 100644 --- a/gemfiles/ruby_2.7_rails6_postgres_sidekiq.gemfile +++ b/gemfiles/ruby_2.7_rails6_postgres_sidekiq.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.7_rails6_postgres_sidekiq.gemfile.lock b/gemfiles/ruby_2.7_rails6_postgres_sidekiq.gemfile.lock index d503ae4bf5f..a513a7bddf2 100644 --- a/gemfiles/ruby_2.7_rails6_postgres_sidekiq.gemfile.lock +++ b/gemfiles/ruby_2.7_rails6_postgres_sidekiq.gemfile.lock @@ -66,7 +66,6 @@ GEM tzinfo (~> 1.1) zeitwerk (~> 2.2, >= 2.2.2) addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -98,7 +97,6 @@ GEM hashdiff (1.0.1) i18n (1.12.0) concurrent-ruby (~> 1.0) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -141,9 +139,6 @@ GEM nokogiri (1.14.2-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pg (0.21.0) pimpmychangelog (0.1.3) pry (0.14.2) @@ -185,12 +180,10 @@ GEM method_source rake (>= 0.8.7) thor (>= 0.20.3, < 2.0) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake redis (4.8.1) - regexp_parser (2.8.1) request_store (1.5.1) rack (>= 1.4) rexml (3.2.8) @@ -214,29 +207,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) sidekiq (6.5.8) connection_pool (>= 2.2.5, < 3) rack (~> 2.0) @@ -263,7 +233,6 @@ GEM timeout (0.3.2) tzinfo (1.2.11) thread_safe (~> 0.1) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -304,10 +273,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) sidekiq (~> 6) simplecov simplecov-cobertura (~> 2.1.0) diff --git a/gemfiles/ruby_2.7_rails6_semantic_logger.gemfile b/gemfiles/ruby_2.7_rails6_semantic_logger.gemfile index 37c0a014df6..384c5282522 100644 --- a/gemfiles/ruby_2.7_rails6_semantic_logger.gemfile +++ b/gemfiles/ruby_2.7_rails6_semantic_logger.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.7_rails6_semantic_logger.gemfile.lock b/gemfiles/ruby_2.7_rails6_semantic_logger.gemfile.lock index 222853ed80e..11dbc2b3b4d 100644 --- a/gemfiles/ruby_2.7_rails6_semantic_logger.gemfile.lock +++ b/gemfiles/ruby_2.7_rails6_semantic_logger.gemfile.lock @@ -66,7 +66,6 @@ GEM tzinfo (~> 1.1) zeitwerk (~> 2.2, >= 2.2.2) addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -97,7 +96,6 @@ GEM hashdiff (1.0.1) i18n (1.12.0) concurrent-ruby (~> 1.0) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -135,9 +133,6 @@ GEM nokogiri (1.14.2-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pg (0.21.0) pimpmychangelog (0.1.3) pry (0.14.2) @@ -183,11 +178,9 @@ GEM method_source rake (>= 0.8.7) thor (>= 0.20.3, < 2.0) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -209,29 +202,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) semantic_logger (4.12.0) concurrent-ruby (~> 1.0) simplecov (0.21.2) @@ -256,7 +226,6 @@ GEM timeout (0.3.2) tzinfo (1.2.11) thread_safe (~> 0.1) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -296,10 +265,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_2.7_rails_old_redis.gemfile b/gemfiles/ruby_2.7_rails_old_redis.gemfile index d2cd6c776c4..5393fac75a5 100644 --- a/gemfiles/ruby_2.7_rails_old_redis.gemfile +++ b/gemfiles/ruby_2.7_rails_old_redis.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.7_redis_3.gemfile b/gemfiles/ruby_2.7_redis_3.gemfile index 4fdb0a3e20e..3b1520ee71c 100644 --- a/gemfiles/ruby_2.7_redis_3.gemfile +++ b/gemfiles/ruby_2.7_redis_3.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.7_redis_3.gemfile.lock b/gemfiles/ruby_2.7_redis_3.gemfile.lock index a520e124d1e..02fb05b5365 100644 --- a/gemfiles/ruby_2.7_redis_3.gemfile.lock +++ b/gemfiles/ruby_2.7_redis_3.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -34,7 +33,6 @@ GEM google-protobuf (3.22.0) google-protobuf (3.22.0-x86_64-linux) hashdiff (1.0.1) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -47,9 +45,6 @@ GEM method_source (1.0.0) msgpack (1.7.5) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -60,12 +55,10 @@ GEM pry-stack_explorer (0.6.1) binding_of_caller (~> 1.0) pry (~> 0.13) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake redis (3.3.5) - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -87,29 +80,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -120,7 +90,6 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) strscan (3.1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -154,10 +123,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_2.7_redis_4.gemfile b/gemfiles/ruby_2.7_redis_4.gemfile index 87d12bcb00f..5423f07db2d 100644 --- a/gemfiles/ruby_2.7_redis_4.gemfile +++ b/gemfiles/ruby_2.7_redis_4.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.7_redis_4.gemfile.lock b/gemfiles/ruby_2.7_redis_4.gemfile.lock index 13e4de10f2f..6772d2c56b1 100644 --- a/gemfiles/ruby_2.7_redis_4.gemfile.lock +++ b/gemfiles/ruby_2.7_redis_4.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -34,7 +33,6 @@ GEM google-protobuf (3.22.0) google-protobuf (3.22.0-x86_64-linux) hashdiff (1.0.1) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -47,9 +45,6 @@ GEM method_source (1.0.0) msgpack (1.7.5) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -60,12 +55,10 @@ GEM pry-stack_explorer (0.6.1) binding_of_caller (~> 1.0) pry (~> 0.13) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake redis (4.8.1) - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -87,29 +80,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -120,7 +90,6 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) strscan (3.1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -154,10 +123,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_2.7_redis_5.gemfile b/gemfiles/ruby_2.7_redis_5.gemfile index ed0bd01e3da..519e59b5a40 100644 --- a/gemfiles/ruby_2.7_redis_5.gemfile +++ b/gemfiles/ruby_2.7_redis_5.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.7_redis_5.gemfile.lock b/gemfiles/ruby_2.7_redis_5.gemfile.lock index a17ea16b325..f2ebdc39569 100644 --- a/gemfiles/ruby_2.7_redis_5.gemfile.lock +++ b/gemfiles/ruby_2.7_redis_5.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -35,7 +34,6 @@ GEM google-protobuf (3.22.0) google-protobuf (3.22.0-x86_64-linux) hashdiff (1.0.1) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -48,9 +46,6 @@ GEM method_source (1.0.0) msgpack (1.7.5) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -61,7 +56,6 @@ GEM pry-stack_explorer (0.6.1) binding_of_caller (~> 1.0) pry (~> 0.13) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake @@ -69,7 +63,6 @@ GEM redis-client (>= 0.9.0) redis-client (0.12.2) connection_pool - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -91,29 +84,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -124,7 +94,6 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) strscan (3.1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -158,10 +127,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_2.7_relational_db.gemfile b/gemfiles/ruby_2.7_relational_db.gemfile index ea8c91e9917..e175f478d32 100644 --- a/gemfiles/ruby_2.7_relational_db.gemfile +++ b/gemfiles/ruby_2.7_relational_db.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.7_relational_db.gemfile.lock b/gemfiles/ruby_2.7_relational_db.gemfile.lock index 12b310265f4..5072a17bdcf 100644 --- a/gemfiles/ruby_2.7_relational_db.gemfile.lock +++ b/gemfiles/ruby_2.7_relational_db.gemfile.lock @@ -22,7 +22,6 @@ GEM tzinfo (~> 2.0) zeitwerk (~> 2.3) addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.12.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -53,7 +52,6 @@ GEM hashdiff (1.0.1) i18n (1.14.1) concurrent-ruby (~> 1.0) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -70,10 +68,6 @@ GEM msgpack (1.7.5) mysql2 (0.5.5) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pg (1.5.4) pimpmychangelog (0.1.3) pry (0.14.2) @@ -85,12 +79,9 @@ GEM pry-stack_explorer (0.6.1) binding_of_caller (~> 1.0) pry (~> 0.13) - racc (1.7.1) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -112,29 +103,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.0) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) sequel (5.83.1) bigdecimal simplecov (0.21.2) @@ -150,7 +118,6 @@ GEM strscan (3.1.0) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -190,10 +157,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) sequel simplecov simplecov-cobertura (~> 2.1.0) diff --git a/gemfiles/ruby_2.7_resque2_redis3.gemfile b/gemfiles/ruby_2.7_resque2_redis3.gemfile index e110aff2055..3fcbe383b22 100644 --- a/gemfiles/ruby_2.7_resque2_redis3.gemfile +++ b/gemfiles/ruby_2.7_resque2_redis3.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.7_resque2_redis3.gemfile.lock b/gemfiles/ruby_2.7_resque2_redis3.gemfile.lock index 8debb0dd245..fc30c5ed369 100644 --- a/gemfiles/ruby_2.7_resque2_redis3.gemfile.lock +++ b/gemfiles/ruby_2.7_resque2_redis3.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -34,7 +33,6 @@ GEM google-protobuf (3.22.0) google-protobuf (3.22.0-x86_64-linux) hashdiff (1.0.1) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -51,9 +49,6 @@ GEM mustermann (3.0.0) ruby2_keywords (~> 0.0.1) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -67,14 +62,12 @@ GEM rack (2.2.6.2) rack-protection (3.0.5) rack - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake redis (3.3.5) redis-namespace (1.8.2) redis (>= 3.0.4) - regexp_parser (2.8.1) resque (2.4.0) mono_logger (~> 1.0) multi_json (~> 1.0) @@ -101,29 +94,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) simplecov (0.21.2) docile (~> 1.1) @@ -141,7 +111,6 @@ GEM tilt (~> 2.0) strscan (3.1.0) tilt (2.1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -176,10 +145,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_2.7_resque2_redis4.gemfile b/gemfiles/ruby_2.7_resque2_redis4.gemfile index 4d2d01b1109..1910132b24f 100644 --- a/gemfiles/ruby_2.7_resque2_redis4.gemfile +++ b/gemfiles/ruby_2.7_resque2_redis4.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.7_resque2_redis4.gemfile.lock b/gemfiles/ruby_2.7_resque2_redis4.gemfile.lock index 34acd83239f..995c07400ff 100644 --- a/gemfiles/ruby_2.7_resque2_redis4.gemfile.lock +++ b/gemfiles/ruby_2.7_resque2_redis4.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -34,7 +33,6 @@ GEM google-protobuf (3.22.0) google-protobuf (3.22.0-x86_64-linux) hashdiff (1.0.1) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -51,9 +49,6 @@ GEM mustermann (3.0.0) ruby2_keywords (~> 0.0.1) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -67,14 +62,12 @@ GEM rack (2.2.6.2) rack-protection (3.0.5) rack - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake redis (4.8.1) redis-namespace (1.10.0) redis (>= 4) - regexp_parser (2.8.1) resque (2.4.0) mono_logger (~> 1.0) multi_json (~> 1.0) @@ -101,29 +94,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) simplecov (0.21.2) docile (~> 1.1) @@ -141,7 +111,6 @@ GEM tilt (~> 2.0) strscan (3.1.0) tilt (2.1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -176,10 +145,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_2.7_sinatra_2.gemfile b/gemfiles/ruby_2.7_sinatra_2.gemfile index 04052ec508a..cfd803e3a48 100644 --- a/gemfiles/ruby_2.7_sinatra_2.gemfile +++ b/gemfiles/ruby_2.7_sinatra_2.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.7_sinatra_2.gemfile.lock b/gemfiles/ruby_2.7_sinatra_2.gemfile.lock index 408f29e4c42..3abee95c508 100644 --- a/gemfiles/ruby_2.7_sinatra_2.gemfile.lock +++ b/gemfiles/ruby_2.7_sinatra_2.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.6) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) benchmark-ips (2.13.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -37,7 +36,6 @@ GEM google-protobuf (3.25.3-aarch64-linux) google-protobuf (3.25.3-x86_64-linux) hashdiff (1.1.0) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -52,10 +50,6 @@ GEM mustermann (2.0.2) ruby2_keywords (~> 0.0.1) os (1.1.4) - parallel (1.24.0) - parser (3.3.0.5) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -67,7 +61,6 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (5.0.5) - racc (1.7.3) rack (2.2.9) rack-contrib (2.4.0) rack (< 4) @@ -75,11 +68,9 @@ GEM rack rack-test (2.1.0) rack (>= 1.3) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.0) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -101,29 +92,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.31.2) - parser (>= 3.3.0.4) - rubocop-capybara (2.20.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.0) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) simplecov (0.21.2) docile (~> 1.1) @@ -141,7 +109,6 @@ GEM tilt (~> 2.0) strscan (3.1.0) tilt (2.3.0) - unicode-display_width (2.5.0) warning (1.3.0) webmock (3.23.0) addressable (>= 2.8.0) @@ -176,10 +143,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sinatra (~> 2) diff --git a/gemfiles/ruby_2.7_sinatra_3.gemfile b/gemfiles/ruby_2.7_sinatra_3.gemfile index 43412fa8e42..44c319cae28 100644 --- a/gemfiles/ruby_2.7_sinatra_3.gemfile +++ b/gemfiles/ruby_2.7_sinatra_3.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.7_sinatra_3.gemfile.lock b/gemfiles/ruby_2.7_sinatra_3.gemfile.lock index b6262536a44..3c30ec68483 100644 --- a/gemfiles/ruby_2.7_sinatra_3.gemfile.lock +++ b/gemfiles/ruby_2.7_sinatra_3.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.6) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -38,7 +37,6 @@ GEM google-protobuf (3.25.3-aarch64-linux) google-protobuf (3.25.3-x86_64-linux) hashdiff (1.1.0) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -53,10 +51,6 @@ GEM mustermann (3.0.0) ruby2_keywords (~> 0.0.1) os (1.1.4) - parallel (1.24.0) - parser (3.3.0.5) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -68,7 +62,6 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (5.0.5) - racc (1.7.3) rack (2.2.9) rack-contrib (2.4.0) rack (< 4) @@ -77,11 +70,9 @@ GEM rack (~> 2.2, >= 2.2.4) rack-test (2.1.0) rack (>= 1.3) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.0) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -103,29 +94,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.31.2) - parser (>= 3.3.0.4) - rubocop-capybara (2.20.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.0) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) simplecov (0.21.2) docile (~> 1.1) @@ -143,7 +111,6 @@ GEM tilt (~> 2.0) strscan (3.1.0) tilt (2.3.0) - unicode-display_width (2.5.0) warning (1.3.0) webmock (3.23.0) addressable (>= 2.8.0) @@ -178,10 +145,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sinatra (~> 3) diff --git a/gemfiles/ruby_2.7_stripe_10.gemfile b/gemfiles/ruby_2.7_stripe_10.gemfile index 477c413ba34..29d5823c501 100644 --- a/gemfiles/ruby_2.7_stripe_10.gemfile +++ b/gemfiles/ruby_2.7_stripe_10.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.7_stripe_10.gemfile.lock b/gemfiles/ruby_2.7_stripe_10.gemfile.lock index d8bbb6d6ce6..4657eb8b3b8 100644 --- a/gemfiles/ruby_2.7_stripe_10.gemfile.lock +++ b/gemfiles/ruby_2.7_stripe_10.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.13.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -36,7 +35,6 @@ GEM ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.4) hashdiff (1.1.1) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -49,10 +47,6 @@ GEM method_source (1.1.0) msgpack (1.7.5) os (1.1.4) - parallel (1.26.3) - parser (3.3.4.2) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -64,12 +58,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (5.1.1) - racc (1.8.1) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.6) strscan rspec (3.13.0) @@ -91,29 +82,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.1) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -125,7 +93,6 @@ GEM simplecov_json_formatter (0.1.4) stripe (10.15.0) strscan (3.1.0) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -158,10 +125,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 10) diff --git a/gemfiles/ruby_2.7_stripe_11.gemfile b/gemfiles/ruby_2.7_stripe_11.gemfile index bf0e3f50581..e3a73dd30f5 100644 --- a/gemfiles/ruby_2.7_stripe_11.gemfile +++ b/gemfiles/ruby_2.7_stripe_11.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.7_stripe_11.gemfile.lock b/gemfiles/ruby_2.7_stripe_11.gemfile.lock index d6931ae5c8e..473a20c4c60 100644 --- a/gemfiles/ruby_2.7_stripe_11.gemfile.lock +++ b/gemfiles/ruby_2.7_stripe_11.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.13.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -36,7 +35,6 @@ GEM ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.4) hashdiff (1.1.1) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -49,10 +47,6 @@ GEM method_source (1.1.0) msgpack (1.7.5) os (1.1.4) - parallel (1.26.3) - parser (3.3.4.2) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -64,12 +58,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (5.1.1) - racc (1.8.1) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.6) strscan rspec (3.13.0) @@ -91,29 +82,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.1) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -125,7 +93,6 @@ GEM simplecov_json_formatter (0.1.4) stripe (11.7.0) strscan (3.1.0) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -158,10 +125,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 11) diff --git a/gemfiles/ruby_2.7_stripe_12.gemfile b/gemfiles/ruby_2.7_stripe_12.gemfile index cfe9022c436..92fdd457283 100644 --- a/gemfiles/ruby_2.7_stripe_12.gemfile +++ b/gemfiles/ruby_2.7_stripe_12.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.7_stripe_12.gemfile.lock b/gemfiles/ruby_2.7_stripe_12.gemfile.lock index 2f4fd15c86c..17c52f31848 100644 --- a/gemfiles/ruby_2.7_stripe_12.gemfile.lock +++ b/gemfiles/ruby_2.7_stripe_12.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.13.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -36,7 +35,6 @@ GEM ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.4) hashdiff (1.1.1) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -49,10 +47,6 @@ GEM method_source (1.1.0) msgpack (1.7.5) os (1.1.4) - parallel (1.26.3) - parser (3.3.4.2) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -64,12 +58,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (5.1.1) - racc (1.8.1) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.6) strscan rspec (3.13.0) @@ -91,29 +82,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.1) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -125,7 +93,6 @@ GEM simplecov_json_formatter (0.1.4) stripe (12.6.0) strscan (3.1.0) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -158,10 +125,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 12) diff --git a/gemfiles/ruby_2.7_stripe_7.gemfile b/gemfiles/ruby_2.7_stripe_7.gemfile index 39c5578f5e8..16f544e3334 100644 --- a/gemfiles/ruby_2.7_stripe_7.gemfile +++ b/gemfiles/ruby_2.7_stripe_7.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.7_stripe_7.gemfile.lock b/gemfiles/ruby_2.7_stripe_7.gemfile.lock index 054c14462ac..d4936fbc7d4 100644 --- a/gemfiles/ruby_2.7_stripe_7.gemfile.lock +++ b/gemfiles/ruby_2.7_stripe_7.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.13.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -36,7 +35,6 @@ GEM ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.4) hashdiff (1.1.1) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -49,10 +47,6 @@ GEM method_source (1.1.0) msgpack (1.7.5) os (1.1.4) - parallel (1.26.3) - parser (3.3.4.2) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -64,12 +58,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (5.1.1) - racc (1.8.1) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.6) strscan rspec (3.13.0) @@ -91,29 +82,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.1) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -125,7 +93,6 @@ GEM simplecov_json_formatter (0.1.4) stripe (7.1.0) strscan (3.1.0) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -158,10 +125,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 7) diff --git a/gemfiles/ruby_2.7_stripe_8.gemfile b/gemfiles/ruby_2.7_stripe_8.gemfile index 3b4305f7b5d..aef615a80da 100644 --- a/gemfiles/ruby_2.7_stripe_8.gemfile +++ b/gemfiles/ruby_2.7_stripe_8.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.7_stripe_8.gemfile.lock b/gemfiles/ruby_2.7_stripe_8.gemfile.lock index 3bbf04b040b..c67899da9ca 100644 --- a/gemfiles/ruby_2.7_stripe_8.gemfile.lock +++ b/gemfiles/ruby_2.7_stripe_8.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.13.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -36,7 +35,6 @@ GEM ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.4) hashdiff (1.1.1) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -49,10 +47,6 @@ GEM method_source (1.1.0) msgpack (1.7.5) os (1.1.4) - parallel (1.26.3) - parser (3.3.4.2) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -64,12 +58,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (5.1.1) - racc (1.8.1) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.6) strscan rspec (3.13.0) @@ -91,29 +82,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.1) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -125,7 +93,6 @@ GEM simplecov_json_formatter (0.1.4) stripe (8.7.0) strscan (3.1.0) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -158,10 +125,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 8) diff --git a/gemfiles/ruby_2.7_stripe_9.gemfile b/gemfiles/ruby_2.7_stripe_9.gemfile index 43261b0b04b..e347337b220 100644 --- a/gemfiles/ruby_2.7_stripe_9.gemfile +++ b/gemfiles/ruby_2.7_stripe_9.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.7_stripe_9.gemfile.lock b/gemfiles/ruby_2.7_stripe_9.gemfile.lock index 05c052453dd..ba15840ee83 100644 --- a/gemfiles/ruby_2.7_stripe_9.gemfile.lock +++ b/gemfiles/ruby_2.7_stripe_9.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.13.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -36,7 +35,6 @@ GEM ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.4) hashdiff (1.1.1) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -49,10 +47,6 @@ GEM method_source (1.1.0) msgpack (1.7.5) os (1.1.4) - parallel (1.26.3) - parser (3.3.4.2) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -64,12 +58,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (5.1.1) - racc (1.8.1) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.6) strscan rspec (3.13.0) @@ -91,29 +82,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.1) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -125,7 +93,6 @@ GEM simplecov_json_formatter (0.1.4) stripe (9.4.0) strscan (3.1.0) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -158,10 +125,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 9) diff --git a/gemfiles/ruby_2.7_stripe_latest.gemfile b/gemfiles/ruby_2.7_stripe_latest.gemfile index c66ca37d5e7..65ba27eccab 100644 --- a/gemfiles/ruby_2.7_stripe_latest.gemfile +++ b/gemfiles/ruby_2.7_stripe_latest.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.7_stripe_latest.gemfile.lock b/gemfiles/ruby_2.7_stripe_latest.gemfile.lock index c2789740ce5..7b0fc89c076 100644 --- a/gemfiles/ruby_2.7_stripe_latest.gemfile.lock +++ b/gemfiles/ruby_2.7_stripe_latest.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.14.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -36,7 +35,6 @@ GEM ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.4) hashdiff (1.1.1) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -49,10 +47,6 @@ GEM method_source (1.1.0) msgpack (1.7.5) os (1.1.4) - parallel (1.26.3) - parser (3.3.5.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -64,12 +58,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (5.1.1) - racc (1.8.1) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.7) rspec (3.13.0) rspec-core (~> 3.13.0) @@ -90,29 +81,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.3) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.22.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -123,7 +91,6 @@ GEM simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) stripe (13.3.0) - unicode-display_width (2.6.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -156,10 +123,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) stripe diff --git a/gemfiles/ruby_2.7_stripe_min.gemfile b/gemfiles/ruby_2.7_stripe_min.gemfile index 1c532df57a5..d5c43966388 100644 --- a/gemfiles/ruby_2.7_stripe_min.gemfile +++ b/gemfiles/ruby_2.7_stripe_min.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_2.7_stripe_min.gemfile.lock b/gemfiles/ruby_2.7_stripe_min.gemfile.lock index 5fdd34270b2..8eb59347b08 100644 --- a/gemfiles/ruby_2.7_stripe_min.gemfile.lock +++ b/gemfiles/ruby_2.7_stripe_min.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.14.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -37,7 +36,6 @@ GEM google-protobuf (3.25.5-aarch64-linux) google-protobuf (3.25.5-x86_64-linux) hashdiff (1.1.1) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -50,10 +48,6 @@ GEM method_source (1.1.0) msgpack (1.7.5) os (1.1.4) - parallel (1.26.3) - parser (3.3.5.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -65,12 +59,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (5.1.1) - racc (1.8.1) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.7) rspec (3.13.0) rspec-core (~> 3.13.0) @@ -91,29 +82,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.3) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.22.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -124,7 +92,6 @@ GEM simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) stripe (5.15.0) - unicode-display_width (2.6.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -157,10 +124,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) stripe (= 5.15.0) diff --git a/gemfiles/ruby_3.0_activesupport.gemfile b/gemfiles/ruby_3.0_activesupport.gemfile index db3b00b1212..52e48cdce09 100644 --- a/gemfiles/ruby_3.0_activesupport.gemfile +++ b/gemfiles/ruby_3.0_activesupport.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.0_activesupport.gemfile.lock b/gemfiles/ruby_3.0_activesupport.gemfile.lock index 20e5cb9a0b6..0707891813c 100644 --- a/gemfiles/ruby_3.0_activesupport.gemfile.lock +++ b/gemfiles/ruby_3.0_activesupport.gemfile.lock @@ -36,7 +36,6 @@ GEM minitest (>= 5.1) tzinfo (~> 2.0) addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.12.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -89,7 +88,6 @@ GEM hashdiff (1.0.1) i18n (1.14.1) concurrent-ruby (~> 1.0) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) jsonapi-renderer (0.2.2) @@ -122,10 +120,6 @@ GEM nokogiri (1.15.4-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -159,7 +153,6 @@ GEM rake (>= 12.2) thor (~> 1.0) zeitwerk (~> 2.5) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake @@ -167,7 +160,6 @@ GEM ffi (~> 1.15) mini_portile2 (~> 2.6) rake (> 12) - regexp_parser (2.8.1) request_store (1.5.1) rack (>= 1.4) rexml (3.2.8) @@ -191,31 +183,8 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.0) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-kafka (1.5.0) digest-crc - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) simplecov (0.21.2) docile (~> 1.1) @@ -230,7 +199,6 @@ GEM thor (1.2.2) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -272,10 +240,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) ruby-kafka (>= 0.7.10) simplecov simplecov-cobertura (~> 2.1.0) diff --git a/gemfiles/ruby_3.0_aws.gemfile b/gemfiles/ruby_3.0_aws.gemfile index 117c2802c77..b550f6d66c8 100644 --- a/gemfiles/ruby_3.0_aws.gemfile +++ b/gemfiles/ruby_3.0_aws.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.0_aws.gemfile.lock b/gemfiles/ruby_3.0_aws.gemfile.lock index bf38915b28f..66e5937df98 100644 --- a/gemfiles/ruby_3.0_aws.gemfile.lock +++ b/gemfiles/ruby_3.0_aws.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) aws-eventstream (1.2.0) aws-partitions (1.813.0) aws-sdk (3.1.0) @@ -1456,7 +1455,6 @@ GEM google-protobuf (3.24.2-x86_64-linux) hashdiff (1.0.1) jmespath (1.6.2) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -1469,10 +1467,6 @@ GEM method_source (1.0.0) msgpack (1.7.5) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -1483,12 +1477,9 @@ GEM pry-stack_explorer (0.6.1) binding_of_caller (~> 1.0) pry (~> 0.13) - racc (1.7.1) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -1510,29 +1501,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.0) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) shoryuken (6.0.0) aws-sdk-core (>= 2) concurrent-ruby @@ -1548,7 +1516,6 @@ GEM simplecov_json_formatter (0.1.4) strscan (3.1.0) thor (1.2.2) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -1583,10 +1550,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) shoryuken simplecov simplecov-cobertura (~> 2.1.0) diff --git a/gemfiles/ruby_3.0_contrib.gemfile b/gemfiles/ruby_3.0_contrib.gemfile index 27c9fcb27af..7e772996d4c 100644 --- a/gemfiles/ruby_3.0_contrib.gemfile +++ b/gemfiles/ruby_3.0_contrib.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.0_contrib.gemfile.lock b/gemfiles/ruby_3.0_contrib.gemfile.lock index 95c66017d8e..f71cdf96700 100644 --- a/gemfiles/ruby_3.0_contrib.gemfile.lock +++ b/gemfiles/ruby_3.0_contrib.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.4.0) amq-protocol (2.3.2) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -49,7 +48,6 @@ GEM google-protobuf (~> 3.21) googleapis-common-protos-types (~> 1.0) hashdiff (1.0.1) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -68,9 +66,6 @@ GEM mustermann (3.0.0) ruby2_keywords (~> 0.0.1) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -87,7 +82,6 @@ GEM rack rack-test (2.1.0) rack (>= 1.3) - rainbow (3.1.1) rake (12.3.3) rake-compiler (1.2.1) rake @@ -97,7 +91,6 @@ GEM connection_pool redis-namespace (1.10.0) redis (>= 4) - regexp_parser (2.8.1) resque (2.4.0) mono_logger (~> 1.0) multi_json (~> 1.0) @@ -126,29 +119,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) semantic_logger (4.12.0) concurrent-ruby (~> 1.0) @@ -189,7 +159,6 @@ GEM concurrent-ruby (~> 1.0) thor (1.2.1) tilt (2.1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -230,10 +199,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) semantic_logger (~> 4.0) sidekiq (~> 7) simplecov diff --git a/gemfiles/ruby_3.0_contrib_old.gemfile b/gemfiles/ruby_3.0_contrib_old.gemfile index a8b5989607d..e699baa3624 100644 --- a/gemfiles/ruby_3.0_contrib_old.gemfile +++ b/gemfiles/ruby_3.0_contrib_old.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.0_contrib_old.gemfile.lock b/gemfiles/ruby_3.0_contrib_old.gemfile.lock index e1e2b8556b8..c14433feb28 100644 --- a/gemfiles/ruby_3.0_contrib_old.gemfile.lock +++ b/gemfiles/ruby_3.0_contrib_old.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) atomic (1.1.101) avl_tree (1.2.1) atomic (~> 1.1) @@ -45,7 +44,6 @@ GEM google-protobuf (3.22.0-x86_64-linux) hashdiff (1.0.1) hitimes (1.3.1) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -65,9 +63,6 @@ GEM mustermann (1.1.2) ruby2_keywords (~> 0.0.1) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pimpmychangelog (0.1.3) presto-client (0.6.6) faraday (~> 0.12) @@ -95,12 +90,10 @@ GEM rack (2.2.6.2) rack-protection (2.0.8.1) rack - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake redis (3.3.5) - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -122,29 +115,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) rusage (0.2.0) sentry-raven (0.15.6) @@ -171,7 +141,6 @@ GEM rack (>= 1, < 3) thor (0.19.4) tilt (2.1.0) - unicode-display_width (2.4.2) vegas (0.1.11) rack (>= 1.0.0) warning (1.3.0) @@ -210,10 +179,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.0_core_old.gemfile b/gemfiles/ruby_3.0_core_old.gemfile index 6bbf8a35a3a..93c4fd08e14 100644 --- a/gemfiles/ruby_3.0_core_old.gemfile +++ b/gemfiles/ruby_3.0_core_old.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.0_core_old.gemfile.lock b/gemfiles/ruby_3.0_core_old.gemfile.lock index 2b526121c63..c5e9855c351 100644 --- a/gemfiles/ruby_3.0_core_old.gemfile.lock +++ b/gemfiles/ruby_3.0_core_old.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -34,7 +33,6 @@ GEM google-protobuf (3.22.0) google-protobuf (3.22.0-x86_64-linux) hashdiff (1.0.1) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -47,9 +45,6 @@ GEM method_source (1.0.0) msgpack (1.7.5) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -60,11 +55,9 @@ GEM pry-stack_explorer (0.6.1) binding_of_caller (~> 1.0) pry (~> 0.13) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -86,29 +79,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -119,7 +89,6 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) strscan (3.1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -153,10 +122,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.0_elasticsearch_7.gemfile b/gemfiles/ruby_3.0_elasticsearch_7.gemfile index 27a5b792c13..b999b039f27 100644 --- a/gemfiles/ruby_3.0_elasticsearch_7.gemfile +++ b/gemfiles/ruby_3.0_elasticsearch_7.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.0_elasticsearch_7.gemfile.lock b/gemfiles/ruby_3.0_elasticsearch_7.gemfile.lock index bbdd8b436cd..305e9db99ef 100644 --- a/gemfiles/ruby_3.0_elasticsearch_7.gemfile.lock +++ b/gemfiles/ruby_3.0_elasticsearch_7.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.5) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.12.0) benchmark-memory (0.1.2) @@ -68,10 +67,6 @@ GEM net-http (0.6.0) uri os (1.1.4) - parallel (1.23.0) - parser (3.2.2.4) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -83,12 +78,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (5.0.3) - racc (1.7.1) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.2) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -110,29 +102,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -143,7 +112,6 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) strscan (3.1.0) - unicode-display_width (2.5.0) uri (1.0.2) warning (1.3.0) webmock (3.19.1) @@ -179,10 +147,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.0_elasticsearch_8.gemfile b/gemfiles/ruby_3.0_elasticsearch_8.gemfile index e9f5862bf00..ffd2a5eb21e 100644 --- a/gemfiles/ruby_3.0_elasticsearch_8.gemfile +++ b/gemfiles/ruby_3.0_elasticsearch_8.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.0_elasticsearch_8.gemfile.lock b/gemfiles/ruby_3.0_elasticsearch_8.gemfile.lock index 8fdd7fb7a65..1fab6478d8c 100644 --- a/gemfiles/ruby_3.0_elasticsearch_8.gemfile.lock +++ b/gemfiles/ruby_3.0_elasticsearch_8.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.5) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) benchmark-ips (2.12.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -66,10 +65,6 @@ GEM net-http (0.6.0) uri os (1.1.4) - parallel (1.23.0) - parser (3.2.2.4) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -81,12 +76,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (5.0.3) - racc (1.7.1) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.2) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -108,29 +100,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -141,7 +110,6 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) strscan (3.1.0) - unicode-display_width (2.5.0) uri (1.0.2) warning (1.3.0) webmock (3.19.1) @@ -177,10 +145,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.0_elasticsearch_latest.gemfile b/gemfiles/ruby_3.0_elasticsearch_latest.gemfile index aa74ecf0e43..416bb546db6 100644 --- a/gemfiles/ruby_3.0_elasticsearch_latest.gemfile +++ b/gemfiles/ruby_3.0_elasticsearch_latest.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.0_elasticsearch_latest.gemfile.lock b/gemfiles/ruby_3.0_elasticsearch_latest.gemfile.lock index eb0844a6960..e5db40e6313 100644 --- a/gemfiles/ruby_3.0_elasticsearch_latest.gemfile.lock +++ b/gemfiles/ruby_3.0_elasticsearch_latest.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.14.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -68,10 +67,6 @@ GEM net-http (0.6.0) uri os (1.1.4) - parallel (1.26.3) - parser (3.3.5.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -83,12 +78,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (6.0.1) - racc (1.8.1) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.7) rspec (3.13.0) rspec-core (~> 3.13.0) @@ -109,29 +101,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.3) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.22.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -141,7 +110,6 @@ GEM simplecov (~> 0.19) simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) - unicode-display_width (2.6.0) uri (1.0.2) warning (1.4.0) webmock (3.23.1) @@ -177,10 +145,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.0_graphql_1.13.gemfile b/gemfiles/ruby_3.0_graphql_1.13.gemfile index 1129ecc6f7b..af39dc1df59 100644 --- a/gemfiles/ruby_3.0_graphql_1.13.gemfile +++ b/gemfiles/ruby_3.0_graphql_1.13.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.0_graphql_1.13.gemfile.lock b/gemfiles/ruby_3.0_graphql_1.13.gemfile.lock index 5effb0e481b..7712c12ff4a 100644 --- a/gemfiles/ruby_3.0_graphql_1.13.gemfile.lock +++ b/gemfiles/ruby_3.0_graphql_1.13.gemfile.lock @@ -71,7 +71,6 @@ GEM zeitwerk (~> 2.3) addressable (2.8.6) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -104,7 +103,6 @@ GEM hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) - json (2.7.1) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -147,10 +145,6 @@ GEM nokogiri (1.16.6-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.24.0) - parser (3.3.0.5) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -194,11 +188,9 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.1.0) rake-compiler (1.2.6) rake - regexp_parser (2.9.0) request_store (1.7.0) rack (>= 1.4) rexml (3.2.8) @@ -222,29 +214,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.30.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.20.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.20.2) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.30.0, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -267,7 +236,6 @@ GEM timeout (0.4.1) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.5.0) warning (1.3.0) webmock (3.19.1) addressable (>= 2.8.0) @@ -308,10 +276,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_3.0_graphql_2.0.gemfile b/gemfiles/ruby_3.0_graphql_2.0.gemfile index c3d845c64c7..6fc8f6a254b 100644 --- a/gemfiles/ruby_3.0_graphql_2.0.gemfile +++ b/gemfiles/ruby_3.0_graphql_2.0.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.0_graphql_2.0.gemfile.lock b/gemfiles/ruby_3.0_graphql_2.0.gemfile.lock index 957916e7cb1..da142c74173 100644 --- a/gemfiles/ruby_3.0_graphql_2.0.gemfile.lock +++ b/gemfiles/ruby_3.0_graphql_2.0.gemfile.lock @@ -71,7 +71,6 @@ GEM zeitwerk (~> 2.3) addressable (2.8.6) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -104,7 +103,6 @@ GEM hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) - json (2.7.1) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -147,10 +145,6 @@ GEM nokogiri (1.16.6-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.24.0) - parser (3.3.0.5) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -194,11 +188,9 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.1.0) rake-compiler (1.2.6) rake - regexp_parser (2.9.0) request_store (1.7.0) rack (>= 1.4) rexml (3.2.8) @@ -222,29 +214,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.30.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.20.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.20.2) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.30.0, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -267,7 +236,6 @@ GEM timeout (0.4.1) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.5.0) warning (1.3.0) webmock (3.19.1) addressable (>= 2.8.0) @@ -308,10 +276,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_3.0_graphql_2.1.gemfile b/gemfiles/ruby_3.0_graphql_2.1.gemfile index a269ccb2e5b..cf85a8a06e4 100644 --- a/gemfiles/ruby_3.0_graphql_2.1.gemfile +++ b/gemfiles/ruby_3.0_graphql_2.1.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.0_graphql_2.1.gemfile.lock b/gemfiles/ruby_3.0_graphql_2.1.gemfile.lock index dcca211e4d3..07799e52d34 100644 --- a/gemfiles/ruby_3.0_graphql_2.1.gemfile.lock +++ b/gemfiles/ruby_3.0_graphql_2.1.gemfile.lock @@ -71,7 +71,6 @@ GEM zeitwerk (~> 2.3) addressable (2.8.6) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -105,7 +104,6 @@ GEM hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) - json (2.7.1) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -148,10 +146,6 @@ GEM nokogiri (1.16.6-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.24.0) - parser (3.3.0.5) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -195,11 +189,9 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.1.0) rake-compiler (1.2.6) rake - regexp_parser (2.9.0) request_store (1.7.0) rack (>= 1.4) rexml (3.2.8) @@ -223,29 +215,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.30.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.20.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.20.2) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.30.0, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -268,7 +237,6 @@ GEM timeout (0.4.1) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.5.0) warning (1.3.0) webmock (3.19.1) addressable (>= 2.8.0) @@ -309,10 +277,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_3.0_graphql_2.2.gemfile b/gemfiles/ruby_3.0_graphql_2.2.gemfile index 31a6fd2dfd5..c3652170170 100644 --- a/gemfiles/ruby_3.0_graphql_2.2.gemfile +++ b/gemfiles/ruby_3.0_graphql_2.2.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.0_graphql_2.2.gemfile.lock b/gemfiles/ruby_3.0_graphql_2.2.gemfile.lock index 2b980bbad82..2db42687c6e 100644 --- a/gemfiles/ruby_3.0_graphql_2.2.gemfile.lock +++ b/gemfiles/ruby_3.0_graphql_2.2.gemfile.lock @@ -71,7 +71,6 @@ GEM zeitwerk (~> 2.3) addressable (2.8.6) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -105,7 +104,6 @@ GEM hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) - json (2.7.1) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -148,10 +146,6 @@ GEM nokogiri (1.16.6-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.24.0) - parser (3.3.0.5) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -195,11 +189,9 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.1.0) rake-compiler (1.2.6) rake - regexp_parser (2.9.0) request_store (1.7.0) rack (>= 1.4) rexml (3.2.8) @@ -223,29 +215,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.30.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.20.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.20.2) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.30.0, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -268,7 +237,6 @@ GEM timeout (0.4.1) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.5.0) warning (1.3.0) webmock (3.19.1) addressable (>= 2.8.0) @@ -309,10 +277,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_3.0_graphql_2.3.gemfile b/gemfiles/ruby_3.0_graphql_2.3.gemfile index 7ada86e587f..43a44f7ad9b 100644 --- a/gemfiles/ruby_3.0_graphql_2.3.gemfile +++ b/gemfiles/ruby_3.0_graphql_2.3.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.0_graphql_2.3.gemfile.lock b/gemfiles/ruby_3.0_graphql_2.3.gemfile.lock index 9d91bbad304..22a6ea54083 100644 --- a/gemfiles/ruby_3.0_graphql_2.3.gemfile.lock +++ b/gemfiles/ruby_3.0_graphql_2.3.gemfile.lock @@ -71,7 +71,6 @@ GEM zeitwerk (~> 2.3) addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -107,7 +106,6 @@ GEM hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -150,10 +148,6 @@ GEM nokogiri (1.16.6-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.25.1) - parser (3.3.3.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -197,11 +191,9 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) request_store (1.7.0) rack (>= 1.4) rexml (3.3.1) @@ -225,29 +217,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.31.3) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -270,7 +239,6 @@ GEM timeout (0.4.1) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -311,10 +279,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_3.0_http.gemfile b/gemfiles/ruby_3.0_http.gemfile index 8a94e8fd297..801baf19d2b 100644 --- a/gemfiles/ruby_3.0_http.gemfile +++ b/gemfiles/ruby_3.0_http.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.0_http.gemfile.lock b/gemfiles/ruby_3.0_http.gemfile.lock index 98fa8e5a4ff..d1ef944344f 100644 --- a/gemfiles/ruby_3.0_http.gemfile.lock +++ b/gemfiles/ruby_3.0_http.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.12.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -56,7 +55,6 @@ GEM domain_name (~> 0.5) http-form_data (2.3.0) httpclient (2.8.3) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -76,10 +74,6 @@ GEM msgpack (1.7.5) netrc (0.11.0) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -90,12 +84,9 @@ GEM pry-stack_explorer (0.6.1) binding_of_caller (~> 1.0) pry (~> 0.13) - racc (1.7.1) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.1) rest-client (2.1.0) http-accept (>= 1.7.0, < 2.0) http-cookie (>= 1.0.2, < 2.0) @@ -122,29 +113,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.0) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) simplecov (0.21.2) docile (~> 1.1) @@ -161,7 +129,6 @@ GEM unf (0.1.4) unf_ext unf_ext (0.0.8.2) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -201,10 +168,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) typhoeus diff --git a/gemfiles/ruby_3.0_opensearch_2.gemfile b/gemfiles/ruby_3.0_opensearch_2.gemfile index 7aa53ff3a5e..9bc4540cc88 100644 --- a/gemfiles/ruby_3.0_opensearch_2.gemfile +++ b/gemfiles/ruby_3.0_opensearch_2.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.0_opensearch_2.gemfile.lock b/gemfiles/ruby_3.0_opensearch_2.gemfile.lock index 93a6694901e..51f5d706c18 100644 --- a/gemfiles/ruby_3.0_opensearch_2.gemfile.lock +++ b/gemfiles/ruby_3.0_opensearch_2.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.5) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) benchmark-ips (2.12.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -66,10 +65,6 @@ GEM faraday (>= 1.0, < 3) multi_json os (1.1.4) - parallel (1.23.0) - parser (3.2.2.4) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -81,12 +76,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (5.0.3) - racc (1.7.1) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -108,29 +100,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -141,7 +110,6 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) strscan (3.1.0) - unicode-display_width (2.5.0) uri (1.0.2) warning (1.3.0) webmock (3.19.1) @@ -177,10 +145,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.0_opensearch_3.gemfile b/gemfiles/ruby_3.0_opensearch_3.gemfile index eb1eebddf07..048682c6d39 100644 --- a/gemfiles/ruby_3.0_opensearch_3.gemfile +++ b/gemfiles/ruby_3.0_opensearch_3.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.0_opensearch_3.gemfile.lock b/gemfiles/ruby_3.0_opensearch_3.gemfile.lock index cff16d10f78..83f2cc7fc75 100644 --- a/gemfiles/ruby_3.0_opensearch_3.gemfile.lock +++ b/gemfiles/ruby_3.0_opensearch_3.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.5) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) benchmark-ips (2.12.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -61,10 +60,6 @@ GEM faraday (>= 1.0, < 3) multi_json (>= 1.0) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.4) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -76,12 +71,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (5.0.3) - racc (1.7.1) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -103,29 +95,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -136,7 +105,6 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) strscan (3.1.0) - unicode-display_width (2.5.0) uri (1.0.2) warning (1.3.0) webmock (3.19.1) @@ -172,10 +140,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.0_opensearch_latest.gemfile b/gemfiles/ruby_3.0_opensearch_latest.gemfile index ab01d0bbaec..c446e02ce35 100644 --- a/gemfiles/ruby_3.0_opensearch_latest.gemfile +++ b/gemfiles/ruby_3.0_opensearch_latest.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.0_opensearch_latest.gemfile.lock b/gemfiles/ruby_3.0_opensearch_latest.gemfile.lock index 022c7c10122..465311cca9b 100644 --- a/gemfiles/ruby_3.0_opensearch_latest.gemfile.lock +++ b/gemfiles/ruby_3.0_opensearch_latest.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.14.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -63,10 +62,6 @@ GEM faraday (>= 1.0, < 3) multi_json (>= 1.0) os (1.1.4) - parallel (1.26.3) - parser (3.3.5.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -78,12 +73,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (6.0.1) - racc (1.8.1) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.7) rspec (3.13.0) rspec-core (~> 3.13.0) @@ -104,29 +96,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.3) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.22.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -136,7 +105,6 @@ GEM simplecov (~> 0.19) simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) - unicode-display_width (2.6.0) uri (1.0.2) warning (1.4.0) webmock (3.23.1) @@ -172,10 +140,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.0_opentelemetry.gemfile b/gemfiles/ruby_3.0_opentelemetry.gemfile index 528eb6281e9..4df1bd1ac54 100644 --- a/gemfiles/ruby_3.0_opentelemetry.gemfile +++ b/gemfiles/ruby_3.0_opentelemetry.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.0_opentelemetry.gemfile.lock b/gemfiles/ruby_3.0_opentelemetry.gemfile.lock index 6ea0eb1adcc..e47f2bce133 100755 --- a/gemfiles/ruby_3.0_opentelemetry.gemfile.lock +++ b/gemfiles/ruby_3.0_opentelemetry.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -34,7 +33,6 @@ GEM google-protobuf (3.22.0) google-protobuf (3.22.0-x86_64-linux) hashdiff (1.0.1) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -59,9 +57,6 @@ GEM opentelemetry-semantic_conventions (1.8.0) opentelemetry-api (~> 1.0) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -72,11 +67,9 @@ GEM pry-stack_explorer (0.6.1) binding_of_caller (~> 1.0) pry (~> 0.13) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -98,29 +91,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -131,7 +101,6 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) strscan (3.1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -166,10 +135,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.0_opentelemetry_otlp.gemfile b/gemfiles/ruby_3.0_opentelemetry_otlp.gemfile index fa03f2ac546..739fffd9e84 100644 --- a/gemfiles/ruby_3.0_opentelemetry_otlp.gemfile +++ b/gemfiles/ruby_3.0_opentelemetry_otlp.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.0_opentelemetry_otlp.gemfile.lock b/gemfiles/ruby_3.0_opentelemetry_otlp.gemfile.lock index 4fe23161d30..77e6712197b 100644 --- a/gemfiles/ruby_3.0_opentelemetry_otlp.gemfile.lock +++ b/gemfiles/ruby_3.0_opentelemetry_otlp.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.6) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) benchmark-ips (2.13.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -39,7 +38,6 @@ GEM googleapis-common-protos-types (1.13.0) google-protobuf (~> 3.18) hashdiff (1.1.0) - json (2.7.1) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -71,10 +69,6 @@ GEM opentelemetry-semantic_conventions (1.10.0) opentelemetry-api (~> 1.0) os (1.1.4) - parallel (1.24.0) - parser (3.3.0.5) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -86,12 +80,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (5.0.4) - racc (1.7.3) - rainbow (3.1.1) rake (13.1.0) rake-compiler (1.2.7) rake - regexp_parser (2.9.0) rexml (3.3.8) rspec (3.13.0) rspec-core (~> 3.13.0) @@ -112,29 +103,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.31.1) - parser (>= 3.3.0.4) - rubocop-capybara (2.20.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.20.2) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.30.0, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -144,7 +112,6 @@ GEM simplecov (~> 0.19) simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) - unicode-display_width (2.5.0) warning (1.3.0) webmock (3.23.0) addressable (>= 2.8.0) @@ -180,10 +147,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.0_rack_1.gemfile b/gemfiles/ruby_3.0_rack_1.gemfile index 1e8707a988d..baa5a534a4a 100644 --- a/gemfiles/ruby_3.0_rack_1.gemfile +++ b/gemfiles/ruby_3.0_rack_1.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.0_rack_1.gemfile.lock b/gemfiles/ruby_3.0_rack_1.gemfile.lock index f7402877031..4a4610017bb 100644 --- a/gemfiles/ruby_3.0_rack_1.gemfile.lock +++ b/gemfiles/ruby_3.0_rack_1.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.12.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -34,7 +33,6 @@ GEM google-protobuf (3.24.3-aarch64-linux) google-protobuf (3.24.3-x86_64-linux) hashdiff (1.0.1) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -47,10 +45,6 @@ GEM method_source (1.0.0) msgpack (1.7.5) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -61,17 +55,14 @@ GEM pry-stack_explorer (0.6.1) binding_of_caller (~> 1.0) pry (~> 0.13) - racc (1.7.1) rack (1.6.13) rack-contrib (1.8.0) rack (~> 1.4) rack-test (2.1.0) rack (>= 1.3) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -93,29 +84,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.0) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -126,7 +94,6 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) strscan (3.1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -163,10 +130,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.0_rack_2.gemfile b/gemfiles/ruby_3.0_rack_2.gemfile index a08797d4ee8..60d6e96d706 100644 --- a/gemfiles/ruby_3.0_rack_2.gemfile +++ b/gemfiles/ruby_3.0_rack_2.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.0_rack_2.gemfile.lock b/gemfiles/ruby_3.0_rack_2.gemfile.lock index 8581a5a787b..aad48dc0637 100644 --- a/gemfiles/ruby_3.0_rack_2.gemfile.lock +++ b/gemfiles/ruby_3.0_rack_2.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.12.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -34,7 +33,6 @@ GEM google-protobuf (3.24.3-aarch64-linux) google-protobuf (3.24.3-x86_64-linux) hashdiff (1.0.1) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -47,10 +45,6 @@ GEM method_source (1.0.0) msgpack (1.7.5) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -61,17 +55,14 @@ GEM pry-stack_explorer (0.6.1) binding_of_caller (~> 1.0) pry (~> 0.13) - racc (1.7.1) rack (2.2.10) rack-contrib (2.3.0) rack (~> 2.0) rack-test (2.1.0) rack (>= 1.3) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -93,29 +84,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.0) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -126,7 +94,6 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) strscan (3.1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -163,10 +130,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.0_rack_3.gemfile b/gemfiles/ruby_3.0_rack_3.gemfile index 5e4535a8b53..886cbbbc6f9 100644 --- a/gemfiles/ruby_3.0_rack_3.gemfile +++ b/gemfiles/ruby_3.0_rack_3.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.0_rack_3.gemfile.lock b/gemfiles/ruby_3.0_rack_3.gemfile.lock index a3677b94285..54642477f63 100644 --- a/gemfiles/ruby_3.0_rack_3.gemfile.lock +++ b/gemfiles/ruby_3.0_rack_3.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.12.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -34,7 +33,6 @@ GEM google-protobuf (3.24.3-aarch64-linux) google-protobuf (3.24.3-x86_64-linux) hashdiff (1.0.1) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -47,10 +45,6 @@ GEM method_source (1.0.0) msgpack (1.7.5) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -61,17 +55,14 @@ GEM pry-stack_explorer (0.6.1) binding_of_caller (~> 1.0) pry (~> 0.13) - racc (1.7.1) rack (3.1.8) rack-contrib (1.2.0) rack (>= 0.9.1) rack-test (2.1.0) rack (>= 1.3) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -93,29 +84,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.0) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -126,7 +94,6 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) strscan (3.1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -163,10 +130,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.0_rack_latest.gemfile b/gemfiles/ruby_3.0_rack_latest.gemfile index 97cc0b6d206..f5234a7e2ec 100644 --- a/gemfiles/ruby_3.0_rack_latest.gemfile +++ b/gemfiles/ruby_3.0_rack_latest.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.0_rack_latest.gemfile.lock b/gemfiles/ruby_3.0_rack_latest.gemfile.lock index 6f38a2f3598..0970fc0beea 100644 --- a/gemfiles/ruby_3.0_rack_latest.gemfile.lock +++ b/gemfiles/ruby_3.0_rack_latest.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.14.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -37,7 +36,6 @@ GEM google-protobuf (3.25.5-aarch64-linux) google-protobuf (3.25.5-x86_64-linux) hashdiff (1.1.1) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -50,10 +48,6 @@ GEM method_source (1.1.0) msgpack (1.7.5) os (1.1.4) - parallel (1.26.3) - parser (3.3.5.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -65,17 +59,14 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (6.0.1) - racc (1.8.1) rack (3.1.8) rack-contrib (2.5.0) rack (< 4) rack-test (2.1.0) rack (>= 1.3) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.7) rspec (3.13.0) rspec-core (~> 3.13.0) @@ -96,29 +87,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.3) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.22.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -128,7 +96,6 @@ GEM simplecov (~> 0.19) simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) - unicode-display_width (2.6.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -165,10 +132,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.0_rails61_mysql2.gemfile b/gemfiles/ruby_3.0_rails61_mysql2.gemfile index b9708f122a2..027346d0cf5 100644 --- a/gemfiles/ruby_3.0_rails61_mysql2.gemfile +++ b/gemfiles/ruby_3.0_rails61_mysql2.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.0_rails61_mysql2.gemfile.lock b/gemfiles/ruby_3.0_rails61_mysql2.gemfile.lock index 0522ab7982e..ddad83d3cb1 100644 --- a/gemfiles/ruby_3.0_rails61_mysql2.gemfile.lock +++ b/gemfiles/ruby_3.0_rails61_mysql2.gemfile.lock @@ -70,7 +70,6 @@ GEM tzinfo (~> 2.0) zeitwerk (~> 2.3) addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -101,7 +100,6 @@ GEM hashdiff (1.0.1) i18n (1.12.0) concurrent-ruby (~> 1.0) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -145,9 +143,6 @@ GEM nokogiri (1.14.2-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -188,11 +183,9 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake - regexp_parser (2.8.1) request_store (1.5.1) rack (>= 1.4) rexml (3.2.8) @@ -216,29 +209,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -260,7 +230,6 @@ GEM timeout (0.3.2) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -302,10 +271,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_3.0_rails61_postgres.gemfile b/gemfiles/ruby_3.0_rails61_postgres.gemfile index 2f162bc5eb8..e0f5aeffa1d 100644 --- a/gemfiles/ruby_3.0_rails61_postgres.gemfile +++ b/gemfiles/ruby_3.0_rails61_postgres.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.0_rails61_postgres.gemfile.lock b/gemfiles/ruby_3.0_rails61_postgres.gemfile.lock index 804905291f8..b3a789e6dc9 100644 --- a/gemfiles/ruby_3.0_rails61_postgres.gemfile.lock +++ b/gemfiles/ruby_3.0_rails61_postgres.gemfile.lock @@ -70,7 +70,6 @@ GEM tzinfo (~> 2.0) zeitwerk (~> 2.3) addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -101,7 +100,6 @@ GEM hashdiff (1.0.1) i18n (1.12.0) concurrent-ruby (~> 1.0) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -144,9 +142,6 @@ GEM nokogiri (1.14.2-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pg (1.4.6) pimpmychangelog (0.1.3) pry (0.14.2) @@ -188,11 +183,9 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake - regexp_parser (2.8.1) request_store (1.5.1) rack (>= 1.4) rexml (3.2.8) @@ -216,29 +209,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -260,7 +230,6 @@ GEM timeout (0.3.2) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -302,10 +271,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_3.0_rails61_postgres_redis.gemfile b/gemfiles/ruby_3.0_rails61_postgres_redis.gemfile index 4ae4cc24db9..90eee1e65e1 100644 --- a/gemfiles/ruby_3.0_rails61_postgres_redis.gemfile +++ b/gemfiles/ruby_3.0_rails61_postgres_redis.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.0_rails61_postgres_redis.gemfile.lock b/gemfiles/ruby_3.0_rails61_postgres_redis.gemfile.lock index 17f8e355f3f..84f20c67799 100644 --- a/gemfiles/ruby_3.0_rails61_postgres_redis.gemfile.lock +++ b/gemfiles/ruby_3.0_rails61_postgres_redis.gemfile.lock @@ -70,7 +70,6 @@ GEM tzinfo (~> 2.0) zeitwerk (~> 2.3) addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -101,7 +100,6 @@ GEM hashdiff (1.0.1) i18n (1.12.0) concurrent-ruby (~> 1.0) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -144,9 +142,6 @@ GEM nokogiri (1.14.2-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pg (1.4.6) pimpmychangelog (0.1.3) pry (0.14.2) @@ -188,12 +183,10 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake redis (4.8.1) - regexp_parser (2.8.1) request_store (1.5.1) rack (>= 1.4) rexml (3.2.8) @@ -217,29 +210,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -261,7 +231,6 @@ GEM timeout (0.3.2) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -304,10 +273,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_3.0_rails61_postgres_sidekiq.gemfile b/gemfiles/ruby_3.0_rails61_postgres_sidekiq.gemfile index 280abf0b030..f9065004438 100644 --- a/gemfiles/ruby_3.0_rails61_postgres_sidekiq.gemfile +++ b/gemfiles/ruby_3.0_rails61_postgres_sidekiq.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.0_rails61_postgres_sidekiq.gemfile.lock b/gemfiles/ruby_3.0_rails61_postgres_sidekiq.gemfile.lock index 943dc636515..260b24d89e6 100644 --- a/gemfiles/ruby_3.0_rails61_postgres_sidekiq.gemfile.lock +++ b/gemfiles/ruby_3.0_rails61_postgres_sidekiq.gemfile.lock @@ -70,7 +70,6 @@ GEM tzinfo (~> 2.0) zeitwerk (~> 2.3) addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -102,7 +101,6 @@ GEM hashdiff (1.0.1) i18n (1.12.0) concurrent-ruby (~> 1.0) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -145,9 +143,6 @@ GEM nokogiri (1.14.2-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pg (1.4.6) pimpmychangelog (0.1.3) pry (0.14.2) @@ -193,13 +188,11 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake redis-client (0.12.2) connection_pool - regexp_parser (2.8.1) request_store (1.5.1) rack (>= 1.4) rexml (3.2.8) @@ -223,29 +216,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) semantic_logger (4.12.0) concurrent-ruby (~> 1.0) sidekiq (7.0.6) @@ -274,7 +244,6 @@ GEM timeout (0.3.2) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -317,10 +286,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) sidekiq (>= 6.1.2) simplecov simplecov-cobertura (~> 2.1.0) diff --git a/gemfiles/ruby_3.0_rails61_semantic_logger.gemfile b/gemfiles/ruby_3.0_rails61_semantic_logger.gemfile index e548fa50b3c..0bcca5c73f7 100644 --- a/gemfiles/ruby_3.0_rails61_semantic_logger.gemfile +++ b/gemfiles/ruby_3.0_rails61_semantic_logger.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.0_rails61_semantic_logger.gemfile.lock b/gemfiles/ruby_3.0_rails61_semantic_logger.gemfile.lock index 269309a30d1..558f1e3e407 100644 --- a/gemfiles/ruby_3.0_rails61_semantic_logger.gemfile.lock +++ b/gemfiles/ruby_3.0_rails61_semantic_logger.gemfile.lock @@ -70,7 +70,6 @@ GEM tzinfo (~> 2.0) zeitwerk (~> 2.3) addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -101,7 +100,6 @@ GEM hashdiff (1.0.1) i18n (1.12.0) concurrent-ruby (~> 1.0) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -139,9 +137,6 @@ GEM nokogiri (1.14.2-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pg (1.4.6) pimpmychangelog (0.1.3) pry (0.14.2) @@ -187,11 +182,9 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -213,29 +206,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) semantic_logger (4.12.0) concurrent-ruby (~> 1.0) simplecov (0.21.2) @@ -259,7 +229,6 @@ GEM timeout (0.3.2) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -301,10 +270,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_3.0_rails61_trilogy.gemfile b/gemfiles/ruby_3.0_rails61_trilogy.gemfile index b9baf1a6592..51d8d5ca920 100644 --- a/gemfiles/ruby_3.0_rails61_trilogy.gemfile +++ b/gemfiles/ruby_3.0_rails61_trilogy.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.0_rails61_trilogy.gemfile.lock b/gemfiles/ruby_3.0_rails61_trilogy.gemfile.lock index c0b05cc8ba7..e36f2d8150d 100644 --- a/gemfiles/ruby_3.0_rails61_trilogy.gemfile.lock +++ b/gemfiles/ruby_3.0_rails61_trilogy.gemfile.lock @@ -74,7 +74,6 @@ GEM zeitwerk (~> 2.3) addressable (2.8.5) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) benchmark-ips (2.12.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -105,7 +104,6 @@ GEM hashdiff (1.0.1) i18n (1.14.1) concurrent-ruby (~> 1.0) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -148,10 +146,6 @@ GEM nokogiri (1.15.5-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.4) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -195,11 +189,9 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.1.0) rake-compiler (1.2.5) rake - regexp_parser (2.8.2) request_store (1.5.1) rack (>= 1.4) rexml (3.2.8) @@ -223,29 +215,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.30.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -268,7 +237,6 @@ GEM trilogy (2.6.0) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.5.0) warning (1.3.0) webmock (3.19.1) addressable (>= 2.8.0) @@ -310,10 +278,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_3.0_rails7.gemfile b/gemfiles/ruby_3.0_rails7.gemfile index 2e32b1a98bf..9166028a3a0 100644 --- a/gemfiles/ruby_3.0_rails7.gemfile +++ b/gemfiles/ruby_3.0_rails7.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.0_rails7.gemfile.lock b/gemfiles/ruby_3.0_rails7.gemfile.lock index 57086df0100..4315951ff32 100644 --- a/gemfiles/ruby_3.0_rails7.gemfile.lock +++ b/gemfiles/ruby_3.0_rails7.gemfile.lock @@ -77,7 +77,6 @@ GEM tzinfo (~> 2.0) addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.13.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -110,7 +109,6 @@ GEM hashdiff (1.1.1) i18n (1.14.5) concurrent-ruby (~> 1.0) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -148,10 +146,6 @@ GEM nokogiri (1.16.7-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.26.3) - parser (3.3.4.2) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -195,11 +189,9 @@ GEM rake (>= 12.2) thor (~> 1.0) zeitwerk (~> 2.5) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.6) strscan rspec (3.13.0) @@ -221,29 +213,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.1) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -258,7 +227,6 @@ GEM timeout (0.4.1) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -297,10 +265,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.0_rails71.gemfile b/gemfiles/ruby_3.0_rails71.gemfile index 12ebea780d0..6123609d84d 100644 --- a/gemfiles/ruby_3.0_rails71.gemfile +++ b/gemfiles/ruby_3.0_rails71.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.0_rails71.gemfile.lock b/gemfiles/ruby_3.0_rails71.gemfile.lock index c415c69835b..d4bb81cbd9b 100644 --- a/gemfiles/ruby_3.0_rails71.gemfile.lock +++ b/gemfiles/ruby_3.0_rails71.gemfile.lock @@ -86,7 +86,6 @@ GEM tzinfo (~> 2.0) addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -126,7 +125,6 @@ GEM irb (1.14.0) rdoc (>= 4.0.0) reline (>= 0.4.2) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -165,10 +163,6 @@ GEM nokogiri (1.16.7-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.26.3) - parser (3.3.4.2) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -220,13 +214,11 @@ GEM rake (>= 12.2) thor (~> 1.0, >= 1.2.2) zeitwerk (~> 2.6) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake rdoc (6.7.0) psych (>= 4.0.0) - regexp_parser (2.9.2) reline (0.5.9) io-console (~> 0.5) rexml (3.3.6) @@ -250,29 +242,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.1) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -288,7 +257,6 @@ GEM timeout (0.4.1) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -327,10 +295,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.0_rails_old_redis.gemfile b/gemfiles/ruby_3.0_rails_old_redis.gemfile index 3cc2e136201..3118c34d603 100644 --- a/gemfiles/ruby_3.0_rails_old_redis.gemfile +++ b/gemfiles/ruby_3.0_rails_old_redis.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.0_redis_3.gemfile b/gemfiles/ruby_3.0_redis_3.gemfile index c8ec64ced3c..193f0fcf9cc 100644 --- a/gemfiles/ruby_3.0_redis_3.gemfile +++ b/gemfiles/ruby_3.0_redis_3.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.0_redis_3.gemfile.lock b/gemfiles/ruby_3.0_redis_3.gemfile.lock index 81acb1aaba5..0167a37015a 100644 --- a/gemfiles/ruby_3.0_redis_3.gemfile.lock +++ b/gemfiles/ruby_3.0_redis_3.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -34,7 +33,6 @@ GEM google-protobuf (3.22.0) google-protobuf (3.22.0-x86_64-linux) hashdiff (1.0.1) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -47,9 +45,6 @@ GEM method_source (1.0.0) msgpack (1.7.5) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -60,12 +55,10 @@ GEM pry-stack_explorer (0.6.1) binding_of_caller (~> 1.0) pry (~> 0.13) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake redis (3.3.5) - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -87,29 +80,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -120,7 +90,6 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) strscan (3.1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -155,10 +124,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.0_redis_4.gemfile b/gemfiles/ruby_3.0_redis_4.gemfile index 018259e6afe..15ad6b2febf 100644 --- a/gemfiles/ruby_3.0_redis_4.gemfile +++ b/gemfiles/ruby_3.0_redis_4.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.0_redis_4.gemfile.lock b/gemfiles/ruby_3.0_redis_4.gemfile.lock index 4ec56cc9610..d5eac0ecbe0 100644 --- a/gemfiles/ruby_3.0_redis_4.gemfile.lock +++ b/gemfiles/ruby_3.0_redis_4.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -34,7 +33,6 @@ GEM google-protobuf (3.22.0) google-protobuf (3.22.0-x86_64-linux) hashdiff (1.0.1) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -47,9 +45,6 @@ GEM method_source (1.0.0) msgpack (1.7.5) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -60,12 +55,10 @@ GEM pry-stack_explorer (0.6.1) binding_of_caller (~> 1.0) pry (~> 0.13) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake redis (4.8.1) - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -87,29 +80,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -120,7 +90,6 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) strscan (3.1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -155,10 +124,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.0_redis_5.gemfile b/gemfiles/ruby_3.0_redis_5.gemfile index 3323ec2baf6..5c4ee1a0eb9 100644 --- a/gemfiles/ruby_3.0_redis_5.gemfile +++ b/gemfiles/ruby_3.0_redis_5.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.0_redis_5.gemfile.lock b/gemfiles/ruby_3.0_redis_5.gemfile.lock index 1b063fca7d5..f45011d743c 100644 --- a/gemfiles/ruby_3.0_redis_5.gemfile.lock +++ b/gemfiles/ruby_3.0_redis_5.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -35,7 +34,6 @@ GEM google-protobuf (3.22.0) google-protobuf (3.22.0-x86_64-linux) hashdiff (1.0.1) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -48,9 +46,6 @@ GEM method_source (1.0.0) msgpack (1.7.5) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -61,7 +56,6 @@ GEM pry-stack_explorer (0.6.1) binding_of_caller (~> 1.0) pry (~> 0.13) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake @@ -69,7 +63,6 @@ GEM redis-client (>= 0.9.0) redis-client (0.12.2) connection_pool - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -91,29 +84,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -124,7 +94,6 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) strscan (3.1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -159,10 +128,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.0_relational_db.gemfile b/gemfiles/ruby_3.0_relational_db.gemfile index db5bea183f4..8a553116e94 100644 --- a/gemfiles/ruby_3.0_relational_db.gemfile +++ b/gemfiles/ruby_3.0_relational_db.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.0_relational_db.gemfile.lock b/gemfiles/ruby_3.0_relational_db.gemfile.lock index f199372a978..966f20e5687 100644 --- a/gemfiles/ruby_3.0_relational_db.gemfile.lock +++ b/gemfiles/ruby_3.0_relational_db.gemfile.lock @@ -21,7 +21,6 @@ GEM minitest (>= 5.1) tzinfo (~> 2.0) addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.12.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -52,7 +51,6 @@ GEM hashdiff (1.0.1) i18n (1.14.1) concurrent-ruby (~> 1.0) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -69,10 +67,6 @@ GEM msgpack (1.7.5) mysql2 (0.5.5) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pg (1.5.4) pimpmychangelog (0.1.3) pry (0.14.2) @@ -84,12 +78,9 @@ GEM pry-stack_explorer (0.6.1) binding_of_caller (~> 1.0) pry (~> 0.13) - racc (1.7.1) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -111,29 +102,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.0) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) sequel (5.83.1) bigdecimal simplecov (0.21.2) @@ -151,7 +119,6 @@ GEM trilogy (2.6.0) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -191,10 +158,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) sequel simplecov simplecov-cobertura (~> 2.1.0) diff --git a/gemfiles/ruby_3.0_resque2_redis3.gemfile b/gemfiles/ruby_3.0_resque2_redis3.gemfile index 47a7c231923..26b00162274 100644 --- a/gemfiles/ruby_3.0_resque2_redis3.gemfile +++ b/gemfiles/ruby_3.0_resque2_redis3.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.0_resque2_redis3.gemfile.lock b/gemfiles/ruby_3.0_resque2_redis3.gemfile.lock index 14c5736ae5a..d0187dabfbf 100644 --- a/gemfiles/ruby_3.0_resque2_redis3.gemfile.lock +++ b/gemfiles/ruby_3.0_resque2_redis3.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -34,7 +33,6 @@ GEM google-protobuf (3.22.0) google-protobuf (3.22.0-x86_64-linux) hashdiff (1.0.1) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -51,9 +49,6 @@ GEM mustermann (3.0.0) ruby2_keywords (~> 0.0.1) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -67,14 +62,12 @@ GEM rack (2.2.6.2) rack-protection (3.0.5) rack - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake redis (3.3.5) redis-namespace (1.8.2) redis (>= 3.0.4) - regexp_parser (2.8.1) resque (2.4.0) mono_logger (~> 1.0) multi_json (~> 1.0) @@ -101,29 +94,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) simplecov (0.21.2) docile (~> 1.1) @@ -141,7 +111,6 @@ GEM tilt (~> 2.0) strscan (3.1.0) tilt (2.1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -177,10 +146,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.0_resque2_redis4.gemfile b/gemfiles/ruby_3.0_resque2_redis4.gemfile index 394dba4f204..09a4784be42 100644 --- a/gemfiles/ruby_3.0_resque2_redis4.gemfile +++ b/gemfiles/ruby_3.0_resque2_redis4.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.0_resque2_redis4.gemfile.lock b/gemfiles/ruby_3.0_resque2_redis4.gemfile.lock index ab7bf24a9a6..38181381d14 100644 --- a/gemfiles/ruby_3.0_resque2_redis4.gemfile.lock +++ b/gemfiles/ruby_3.0_resque2_redis4.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -35,7 +34,6 @@ GEM google-protobuf (3.22.0) google-protobuf (3.22.0-x86_64-linux) hashdiff (1.0.1) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -52,9 +50,6 @@ GEM mustermann (3.0.0) ruby2_keywords (~> 0.0.1) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -68,7 +63,6 @@ GEM rack (2.2.6.2) rack-protection (3.0.5) rack - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake @@ -78,7 +72,6 @@ GEM connection_pool redis-namespace (1.10.0) redis (>= 4) - regexp_parser (2.8.1) resque (2.4.0) mono_logger (~> 1.0) multi_json (~> 1.0) @@ -105,29 +98,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) simplecov (0.21.2) docile (~> 1.1) @@ -145,7 +115,6 @@ GEM tilt (~> 2.0) strscan (3.1.0) tilt (2.1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -181,10 +150,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.0_sinatra_2.gemfile b/gemfiles/ruby_3.0_sinatra_2.gemfile index ec4c1607ef4..aff98433b32 100644 --- a/gemfiles/ruby_3.0_sinatra_2.gemfile +++ b/gemfiles/ruby_3.0_sinatra_2.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.0_sinatra_2.gemfile.lock b/gemfiles/ruby_3.0_sinatra_2.gemfile.lock index df14d7471ee..db461cf234d 100644 --- a/gemfiles/ruby_3.0_sinatra_2.gemfile.lock +++ b/gemfiles/ruby_3.0_sinatra_2.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.6) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) benchmark-ips (2.13.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -37,7 +36,6 @@ GEM google-protobuf (3.25.3-aarch64-linux) google-protobuf (3.25.3-x86_64-linux) hashdiff (1.1.0) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -52,10 +50,6 @@ GEM mustermann (2.0.2) ruby2_keywords (~> 0.0.1) os (1.1.4) - parallel (1.24.0) - parser (3.3.0.5) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -67,7 +61,6 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (5.0.5) - racc (1.7.3) rack (2.2.9) rack-contrib (2.4.0) rack (< 4) @@ -75,11 +68,9 @@ GEM rack rack-test (2.1.0) rack (>= 1.3) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.0) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -101,29 +92,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.31.2) - parser (>= 3.3.0.4) - rubocop-capybara (2.20.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.0) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) simplecov (0.21.2) docile (~> 1.1) @@ -141,7 +109,6 @@ GEM tilt (~> 2.0) strscan (3.1.0) tilt (2.3.0) - unicode-display_width (2.5.0) warning (1.3.0) webmock (3.23.0) addressable (>= 2.8.0) @@ -177,10 +144,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sinatra (~> 2) diff --git a/gemfiles/ruby_3.0_sinatra_3.gemfile b/gemfiles/ruby_3.0_sinatra_3.gemfile index 954dbdbe27a..de04f81dd11 100644 --- a/gemfiles/ruby_3.0_sinatra_3.gemfile +++ b/gemfiles/ruby_3.0_sinatra_3.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.0_sinatra_3.gemfile.lock b/gemfiles/ruby_3.0_sinatra_3.gemfile.lock index 01bc4739f0b..8333705f46a 100644 --- a/gemfiles/ruby_3.0_sinatra_3.gemfile.lock +++ b/gemfiles/ruby_3.0_sinatra_3.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.6) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -38,7 +37,6 @@ GEM google-protobuf (3.25.3-aarch64-linux) google-protobuf (3.25.3-x86_64-linux) hashdiff (1.1.0) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -53,10 +51,6 @@ GEM mustermann (3.0.0) ruby2_keywords (~> 0.0.1) os (1.1.4) - parallel (1.24.0) - parser (3.3.0.5) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -68,7 +62,6 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (5.0.5) - racc (1.7.3) rack (2.2.9) rack-contrib (2.4.0) rack (< 4) @@ -77,11 +70,9 @@ GEM rack (~> 2.2, >= 2.2.4) rack-test (2.1.0) rack (>= 1.3) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.0) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -103,29 +94,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.31.2) - parser (>= 3.3.0.4) - rubocop-capybara (2.20.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.0) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) simplecov (0.21.2) docile (~> 1.1) @@ -143,7 +111,6 @@ GEM tilt (~> 2.0) strscan (3.1.0) tilt (2.3.0) - unicode-display_width (2.5.0) warning (1.3.0) webmock (3.23.0) addressable (>= 2.8.0) @@ -179,10 +146,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sinatra (~> 3) diff --git a/gemfiles/ruby_3.0_sinatra_4.gemfile b/gemfiles/ruby_3.0_sinatra_4.gemfile index 5c60b05e3f3..4d40235e094 100644 --- a/gemfiles/ruby_3.0_sinatra_4.gemfile +++ b/gemfiles/ruby_3.0_sinatra_4.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.0_sinatra_4.gemfile.lock b/gemfiles/ruby_3.0_sinatra_4.gemfile.lock index 86536da465d..60612bd4b9e 100644 --- a/gemfiles/ruby_3.0_sinatra_4.gemfile.lock +++ b/gemfiles/ruby_3.0_sinatra_4.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.6) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -38,7 +37,6 @@ GEM google-protobuf (3.25.3-aarch64-linux) google-protobuf (3.25.3-x86_64-linux) hashdiff (1.1.0) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -53,10 +51,6 @@ GEM mustermann (3.0.0) ruby2_keywords (~> 0.0.1) os (1.1.4) - parallel (1.24.0) - parser (3.3.0.5) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -68,7 +62,6 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (5.0.5) - racc (1.7.3) rack (3.0.10) rack-contrib (2.4.0) rack (< 4) @@ -79,11 +72,9 @@ GEM rack (>= 3.0.0) rack-test (2.1.0) rack (>= 1.3) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.0) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -105,29 +96,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.31.2) - parser (>= 3.3.0.4) - rubocop-capybara (2.20.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.0) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) simplecov (0.21.2) docile (~> 1.1) @@ -146,7 +114,6 @@ GEM tilt (~> 2.0) strscan (3.1.0) tilt (2.3.0) - unicode-display_width (2.5.0) warning (1.3.0) webmock (3.23.0) addressable (>= 2.8.0) @@ -182,10 +149,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sinatra (~> 4) diff --git a/gemfiles/ruby_3.0_stripe_10.gemfile b/gemfiles/ruby_3.0_stripe_10.gemfile index dc1a588b06c..f2ffd9efb02 100644 --- a/gemfiles/ruby_3.0_stripe_10.gemfile +++ b/gemfiles/ruby_3.0_stripe_10.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.0_stripe_10.gemfile.lock b/gemfiles/ruby_3.0_stripe_10.gemfile.lock index b4e72d75369..d157905130f 100644 --- a/gemfiles/ruby_3.0_stripe_10.gemfile.lock +++ b/gemfiles/ruby_3.0_stripe_10.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.13.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -37,7 +36,6 @@ GEM google-protobuf (3.25.4-aarch64-linux) google-protobuf (3.25.4-x86_64-linux) hashdiff (1.1.1) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -50,10 +48,6 @@ GEM method_source (1.1.0) msgpack (1.7.5) os (1.1.4) - parallel (1.26.3) - parser (3.3.4.2) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -65,12 +59,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (6.0.1) - racc (1.8.1) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.6) strscan rspec (3.13.0) @@ -92,29 +83,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.1) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -126,7 +94,6 @@ GEM simplecov_json_formatter (0.1.4) stripe (10.15.0) strscan (3.1.0) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -160,10 +127,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 10) diff --git a/gemfiles/ruby_3.0_stripe_11.gemfile b/gemfiles/ruby_3.0_stripe_11.gemfile index c91d810e684..3c650142390 100644 --- a/gemfiles/ruby_3.0_stripe_11.gemfile +++ b/gemfiles/ruby_3.0_stripe_11.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.0_stripe_11.gemfile.lock b/gemfiles/ruby_3.0_stripe_11.gemfile.lock index e0027c0db0d..1be39ea683a 100644 --- a/gemfiles/ruby_3.0_stripe_11.gemfile.lock +++ b/gemfiles/ruby_3.0_stripe_11.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.13.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -37,7 +36,6 @@ GEM google-protobuf (3.25.4-aarch64-linux) google-protobuf (3.25.4-x86_64-linux) hashdiff (1.1.1) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -50,10 +48,6 @@ GEM method_source (1.1.0) msgpack (1.7.5) os (1.1.4) - parallel (1.26.3) - parser (3.3.4.2) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -65,12 +59,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (6.0.1) - racc (1.8.1) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.6) strscan rspec (3.13.0) @@ -92,29 +83,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.1) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -126,7 +94,6 @@ GEM simplecov_json_formatter (0.1.4) stripe (11.7.0) strscan (3.1.0) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -160,10 +127,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 11) diff --git a/gemfiles/ruby_3.0_stripe_12.gemfile b/gemfiles/ruby_3.0_stripe_12.gemfile index 3199f19a48e..fd88c55b26b 100644 --- a/gemfiles/ruby_3.0_stripe_12.gemfile +++ b/gemfiles/ruby_3.0_stripe_12.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.0_stripe_12.gemfile.lock b/gemfiles/ruby_3.0_stripe_12.gemfile.lock index 26e2af3f237..a39844a6059 100644 --- a/gemfiles/ruby_3.0_stripe_12.gemfile.lock +++ b/gemfiles/ruby_3.0_stripe_12.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.13.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -37,7 +36,6 @@ GEM google-protobuf (3.25.4-aarch64-linux) google-protobuf (3.25.4-x86_64-linux) hashdiff (1.1.1) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -50,10 +48,6 @@ GEM method_source (1.1.0) msgpack (1.7.5) os (1.1.4) - parallel (1.26.3) - parser (3.3.4.2) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -65,12 +59,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (6.0.1) - racc (1.8.1) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.6) strscan rspec (3.13.0) @@ -92,29 +83,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.1) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -126,7 +94,6 @@ GEM simplecov_json_formatter (0.1.4) stripe (12.6.0) strscan (3.1.0) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -160,10 +127,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 12) diff --git a/gemfiles/ruby_3.0_stripe_7.gemfile b/gemfiles/ruby_3.0_stripe_7.gemfile index 10fcf73e02f..435abeaae7e 100644 --- a/gemfiles/ruby_3.0_stripe_7.gemfile +++ b/gemfiles/ruby_3.0_stripe_7.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.0_stripe_7.gemfile.lock b/gemfiles/ruby_3.0_stripe_7.gemfile.lock index 18ec914fa03..b0ccb693ddf 100644 --- a/gemfiles/ruby_3.0_stripe_7.gemfile.lock +++ b/gemfiles/ruby_3.0_stripe_7.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.13.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -37,7 +36,6 @@ GEM google-protobuf (3.25.4-aarch64-linux) google-protobuf (3.25.4-x86_64-linux) hashdiff (1.1.1) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -50,10 +48,6 @@ GEM method_source (1.1.0) msgpack (1.7.5) os (1.1.4) - parallel (1.26.3) - parser (3.3.4.2) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -65,12 +59,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (6.0.1) - racc (1.8.1) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.6) strscan rspec (3.13.0) @@ -92,29 +83,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.1) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -126,7 +94,6 @@ GEM simplecov_json_formatter (0.1.4) stripe (7.1.0) strscan (3.1.0) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -160,10 +127,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 7) diff --git a/gemfiles/ruby_3.0_stripe_8.gemfile b/gemfiles/ruby_3.0_stripe_8.gemfile index 84f1d26e650..ce21f3c93e8 100644 --- a/gemfiles/ruby_3.0_stripe_8.gemfile +++ b/gemfiles/ruby_3.0_stripe_8.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.0_stripe_8.gemfile.lock b/gemfiles/ruby_3.0_stripe_8.gemfile.lock index f2caea0da16..5764c54b7fb 100644 --- a/gemfiles/ruby_3.0_stripe_8.gemfile.lock +++ b/gemfiles/ruby_3.0_stripe_8.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.13.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -37,7 +36,6 @@ GEM google-protobuf (3.25.4-aarch64-linux) google-protobuf (3.25.4-x86_64-linux) hashdiff (1.1.1) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -50,10 +48,6 @@ GEM method_source (1.1.0) msgpack (1.7.5) os (1.1.4) - parallel (1.26.3) - parser (3.3.4.2) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -65,12 +59,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (6.0.1) - racc (1.8.1) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.6) strscan rspec (3.13.0) @@ -92,29 +83,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.1) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -126,7 +94,6 @@ GEM simplecov_json_formatter (0.1.4) stripe (8.7.0) strscan (3.1.0) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -160,10 +127,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 8) diff --git a/gemfiles/ruby_3.0_stripe_9.gemfile b/gemfiles/ruby_3.0_stripe_9.gemfile index 9035d9a3699..4e39d862013 100644 --- a/gemfiles/ruby_3.0_stripe_9.gemfile +++ b/gemfiles/ruby_3.0_stripe_9.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.0_stripe_9.gemfile.lock b/gemfiles/ruby_3.0_stripe_9.gemfile.lock index a3f400045e5..d2ef1403831 100644 --- a/gemfiles/ruby_3.0_stripe_9.gemfile.lock +++ b/gemfiles/ruby_3.0_stripe_9.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.13.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -37,7 +36,6 @@ GEM google-protobuf (3.25.4-aarch64-linux) google-protobuf (3.25.4-x86_64-linux) hashdiff (1.1.1) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -50,10 +48,6 @@ GEM method_source (1.1.0) msgpack (1.7.5) os (1.1.4) - parallel (1.26.3) - parser (3.3.4.2) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -65,12 +59,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (6.0.1) - racc (1.8.1) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.6) strscan rspec (3.13.0) @@ -92,29 +83,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.1) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -126,7 +94,6 @@ GEM simplecov_json_formatter (0.1.4) stripe (9.4.0) strscan (3.1.0) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -160,10 +127,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 9) diff --git a/gemfiles/ruby_3.0_stripe_latest.gemfile b/gemfiles/ruby_3.0_stripe_latest.gemfile index 0e4caba9e48..98dbcf511ff 100644 --- a/gemfiles/ruby_3.0_stripe_latest.gemfile +++ b/gemfiles/ruby_3.0_stripe_latest.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.0_stripe_latest.gemfile.lock b/gemfiles/ruby_3.0_stripe_latest.gemfile.lock index 10d85c80079..9a1939adeb6 100644 --- a/gemfiles/ruby_3.0_stripe_latest.gemfile.lock +++ b/gemfiles/ruby_3.0_stripe_latest.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.14.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -37,7 +36,6 @@ GEM google-protobuf (3.25.4-aarch64-linux) google-protobuf (3.25.4-x86_64-linux) hashdiff (1.1.1) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -50,10 +48,6 @@ GEM method_source (1.1.0) msgpack (1.7.5) os (1.1.4) - parallel (1.26.3) - parser (3.3.5.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -65,12 +59,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (6.0.1) - racc (1.8.1) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.7) rspec (3.13.0) rspec-core (~> 3.13.0) @@ -91,29 +82,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.3) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.22.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -124,7 +92,6 @@ GEM simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) stripe (13.3.0) - unicode-display_width (2.6.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -158,10 +125,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) stripe diff --git a/gemfiles/ruby_3.0_stripe_min.gemfile b/gemfiles/ruby_3.0_stripe_min.gemfile index aa082ccb652..2e58c1c1a02 100644 --- a/gemfiles/ruby_3.0_stripe_min.gemfile +++ b/gemfiles/ruby_3.0_stripe_min.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.0_stripe_min.gemfile.lock b/gemfiles/ruby_3.0_stripe_min.gemfile.lock index 820ce2199d0..74afdd62805 100644 --- a/gemfiles/ruby_3.0_stripe_min.gemfile.lock +++ b/gemfiles/ruby_3.0_stripe_min.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.14.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -37,7 +36,6 @@ GEM google-protobuf (3.25.5-aarch64-linux) google-protobuf (3.25.5-x86_64-linux) hashdiff (1.1.1) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -50,10 +48,6 @@ GEM method_source (1.1.0) msgpack (1.7.5) os (1.1.4) - parallel (1.26.3) - parser (3.3.5.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -65,12 +59,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (6.0.1) - racc (1.8.1) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.7) rspec (3.13.0) rspec-core (~> 3.13.0) @@ -91,29 +82,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.3) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.22.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -124,7 +92,6 @@ GEM simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) stripe (5.15.0) - unicode-display_width (2.6.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -158,10 +125,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) stripe (= 5.15.0) diff --git a/gemfiles/ruby_3.1_activesupport.gemfile b/gemfiles/ruby_3.1_activesupport.gemfile index db3b00b1212..52e48cdce09 100644 --- a/gemfiles/ruby_3.1_activesupport.gemfile +++ b/gemfiles/ruby_3.1_activesupport.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.1_activesupport.gemfile.lock b/gemfiles/ruby_3.1_activesupport.gemfile.lock index 20e5cb9a0b6..0707891813c 100644 --- a/gemfiles/ruby_3.1_activesupport.gemfile.lock +++ b/gemfiles/ruby_3.1_activesupport.gemfile.lock @@ -36,7 +36,6 @@ GEM minitest (>= 5.1) tzinfo (~> 2.0) addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.12.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -89,7 +88,6 @@ GEM hashdiff (1.0.1) i18n (1.14.1) concurrent-ruby (~> 1.0) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) jsonapi-renderer (0.2.2) @@ -122,10 +120,6 @@ GEM nokogiri (1.15.4-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -159,7 +153,6 @@ GEM rake (>= 12.2) thor (~> 1.0) zeitwerk (~> 2.5) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake @@ -167,7 +160,6 @@ GEM ffi (~> 1.15) mini_portile2 (~> 2.6) rake (> 12) - regexp_parser (2.8.1) request_store (1.5.1) rack (>= 1.4) rexml (3.2.8) @@ -191,31 +183,8 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.0) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-kafka (1.5.0) digest-crc - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) simplecov (0.21.2) docile (~> 1.1) @@ -230,7 +199,6 @@ GEM thor (1.2.2) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -272,10 +240,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) ruby-kafka (>= 0.7.10) simplecov simplecov-cobertura (~> 2.1.0) diff --git a/gemfiles/ruby_3.1_aws.gemfile b/gemfiles/ruby_3.1_aws.gemfile index 117c2802c77..b550f6d66c8 100644 --- a/gemfiles/ruby_3.1_aws.gemfile +++ b/gemfiles/ruby_3.1_aws.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.1_aws.gemfile.lock b/gemfiles/ruby_3.1_aws.gemfile.lock index bf38915b28f..66e5937df98 100644 --- a/gemfiles/ruby_3.1_aws.gemfile.lock +++ b/gemfiles/ruby_3.1_aws.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) aws-eventstream (1.2.0) aws-partitions (1.813.0) aws-sdk (3.1.0) @@ -1456,7 +1455,6 @@ GEM google-protobuf (3.24.2-x86_64-linux) hashdiff (1.0.1) jmespath (1.6.2) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -1469,10 +1467,6 @@ GEM method_source (1.0.0) msgpack (1.7.5) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -1483,12 +1477,9 @@ GEM pry-stack_explorer (0.6.1) binding_of_caller (~> 1.0) pry (~> 0.13) - racc (1.7.1) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -1510,29 +1501,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.0) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) shoryuken (6.0.0) aws-sdk-core (>= 2) concurrent-ruby @@ -1548,7 +1516,6 @@ GEM simplecov_json_formatter (0.1.4) strscan (3.1.0) thor (1.2.2) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -1583,10 +1550,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) shoryuken simplecov simplecov-cobertura (~> 2.1.0) diff --git a/gemfiles/ruby_3.1_contrib.gemfile b/gemfiles/ruby_3.1_contrib.gemfile index 27c9fcb27af..7e772996d4c 100644 --- a/gemfiles/ruby_3.1_contrib.gemfile +++ b/gemfiles/ruby_3.1_contrib.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.1_contrib.gemfile.lock b/gemfiles/ruby_3.1_contrib.gemfile.lock index 95c66017d8e..f71cdf96700 100644 --- a/gemfiles/ruby_3.1_contrib.gemfile.lock +++ b/gemfiles/ruby_3.1_contrib.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.4.0) amq-protocol (2.3.2) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -49,7 +48,6 @@ GEM google-protobuf (~> 3.21) googleapis-common-protos-types (~> 1.0) hashdiff (1.0.1) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -68,9 +66,6 @@ GEM mustermann (3.0.0) ruby2_keywords (~> 0.0.1) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -87,7 +82,6 @@ GEM rack rack-test (2.1.0) rack (>= 1.3) - rainbow (3.1.1) rake (12.3.3) rake-compiler (1.2.1) rake @@ -97,7 +91,6 @@ GEM connection_pool redis-namespace (1.10.0) redis (>= 4) - regexp_parser (2.8.1) resque (2.4.0) mono_logger (~> 1.0) multi_json (~> 1.0) @@ -126,29 +119,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) semantic_logger (4.12.0) concurrent-ruby (~> 1.0) @@ -189,7 +159,6 @@ GEM concurrent-ruby (~> 1.0) thor (1.2.1) tilt (2.1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -230,10 +199,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) semantic_logger (~> 4.0) sidekiq (~> 7) simplecov diff --git a/gemfiles/ruby_3.1_contrib_old.gemfile b/gemfiles/ruby_3.1_contrib_old.gemfile index a8b5989607d..e699baa3624 100644 --- a/gemfiles/ruby_3.1_contrib_old.gemfile +++ b/gemfiles/ruby_3.1_contrib_old.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.1_contrib_old.gemfile.lock b/gemfiles/ruby_3.1_contrib_old.gemfile.lock index e1e2b8556b8..c14433feb28 100644 --- a/gemfiles/ruby_3.1_contrib_old.gemfile.lock +++ b/gemfiles/ruby_3.1_contrib_old.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) atomic (1.1.101) avl_tree (1.2.1) atomic (~> 1.1) @@ -45,7 +44,6 @@ GEM google-protobuf (3.22.0-x86_64-linux) hashdiff (1.0.1) hitimes (1.3.1) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -65,9 +63,6 @@ GEM mustermann (1.1.2) ruby2_keywords (~> 0.0.1) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pimpmychangelog (0.1.3) presto-client (0.6.6) faraday (~> 0.12) @@ -95,12 +90,10 @@ GEM rack (2.2.6.2) rack-protection (2.0.8.1) rack - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake redis (3.3.5) - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -122,29 +115,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) rusage (0.2.0) sentry-raven (0.15.6) @@ -171,7 +141,6 @@ GEM rack (>= 1, < 3) thor (0.19.4) tilt (2.1.0) - unicode-display_width (2.4.2) vegas (0.1.11) rack (>= 1.0.0) warning (1.3.0) @@ -210,10 +179,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.1_core_old.gemfile b/gemfiles/ruby_3.1_core_old.gemfile index 6bbf8a35a3a..93c4fd08e14 100644 --- a/gemfiles/ruby_3.1_core_old.gemfile +++ b/gemfiles/ruby_3.1_core_old.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.1_core_old.gemfile.lock b/gemfiles/ruby_3.1_core_old.gemfile.lock index 2b526121c63..c5e9855c351 100644 --- a/gemfiles/ruby_3.1_core_old.gemfile.lock +++ b/gemfiles/ruby_3.1_core_old.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -34,7 +33,6 @@ GEM google-protobuf (3.22.0) google-protobuf (3.22.0-x86_64-linux) hashdiff (1.0.1) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -47,9 +45,6 @@ GEM method_source (1.0.0) msgpack (1.7.5) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -60,11 +55,9 @@ GEM pry-stack_explorer (0.6.1) binding_of_caller (~> 1.0) pry (~> 0.13) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -86,29 +79,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -119,7 +89,6 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) strscan (3.1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -153,10 +122,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.1_elasticsearch_7.gemfile b/gemfiles/ruby_3.1_elasticsearch_7.gemfile index 27a5b792c13..b999b039f27 100644 --- a/gemfiles/ruby_3.1_elasticsearch_7.gemfile +++ b/gemfiles/ruby_3.1_elasticsearch_7.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.1_elasticsearch_7.gemfile.lock b/gemfiles/ruby_3.1_elasticsearch_7.gemfile.lock index bbdd8b436cd..305e9db99ef 100644 --- a/gemfiles/ruby_3.1_elasticsearch_7.gemfile.lock +++ b/gemfiles/ruby_3.1_elasticsearch_7.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.5) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.12.0) benchmark-memory (0.1.2) @@ -68,10 +67,6 @@ GEM net-http (0.6.0) uri os (1.1.4) - parallel (1.23.0) - parser (3.2.2.4) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -83,12 +78,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (5.0.3) - racc (1.7.1) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.2) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -110,29 +102,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -143,7 +112,6 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) strscan (3.1.0) - unicode-display_width (2.5.0) uri (1.0.2) warning (1.3.0) webmock (3.19.1) @@ -179,10 +147,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.1_elasticsearch_8.gemfile b/gemfiles/ruby_3.1_elasticsearch_8.gemfile index e9f5862bf00..ffd2a5eb21e 100644 --- a/gemfiles/ruby_3.1_elasticsearch_8.gemfile +++ b/gemfiles/ruby_3.1_elasticsearch_8.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.1_elasticsearch_8.gemfile.lock b/gemfiles/ruby_3.1_elasticsearch_8.gemfile.lock index 8fdd7fb7a65..1fab6478d8c 100644 --- a/gemfiles/ruby_3.1_elasticsearch_8.gemfile.lock +++ b/gemfiles/ruby_3.1_elasticsearch_8.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.5) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) benchmark-ips (2.12.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -66,10 +65,6 @@ GEM net-http (0.6.0) uri os (1.1.4) - parallel (1.23.0) - parser (3.2.2.4) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -81,12 +76,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (5.0.3) - racc (1.7.1) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.2) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -108,29 +100,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -141,7 +110,6 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) strscan (3.1.0) - unicode-display_width (2.5.0) uri (1.0.2) warning (1.3.0) webmock (3.19.1) @@ -177,10 +145,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.1_elasticsearch_latest.gemfile b/gemfiles/ruby_3.1_elasticsearch_latest.gemfile index aa74ecf0e43..416bb546db6 100644 --- a/gemfiles/ruby_3.1_elasticsearch_latest.gemfile +++ b/gemfiles/ruby_3.1_elasticsearch_latest.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.1_elasticsearch_latest.gemfile.lock b/gemfiles/ruby_3.1_elasticsearch_latest.gemfile.lock index eb0844a6960..e5db40e6313 100644 --- a/gemfiles/ruby_3.1_elasticsearch_latest.gemfile.lock +++ b/gemfiles/ruby_3.1_elasticsearch_latest.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.14.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -68,10 +67,6 @@ GEM net-http (0.6.0) uri os (1.1.4) - parallel (1.26.3) - parser (3.3.5.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -83,12 +78,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (6.0.1) - racc (1.8.1) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.7) rspec (3.13.0) rspec-core (~> 3.13.0) @@ -109,29 +101,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.3) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.22.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -141,7 +110,6 @@ GEM simplecov (~> 0.19) simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) - unicode-display_width (2.6.0) uri (1.0.2) warning (1.4.0) webmock (3.23.1) @@ -177,10 +145,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.1_graphql_1.13.gemfile b/gemfiles/ruby_3.1_graphql_1.13.gemfile index 1129ecc6f7b..af39dc1df59 100644 --- a/gemfiles/ruby_3.1_graphql_1.13.gemfile +++ b/gemfiles/ruby_3.1_graphql_1.13.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.1_graphql_1.13.gemfile.lock b/gemfiles/ruby_3.1_graphql_1.13.gemfile.lock index 5effb0e481b..7712c12ff4a 100644 --- a/gemfiles/ruby_3.1_graphql_1.13.gemfile.lock +++ b/gemfiles/ruby_3.1_graphql_1.13.gemfile.lock @@ -71,7 +71,6 @@ GEM zeitwerk (~> 2.3) addressable (2.8.6) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -104,7 +103,6 @@ GEM hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) - json (2.7.1) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -147,10 +145,6 @@ GEM nokogiri (1.16.6-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.24.0) - parser (3.3.0.5) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -194,11 +188,9 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.1.0) rake-compiler (1.2.6) rake - regexp_parser (2.9.0) request_store (1.7.0) rack (>= 1.4) rexml (3.2.8) @@ -222,29 +214,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.30.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.20.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.20.2) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.30.0, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -267,7 +236,6 @@ GEM timeout (0.4.1) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.5.0) warning (1.3.0) webmock (3.19.1) addressable (>= 2.8.0) @@ -308,10 +276,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_3.1_graphql_2.0.gemfile b/gemfiles/ruby_3.1_graphql_2.0.gemfile index c3d845c64c7..6fc8f6a254b 100644 --- a/gemfiles/ruby_3.1_graphql_2.0.gemfile +++ b/gemfiles/ruby_3.1_graphql_2.0.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.1_graphql_2.0.gemfile.lock b/gemfiles/ruby_3.1_graphql_2.0.gemfile.lock index 957916e7cb1..da142c74173 100644 --- a/gemfiles/ruby_3.1_graphql_2.0.gemfile.lock +++ b/gemfiles/ruby_3.1_graphql_2.0.gemfile.lock @@ -71,7 +71,6 @@ GEM zeitwerk (~> 2.3) addressable (2.8.6) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -104,7 +103,6 @@ GEM hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) - json (2.7.1) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -147,10 +145,6 @@ GEM nokogiri (1.16.6-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.24.0) - parser (3.3.0.5) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -194,11 +188,9 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.1.0) rake-compiler (1.2.6) rake - regexp_parser (2.9.0) request_store (1.7.0) rack (>= 1.4) rexml (3.2.8) @@ -222,29 +214,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.30.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.20.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.20.2) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.30.0, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -267,7 +236,6 @@ GEM timeout (0.4.1) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.5.0) warning (1.3.0) webmock (3.19.1) addressable (>= 2.8.0) @@ -308,10 +276,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_3.1_graphql_2.1.gemfile b/gemfiles/ruby_3.1_graphql_2.1.gemfile index a269ccb2e5b..cf85a8a06e4 100644 --- a/gemfiles/ruby_3.1_graphql_2.1.gemfile +++ b/gemfiles/ruby_3.1_graphql_2.1.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.1_graphql_2.1.gemfile.lock b/gemfiles/ruby_3.1_graphql_2.1.gemfile.lock index dcca211e4d3..07799e52d34 100644 --- a/gemfiles/ruby_3.1_graphql_2.1.gemfile.lock +++ b/gemfiles/ruby_3.1_graphql_2.1.gemfile.lock @@ -71,7 +71,6 @@ GEM zeitwerk (~> 2.3) addressable (2.8.6) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -105,7 +104,6 @@ GEM hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) - json (2.7.1) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -148,10 +146,6 @@ GEM nokogiri (1.16.6-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.24.0) - parser (3.3.0.5) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -195,11 +189,9 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.1.0) rake-compiler (1.2.6) rake - regexp_parser (2.9.0) request_store (1.7.0) rack (>= 1.4) rexml (3.2.8) @@ -223,29 +215,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.30.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.20.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.20.2) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.30.0, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -268,7 +237,6 @@ GEM timeout (0.4.1) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.5.0) warning (1.3.0) webmock (3.19.1) addressable (>= 2.8.0) @@ -309,10 +277,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_3.1_graphql_2.2.gemfile b/gemfiles/ruby_3.1_graphql_2.2.gemfile index 31a6fd2dfd5..c3652170170 100644 --- a/gemfiles/ruby_3.1_graphql_2.2.gemfile +++ b/gemfiles/ruby_3.1_graphql_2.2.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.1_graphql_2.2.gemfile.lock b/gemfiles/ruby_3.1_graphql_2.2.gemfile.lock index 2b980bbad82..2db42687c6e 100644 --- a/gemfiles/ruby_3.1_graphql_2.2.gemfile.lock +++ b/gemfiles/ruby_3.1_graphql_2.2.gemfile.lock @@ -71,7 +71,6 @@ GEM zeitwerk (~> 2.3) addressable (2.8.6) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -105,7 +104,6 @@ GEM hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) - json (2.7.1) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -148,10 +146,6 @@ GEM nokogiri (1.16.6-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.24.0) - parser (3.3.0.5) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -195,11 +189,9 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.1.0) rake-compiler (1.2.6) rake - regexp_parser (2.9.0) request_store (1.7.0) rack (>= 1.4) rexml (3.2.8) @@ -223,29 +215,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.30.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.20.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.20.2) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.30.0, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -268,7 +237,6 @@ GEM timeout (0.4.1) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.5.0) warning (1.3.0) webmock (3.19.1) addressable (>= 2.8.0) @@ -309,10 +277,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_3.1_graphql_2.3.gemfile b/gemfiles/ruby_3.1_graphql_2.3.gemfile index 7ada86e587f..43a44f7ad9b 100644 --- a/gemfiles/ruby_3.1_graphql_2.3.gemfile +++ b/gemfiles/ruby_3.1_graphql_2.3.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.1_graphql_2.3.gemfile.lock b/gemfiles/ruby_3.1_graphql_2.3.gemfile.lock index 9d91bbad304..22a6ea54083 100644 --- a/gemfiles/ruby_3.1_graphql_2.3.gemfile.lock +++ b/gemfiles/ruby_3.1_graphql_2.3.gemfile.lock @@ -71,7 +71,6 @@ GEM zeitwerk (~> 2.3) addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -107,7 +106,6 @@ GEM hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -150,10 +148,6 @@ GEM nokogiri (1.16.6-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.25.1) - parser (3.3.3.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -197,11 +191,9 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) request_store (1.7.0) rack (>= 1.4) rexml (3.3.1) @@ -225,29 +217,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.31.3) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -270,7 +239,6 @@ GEM timeout (0.4.1) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -311,10 +279,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_3.1_http.gemfile b/gemfiles/ruby_3.1_http.gemfile index 8a94e8fd297..801baf19d2b 100644 --- a/gemfiles/ruby_3.1_http.gemfile +++ b/gemfiles/ruby_3.1_http.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.1_http.gemfile.lock b/gemfiles/ruby_3.1_http.gemfile.lock index 98fa8e5a4ff..d1ef944344f 100644 --- a/gemfiles/ruby_3.1_http.gemfile.lock +++ b/gemfiles/ruby_3.1_http.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.12.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -56,7 +55,6 @@ GEM domain_name (~> 0.5) http-form_data (2.3.0) httpclient (2.8.3) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -76,10 +74,6 @@ GEM msgpack (1.7.5) netrc (0.11.0) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -90,12 +84,9 @@ GEM pry-stack_explorer (0.6.1) binding_of_caller (~> 1.0) pry (~> 0.13) - racc (1.7.1) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.1) rest-client (2.1.0) http-accept (>= 1.7.0, < 2.0) http-cookie (>= 1.0.2, < 2.0) @@ -122,29 +113,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.0) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) simplecov (0.21.2) docile (~> 1.1) @@ -161,7 +129,6 @@ GEM unf (0.1.4) unf_ext unf_ext (0.0.8.2) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -201,10 +168,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) typhoeus diff --git a/gemfiles/ruby_3.1_opensearch_2.gemfile b/gemfiles/ruby_3.1_opensearch_2.gemfile index 7aa53ff3a5e..9bc4540cc88 100644 --- a/gemfiles/ruby_3.1_opensearch_2.gemfile +++ b/gemfiles/ruby_3.1_opensearch_2.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.1_opensearch_2.gemfile.lock b/gemfiles/ruby_3.1_opensearch_2.gemfile.lock index 93a6694901e..51f5d706c18 100644 --- a/gemfiles/ruby_3.1_opensearch_2.gemfile.lock +++ b/gemfiles/ruby_3.1_opensearch_2.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.5) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) benchmark-ips (2.12.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -66,10 +65,6 @@ GEM faraday (>= 1.0, < 3) multi_json os (1.1.4) - parallel (1.23.0) - parser (3.2.2.4) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -81,12 +76,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (5.0.3) - racc (1.7.1) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -108,29 +100,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -141,7 +110,6 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) strscan (3.1.0) - unicode-display_width (2.5.0) uri (1.0.2) warning (1.3.0) webmock (3.19.1) @@ -177,10 +145,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.1_opensearch_3.gemfile b/gemfiles/ruby_3.1_opensearch_3.gemfile index eb1eebddf07..048682c6d39 100644 --- a/gemfiles/ruby_3.1_opensearch_3.gemfile +++ b/gemfiles/ruby_3.1_opensearch_3.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.1_opensearch_3.gemfile.lock b/gemfiles/ruby_3.1_opensearch_3.gemfile.lock index cff16d10f78..83f2cc7fc75 100644 --- a/gemfiles/ruby_3.1_opensearch_3.gemfile.lock +++ b/gemfiles/ruby_3.1_opensearch_3.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.5) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) benchmark-ips (2.12.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -61,10 +60,6 @@ GEM faraday (>= 1.0, < 3) multi_json (>= 1.0) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.4) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -76,12 +71,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (5.0.3) - racc (1.7.1) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -103,29 +95,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -136,7 +105,6 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) strscan (3.1.0) - unicode-display_width (2.5.0) uri (1.0.2) warning (1.3.0) webmock (3.19.1) @@ -172,10 +140,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.1_opensearch_latest.gemfile b/gemfiles/ruby_3.1_opensearch_latest.gemfile index ab01d0bbaec..c446e02ce35 100644 --- a/gemfiles/ruby_3.1_opensearch_latest.gemfile +++ b/gemfiles/ruby_3.1_opensearch_latest.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.1_opensearch_latest.gemfile.lock b/gemfiles/ruby_3.1_opensearch_latest.gemfile.lock index 022c7c10122..465311cca9b 100644 --- a/gemfiles/ruby_3.1_opensearch_latest.gemfile.lock +++ b/gemfiles/ruby_3.1_opensearch_latest.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.14.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -63,10 +62,6 @@ GEM faraday (>= 1.0, < 3) multi_json (>= 1.0) os (1.1.4) - parallel (1.26.3) - parser (3.3.5.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -78,12 +73,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (6.0.1) - racc (1.8.1) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.7) rspec (3.13.0) rspec-core (~> 3.13.0) @@ -104,29 +96,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.3) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.22.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -136,7 +105,6 @@ GEM simplecov (~> 0.19) simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) - unicode-display_width (2.6.0) uri (1.0.2) warning (1.4.0) webmock (3.23.1) @@ -172,10 +140,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.1_opentelemetry.gemfile b/gemfiles/ruby_3.1_opentelemetry.gemfile index 528eb6281e9..4df1bd1ac54 100644 --- a/gemfiles/ruby_3.1_opentelemetry.gemfile +++ b/gemfiles/ruby_3.1_opentelemetry.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.1_opentelemetry.gemfile.lock b/gemfiles/ruby_3.1_opentelemetry.gemfile.lock index 0028c265354..8c8d9d506e7 100644 --- a/gemfiles/ruby_3.1_opentelemetry.gemfile.lock +++ b/gemfiles/ruby_3.1_opentelemetry.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -36,7 +35,6 @@ GEM google-protobuf (3.22.0-x86_64-darwin) google-protobuf (3.22.0-x86_64-linux) hashdiff (1.0.1) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -64,9 +62,6 @@ GEM opentelemetry-semantic_conventions (1.8.0) opentelemetry-api (~> 1.0) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -77,11 +72,9 @@ GEM pry-stack_explorer (0.6.1) binding_of_caller (~> 1.0) pry (~> 0.13) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -103,29 +96,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -136,7 +106,6 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) strscan (3.1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -172,10 +141,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.1_opentelemetry_otlp.gemfile b/gemfiles/ruby_3.1_opentelemetry_otlp.gemfile index fa03f2ac546..739fffd9e84 100644 --- a/gemfiles/ruby_3.1_opentelemetry_otlp.gemfile +++ b/gemfiles/ruby_3.1_opentelemetry_otlp.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.1_opentelemetry_otlp.gemfile.lock b/gemfiles/ruby_3.1_opentelemetry_otlp.gemfile.lock index 4fe23161d30..77e6712197b 100644 --- a/gemfiles/ruby_3.1_opentelemetry_otlp.gemfile.lock +++ b/gemfiles/ruby_3.1_opentelemetry_otlp.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.6) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) benchmark-ips (2.13.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -39,7 +38,6 @@ GEM googleapis-common-protos-types (1.13.0) google-protobuf (~> 3.18) hashdiff (1.1.0) - json (2.7.1) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -71,10 +69,6 @@ GEM opentelemetry-semantic_conventions (1.10.0) opentelemetry-api (~> 1.0) os (1.1.4) - parallel (1.24.0) - parser (3.3.0.5) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -86,12 +80,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (5.0.4) - racc (1.7.3) - rainbow (3.1.1) rake (13.1.0) rake-compiler (1.2.7) rake - regexp_parser (2.9.0) rexml (3.3.8) rspec (3.13.0) rspec-core (~> 3.13.0) @@ -112,29 +103,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.31.1) - parser (>= 3.3.0.4) - rubocop-capybara (2.20.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.20.2) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.30.0, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -144,7 +112,6 @@ GEM simplecov (~> 0.19) simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) - unicode-display_width (2.5.0) warning (1.3.0) webmock (3.23.0) addressable (>= 2.8.0) @@ -180,10 +147,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.1_rack_1.gemfile b/gemfiles/ruby_3.1_rack_1.gemfile index 1e8707a988d..baa5a534a4a 100644 --- a/gemfiles/ruby_3.1_rack_1.gemfile +++ b/gemfiles/ruby_3.1_rack_1.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.1_rack_1.gemfile.lock b/gemfiles/ruby_3.1_rack_1.gemfile.lock index f7402877031..4a4610017bb 100644 --- a/gemfiles/ruby_3.1_rack_1.gemfile.lock +++ b/gemfiles/ruby_3.1_rack_1.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.12.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -34,7 +33,6 @@ GEM google-protobuf (3.24.3-aarch64-linux) google-protobuf (3.24.3-x86_64-linux) hashdiff (1.0.1) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -47,10 +45,6 @@ GEM method_source (1.0.0) msgpack (1.7.5) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -61,17 +55,14 @@ GEM pry-stack_explorer (0.6.1) binding_of_caller (~> 1.0) pry (~> 0.13) - racc (1.7.1) rack (1.6.13) rack-contrib (1.8.0) rack (~> 1.4) rack-test (2.1.0) rack (>= 1.3) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -93,29 +84,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.0) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -126,7 +94,6 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) strscan (3.1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -163,10 +130,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.1_rack_2.gemfile b/gemfiles/ruby_3.1_rack_2.gemfile index a08797d4ee8..60d6e96d706 100644 --- a/gemfiles/ruby_3.1_rack_2.gemfile +++ b/gemfiles/ruby_3.1_rack_2.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.1_rack_2.gemfile.lock b/gemfiles/ruby_3.1_rack_2.gemfile.lock index 8581a5a787b..aad48dc0637 100644 --- a/gemfiles/ruby_3.1_rack_2.gemfile.lock +++ b/gemfiles/ruby_3.1_rack_2.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.12.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -34,7 +33,6 @@ GEM google-protobuf (3.24.3-aarch64-linux) google-protobuf (3.24.3-x86_64-linux) hashdiff (1.0.1) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -47,10 +45,6 @@ GEM method_source (1.0.0) msgpack (1.7.5) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -61,17 +55,14 @@ GEM pry-stack_explorer (0.6.1) binding_of_caller (~> 1.0) pry (~> 0.13) - racc (1.7.1) rack (2.2.10) rack-contrib (2.3.0) rack (~> 2.0) rack-test (2.1.0) rack (>= 1.3) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -93,29 +84,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.0) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -126,7 +94,6 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) strscan (3.1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -163,10 +130,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.1_rack_3.gemfile b/gemfiles/ruby_3.1_rack_3.gemfile index 5e4535a8b53..886cbbbc6f9 100644 --- a/gemfiles/ruby_3.1_rack_3.gemfile +++ b/gemfiles/ruby_3.1_rack_3.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.1_rack_3.gemfile.lock b/gemfiles/ruby_3.1_rack_3.gemfile.lock index a3677b94285..54642477f63 100644 --- a/gemfiles/ruby_3.1_rack_3.gemfile.lock +++ b/gemfiles/ruby_3.1_rack_3.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.12.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -34,7 +33,6 @@ GEM google-protobuf (3.24.3-aarch64-linux) google-protobuf (3.24.3-x86_64-linux) hashdiff (1.0.1) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -47,10 +45,6 @@ GEM method_source (1.0.0) msgpack (1.7.5) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -61,17 +55,14 @@ GEM pry-stack_explorer (0.6.1) binding_of_caller (~> 1.0) pry (~> 0.13) - racc (1.7.1) rack (3.1.8) rack-contrib (1.2.0) rack (>= 0.9.1) rack-test (2.1.0) rack (>= 1.3) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -93,29 +84,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.0) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -126,7 +94,6 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) strscan (3.1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -163,10 +130,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.1_rack_latest.gemfile b/gemfiles/ruby_3.1_rack_latest.gemfile index 97cc0b6d206..f5234a7e2ec 100644 --- a/gemfiles/ruby_3.1_rack_latest.gemfile +++ b/gemfiles/ruby_3.1_rack_latest.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.1_rack_latest.gemfile.lock b/gemfiles/ruby_3.1_rack_latest.gemfile.lock index 6f38a2f3598..0970fc0beea 100644 --- a/gemfiles/ruby_3.1_rack_latest.gemfile.lock +++ b/gemfiles/ruby_3.1_rack_latest.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.14.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -37,7 +36,6 @@ GEM google-protobuf (3.25.5-aarch64-linux) google-protobuf (3.25.5-x86_64-linux) hashdiff (1.1.1) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -50,10 +48,6 @@ GEM method_source (1.1.0) msgpack (1.7.5) os (1.1.4) - parallel (1.26.3) - parser (3.3.5.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -65,17 +59,14 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (6.0.1) - racc (1.8.1) rack (3.1.8) rack-contrib (2.5.0) rack (< 4) rack-test (2.1.0) rack (>= 1.3) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.7) rspec (3.13.0) rspec-core (~> 3.13.0) @@ -96,29 +87,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.3) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.22.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -128,7 +96,6 @@ GEM simplecov (~> 0.19) simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) - unicode-display_width (2.6.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -165,10 +132,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.1_rails61_mysql2.gemfile b/gemfiles/ruby_3.1_rails61_mysql2.gemfile index b9708f122a2..027346d0cf5 100644 --- a/gemfiles/ruby_3.1_rails61_mysql2.gemfile +++ b/gemfiles/ruby_3.1_rails61_mysql2.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.1_rails61_mysql2.gemfile.lock b/gemfiles/ruby_3.1_rails61_mysql2.gemfile.lock index 0522ab7982e..ddad83d3cb1 100644 --- a/gemfiles/ruby_3.1_rails61_mysql2.gemfile.lock +++ b/gemfiles/ruby_3.1_rails61_mysql2.gemfile.lock @@ -70,7 +70,6 @@ GEM tzinfo (~> 2.0) zeitwerk (~> 2.3) addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -101,7 +100,6 @@ GEM hashdiff (1.0.1) i18n (1.12.0) concurrent-ruby (~> 1.0) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -145,9 +143,6 @@ GEM nokogiri (1.14.2-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -188,11 +183,9 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake - regexp_parser (2.8.1) request_store (1.5.1) rack (>= 1.4) rexml (3.2.8) @@ -216,29 +209,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -260,7 +230,6 @@ GEM timeout (0.3.2) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -302,10 +271,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_3.1_rails61_postgres.gemfile b/gemfiles/ruby_3.1_rails61_postgres.gemfile index 2f162bc5eb8..e0f5aeffa1d 100644 --- a/gemfiles/ruby_3.1_rails61_postgres.gemfile +++ b/gemfiles/ruby_3.1_rails61_postgres.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.1_rails61_postgres.gemfile.lock b/gemfiles/ruby_3.1_rails61_postgres.gemfile.lock index 804905291f8..b3a789e6dc9 100644 --- a/gemfiles/ruby_3.1_rails61_postgres.gemfile.lock +++ b/gemfiles/ruby_3.1_rails61_postgres.gemfile.lock @@ -70,7 +70,6 @@ GEM tzinfo (~> 2.0) zeitwerk (~> 2.3) addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -101,7 +100,6 @@ GEM hashdiff (1.0.1) i18n (1.12.0) concurrent-ruby (~> 1.0) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -144,9 +142,6 @@ GEM nokogiri (1.14.2-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pg (1.4.6) pimpmychangelog (0.1.3) pry (0.14.2) @@ -188,11 +183,9 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake - regexp_parser (2.8.1) request_store (1.5.1) rack (>= 1.4) rexml (3.2.8) @@ -216,29 +209,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -260,7 +230,6 @@ GEM timeout (0.3.2) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -302,10 +271,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_3.1_rails61_postgres_redis.gemfile b/gemfiles/ruby_3.1_rails61_postgres_redis.gemfile index 4ae4cc24db9..90eee1e65e1 100644 --- a/gemfiles/ruby_3.1_rails61_postgres_redis.gemfile +++ b/gemfiles/ruby_3.1_rails61_postgres_redis.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.1_rails61_postgres_redis.gemfile.lock b/gemfiles/ruby_3.1_rails61_postgres_redis.gemfile.lock index 17f8e355f3f..84f20c67799 100644 --- a/gemfiles/ruby_3.1_rails61_postgres_redis.gemfile.lock +++ b/gemfiles/ruby_3.1_rails61_postgres_redis.gemfile.lock @@ -70,7 +70,6 @@ GEM tzinfo (~> 2.0) zeitwerk (~> 2.3) addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -101,7 +100,6 @@ GEM hashdiff (1.0.1) i18n (1.12.0) concurrent-ruby (~> 1.0) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -144,9 +142,6 @@ GEM nokogiri (1.14.2-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pg (1.4.6) pimpmychangelog (0.1.3) pry (0.14.2) @@ -188,12 +183,10 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake redis (4.8.1) - regexp_parser (2.8.1) request_store (1.5.1) rack (>= 1.4) rexml (3.2.8) @@ -217,29 +210,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -261,7 +231,6 @@ GEM timeout (0.3.2) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -304,10 +273,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_3.1_rails61_postgres_sidekiq.gemfile b/gemfiles/ruby_3.1_rails61_postgres_sidekiq.gemfile index 280abf0b030..f9065004438 100644 --- a/gemfiles/ruby_3.1_rails61_postgres_sidekiq.gemfile +++ b/gemfiles/ruby_3.1_rails61_postgres_sidekiq.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.1_rails61_postgres_sidekiq.gemfile.lock b/gemfiles/ruby_3.1_rails61_postgres_sidekiq.gemfile.lock index 943dc636515..260b24d89e6 100644 --- a/gemfiles/ruby_3.1_rails61_postgres_sidekiq.gemfile.lock +++ b/gemfiles/ruby_3.1_rails61_postgres_sidekiq.gemfile.lock @@ -70,7 +70,6 @@ GEM tzinfo (~> 2.0) zeitwerk (~> 2.3) addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -102,7 +101,6 @@ GEM hashdiff (1.0.1) i18n (1.12.0) concurrent-ruby (~> 1.0) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -145,9 +143,6 @@ GEM nokogiri (1.14.2-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pg (1.4.6) pimpmychangelog (0.1.3) pry (0.14.2) @@ -193,13 +188,11 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake redis-client (0.12.2) connection_pool - regexp_parser (2.8.1) request_store (1.5.1) rack (>= 1.4) rexml (3.2.8) @@ -223,29 +216,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) semantic_logger (4.12.0) concurrent-ruby (~> 1.0) sidekiq (7.0.6) @@ -274,7 +244,6 @@ GEM timeout (0.3.2) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -317,10 +286,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) sidekiq (>= 6.1.2) simplecov simplecov-cobertura (~> 2.1.0) diff --git a/gemfiles/ruby_3.1_rails61_semantic_logger.gemfile b/gemfiles/ruby_3.1_rails61_semantic_logger.gemfile index e548fa50b3c..0bcca5c73f7 100644 --- a/gemfiles/ruby_3.1_rails61_semantic_logger.gemfile +++ b/gemfiles/ruby_3.1_rails61_semantic_logger.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.1_rails61_semantic_logger.gemfile.lock b/gemfiles/ruby_3.1_rails61_semantic_logger.gemfile.lock index 269309a30d1..558f1e3e407 100644 --- a/gemfiles/ruby_3.1_rails61_semantic_logger.gemfile.lock +++ b/gemfiles/ruby_3.1_rails61_semantic_logger.gemfile.lock @@ -70,7 +70,6 @@ GEM tzinfo (~> 2.0) zeitwerk (~> 2.3) addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -101,7 +100,6 @@ GEM hashdiff (1.0.1) i18n (1.12.0) concurrent-ruby (~> 1.0) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -139,9 +137,6 @@ GEM nokogiri (1.14.2-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pg (1.4.6) pimpmychangelog (0.1.3) pry (0.14.2) @@ -187,11 +182,9 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -213,29 +206,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) semantic_logger (4.12.0) concurrent-ruby (~> 1.0) simplecov (0.21.2) @@ -259,7 +229,6 @@ GEM timeout (0.3.2) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -301,10 +270,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_3.1_rails61_trilogy.gemfile b/gemfiles/ruby_3.1_rails61_trilogy.gemfile index b9baf1a6592..51d8d5ca920 100644 --- a/gemfiles/ruby_3.1_rails61_trilogy.gemfile +++ b/gemfiles/ruby_3.1_rails61_trilogy.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.1_rails61_trilogy.gemfile.lock b/gemfiles/ruby_3.1_rails61_trilogy.gemfile.lock index c0b05cc8ba7..e36f2d8150d 100644 --- a/gemfiles/ruby_3.1_rails61_trilogy.gemfile.lock +++ b/gemfiles/ruby_3.1_rails61_trilogy.gemfile.lock @@ -74,7 +74,6 @@ GEM zeitwerk (~> 2.3) addressable (2.8.5) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) benchmark-ips (2.12.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -105,7 +104,6 @@ GEM hashdiff (1.0.1) i18n (1.14.1) concurrent-ruby (~> 1.0) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -148,10 +146,6 @@ GEM nokogiri (1.15.5-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.4) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -195,11 +189,9 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.1.0) rake-compiler (1.2.5) rake - regexp_parser (2.8.2) request_store (1.5.1) rack (>= 1.4) rexml (3.2.8) @@ -223,29 +215,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.30.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -268,7 +237,6 @@ GEM trilogy (2.6.0) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.5.0) warning (1.3.0) webmock (3.19.1) addressable (>= 2.8.0) @@ -310,10 +278,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_3.1_rails7.gemfile b/gemfiles/ruby_3.1_rails7.gemfile index 2e32b1a98bf..9166028a3a0 100644 --- a/gemfiles/ruby_3.1_rails7.gemfile +++ b/gemfiles/ruby_3.1_rails7.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.1_rails7.gemfile.lock b/gemfiles/ruby_3.1_rails7.gemfile.lock index 57086df0100..4315951ff32 100644 --- a/gemfiles/ruby_3.1_rails7.gemfile.lock +++ b/gemfiles/ruby_3.1_rails7.gemfile.lock @@ -77,7 +77,6 @@ GEM tzinfo (~> 2.0) addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.13.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -110,7 +109,6 @@ GEM hashdiff (1.1.1) i18n (1.14.5) concurrent-ruby (~> 1.0) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -148,10 +146,6 @@ GEM nokogiri (1.16.7-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.26.3) - parser (3.3.4.2) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -195,11 +189,9 @@ GEM rake (>= 12.2) thor (~> 1.0) zeitwerk (~> 2.5) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.6) strscan rspec (3.13.0) @@ -221,29 +213,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.1) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -258,7 +227,6 @@ GEM timeout (0.4.1) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -297,10 +265,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.1_rails71.gemfile b/gemfiles/ruby_3.1_rails71.gemfile index 12ebea780d0..6123609d84d 100644 --- a/gemfiles/ruby_3.1_rails71.gemfile +++ b/gemfiles/ruby_3.1_rails71.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.1_rails71.gemfile.lock b/gemfiles/ruby_3.1_rails71.gemfile.lock index c415c69835b..d4bb81cbd9b 100644 --- a/gemfiles/ruby_3.1_rails71.gemfile.lock +++ b/gemfiles/ruby_3.1_rails71.gemfile.lock @@ -86,7 +86,6 @@ GEM tzinfo (~> 2.0) addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -126,7 +125,6 @@ GEM irb (1.14.0) rdoc (>= 4.0.0) reline (>= 0.4.2) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -165,10 +163,6 @@ GEM nokogiri (1.16.7-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.26.3) - parser (3.3.4.2) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -220,13 +214,11 @@ GEM rake (>= 12.2) thor (~> 1.0, >= 1.2.2) zeitwerk (~> 2.6) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake rdoc (6.7.0) psych (>= 4.0.0) - regexp_parser (2.9.2) reline (0.5.9) io-console (~> 0.5) rexml (3.3.6) @@ -250,29 +242,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.1) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -288,7 +257,6 @@ GEM timeout (0.4.1) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -327,10 +295,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.1_rails_old_redis.gemfile b/gemfiles/ruby_3.1_rails_old_redis.gemfile index 3cc2e136201..3118c34d603 100644 --- a/gemfiles/ruby_3.1_rails_old_redis.gemfile +++ b/gemfiles/ruby_3.1_rails_old_redis.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.1_redis_3.gemfile b/gemfiles/ruby_3.1_redis_3.gemfile index c8ec64ced3c..193f0fcf9cc 100644 --- a/gemfiles/ruby_3.1_redis_3.gemfile +++ b/gemfiles/ruby_3.1_redis_3.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.1_redis_3.gemfile.lock b/gemfiles/ruby_3.1_redis_3.gemfile.lock index 81acb1aaba5..0167a37015a 100644 --- a/gemfiles/ruby_3.1_redis_3.gemfile.lock +++ b/gemfiles/ruby_3.1_redis_3.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -34,7 +33,6 @@ GEM google-protobuf (3.22.0) google-protobuf (3.22.0-x86_64-linux) hashdiff (1.0.1) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -47,9 +45,6 @@ GEM method_source (1.0.0) msgpack (1.7.5) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -60,12 +55,10 @@ GEM pry-stack_explorer (0.6.1) binding_of_caller (~> 1.0) pry (~> 0.13) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake redis (3.3.5) - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -87,29 +80,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -120,7 +90,6 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) strscan (3.1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -155,10 +124,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.1_redis_4.gemfile b/gemfiles/ruby_3.1_redis_4.gemfile index 018259e6afe..15ad6b2febf 100644 --- a/gemfiles/ruby_3.1_redis_4.gemfile +++ b/gemfiles/ruby_3.1_redis_4.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.1_redis_4.gemfile.lock b/gemfiles/ruby_3.1_redis_4.gemfile.lock index 4ec56cc9610..d5eac0ecbe0 100644 --- a/gemfiles/ruby_3.1_redis_4.gemfile.lock +++ b/gemfiles/ruby_3.1_redis_4.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -34,7 +33,6 @@ GEM google-protobuf (3.22.0) google-protobuf (3.22.0-x86_64-linux) hashdiff (1.0.1) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -47,9 +45,6 @@ GEM method_source (1.0.0) msgpack (1.7.5) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -60,12 +55,10 @@ GEM pry-stack_explorer (0.6.1) binding_of_caller (~> 1.0) pry (~> 0.13) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake redis (4.8.1) - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -87,29 +80,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -120,7 +90,6 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) strscan (3.1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -155,10 +124,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.1_redis_5.gemfile b/gemfiles/ruby_3.1_redis_5.gemfile index 3323ec2baf6..5c4ee1a0eb9 100644 --- a/gemfiles/ruby_3.1_redis_5.gemfile +++ b/gemfiles/ruby_3.1_redis_5.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.1_redis_5.gemfile.lock b/gemfiles/ruby_3.1_redis_5.gemfile.lock index 1b063fca7d5..f45011d743c 100644 --- a/gemfiles/ruby_3.1_redis_5.gemfile.lock +++ b/gemfiles/ruby_3.1_redis_5.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -35,7 +34,6 @@ GEM google-protobuf (3.22.0) google-protobuf (3.22.0-x86_64-linux) hashdiff (1.0.1) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -48,9 +46,6 @@ GEM method_source (1.0.0) msgpack (1.7.5) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -61,7 +56,6 @@ GEM pry-stack_explorer (0.6.1) binding_of_caller (~> 1.0) pry (~> 0.13) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake @@ -69,7 +63,6 @@ GEM redis-client (>= 0.9.0) redis-client (0.12.2) connection_pool - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -91,29 +84,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -124,7 +94,6 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) strscan (3.1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -159,10 +128,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.1_relational_db.gemfile b/gemfiles/ruby_3.1_relational_db.gemfile index db5bea183f4..8a553116e94 100644 --- a/gemfiles/ruby_3.1_relational_db.gemfile +++ b/gemfiles/ruby_3.1_relational_db.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.1_relational_db.gemfile.lock b/gemfiles/ruby_3.1_relational_db.gemfile.lock index f199372a978..966f20e5687 100644 --- a/gemfiles/ruby_3.1_relational_db.gemfile.lock +++ b/gemfiles/ruby_3.1_relational_db.gemfile.lock @@ -21,7 +21,6 @@ GEM minitest (>= 5.1) tzinfo (~> 2.0) addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.12.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -52,7 +51,6 @@ GEM hashdiff (1.0.1) i18n (1.14.1) concurrent-ruby (~> 1.0) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -69,10 +67,6 @@ GEM msgpack (1.7.5) mysql2 (0.5.5) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pg (1.5.4) pimpmychangelog (0.1.3) pry (0.14.2) @@ -84,12 +78,9 @@ GEM pry-stack_explorer (0.6.1) binding_of_caller (~> 1.0) pry (~> 0.13) - racc (1.7.1) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -111,29 +102,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.0) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) sequel (5.83.1) bigdecimal simplecov (0.21.2) @@ -151,7 +119,6 @@ GEM trilogy (2.6.0) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -191,10 +158,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) sequel simplecov simplecov-cobertura (~> 2.1.0) diff --git a/gemfiles/ruby_3.1_resque2_redis3.gemfile b/gemfiles/ruby_3.1_resque2_redis3.gemfile index 47a7c231923..26b00162274 100644 --- a/gemfiles/ruby_3.1_resque2_redis3.gemfile +++ b/gemfiles/ruby_3.1_resque2_redis3.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.1_resque2_redis3.gemfile.lock b/gemfiles/ruby_3.1_resque2_redis3.gemfile.lock index 14c5736ae5a..d0187dabfbf 100644 --- a/gemfiles/ruby_3.1_resque2_redis3.gemfile.lock +++ b/gemfiles/ruby_3.1_resque2_redis3.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -34,7 +33,6 @@ GEM google-protobuf (3.22.0) google-protobuf (3.22.0-x86_64-linux) hashdiff (1.0.1) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -51,9 +49,6 @@ GEM mustermann (3.0.0) ruby2_keywords (~> 0.0.1) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -67,14 +62,12 @@ GEM rack (2.2.6.2) rack-protection (3.0.5) rack - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake redis (3.3.5) redis-namespace (1.8.2) redis (>= 3.0.4) - regexp_parser (2.8.1) resque (2.4.0) mono_logger (~> 1.0) multi_json (~> 1.0) @@ -101,29 +94,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) simplecov (0.21.2) docile (~> 1.1) @@ -141,7 +111,6 @@ GEM tilt (~> 2.0) strscan (3.1.0) tilt (2.1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -177,10 +146,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.1_resque2_redis4.gemfile b/gemfiles/ruby_3.1_resque2_redis4.gemfile index 394dba4f204..09a4784be42 100644 --- a/gemfiles/ruby_3.1_resque2_redis4.gemfile +++ b/gemfiles/ruby_3.1_resque2_redis4.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.1_resque2_redis4.gemfile.lock b/gemfiles/ruby_3.1_resque2_redis4.gemfile.lock index ab7bf24a9a6..38181381d14 100644 --- a/gemfiles/ruby_3.1_resque2_redis4.gemfile.lock +++ b/gemfiles/ruby_3.1_resque2_redis4.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -35,7 +34,6 @@ GEM google-protobuf (3.22.0) google-protobuf (3.22.0-x86_64-linux) hashdiff (1.0.1) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -52,9 +50,6 @@ GEM mustermann (3.0.0) ruby2_keywords (~> 0.0.1) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -68,7 +63,6 @@ GEM rack (2.2.6.2) rack-protection (3.0.5) rack - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake @@ -78,7 +72,6 @@ GEM connection_pool redis-namespace (1.10.0) redis (>= 4) - regexp_parser (2.8.1) resque (2.4.0) mono_logger (~> 1.0) multi_json (~> 1.0) @@ -105,29 +98,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) simplecov (0.21.2) docile (~> 1.1) @@ -145,7 +115,6 @@ GEM tilt (~> 2.0) strscan (3.1.0) tilt (2.1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -181,10 +150,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.1_sinatra_2.gemfile b/gemfiles/ruby_3.1_sinatra_2.gemfile index ec4c1607ef4..aff98433b32 100644 --- a/gemfiles/ruby_3.1_sinatra_2.gemfile +++ b/gemfiles/ruby_3.1_sinatra_2.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.1_sinatra_2.gemfile.lock b/gemfiles/ruby_3.1_sinatra_2.gemfile.lock index df14d7471ee..db461cf234d 100644 --- a/gemfiles/ruby_3.1_sinatra_2.gemfile.lock +++ b/gemfiles/ruby_3.1_sinatra_2.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.6) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) benchmark-ips (2.13.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -37,7 +36,6 @@ GEM google-protobuf (3.25.3-aarch64-linux) google-protobuf (3.25.3-x86_64-linux) hashdiff (1.1.0) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -52,10 +50,6 @@ GEM mustermann (2.0.2) ruby2_keywords (~> 0.0.1) os (1.1.4) - parallel (1.24.0) - parser (3.3.0.5) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -67,7 +61,6 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (5.0.5) - racc (1.7.3) rack (2.2.9) rack-contrib (2.4.0) rack (< 4) @@ -75,11 +68,9 @@ GEM rack rack-test (2.1.0) rack (>= 1.3) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.0) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -101,29 +92,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.31.2) - parser (>= 3.3.0.4) - rubocop-capybara (2.20.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.0) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) simplecov (0.21.2) docile (~> 1.1) @@ -141,7 +109,6 @@ GEM tilt (~> 2.0) strscan (3.1.0) tilt (2.3.0) - unicode-display_width (2.5.0) warning (1.3.0) webmock (3.23.0) addressable (>= 2.8.0) @@ -177,10 +144,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sinatra (~> 2) diff --git a/gemfiles/ruby_3.1_sinatra_3.gemfile b/gemfiles/ruby_3.1_sinatra_3.gemfile index 954dbdbe27a..de04f81dd11 100644 --- a/gemfiles/ruby_3.1_sinatra_3.gemfile +++ b/gemfiles/ruby_3.1_sinatra_3.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.1_sinatra_3.gemfile.lock b/gemfiles/ruby_3.1_sinatra_3.gemfile.lock index 01bc4739f0b..8333705f46a 100644 --- a/gemfiles/ruby_3.1_sinatra_3.gemfile.lock +++ b/gemfiles/ruby_3.1_sinatra_3.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.6) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -38,7 +37,6 @@ GEM google-protobuf (3.25.3-aarch64-linux) google-protobuf (3.25.3-x86_64-linux) hashdiff (1.1.0) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -53,10 +51,6 @@ GEM mustermann (3.0.0) ruby2_keywords (~> 0.0.1) os (1.1.4) - parallel (1.24.0) - parser (3.3.0.5) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -68,7 +62,6 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (5.0.5) - racc (1.7.3) rack (2.2.9) rack-contrib (2.4.0) rack (< 4) @@ -77,11 +70,9 @@ GEM rack (~> 2.2, >= 2.2.4) rack-test (2.1.0) rack (>= 1.3) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.0) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -103,29 +94,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.31.2) - parser (>= 3.3.0.4) - rubocop-capybara (2.20.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.0) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) simplecov (0.21.2) docile (~> 1.1) @@ -143,7 +111,6 @@ GEM tilt (~> 2.0) strscan (3.1.0) tilt (2.3.0) - unicode-display_width (2.5.0) warning (1.3.0) webmock (3.23.0) addressable (>= 2.8.0) @@ -179,10 +146,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sinatra (~> 3) diff --git a/gemfiles/ruby_3.1_sinatra_4.gemfile b/gemfiles/ruby_3.1_sinatra_4.gemfile index 5c60b05e3f3..4d40235e094 100644 --- a/gemfiles/ruby_3.1_sinatra_4.gemfile +++ b/gemfiles/ruby_3.1_sinatra_4.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.1_sinatra_4.gemfile.lock b/gemfiles/ruby_3.1_sinatra_4.gemfile.lock index 86536da465d..60612bd4b9e 100644 --- a/gemfiles/ruby_3.1_sinatra_4.gemfile.lock +++ b/gemfiles/ruby_3.1_sinatra_4.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.6) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -38,7 +37,6 @@ GEM google-protobuf (3.25.3-aarch64-linux) google-protobuf (3.25.3-x86_64-linux) hashdiff (1.1.0) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -53,10 +51,6 @@ GEM mustermann (3.0.0) ruby2_keywords (~> 0.0.1) os (1.1.4) - parallel (1.24.0) - parser (3.3.0.5) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -68,7 +62,6 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (5.0.5) - racc (1.7.3) rack (3.0.10) rack-contrib (2.4.0) rack (< 4) @@ -79,11 +72,9 @@ GEM rack (>= 3.0.0) rack-test (2.1.0) rack (>= 1.3) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.0) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -105,29 +96,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.31.2) - parser (>= 3.3.0.4) - rubocop-capybara (2.20.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.0) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) simplecov (0.21.2) docile (~> 1.1) @@ -146,7 +114,6 @@ GEM tilt (~> 2.0) strscan (3.1.0) tilt (2.3.0) - unicode-display_width (2.5.0) warning (1.3.0) webmock (3.23.0) addressable (>= 2.8.0) @@ -182,10 +149,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sinatra (~> 4) diff --git a/gemfiles/ruby_3.1_stripe_10.gemfile b/gemfiles/ruby_3.1_stripe_10.gemfile index dc1a588b06c..f2ffd9efb02 100644 --- a/gemfiles/ruby_3.1_stripe_10.gemfile +++ b/gemfiles/ruby_3.1_stripe_10.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.1_stripe_10.gemfile.lock b/gemfiles/ruby_3.1_stripe_10.gemfile.lock index b4e72d75369..d157905130f 100644 --- a/gemfiles/ruby_3.1_stripe_10.gemfile.lock +++ b/gemfiles/ruby_3.1_stripe_10.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.13.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -37,7 +36,6 @@ GEM google-protobuf (3.25.4-aarch64-linux) google-protobuf (3.25.4-x86_64-linux) hashdiff (1.1.1) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -50,10 +48,6 @@ GEM method_source (1.1.0) msgpack (1.7.5) os (1.1.4) - parallel (1.26.3) - parser (3.3.4.2) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -65,12 +59,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (6.0.1) - racc (1.8.1) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.6) strscan rspec (3.13.0) @@ -92,29 +83,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.1) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -126,7 +94,6 @@ GEM simplecov_json_formatter (0.1.4) stripe (10.15.0) strscan (3.1.0) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -160,10 +127,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 10) diff --git a/gemfiles/ruby_3.1_stripe_11.gemfile b/gemfiles/ruby_3.1_stripe_11.gemfile index c91d810e684..3c650142390 100644 --- a/gemfiles/ruby_3.1_stripe_11.gemfile +++ b/gemfiles/ruby_3.1_stripe_11.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.1_stripe_11.gemfile.lock b/gemfiles/ruby_3.1_stripe_11.gemfile.lock index e0027c0db0d..1be39ea683a 100644 --- a/gemfiles/ruby_3.1_stripe_11.gemfile.lock +++ b/gemfiles/ruby_3.1_stripe_11.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.13.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -37,7 +36,6 @@ GEM google-protobuf (3.25.4-aarch64-linux) google-protobuf (3.25.4-x86_64-linux) hashdiff (1.1.1) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -50,10 +48,6 @@ GEM method_source (1.1.0) msgpack (1.7.5) os (1.1.4) - parallel (1.26.3) - parser (3.3.4.2) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -65,12 +59,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (6.0.1) - racc (1.8.1) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.6) strscan rspec (3.13.0) @@ -92,29 +83,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.1) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -126,7 +94,6 @@ GEM simplecov_json_formatter (0.1.4) stripe (11.7.0) strscan (3.1.0) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -160,10 +127,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 11) diff --git a/gemfiles/ruby_3.1_stripe_12.gemfile b/gemfiles/ruby_3.1_stripe_12.gemfile index 3199f19a48e..fd88c55b26b 100644 --- a/gemfiles/ruby_3.1_stripe_12.gemfile +++ b/gemfiles/ruby_3.1_stripe_12.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.1_stripe_12.gemfile.lock b/gemfiles/ruby_3.1_stripe_12.gemfile.lock index 26e2af3f237..a39844a6059 100644 --- a/gemfiles/ruby_3.1_stripe_12.gemfile.lock +++ b/gemfiles/ruby_3.1_stripe_12.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.13.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -37,7 +36,6 @@ GEM google-protobuf (3.25.4-aarch64-linux) google-protobuf (3.25.4-x86_64-linux) hashdiff (1.1.1) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -50,10 +48,6 @@ GEM method_source (1.1.0) msgpack (1.7.5) os (1.1.4) - parallel (1.26.3) - parser (3.3.4.2) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -65,12 +59,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (6.0.1) - racc (1.8.1) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.6) strscan rspec (3.13.0) @@ -92,29 +83,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.1) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -126,7 +94,6 @@ GEM simplecov_json_formatter (0.1.4) stripe (12.6.0) strscan (3.1.0) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -160,10 +127,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 12) diff --git a/gemfiles/ruby_3.1_stripe_7.gemfile b/gemfiles/ruby_3.1_stripe_7.gemfile index 10fcf73e02f..435abeaae7e 100644 --- a/gemfiles/ruby_3.1_stripe_7.gemfile +++ b/gemfiles/ruby_3.1_stripe_7.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.1_stripe_7.gemfile.lock b/gemfiles/ruby_3.1_stripe_7.gemfile.lock index 18ec914fa03..b0ccb693ddf 100644 --- a/gemfiles/ruby_3.1_stripe_7.gemfile.lock +++ b/gemfiles/ruby_3.1_stripe_7.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.13.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -37,7 +36,6 @@ GEM google-protobuf (3.25.4-aarch64-linux) google-protobuf (3.25.4-x86_64-linux) hashdiff (1.1.1) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -50,10 +48,6 @@ GEM method_source (1.1.0) msgpack (1.7.5) os (1.1.4) - parallel (1.26.3) - parser (3.3.4.2) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -65,12 +59,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (6.0.1) - racc (1.8.1) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.6) strscan rspec (3.13.0) @@ -92,29 +83,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.1) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -126,7 +94,6 @@ GEM simplecov_json_formatter (0.1.4) stripe (7.1.0) strscan (3.1.0) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -160,10 +127,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 7) diff --git a/gemfiles/ruby_3.1_stripe_8.gemfile b/gemfiles/ruby_3.1_stripe_8.gemfile index 84f1d26e650..ce21f3c93e8 100644 --- a/gemfiles/ruby_3.1_stripe_8.gemfile +++ b/gemfiles/ruby_3.1_stripe_8.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.1_stripe_8.gemfile.lock b/gemfiles/ruby_3.1_stripe_8.gemfile.lock index f2caea0da16..5764c54b7fb 100644 --- a/gemfiles/ruby_3.1_stripe_8.gemfile.lock +++ b/gemfiles/ruby_3.1_stripe_8.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.13.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -37,7 +36,6 @@ GEM google-protobuf (3.25.4-aarch64-linux) google-protobuf (3.25.4-x86_64-linux) hashdiff (1.1.1) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -50,10 +48,6 @@ GEM method_source (1.1.0) msgpack (1.7.5) os (1.1.4) - parallel (1.26.3) - parser (3.3.4.2) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -65,12 +59,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (6.0.1) - racc (1.8.1) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.6) strscan rspec (3.13.0) @@ -92,29 +83,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.1) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -126,7 +94,6 @@ GEM simplecov_json_formatter (0.1.4) stripe (8.7.0) strscan (3.1.0) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -160,10 +127,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 8) diff --git a/gemfiles/ruby_3.1_stripe_9.gemfile b/gemfiles/ruby_3.1_stripe_9.gemfile index 9035d9a3699..4e39d862013 100644 --- a/gemfiles/ruby_3.1_stripe_9.gemfile +++ b/gemfiles/ruby_3.1_stripe_9.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.1_stripe_9.gemfile.lock b/gemfiles/ruby_3.1_stripe_9.gemfile.lock index a3f400045e5..d2ef1403831 100644 --- a/gemfiles/ruby_3.1_stripe_9.gemfile.lock +++ b/gemfiles/ruby_3.1_stripe_9.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.13.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -37,7 +36,6 @@ GEM google-protobuf (3.25.4-aarch64-linux) google-protobuf (3.25.4-x86_64-linux) hashdiff (1.1.1) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -50,10 +48,6 @@ GEM method_source (1.1.0) msgpack (1.7.5) os (1.1.4) - parallel (1.26.3) - parser (3.3.4.2) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -65,12 +59,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (6.0.1) - racc (1.8.1) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.6) strscan rspec (3.13.0) @@ -92,29 +83,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.1) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -126,7 +94,6 @@ GEM simplecov_json_formatter (0.1.4) stripe (9.4.0) strscan (3.1.0) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -160,10 +127,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 9) diff --git a/gemfiles/ruby_3.1_stripe_latest.gemfile b/gemfiles/ruby_3.1_stripe_latest.gemfile index 0e4caba9e48..98dbcf511ff 100644 --- a/gemfiles/ruby_3.1_stripe_latest.gemfile +++ b/gemfiles/ruby_3.1_stripe_latest.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.1_stripe_latest.gemfile.lock b/gemfiles/ruby_3.1_stripe_latest.gemfile.lock index 10d85c80079..9a1939adeb6 100644 --- a/gemfiles/ruby_3.1_stripe_latest.gemfile.lock +++ b/gemfiles/ruby_3.1_stripe_latest.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.14.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -37,7 +36,6 @@ GEM google-protobuf (3.25.4-aarch64-linux) google-protobuf (3.25.4-x86_64-linux) hashdiff (1.1.1) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -50,10 +48,6 @@ GEM method_source (1.1.0) msgpack (1.7.5) os (1.1.4) - parallel (1.26.3) - parser (3.3.5.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -65,12 +59,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (6.0.1) - racc (1.8.1) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.7) rspec (3.13.0) rspec-core (~> 3.13.0) @@ -91,29 +82,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.3) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.22.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -124,7 +92,6 @@ GEM simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) stripe (13.3.0) - unicode-display_width (2.6.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -158,10 +125,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) stripe diff --git a/gemfiles/ruby_3.1_stripe_min.gemfile b/gemfiles/ruby_3.1_stripe_min.gemfile index aa082ccb652..2e58c1c1a02 100644 --- a/gemfiles/ruby_3.1_stripe_min.gemfile +++ b/gemfiles/ruby_3.1_stripe_min.gemfile @@ -22,10 +22,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.1_stripe_min.gemfile.lock b/gemfiles/ruby_3.1_stripe_min.gemfile.lock index 820ce2199d0..74afdd62805 100644 --- a/gemfiles/ruby_3.1_stripe_min.gemfile.lock +++ b/gemfiles/ruby_3.1_stripe_min.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.14.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -37,7 +36,6 @@ GEM google-protobuf (3.25.5-aarch64-linux) google-protobuf (3.25.5-x86_64-linux) hashdiff (1.1.1) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -50,10 +48,6 @@ GEM method_source (1.1.0) msgpack (1.7.5) os (1.1.4) - parallel (1.26.3) - parser (3.3.5.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -65,12 +59,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (6.0.1) - racc (1.8.1) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.7) rspec (3.13.0) rspec-core (~> 3.13.0) @@ -91,29 +82,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.3) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.22.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -124,7 +92,6 @@ GEM simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) stripe (5.15.0) - unicode-display_width (2.6.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -158,10 +125,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) stripe (= 5.15.0) diff --git a/gemfiles/ruby_3.2_activesupport.gemfile b/gemfiles/ruby_3.2_activesupport.gemfile index cd781e2f211..485d3740f23 100644 --- a/gemfiles/ruby_3.2_activesupport.gemfile +++ b/gemfiles/ruby_3.2_activesupport.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.2_activesupport.gemfile.lock b/gemfiles/ruby_3.2_activesupport.gemfile.lock index 738d07fb99d..a29003e80c0 100644 --- a/gemfiles/ruby_3.2_activesupport.gemfile.lock +++ b/gemfiles/ruby_3.2_activesupport.gemfile.lock @@ -36,7 +36,6 @@ GEM minitest (>= 5.1) tzinfo (~> 2.0) addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.12.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -88,7 +87,6 @@ GEM hashdiff (1.0.1) i18n (1.14.1) concurrent-ruby (~> 1.0) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) jsonapi-renderer (0.2.2) @@ -121,10 +119,6 @@ GEM nokogiri (1.15.4-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -155,7 +149,6 @@ GEM rake (>= 12.2) thor (~> 1.0) zeitwerk (~> 2.5) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake @@ -163,7 +156,6 @@ GEM ffi (~> 1.15) mini_portile2 (~> 2.6) rake (> 12) - regexp_parser (2.8.1) request_store (1.5.1) rack (>= 1.4) rexml (3.2.8) @@ -187,31 +179,8 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.0) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-kafka (1.5.0) digest-crc - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) simplecov (0.21.2) docile (~> 1.1) @@ -226,7 +195,6 @@ GEM thor (1.2.2) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -267,10 +235,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) ruby-kafka (>= 0.7.10) simplecov simplecov-cobertura (~> 2.1.0) diff --git a/gemfiles/ruby_3.2_aws.gemfile b/gemfiles/ruby_3.2_aws.gemfile index 68d1007828f..be6c26e7a4d 100644 --- a/gemfiles/ruby_3.2_aws.gemfile +++ b/gemfiles/ruby_3.2_aws.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.2_aws.gemfile.lock b/gemfiles/ruby_3.2_aws.gemfile.lock index fd8f2e26f4f..18635161389 100644 --- a/gemfiles/ruby_3.2_aws.gemfile.lock +++ b/gemfiles/ruby_3.2_aws.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) aws-eventstream (1.2.0) aws-partitions (1.813.0) aws-sdk (3.1.0) @@ -1455,7 +1454,6 @@ GEM google-protobuf (3.24.2-x86_64-linux) hashdiff (1.0.1) jmespath (1.6.2) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -1468,10 +1466,6 @@ GEM method_source (1.0.0) msgpack (1.7.5) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -1479,12 +1473,9 @@ GEM pry-stack_explorer (0.6.1) binding_of_caller (~> 1.0) pry (~> 0.13) - racc (1.7.1) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -1506,29 +1497,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.0) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) shoryuken (6.0.0) aws-sdk-core (>= 2) concurrent-ruby @@ -1544,7 +1512,6 @@ GEM simplecov_json_formatter (0.1.4) strscan (3.1.0) thor (1.2.2) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -1578,10 +1545,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) shoryuken simplecov simplecov-cobertura (~> 2.1.0) diff --git a/gemfiles/ruby_3.2_contrib.gemfile b/gemfiles/ruby_3.2_contrib.gemfile index 6dab61251d9..07d57a70775 100644 --- a/gemfiles/ruby_3.2_contrib.gemfile +++ b/gemfiles/ruby_3.2_contrib.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.2_contrib.gemfile.lock b/gemfiles/ruby_3.2_contrib.gemfile.lock index 34b58394d1f..0f652e9bd8f 100644 --- a/gemfiles/ruby_3.2_contrib.gemfile.lock +++ b/gemfiles/ruby_3.2_contrib.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.4.0) amq-protocol (2.3.2) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -48,7 +47,6 @@ GEM google-protobuf (~> 3.21) googleapis-common-protos-types (~> 1.0) hashdiff (1.0.1) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -67,9 +65,6 @@ GEM mustermann (3.0.0) ruby2_keywords (~> 0.0.1) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -83,7 +78,6 @@ GEM rack rack-test (2.1.0) rack (>= 1.3) - rainbow (3.1.1) rake (12.3.3) rake-compiler (1.2.1) rake @@ -93,7 +87,6 @@ GEM connection_pool redis-namespace (1.10.0) redis (>= 4) - regexp_parser (2.8.1) resque (2.4.0) mono_logger (~> 1.0) multi_json (~> 1.0) @@ -122,29 +115,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) semantic_logger (4.12.0) concurrent-ruby (~> 1.0) @@ -185,7 +155,6 @@ GEM concurrent-ruby (~> 1.0) thor (1.2.1) tilt (2.1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -225,10 +194,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) semantic_logger (~> 4.0) sidekiq (~> 7) simplecov diff --git a/gemfiles/ruby_3.2_contrib_old.gemfile b/gemfiles/ruby_3.2_contrib_old.gemfile index a80fa0f9abb..ae3bba41c9e 100644 --- a/gemfiles/ruby_3.2_contrib_old.gemfile +++ b/gemfiles/ruby_3.2_contrib_old.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.2_contrib_old.gemfile.lock b/gemfiles/ruby_3.2_contrib_old.gemfile.lock index 4e51d3c0321..94365bca049 100644 --- a/gemfiles/ruby_3.2_contrib_old.gemfile.lock +++ b/gemfiles/ruby_3.2_contrib_old.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) atomic (1.1.101) avl_tree (1.2.1) atomic (~> 1.1) @@ -44,7 +43,6 @@ GEM google-protobuf (3.22.0-x86_64-linux) hashdiff (1.0.1) hitimes (1.3.1) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -64,9 +62,6 @@ GEM mustermann (1.1.2) ruby2_keywords (~> 0.0.1) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pimpmychangelog (0.1.3) presto-client (0.6.6) faraday (~> 0.12) @@ -91,12 +86,10 @@ GEM rack (2.2.6.2) rack-protection (2.0.8.1) rack - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake redis (3.3.5) - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -118,29 +111,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) rusage (0.2.0) sentry-raven (0.15.6) @@ -167,7 +137,6 @@ GEM rack (>= 1, < 3) thor (0.19.4) tilt (2.1.0) - unicode-display_width (2.4.2) vegas (0.1.11) rack (>= 1.0.0) warning (1.3.0) @@ -205,10 +174,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.2_core_old.gemfile b/gemfiles/ruby_3.2_core_old.gemfile index d55b982d4ab..891044671de 100644 --- a/gemfiles/ruby_3.2_core_old.gemfile +++ b/gemfiles/ruby_3.2_core_old.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.2_core_old.gemfile.lock b/gemfiles/ruby_3.2_core_old.gemfile.lock index f8c3d16aa48..1ac0a35c98d 100644 --- a/gemfiles/ruby_3.2_core_old.gemfile.lock +++ b/gemfiles/ruby_3.2_core_old.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -33,7 +32,6 @@ GEM google-protobuf (3.22.0) google-protobuf (3.22.0-x86_64-linux) hashdiff (1.0.1) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -46,9 +44,6 @@ GEM method_source (1.0.0) msgpack (1.7.5) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -56,11 +51,9 @@ GEM pry-stack_explorer (0.6.1) binding_of_caller (~> 1.0) pry (~> 0.13) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -82,29 +75,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -115,7 +85,6 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) strscan (3.1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -148,10 +117,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.2_elasticsearch_7.gemfile b/gemfiles/ruby_3.2_elasticsearch_7.gemfile index 09efed3a336..27b8e6b434b 100644 --- a/gemfiles/ruby_3.2_elasticsearch_7.gemfile +++ b/gemfiles/ruby_3.2_elasticsearch_7.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.2_elasticsearch_7.gemfile.lock b/gemfiles/ruby_3.2_elasticsearch_7.gemfile.lock index 4d5db707a82..9d470a966b1 100644 --- a/gemfiles/ruby_3.2_elasticsearch_7.gemfile.lock +++ b/gemfiles/ruby_3.2_elasticsearch_7.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.5) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.12.0) benchmark-memory (0.1.2) @@ -67,10 +66,6 @@ GEM net-http (0.6.0) uri os (1.1.4) - parallel (1.23.0) - parser (3.2.2.4) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -79,12 +74,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (5.0.3) - racc (1.7.1) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.2) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -106,29 +98,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -139,7 +108,6 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) strscan (3.1.0) - unicode-display_width (2.5.0) uri (1.0.2) warning (1.3.0) webmock (3.19.1) @@ -174,10 +142,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.2_elasticsearch_8.gemfile b/gemfiles/ruby_3.2_elasticsearch_8.gemfile index 449ac43f845..aed5ebc4c02 100644 --- a/gemfiles/ruby_3.2_elasticsearch_8.gemfile +++ b/gemfiles/ruby_3.2_elasticsearch_8.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.2_elasticsearch_8.gemfile.lock b/gemfiles/ruby_3.2_elasticsearch_8.gemfile.lock index 9fe903a93d6..2d14a3cb734 100644 --- a/gemfiles/ruby_3.2_elasticsearch_8.gemfile.lock +++ b/gemfiles/ruby_3.2_elasticsearch_8.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.5) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) benchmark-ips (2.12.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -65,10 +64,6 @@ GEM net-http (0.6.0) uri os (1.1.4) - parallel (1.23.0) - parser (3.2.2.4) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -77,12 +72,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (5.0.3) - racc (1.7.1) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.2) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -104,29 +96,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -137,7 +106,6 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) strscan (3.1.0) - unicode-display_width (2.5.0) uri (1.0.2) warning (1.3.0) webmock (3.19.1) @@ -172,10 +140,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.2_elasticsearch_latest.gemfile b/gemfiles/ruby_3.2_elasticsearch_latest.gemfile index f9405972c8a..badcfc73421 100644 --- a/gemfiles/ruby_3.2_elasticsearch_latest.gemfile +++ b/gemfiles/ruby_3.2_elasticsearch_latest.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.2_elasticsearch_latest.gemfile.lock b/gemfiles/ruby_3.2_elasticsearch_latest.gemfile.lock index 2f8317d4eac..dfdc838555b 100644 --- a/gemfiles/ruby_3.2_elasticsearch_latest.gemfile.lock +++ b/gemfiles/ruby_3.2_elasticsearch_latest.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.14.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -67,10 +66,6 @@ GEM net-http (0.6.0) uri os (1.1.4) - parallel (1.26.3) - parser (3.3.5.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -79,12 +74,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (6.0.1) - racc (1.8.1) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.7) rspec (3.13.0) rspec-core (~> 3.13.0) @@ -105,29 +97,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.3) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.22.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -137,7 +106,6 @@ GEM simplecov (~> 0.19) simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) - unicode-display_width (2.6.0) uri (1.0.2) warning (1.4.0) webmock (3.23.1) @@ -172,10 +140,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.2_graphql_1.13.gemfile b/gemfiles/ruby_3.2_graphql_1.13.gemfile index edb5898b51b..9d142953a86 100644 --- a/gemfiles/ruby_3.2_graphql_1.13.gemfile +++ b/gemfiles/ruby_3.2_graphql_1.13.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.2_graphql_1.13.gemfile.lock b/gemfiles/ruby_3.2_graphql_1.13.gemfile.lock index c04c11d02d7..132e3b1c694 100644 --- a/gemfiles/ruby_3.2_graphql_1.13.gemfile.lock +++ b/gemfiles/ruby_3.2_graphql_1.13.gemfile.lock @@ -71,7 +71,6 @@ GEM zeitwerk (~> 2.3) addressable (2.8.6) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) benchmark-ips (2.13.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -102,7 +101,6 @@ GEM hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) - json (2.7.1) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -145,10 +143,6 @@ GEM nokogiri (1.15.5-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.24.0) - parser (3.3.0.5) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -189,11 +183,9 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.1.0) rake-compiler (1.2.6) rake - regexp_parser (2.9.0) request_store (1.5.1) rack (>= 1.4) rexml (3.2.8) @@ -217,29 +209,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.30.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.20.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.20.2) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.30.0, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -261,7 +230,6 @@ GEM timeout (0.4.1) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.5.0) warning (1.3.0) webmock (3.19.1) addressable (>= 2.8.0) @@ -301,10 +269,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_3.2_graphql_2.0.gemfile b/gemfiles/ruby_3.2_graphql_2.0.gemfile index f1eb85dfcd0..d066b71b009 100644 --- a/gemfiles/ruby_3.2_graphql_2.0.gemfile +++ b/gemfiles/ruby_3.2_graphql_2.0.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.2_graphql_2.0.gemfile.lock b/gemfiles/ruby_3.2_graphql_2.0.gemfile.lock index 78f50987089..ee3d929d020 100644 --- a/gemfiles/ruby_3.2_graphql_2.0.gemfile.lock +++ b/gemfiles/ruby_3.2_graphql_2.0.gemfile.lock @@ -71,7 +71,6 @@ GEM zeitwerk (~> 2.3) addressable (2.8.6) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) benchmark-ips (2.13.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -102,7 +101,6 @@ GEM hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) - json (2.7.1) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -145,10 +143,6 @@ GEM nokogiri (1.15.5-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.24.0) - parser (3.3.0.5) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -189,11 +183,9 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.1.0) rake-compiler (1.2.6) rake - regexp_parser (2.9.0) request_store (1.5.1) rack (>= 1.4) rexml (3.2.8) @@ -217,29 +209,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.30.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.20.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.20.2) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.30.0, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -261,7 +230,6 @@ GEM timeout (0.4.1) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.5.0) warning (1.3.0) webmock (3.19.1) addressable (>= 2.8.0) @@ -301,10 +269,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_3.2_graphql_2.1.gemfile b/gemfiles/ruby_3.2_graphql_2.1.gemfile index 4b799796f7e..0f2e84132b7 100644 --- a/gemfiles/ruby_3.2_graphql_2.1.gemfile +++ b/gemfiles/ruby_3.2_graphql_2.1.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.2_graphql_2.1.gemfile.lock b/gemfiles/ruby_3.2_graphql_2.1.gemfile.lock index 441d3c7ad9c..d8f7bec7884 100644 --- a/gemfiles/ruby_3.2_graphql_2.1.gemfile.lock +++ b/gemfiles/ruby_3.2_graphql_2.1.gemfile.lock @@ -71,7 +71,6 @@ GEM zeitwerk (~> 2.3) addressable (2.8.6) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) benchmark-ips (2.13.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -103,7 +102,6 @@ GEM hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) - json (2.7.1) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -146,10 +144,6 @@ GEM nokogiri (1.15.5-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.24.0) - parser (3.3.0.5) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -190,11 +184,9 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.1.0) rake-compiler (1.2.6) rake - regexp_parser (2.9.0) request_store (1.5.1) rack (>= 1.4) rexml (3.2.8) @@ -218,29 +210,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.30.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.20.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.20.2) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.30.0, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -262,7 +231,6 @@ GEM timeout (0.4.1) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.5.0) warning (1.3.0) webmock (3.19.1) addressable (>= 2.8.0) @@ -302,10 +270,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_3.2_graphql_2.2.gemfile b/gemfiles/ruby_3.2_graphql_2.2.gemfile index a9364961cd4..5da99d6a19f 100644 --- a/gemfiles/ruby_3.2_graphql_2.2.gemfile +++ b/gemfiles/ruby_3.2_graphql_2.2.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.2_graphql_2.2.gemfile.lock b/gemfiles/ruby_3.2_graphql_2.2.gemfile.lock index 191e5edf623..9e5067074d3 100644 --- a/gemfiles/ruby_3.2_graphql_2.2.gemfile.lock +++ b/gemfiles/ruby_3.2_graphql_2.2.gemfile.lock @@ -71,7 +71,6 @@ GEM zeitwerk (~> 2.3) addressable (2.8.6) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) benchmark-ips (2.13.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -103,7 +102,6 @@ GEM hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) - json (2.7.1) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -146,10 +144,6 @@ GEM nokogiri (1.15.5-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.24.0) - parser (3.3.0.5) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -190,11 +184,9 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.1.0) rake-compiler (1.2.6) rake - regexp_parser (2.9.0) request_store (1.5.1) rack (>= 1.4) rexml (3.2.8) @@ -218,29 +210,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.30.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.20.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.20.2) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.30.0, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -262,7 +231,6 @@ GEM timeout (0.4.1) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.5.0) warning (1.3.0) webmock (3.19.1) addressable (>= 2.8.0) @@ -302,10 +270,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_3.2_graphql_2.3.gemfile b/gemfiles/ruby_3.2_graphql_2.3.gemfile index f667a0f732b..b81a2ff54c4 100644 --- a/gemfiles/ruby_3.2_graphql_2.3.gemfile +++ b/gemfiles/ruby_3.2_graphql_2.3.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.2_graphql_2.3.gemfile.lock b/gemfiles/ruby_3.2_graphql_2.3.gemfile.lock index 3691317f575..1e1f8252a2b 100644 --- a/gemfiles/ruby_3.2_graphql_2.3.gemfile.lock +++ b/gemfiles/ruby_3.2_graphql_2.3.gemfile.lock @@ -71,7 +71,6 @@ GEM zeitwerk (~> 2.3) addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -106,7 +105,6 @@ GEM hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -149,10 +147,6 @@ GEM nokogiri (1.16.6-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.25.1) - parser (3.3.3.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -193,11 +187,9 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) request_store (1.7.0) rack (>= 1.4) rexml (3.3.1) @@ -221,29 +213,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.31.3) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -266,7 +235,6 @@ GEM timeout (0.4.1) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -306,10 +274,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_3.2_http.gemfile b/gemfiles/ruby_3.2_http.gemfile index dc32cc47097..e6b82f3cce1 100644 --- a/gemfiles/ruby_3.2_http.gemfile +++ b/gemfiles/ruby_3.2_http.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.2_http.gemfile.lock b/gemfiles/ruby_3.2_http.gemfile.lock index 7cb0a1918c4..8ae54597405 100644 --- a/gemfiles/ruby_3.2_http.gemfile.lock +++ b/gemfiles/ruby_3.2_http.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.12.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -55,7 +54,6 @@ GEM domain_name (~> 0.5) http-form_data (2.3.0) httpclient (2.8.3) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -75,10 +73,6 @@ GEM msgpack (1.7.5) netrc (0.11.0) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -86,12 +80,9 @@ GEM pry-stack_explorer (0.6.1) binding_of_caller (~> 1.0) pry (~> 0.13) - racc (1.7.1) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.1) rest-client (2.1.0) http-accept (>= 1.7.0, < 2.0) http-cookie (>= 1.0.2, < 2.0) @@ -118,29 +109,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.0) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) simplecov (0.21.2) docile (~> 1.1) @@ -157,7 +125,6 @@ GEM unf (0.1.4) unf_ext unf_ext (0.0.8.2) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -196,10 +163,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) typhoeus diff --git a/gemfiles/ruby_3.2_opensearch_2.gemfile b/gemfiles/ruby_3.2_opensearch_2.gemfile index de901141719..c45d76e4e2b 100644 --- a/gemfiles/ruby_3.2_opensearch_2.gemfile +++ b/gemfiles/ruby_3.2_opensearch_2.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.2_opensearch_2.gemfile.lock b/gemfiles/ruby_3.2_opensearch_2.gemfile.lock index 986fc480a5f..95805bef67d 100644 --- a/gemfiles/ruby_3.2_opensearch_2.gemfile.lock +++ b/gemfiles/ruby_3.2_opensearch_2.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.5) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) benchmark-ips (2.12.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -65,10 +64,6 @@ GEM faraday (>= 1.0, < 3) multi_json os (1.1.4) - parallel (1.23.0) - parser (3.2.2.4) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -77,12 +72,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (5.0.3) - racc (1.7.1) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -104,29 +96,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -137,7 +106,6 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) strscan (3.1.0) - unicode-display_width (2.5.0) uri (1.0.2) warning (1.3.0) webmock (3.19.1) @@ -172,10 +140,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.2_opensearch_3.gemfile b/gemfiles/ruby_3.2_opensearch_3.gemfile index ea9d740c6a2..2185f8aafc9 100644 --- a/gemfiles/ruby_3.2_opensearch_3.gemfile +++ b/gemfiles/ruby_3.2_opensearch_3.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.2_opensearch_3.gemfile.lock b/gemfiles/ruby_3.2_opensearch_3.gemfile.lock index 3549607c9ed..5cbea336efe 100644 --- a/gemfiles/ruby_3.2_opensearch_3.gemfile.lock +++ b/gemfiles/ruby_3.2_opensearch_3.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.5) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) benchmark-ips (2.12.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -60,10 +59,6 @@ GEM faraday (>= 1.0, < 3) multi_json (>= 1.0) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.4) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -72,12 +67,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (5.0.3) - racc (1.7.1) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -99,29 +91,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -132,7 +101,6 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) strscan (3.1.0) - unicode-display_width (2.5.0) uri (1.0.2) warning (1.3.0) webmock (3.19.1) @@ -167,10 +135,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.2_opensearch_latest.gemfile b/gemfiles/ruby_3.2_opensearch_latest.gemfile index e7ed9c1100f..f723c9243e7 100644 --- a/gemfiles/ruby_3.2_opensearch_latest.gemfile +++ b/gemfiles/ruby_3.2_opensearch_latest.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.2_opensearch_latest.gemfile.lock b/gemfiles/ruby_3.2_opensearch_latest.gemfile.lock index ec15305f3e3..7c38ac74612 100644 --- a/gemfiles/ruby_3.2_opensearch_latest.gemfile.lock +++ b/gemfiles/ruby_3.2_opensearch_latest.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.14.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -62,10 +61,6 @@ GEM faraday (>= 1.0, < 3) multi_json (>= 1.0) os (1.1.4) - parallel (1.26.3) - parser (3.3.5.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -74,12 +69,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (6.0.1) - racc (1.8.1) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.7) rspec (3.13.0) rspec-core (~> 3.13.0) @@ -100,29 +92,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.3) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.22.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -132,7 +101,6 @@ GEM simplecov (~> 0.19) simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) - unicode-display_width (2.6.0) uri (1.0.2) warning (1.4.0) webmock (3.23.1) @@ -167,10 +135,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.2_opentelemetry.gemfile b/gemfiles/ruby_3.2_opentelemetry.gemfile index b0ab8f1f286..be1276e89ac 100644 --- a/gemfiles/ruby_3.2_opentelemetry.gemfile +++ b/gemfiles/ruby_3.2_opentelemetry.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.2_opentelemetry.gemfile.lock b/gemfiles/ruby_3.2_opentelemetry.gemfile.lock index bf64137f2b2..7faeda4c711 100644 --- a/gemfiles/ruby_3.2_opentelemetry.gemfile.lock +++ b/gemfiles/ruby_3.2_opentelemetry.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -33,7 +32,6 @@ GEM google-protobuf (3.22.0) google-protobuf (3.22.0-x86_64-linux) hashdiff (1.0.1) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -58,9 +56,6 @@ GEM opentelemetry-semantic_conventions (1.8.0) opentelemetry-api (~> 1.0) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -68,11 +63,9 @@ GEM pry-stack_explorer (0.6.1) binding_of_caller (~> 1.0) pry (~> 0.13) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -94,29 +87,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -127,7 +97,6 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) strscan (3.1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -161,10 +130,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.2_opentelemetry_otlp.gemfile b/gemfiles/ruby_3.2_opentelemetry_otlp.gemfile index 9843af97d99..b99812d76bd 100644 --- a/gemfiles/ruby_3.2_opentelemetry_otlp.gemfile +++ b/gemfiles/ruby_3.2_opentelemetry_otlp.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.2_opentelemetry_otlp.gemfile.lock b/gemfiles/ruby_3.2_opentelemetry_otlp.gemfile.lock index 003e96fdbcc..aa2f6a66b22 100644 --- a/gemfiles/ruby_3.2_opentelemetry_otlp.gemfile.lock +++ b/gemfiles/ruby_3.2_opentelemetry_otlp.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.6) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) benchmark-ips (2.13.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -38,7 +37,6 @@ GEM googleapis-common-protos-types (1.13.0) google-protobuf (~> 3.18) hashdiff (1.1.0) - json (2.7.1) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -70,10 +68,6 @@ GEM opentelemetry-semantic_conventions (1.10.0) opentelemetry-api (~> 1.0) os (1.1.4) - parallel (1.24.0) - parser (3.3.0.5) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -82,12 +76,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (5.0.4) - racc (1.7.3) - rainbow (3.1.1) rake (13.1.0) rake-compiler (1.2.7) rake - regexp_parser (2.9.0) rexml (3.3.8) rspec (3.13.0) rspec-core (~> 3.13.0) @@ -108,29 +99,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.31.1) - parser (>= 3.3.0.4) - rubocop-capybara (2.20.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.20.2) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.30.0, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -140,7 +108,6 @@ GEM simplecov (~> 0.19) simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) - unicode-display_width (2.5.0) warning (1.3.0) webmock (3.23.0) addressable (>= 2.8.0) @@ -175,10 +142,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.2_rack_1.gemfile b/gemfiles/ruby_3.2_rack_1.gemfile index fc8a53898b2..94d774655b6 100644 --- a/gemfiles/ruby_3.2_rack_1.gemfile +++ b/gemfiles/ruby_3.2_rack_1.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.2_rack_1.gemfile.lock b/gemfiles/ruby_3.2_rack_1.gemfile.lock index ac39b775d17..3d534cdfb69 100644 --- a/gemfiles/ruby_3.2_rack_1.gemfile.lock +++ b/gemfiles/ruby_3.2_rack_1.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.12.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -33,7 +32,6 @@ GEM google-protobuf (3.24.3-aarch64-linux) google-protobuf (3.24.3-x86_64-linux) hashdiff (1.0.1) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -46,10 +44,6 @@ GEM method_source (1.0.0) msgpack (1.7.5) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -57,17 +51,14 @@ GEM pry-stack_explorer (0.6.1) binding_of_caller (~> 1.0) pry (~> 0.13) - racc (1.7.1) rack (1.6.13) rack-contrib (1.8.0) rack (~> 1.4) rack-test (2.1.0) rack (>= 1.3) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -89,29 +80,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.0) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -122,7 +90,6 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) strscan (3.1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -158,10 +125,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.2_rack_2.gemfile b/gemfiles/ruby_3.2_rack_2.gemfile index 5f0e00d9f29..2590776110e 100644 --- a/gemfiles/ruby_3.2_rack_2.gemfile +++ b/gemfiles/ruby_3.2_rack_2.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.2_rack_2.gemfile.lock b/gemfiles/ruby_3.2_rack_2.gemfile.lock index f8387625633..89209a88fc0 100644 --- a/gemfiles/ruby_3.2_rack_2.gemfile.lock +++ b/gemfiles/ruby_3.2_rack_2.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.12.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -33,7 +32,6 @@ GEM google-protobuf (3.24.3-aarch64-linux) google-protobuf (3.24.3-x86_64-linux) hashdiff (1.0.1) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -46,10 +44,6 @@ GEM method_source (1.0.0) msgpack (1.7.5) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -57,17 +51,14 @@ GEM pry-stack_explorer (0.6.1) binding_of_caller (~> 1.0) pry (~> 0.13) - racc (1.7.1) rack (2.2.10) rack-contrib (2.3.0) rack (~> 2.0) rack-test (2.1.0) rack (>= 1.3) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -89,29 +80,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.0) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -122,7 +90,6 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) strscan (3.1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -158,10 +125,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.2_rack_3.gemfile b/gemfiles/ruby_3.2_rack_3.gemfile index a629b8caecb..6bd7ef3ab7f 100644 --- a/gemfiles/ruby_3.2_rack_3.gemfile +++ b/gemfiles/ruby_3.2_rack_3.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.2_rack_3.gemfile.lock b/gemfiles/ruby_3.2_rack_3.gemfile.lock index e05b975097a..2e28842761d 100644 --- a/gemfiles/ruby_3.2_rack_3.gemfile.lock +++ b/gemfiles/ruby_3.2_rack_3.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.12.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -33,7 +32,6 @@ GEM google-protobuf (3.24.3-aarch64-linux) google-protobuf (3.24.3-x86_64-linux) hashdiff (1.0.1) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -46,10 +44,6 @@ GEM method_source (1.0.0) msgpack (1.7.5) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -57,17 +51,14 @@ GEM pry-stack_explorer (0.6.1) binding_of_caller (~> 1.0) pry (~> 0.13) - racc (1.7.1) rack (3.1.8) rack-contrib (1.2.0) rack (>= 0.9.1) rack-test (2.1.0) rack (>= 1.3) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -89,29 +80,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.0) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -122,7 +90,6 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) strscan (3.1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -158,10 +125,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.2_rack_latest.gemfile b/gemfiles/ruby_3.2_rack_latest.gemfile index ec624ba27ec..7f26c518698 100644 --- a/gemfiles/ruby_3.2_rack_latest.gemfile +++ b/gemfiles/ruby_3.2_rack_latest.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.2_rack_latest.gemfile.lock b/gemfiles/ruby_3.2_rack_latest.gemfile.lock index c7ed7113fd6..91d2940d5cb 100644 --- a/gemfiles/ruby_3.2_rack_latest.gemfile.lock +++ b/gemfiles/ruby_3.2_rack_latest.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.14.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -36,7 +35,6 @@ GEM google-protobuf (3.25.5-aarch64-linux) google-protobuf (3.25.5-x86_64-linux) hashdiff (1.1.1) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -49,10 +47,6 @@ GEM method_source (1.1.0) msgpack (1.7.5) os (1.1.4) - parallel (1.26.3) - parser (3.3.5.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -61,17 +55,14 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (6.0.1) - racc (1.8.1) rack (3.1.8) rack-contrib (2.5.0) rack (< 4) rack-test (2.1.0) rack (>= 1.3) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.7) rspec (3.13.0) rspec-core (~> 3.13.0) @@ -92,29 +83,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.3) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.22.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -124,7 +92,6 @@ GEM simplecov (~> 0.19) simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) - unicode-display_width (2.6.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -160,10 +127,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.2_rails61_mysql2.gemfile b/gemfiles/ruby_3.2_rails61_mysql2.gemfile index 3a88c449ac4..d0a43aab470 100644 --- a/gemfiles/ruby_3.2_rails61_mysql2.gemfile +++ b/gemfiles/ruby_3.2_rails61_mysql2.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.2_rails61_mysql2.gemfile.lock b/gemfiles/ruby_3.2_rails61_mysql2.gemfile.lock index 54727e77877..d369989042c 100644 --- a/gemfiles/ruby_3.2_rails61_mysql2.gemfile.lock +++ b/gemfiles/ruby_3.2_rails61_mysql2.gemfile.lock @@ -70,7 +70,6 @@ GEM tzinfo (~> 2.0) zeitwerk (~> 2.3) addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -100,7 +99,6 @@ GEM hashdiff (1.0.1) i18n (1.12.0) concurrent-ruby (~> 1.0) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -144,9 +142,6 @@ GEM nokogiri (1.14.2-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -184,11 +179,9 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake - regexp_parser (2.8.1) request_store (1.5.1) rack (>= 1.4) rexml (3.2.8) @@ -212,29 +205,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -256,7 +226,6 @@ GEM timeout (0.3.2) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -297,10 +266,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_3.2_rails61_postgres.gemfile b/gemfiles/ruby_3.2_rails61_postgres.gemfile index e83b417adff..17811ef3980 100644 --- a/gemfiles/ruby_3.2_rails61_postgres.gemfile +++ b/gemfiles/ruby_3.2_rails61_postgres.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.2_rails61_postgres.gemfile.lock b/gemfiles/ruby_3.2_rails61_postgres.gemfile.lock index 3d946964139..1b87792b1fb 100644 --- a/gemfiles/ruby_3.2_rails61_postgres.gemfile.lock +++ b/gemfiles/ruby_3.2_rails61_postgres.gemfile.lock @@ -70,7 +70,6 @@ GEM tzinfo (~> 2.0) zeitwerk (~> 2.3) addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -100,7 +99,6 @@ GEM hashdiff (1.0.1) i18n (1.12.0) concurrent-ruby (~> 1.0) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -143,9 +141,6 @@ GEM nokogiri (1.14.2-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pg (1.4.6) pimpmychangelog (0.1.3) pry (0.14.2) @@ -184,11 +179,9 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake - regexp_parser (2.8.1) request_store (1.5.1) rack (>= 1.4) rexml (3.2.8) @@ -212,29 +205,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -256,7 +226,6 @@ GEM timeout (0.3.2) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -297,10 +266,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_3.2_rails61_postgres_redis.gemfile b/gemfiles/ruby_3.2_rails61_postgres_redis.gemfile index da07d92f49d..071f6c4d2c7 100644 --- a/gemfiles/ruby_3.2_rails61_postgres_redis.gemfile +++ b/gemfiles/ruby_3.2_rails61_postgres_redis.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.2_rails61_postgres_redis.gemfile.lock b/gemfiles/ruby_3.2_rails61_postgres_redis.gemfile.lock index 8f19a28ea3b..1547a6dd32f 100644 --- a/gemfiles/ruby_3.2_rails61_postgres_redis.gemfile.lock +++ b/gemfiles/ruby_3.2_rails61_postgres_redis.gemfile.lock @@ -70,7 +70,6 @@ GEM tzinfo (~> 2.0) zeitwerk (~> 2.3) addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -100,7 +99,6 @@ GEM hashdiff (1.0.1) i18n (1.12.0) concurrent-ruby (~> 1.0) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -143,9 +141,6 @@ GEM nokogiri (1.14.2-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pg (1.4.6) pimpmychangelog (0.1.3) pry (0.14.2) @@ -184,12 +179,10 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake redis (4.8.1) - regexp_parser (2.8.1) request_store (1.5.1) rack (>= 1.4) rexml (3.2.8) @@ -213,29 +206,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -257,7 +227,6 @@ GEM timeout (0.3.2) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -299,10 +268,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_3.2_rails61_postgres_sidekiq.gemfile b/gemfiles/ruby_3.2_rails61_postgres_sidekiq.gemfile index b65755b2159..98601cf69b3 100644 --- a/gemfiles/ruby_3.2_rails61_postgres_sidekiq.gemfile +++ b/gemfiles/ruby_3.2_rails61_postgres_sidekiq.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.2_rails61_postgres_sidekiq.gemfile.lock b/gemfiles/ruby_3.2_rails61_postgres_sidekiq.gemfile.lock index 733a999ed54..94b4088e603 100644 --- a/gemfiles/ruby_3.2_rails61_postgres_sidekiq.gemfile.lock +++ b/gemfiles/ruby_3.2_rails61_postgres_sidekiq.gemfile.lock @@ -70,7 +70,6 @@ GEM tzinfo (~> 2.0) zeitwerk (~> 2.3) addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -101,7 +100,6 @@ GEM hashdiff (1.0.1) i18n (1.12.0) concurrent-ruby (~> 1.0) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -144,9 +142,6 @@ GEM nokogiri (1.14.2-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pg (1.4.6) pimpmychangelog (0.1.3) pry (0.14.2) @@ -189,13 +184,11 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake redis-client (0.12.2) connection_pool - regexp_parser (2.8.1) request_store (1.5.1) rack (>= 1.4) rexml (3.2.8) @@ -219,29 +212,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) semantic_logger (4.12.0) concurrent-ruby (~> 1.0) sidekiq (7.0.6) @@ -270,7 +240,6 @@ GEM timeout (0.3.2) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -312,10 +281,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) sidekiq (>= 6.1.2) simplecov simplecov-cobertura (~> 2.1.0) diff --git a/gemfiles/ruby_3.2_rails61_semantic_logger.gemfile b/gemfiles/ruby_3.2_rails61_semantic_logger.gemfile index 7f42665e2bf..532d5992925 100644 --- a/gemfiles/ruby_3.2_rails61_semantic_logger.gemfile +++ b/gemfiles/ruby_3.2_rails61_semantic_logger.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.2_rails61_semantic_logger.gemfile.lock b/gemfiles/ruby_3.2_rails61_semantic_logger.gemfile.lock index c34fba37f64..b057b5b0988 100644 --- a/gemfiles/ruby_3.2_rails61_semantic_logger.gemfile.lock +++ b/gemfiles/ruby_3.2_rails61_semantic_logger.gemfile.lock @@ -70,7 +70,6 @@ GEM tzinfo (~> 2.0) zeitwerk (~> 2.3) addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -100,7 +99,6 @@ GEM hashdiff (1.0.1) i18n (1.12.0) concurrent-ruby (~> 1.0) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -138,9 +136,6 @@ GEM nokogiri (1.14.2-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pg (1.4.6) pimpmychangelog (0.1.3) pry (0.14.2) @@ -183,11 +178,9 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -209,29 +202,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) semantic_logger (4.12.0) concurrent-ruby (~> 1.0) simplecov (0.21.2) @@ -255,7 +225,6 @@ GEM timeout (0.3.2) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -296,10 +265,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_3.2_rails61_trilogy.gemfile b/gemfiles/ruby_3.2_rails61_trilogy.gemfile index 286747986d4..483c5c6c05f 100644 --- a/gemfiles/ruby_3.2_rails61_trilogy.gemfile +++ b/gemfiles/ruby_3.2_rails61_trilogy.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.2_rails61_trilogy.gemfile.lock b/gemfiles/ruby_3.2_rails61_trilogy.gemfile.lock index 712eb0ff71f..d34a182cfad 100644 --- a/gemfiles/ruby_3.2_rails61_trilogy.gemfile.lock +++ b/gemfiles/ruby_3.2_rails61_trilogy.gemfile.lock @@ -74,7 +74,6 @@ GEM zeitwerk (~> 2.3) addressable (2.8.5) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) benchmark-ips (2.12.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -104,7 +103,6 @@ GEM hashdiff (1.0.1) i18n (1.14.1) concurrent-ruby (~> 1.0) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -147,10 +145,6 @@ GEM nokogiri (1.15.5-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.4) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -191,11 +185,9 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.1.0) rake-compiler (1.2.5) rake - regexp_parser (2.8.2) request_store (1.5.1) rack (>= 1.4) rexml (3.2.8) @@ -219,29 +211,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.30.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -264,7 +233,6 @@ GEM trilogy (2.6.0) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.5.0) warning (1.3.0) webmock (3.19.1) addressable (>= 2.8.0) @@ -305,10 +273,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_3.2_rails7.gemfile b/gemfiles/ruby_3.2_rails7.gemfile index a24b15ca518..6d0b2c3573b 100644 --- a/gemfiles/ruby_3.2_rails7.gemfile +++ b/gemfiles/ruby_3.2_rails7.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.2_rails7.gemfile.lock b/gemfiles/ruby_3.2_rails7.gemfile.lock index 8b0b8e0e309..08cb11a5ab7 100644 --- a/gemfiles/ruby_3.2_rails7.gemfile.lock +++ b/gemfiles/ruby_3.2_rails7.gemfile.lock @@ -77,7 +77,6 @@ GEM tzinfo (~> 2.0) addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.13.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -109,7 +108,6 @@ GEM hashdiff (1.1.1) i18n (1.14.5) concurrent-ruby (~> 1.0) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -147,10 +145,6 @@ GEM nokogiri (1.16.7-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.26.3) - parser (3.3.4.2) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -191,11 +185,9 @@ GEM rake (>= 12.2) thor (~> 1.0) zeitwerk (~> 2.5) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.6) strscan rspec (3.13.0) @@ -217,29 +209,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.1) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -254,7 +223,6 @@ GEM timeout (0.4.1) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -292,10 +260,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.2_rails71.gemfile b/gemfiles/ruby_3.2_rails71.gemfile index 006dafab72d..cd45bf1a819 100644 --- a/gemfiles/ruby_3.2_rails71.gemfile +++ b/gemfiles/ruby_3.2_rails71.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.2_rails71.gemfile.lock b/gemfiles/ruby_3.2_rails71.gemfile.lock index 943bd28c2dc..f2f457a8ff8 100644 --- a/gemfiles/ruby_3.2_rails71.gemfile.lock +++ b/gemfiles/ruby_3.2_rails71.gemfile.lock @@ -86,7 +86,6 @@ GEM tzinfo (~> 2.0) addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -125,7 +124,6 @@ GEM irb (1.14.0) rdoc (>= 4.0.0) reline (>= 0.4.2) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -164,10 +162,6 @@ GEM nokogiri (1.16.7-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.26.3) - parser (3.3.4.2) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -216,13 +210,11 @@ GEM rake (>= 12.2) thor (~> 1.0, >= 1.2.2) zeitwerk (~> 2.6) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake rdoc (6.7.0) psych (>= 4.0.0) - regexp_parser (2.9.2) reline (0.5.9) io-console (~> 0.5) rexml (3.3.6) @@ -246,29 +238,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.1) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -284,7 +253,6 @@ GEM timeout (0.4.1) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -322,10 +290,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.2_rails_old_redis.gemfile b/gemfiles/ruby_3.2_rails_old_redis.gemfile index acf6f6605fa..b581376aa12 100644 --- a/gemfiles/ruby_3.2_rails_old_redis.gemfile +++ b/gemfiles/ruby_3.2_rails_old_redis.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.2_redis_3.gemfile b/gemfiles/ruby_3.2_redis_3.gemfile index c7423cbe3f0..9ca41079749 100644 --- a/gemfiles/ruby_3.2_redis_3.gemfile +++ b/gemfiles/ruby_3.2_redis_3.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.2_redis_3.gemfile.lock b/gemfiles/ruby_3.2_redis_3.gemfile.lock index 50887964e5f..53480650ad3 100644 --- a/gemfiles/ruby_3.2_redis_3.gemfile.lock +++ b/gemfiles/ruby_3.2_redis_3.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -33,7 +32,6 @@ GEM google-protobuf (3.22.0) google-protobuf (3.22.0-x86_64-linux) hashdiff (1.0.1) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -46,9 +44,6 @@ GEM method_source (1.0.0) msgpack (1.7.5) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -56,12 +51,10 @@ GEM pry-stack_explorer (0.6.1) binding_of_caller (~> 1.0) pry (~> 0.13) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake redis (3.3.5) - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -83,29 +76,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -116,7 +86,6 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) strscan (3.1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -150,10 +119,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.2_redis_4.gemfile b/gemfiles/ruby_3.2_redis_4.gemfile index a80abdd50a9..99ce6f43e9b 100644 --- a/gemfiles/ruby_3.2_redis_4.gemfile +++ b/gemfiles/ruby_3.2_redis_4.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.2_redis_4.gemfile.lock b/gemfiles/ruby_3.2_redis_4.gemfile.lock index 9c320e1c8e6..404d6c81dc2 100644 --- a/gemfiles/ruby_3.2_redis_4.gemfile.lock +++ b/gemfiles/ruby_3.2_redis_4.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -33,7 +32,6 @@ GEM google-protobuf (3.22.0) google-protobuf (3.22.0-x86_64-linux) hashdiff (1.0.1) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -46,9 +44,6 @@ GEM method_source (1.0.0) msgpack (1.7.5) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -56,12 +51,10 @@ GEM pry-stack_explorer (0.6.1) binding_of_caller (~> 1.0) pry (~> 0.13) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake redis (4.8.1) - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -83,29 +76,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -116,7 +86,6 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) strscan (3.1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -150,10 +119,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.2_redis_5.gemfile b/gemfiles/ruby_3.2_redis_5.gemfile index b79c4d9d9b8..85b8db19aed 100644 --- a/gemfiles/ruby_3.2_redis_5.gemfile +++ b/gemfiles/ruby_3.2_redis_5.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.2_redis_5.gemfile.lock b/gemfiles/ruby_3.2_redis_5.gemfile.lock index 9c7cc0f1499..48fa8fe8083 100644 --- a/gemfiles/ruby_3.2_redis_5.gemfile.lock +++ b/gemfiles/ruby_3.2_redis_5.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -34,7 +33,6 @@ GEM google-protobuf (3.22.0) google-protobuf (3.22.0-x86_64-linux) hashdiff (1.0.1) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -47,9 +45,6 @@ GEM method_source (1.0.0) msgpack (1.7.5) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -57,7 +52,6 @@ GEM pry-stack_explorer (0.6.1) binding_of_caller (~> 1.0) pry (~> 0.13) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake @@ -65,7 +59,6 @@ GEM redis-client (>= 0.9.0) redis-client (0.12.2) connection_pool - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -87,29 +80,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -120,7 +90,6 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) strscan (3.1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -154,10 +123,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.2_relational_db.gemfile b/gemfiles/ruby_3.2_relational_db.gemfile index 4f3a9bba7b0..cd8d81351ea 100644 --- a/gemfiles/ruby_3.2_relational_db.gemfile +++ b/gemfiles/ruby_3.2_relational_db.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.2_relational_db.gemfile.lock b/gemfiles/ruby_3.2_relational_db.gemfile.lock index f3081597c6f..6f813b75aeb 100644 --- a/gemfiles/ruby_3.2_relational_db.gemfile.lock +++ b/gemfiles/ruby_3.2_relational_db.gemfile.lock @@ -21,7 +21,6 @@ GEM minitest (>= 5.1) tzinfo (~> 2.0) addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.12.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -51,7 +50,6 @@ GEM hashdiff (1.0.1) i18n (1.14.1) concurrent-ruby (~> 1.0) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -68,10 +66,6 @@ GEM msgpack (1.7.5) mysql2 (0.5.5) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pg (1.5.4) pimpmychangelog (0.1.3) pry (0.14.2) @@ -80,12 +74,9 @@ GEM pry-stack_explorer (0.6.1) binding_of_caller (~> 1.0) pry (~> 0.13) - racc (1.7.1) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -107,29 +98,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.0) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) sequel (5.83.1) bigdecimal simplecov (0.21.2) @@ -147,7 +115,6 @@ GEM trilogy (2.6.0) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -186,10 +153,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) sequel simplecov simplecov-cobertura (~> 2.1.0) diff --git a/gemfiles/ruby_3.2_resque2_redis3.gemfile b/gemfiles/ruby_3.2_resque2_redis3.gemfile index 25ae2f88533..9fee50f2c56 100644 --- a/gemfiles/ruby_3.2_resque2_redis3.gemfile +++ b/gemfiles/ruby_3.2_resque2_redis3.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.2_resque2_redis3.gemfile.lock b/gemfiles/ruby_3.2_resque2_redis3.gemfile.lock index 4a1a894e98e..66b835df334 100644 --- a/gemfiles/ruby_3.2_resque2_redis3.gemfile.lock +++ b/gemfiles/ruby_3.2_resque2_redis3.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -33,7 +32,6 @@ GEM google-protobuf (3.22.0) google-protobuf (3.22.0-x86_64-linux) hashdiff (1.0.1) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -50,9 +48,6 @@ GEM mustermann (3.0.0) ruby2_keywords (~> 0.0.1) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -63,14 +58,12 @@ GEM rack (2.2.6.2) rack-protection (3.0.5) rack - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake redis (3.3.5) redis-namespace (1.8.2) redis (>= 3.0.4) - regexp_parser (2.8.1) resque (2.4.0) mono_logger (~> 1.0) multi_json (~> 1.0) @@ -97,29 +90,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) simplecov (0.21.2) docile (~> 1.1) @@ -137,7 +107,6 @@ GEM tilt (~> 2.0) strscan (3.1.0) tilt (2.1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -172,10 +141,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.2_resque2_redis4.gemfile b/gemfiles/ruby_3.2_resque2_redis4.gemfile index cc1ae388517..aadef1821e8 100644 --- a/gemfiles/ruby_3.2_resque2_redis4.gemfile +++ b/gemfiles/ruby_3.2_resque2_redis4.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.2_resque2_redis4.gemfile.lock b/gemfiles/ruby_3.2_resque2_redis4.gemfile.lock index 8d127d5c9f2..dd948e3704e 100644 --- a/gemfiles/ruby_3.2_resque2_redis4.gemfile.lock +++ b/gemfiles/ruby_3.2_resque2_redis4.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.11.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -34,7 +33,6 @@ GEM google-protobuf (3.22.0) google-protobuf (3.22.0-x86_64-linux) hashdiff (1.0.1) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -51,9 +49,6 @@ GEM mustermann (3.0.0) ruby2_keywords (~> 0.0.1) os (1.1.4) - parallel (1.23.0) - parser (3.2.1.0) - ast (~> 2.4.1) pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -64,7 +59,6 @@ GEM rack (2.2.6.2) rack-protection (3.0.5) rack - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake @@ -74,7 +68,6 @@ GEM connection_pool redis-namespace (1.10.0) redis (>= 4) - regexp_parser (2.8.1) resque (2.4.0) mono_logger (~> 1.0) multi_json (~> 1.0) @@ -101,29 +94,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) simplecov (0.21.2) docile (~> 1.1) @@ -141,7 +111,6 @@ GEM tilt (~> 2.0) strscan (3.1.0) tilt (2.1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -176,10 +145,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.2_sinatra_2.gemfile b/gemfiles/ruby_3.2_sinatra_2.gemfile index 79c6068bc8b..12961d060b1 100644 --- a/gemfiles/ruby_3.2_sinatra_2.gemfile +++ b/gemfiles/ruby_3.2_sinatra_2.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.2_sinatra_2.gemfile.lock b/gemfiles/ruby_3.2_sinatra_2.gemfile.lock index 040b2784c37..c39cddaee80 100644 --- a/gemfiles/ruby_3.2_sinatra_2.gemfile.lock +++ b/gemfiles/ruby_3.2_sinatra_2.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.6) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) benchmark-ips (2.13.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -36,7 +35,6 @@ GEM google-protobuf (3.25.3-aarch64-linux) google-protobuf (3.25.3-x86_64-linux) hashdiff (1.1.0) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -51,10 +49,6 @@ GEM mustermann (2.0.2) ruby2_keywords (~> 0.0.1) os (1.1.4) - parallel (1.24.0) - parser (3.3.0.5) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -63,7 +57,6 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (5.0.5) - racc (1.7.3) rack (2.2.9) rack-contrib (2.4.0) rack (< 4) @@ -71,11 +64,9 @@ GEM rack rack-test (2.1.0) rack (>= 1.3) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.0) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -97,29 +88,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.31.2) - parser (>= 3.3.0.4) - rubocop-capybara (2.20.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.0) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) simplecov (0.21.2) docile (~> 1.1) @@ -137,7 +105,6 @@ GEM tilt (~> 2.0) strscan (3.1.0) tilt (2.3.0) - unicode-display_width (2.5.0) warning (1.3.0) webmock (3.23.0) addressable (>= 2.8.0) @@ -172,10 +139,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sinatra (~> 2) diff --git a/gemfiles/ruby_3.2_sinatra_3.gemfile b/gemfiles/ruby_3.2_sinatra_3.gemfile index a35d2d05075..9465f917f15 100644 --- a/gemfiles/ruby_3.2_sinatra_3.gemfile +++ b/gemfiles/ruby_3.2_sinatra_3.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.2_sinatra_3.gemfile.lock b/gemfiles/ruby_3.2_sinatra_3.gemfile.lock index 698e3f99f09..752832d9958 100644 --- a/gemfiles/ruby_3.2_sinatra_3.gemfile.lock +++ b/gemfiles/ruby_3.2_sinatra_3.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.6) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -37,7 +36,6 @@ GEM google-protobuf (3.25.3-aarch64-linux) google-protobuf (3.25.3-x86_64-linux) hashdiff (1.1.0) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -52,10 +50,6 @@ GEM mustermann (3.0.0) ruby2_keywords (~> 0.0.1) os (1.1.4) - parallel (1.24.0) - parser (3.3.0.5) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -64,7 +58,6 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (5.0.5) - racc (1.7.3) rack (2.2.9) rack-contrib (2.4.0) rack (< 4) @@ -73,11 +66,9 @@ GEM rack (~> 2.2, >= 2.2.4) rack-test (2.1.0) rack (>= 1.3) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.0) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -99,29 +90,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.31.2) - parser (>= 3.3.0.4) - rubocop-capybara (2.20.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.0) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) simplecov (0.21.2) docile (~> 1.1) @@ -139,7 +107,6 @@ GEM tilt (~> 2.0) strscan (3.1.0) tilt (2.3.0) - unicode-display_width (2.5.0) warning (1.3.0) webmock (3.23.0) addressable (>= 2.8.0) @@ -174,10 +141,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sinatra (~> 3) diff --git a/gemfiles/ruby_3.2_sinatra_4.gemfile b/gemfiles/ruby_3.2_sinatra_4.gemfile index ad413b7d594..cbc347d40eb 100644 --- a/gemfiles/ruby_3.2_sinatra_4.gemfile +++ b/gemfiles/ruby_3.2_sinatra_4.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.2_sinatra_4.gemfile.lock b/gemfiles/ruby_3.2_sinatra_4.gemfile.lock index 71fcfbc2f33..fead993cef1 100644 --- a/gemfiles/ruby_3.2_sinatra_4.gemfile.lock +++ b/gemfiles/ruby_3.2_sinatra_4.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.6) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -37,7 +36,6 @@ GEM google-protobuf (3.25.3-aarch64-linux) google-protobuf (3.25.3-x86_64-linux) hashdiff (1.1.0) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -52,10 +50,6 @@ GEM mustermann (3.0.0) ruby2_keywords (~> 0.0.1) os (1.1.4) - parallel (1.24.0) - parser (3.3.0.5) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -64,7 +58,6 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (5.0.5) - racc (1.7.3) rack (3.0.10) rack-contrib (2.4.0) rack (< 4) @@ -75,11 +68,9 @@ GEM rack (>= 3.0.0) rack-test (2.1.0) rack (>= 1.3) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.0) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -101,29 +92,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.31.2) - parser (>= 3.3.0.4) - rubocop-capybara (2.20.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.0) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) simplecov (0.21.2) docile (~> 1.1) @@ -142,7 +110,6 @@ GEM tilt (~> 2.0) strscan (3.1.0) tilt (2.3.0) - unicode-display_width (2.5.0) warning (1.3.0) webmock (3.23.0) addressable (>= 2.8.0) @@ -177,10 +144,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sinatra (~> 4) diff --git a/gemfiles/ruby_3.2_stripe_10.gemfile b/gemfiles/ruby_3.2_stripe_10.gemfile index 93a5975d521..87473a10869 100644 --- a/gemfiles/ruby_3.2_stripe_10.gemfile +++ b/gemfiles/ruby_3.2_stripe_10.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.2_stripe_10.gemfile.lock b/gemfiles/ruby_3.2_stripe_10.gemfile.lock index 5fbc0a7a593..dad05a9404a 100644 --- a/gemfiles/ruby_3.2_stripe_10.gemfile.lock +++ b/gemfiles/ruby_3.2_stripe_10.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.13.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -36,7 +35,6 @@ GEM google-protobuf (3.25.4-aarch64-linux) google-protobuf (3.25.4-x86_64-linux) hashdiff (1.1.1) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -49,10 +47,6 @@ GEM method_source (1.1.0) msgpack (1.7.5) os (1.1.4) - parallel (1.26.3) - parser (3.3.4.2) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -61,12 +55,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (6.0.1) - racc (1.8.1) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.6) strscan rspec (3.13.0) @@ -88,29 +79,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.1) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -122,7 +90,6 @@ GEM simplecov_json_formatter (0.1.4) stripe (10.15.0) strscan (3.1.0) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -155,10 +122,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 10) diff --git a/gemfiles/ruby_3.2_stripe_11.gemfile b/gemfiles/ruby_3.2_stripe_11.gemfile index d6ccbe3d451..41edeb33001 100644 --- a/gemfiles/ruby_3.2_stripe_11.gemfile +++ b/gemfiles/ruby_3.2_stripe_11.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.2_stripe_11.gemfile.lock b/gemfiles/ruby_3.2_stripe_11.gemfile.lock index 10d633de97f..6d56d35d6a3 100644 --- a/gemfiles/ruby_3.2_stripe_11.gemfile.lock +++ b/gemfiles/ruby_3.2_stripe_11.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.13.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -36,7 +35,6 @@ GEM google-protobuf (3.25.4-aarch64-linux) google-protobuf (3.25.4-x86_64-linux) hashdiff (1.1.1) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -49,10 +47,6 @@ GEM method_source (1.1.0) msgpack (1.7.5) os (1.1.4) - parallel (1.26.3) - parser (3.3.4.2) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -61,12 +55,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (6.0.1) - racc (1.8.1) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.6) strscan rspec (3.13.0) @@ -88,29 +79,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.1) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -122,7 +90,6 @@ GEM simplecov_json_formatter (0.1.4) stripe (11.7.0) strscan (3.1.0) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -155,10 +122,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 11) diff --git a/gemfiles/ruby_3.2_stripe_12.gemfile b/gemfiles/ruby_3.2_stripe_12.gemfile index 2e1b91d06ff..144c7a42adc 100644 --- a/gemfiles/ruby_3.2_stripe_12.gemfile +++ b/gemfiles/ruby_3.2_stripe_12.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.2_stripe_12.gemfile.lock b/gemfiles/ruby_3.2_stripe_12.gemfile.lock index 1c91f743b6c..e500be57fd7 100644 --- a/gemfiles/ruby_3.2_stripe_12.gemfile.lock +++ b/gemfiles/ruby_3.2_stripe_12.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.13.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -36,7 +35,6 @@ GEM google-protobuf (3.25.4-aarch64-linux) google-protobuf (3.25.4-x86_64-linux) hashdiff (1.1.1) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -49,10 +47,6 @@ GEM method_source (1.1.0) msgpack (1.7.5) os (1.1.4) - parallel (1.26.3) - parser (3.3.4.2) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -61,12 +55,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (6.0.1) - racc (1.8.1) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.6) strscan rspec (3.13.0) @@ -88,29 +79,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.1) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -122,7 +90,6 @@ GEM simplecov_json_formatter (0.1.4) stripe (12.6.0) strscan (3.1.0) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -155,10 +122,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 12) diff --git a/gemfiles/ruby_3.2_stripe_7.gemfile b/gemfiles/ruby_3.2_stripe_7.gemfile index 17d9a9abb41..adb9b336ba4 100644 --- a/gemfiles/ruby_3.2_stripe_7.gemfile +++ b/gemfiles/ruby_3.2_stripe_7.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.2_stripe_7.gemfile.lock b/gemfiles/ruby_3.2_stripe_7.gemfile.lock index bbb1c542d2b..139d197810a 100644 --- a/gemfiles/ruby_3.2_stripe_7.gemfile.lock +++ b/gemfiles/ruby_3.2_stripe_7.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.13.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -36,7 +35,6 @@ GEM google-protobuf (3.25.4-aarch64-linux) google-protobuf (3.25.4-x86_64-linux) hashdiff (1.1.1) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -49,10 +47,6 @@ GEM method_source (1.1.0) msgpack (1.7.5) os (1.1.4) - parallel (1.26.3) - parser (3.3.4.2) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -61,12 +55,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (6.0.1) - racc (1.8.1) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.6) strscan rspec (3.13.0) @@ -88,29 +79,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.1) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -122,7 +90,6 @@ GEM simplecov_json_formatter (0.1.4) stripe (7.1.0) strscan (3.1.0) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -155,10 +122,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 7) diff --git a/gemfiles/ruby_3.2_stripe_8.gemfile b/gemfiles/ruby_3.2_stripe_8.gemfile index 352eb982a29..7058ea2e0ee 100644 --- a/gemfiles/ruby_3.2_stripe_8.gemfile +++ b/gemfiles/ruby_3.2_stripe_8.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.2_stripe_8.gemfile.lock b/gemfiles/ruby_3.2_stripe_8.gemfile.lock index 001e899d443..10c3c95fc3f 100644 --- a/gemfiles/ruby_3.2_stripe_8.gemfile.lock +++ b/gemfiles/ruby_3.2_stripe_8.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.13.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -36,7 +35,6 @@ GEM google-protobuf (3.25.4-aarch64-linux) google-protobuf (3.25.4-x86_64-linux) hashdiff (1.1.1) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -49,10 +47,6 @@ GEM method_source (1.1.0) msgpack (1.7.5) os (1.1.4) - parallel (1.26.3) - parser (3.3.4.2) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -61,12 +55,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (6.0.1) - racc (1.8.1) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.6) strscan rspec (3.13.0) @@ -88,29 +79,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.1) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -122,7 +90,6 @@ GEM simplecov_json_formatter (0.1.4) stripe (8.7.0) strscan (3.1.0) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -155,10 +122,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 8) diff --git a/gemfiles/ruby_3.2_stripe_9.gemfile b/gemfiles/ruby_3.2_stripe_9.gemfile index 7e5411f19f1..d0e06e08f2a 100644 --- a/gemfiles/ruby_3.2_stripe_9.gemfile +++ b/gemfiles/ruby_3.2_stripe_9.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.2_stripe_9.gemfile.lock b/gemfiles/ruby_3.2_stripe_9.gemfile.lock index f15a3cf3abb..49aed417129 100644 --- a/gemfiles/ruby_3.2_stripe_9.gemfile.lock +++ b/gemfiles/ruby_3.2_stripe_9.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.13.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -36,7 +35,6 @@ GEM google-protobuf (3.25.4-aarch64-linux) google-protobuf (3.25.4-x86_64-linux) hashdiff (1.1.1) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -49,10 +47,6 @@ GEM method_source (1.1.0) msgpack (1.7.5) os (1.1.4) - parallel (1.26.3) - parser (3.3.4.2) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -61,12 +55,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (6.0.1) - racc (1.8.1) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.6) strscan rspec (3.13.0) @@ -88,29 +79,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.1) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -122,7 +90,6 @@ GEM simplecov_json_formatter (0.1.4) stripe (9.4.0) strscan (3.1.0) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -155,10 +122,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 9) diff --git a/gemfiles/ruby_3.2_stripe_latest.gemfile b/gemfiles/ruby_3.2_stripe_latest.gemfile index f84c0c4cf04..00a02c0e01f 100644 --- a/gemfiles/ruby_3.2_stripe_latest.gemfile +++ b/gemfiles/ruby_3.2_stripe_latest.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.2_stripe_latest.gemfile.lock b/gemfiles/ruby_3.2_stripe_latest.gemfile.lock index b18995496df..5c2cb366a49 100644 --- a/gemfiles/ruby_3.2_stripe_latest.gemfile.lock +++ b/gemfiles/ruby_3.2_stripe_latest.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.14.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -36,7 +35,6 @@ GEM google-protobuf (3.25.4-aarch64-linux) google-protobuf (3.25.4-x86_64-linux) hashdiff (1.1.1) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -49,10 +47,6 @@ GEM method_source (1.1.0) msgpack (1.7.5) os (1.1.4) - parallel (1.26.3) - parser (3.3.5.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -61,12 +55,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (6.0.1) - racc (1.8.1) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.7) rspec (3.13.0) rspec-core (~> 3.13.0) @@ -87,29 +78,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.3) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.22.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -120,7 +88,6 @@ GEM simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) stripe (13.3.0) - unicode-display_width (2.6.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -153,10 +120,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) stripe diff --git a/gemfiles/ruby_3.2_stripe_min.gemfile b/gemfiles/ruby_3.2_stripe_min.gemfile index cfbd5cdb264..3b331617a10 100644 --- a/gemfiles/ruby_3.2_stripe_min.gemfile +++ b/gemfiles/ruby_3.2_stripe_min.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.2_stripe_min.gemfile.lock b/gemfiles/ruby_3.2_stripe_min.gemfile.lock index b27b795714f..7450308117c 100644 --- a/gemfiles/ruby_3.2_stripe_min.gemfile.lock +++ b/gemfiles/ruby_3.2_stripe_min.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.14.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -36,7 +35,6 @@ GEM google-protobuf (3.25.5-aarch64-linux) google-protobuf (3.25.5-x86_64-linux) hashdiff (1.1.1) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -49,10 +47,6 @@ GEM method_source (1.1.0) msgpack (1.7.5) os (1.1.4) - parallel (1.26.3) - parser (3.3.5.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -61,12 +55,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (6.0.1) - racc (1.8.1) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.7) rspec (3.13.0) rspec-core (~> 3.13.0) @@ -87,29 +78,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.3) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.22.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -120,7 +88,6 @@ GEM simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) stripe (5.15.0) - unicode-display_width (2.6.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -153,10 +120,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) stripe (= 5.15.0) diff --git a/gemfiles/ruby_3.3_activesupport.gemfile b/gemfiles/ruby_3.3_activesupport.gemfile index cd781e2f211..485d3740f23 100644 --- a/gemfiles/ruby_3.3_activesupport.gemfile +++ b/gemfiles/ruby_3.3_activesupport.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.3_activesupport.gemfile.lock b/gemfiles/ruby_3.3_activesupport.gemfile.lock index 079621d701f..5f447d982d0 100644 --- a/gemfiles/ruby_3.3_activesupport.gemfile.lock +++ b/gemfiles/ruby_3.3_activesupport.gemfile.lock @@ -36,7 +36,6 @@ GEM minitest (>= 5.1) tzinfo (~> 2.0) addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.12.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -87,7 +86,6 @@ GEM hashdiff (1.0.1) i18n (1.14.1) concurrent-ruby (~> 1.0) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) jsonapi-renderer (0.2.2) @@ -120,10 +118,6 @@ GEM nokogiri (1.16.7-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -154,7 +148,6 @@ GEM rake (>= 12.2) thor (~> 1.0) zeitwerk (~> 2.5) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake @@ -162,7 +155,6 @@ GEM ffi (~> 1.15) mini_portile2 (~> 2.6) rake (> 12) - regexp_parser (2.8.1) request_store (1.5.1) rack (>= 1.4) rexml (3.2.8) @@ -186,31 +178,8 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.0) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-kafka (1.5.0) digest-crc - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) simplecov (0.21.2) docile (~> 1.1) @@ -225,7 +194,6 @@ GEM thor (1.2.2) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -266,10 +234,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) ruby-kafka (>= 0.7.10) simplecov simplecov-cobertura (~> 2.1.0) diff --git a/gemfiles/ruby_3.3_aws.gemfile b/gemfiles/ruby_3.3_aws.gemfile index 68d1007828f..be6c26e7a4d 100644 --- a/gemfiles/ruby_3.3_aws.gemfile +++ b/gemfiles/ruby_3.3_aws.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.3_aws.gemfile.lock b/gemfiles/ruby_3.3_aws.gemfile.lock index 7cafc628abf..18e8d9049b8 100644 --- a/gemfiles/ruby_3.3_aws.gemfile.lock +++ b/gemfiles/ruby_3.3_aws.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) aws-eventstream (1.2.0) aws-partitions (1.813.0) aws-sdk (3.1.0) @@ -1454,7 +1453,6 @@ GEM google-protobuf (3.24.2) hashdiff (1.0.1) jmespath (1.6.2) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -1467,10 +1465,6 @@ GEM method_source (1.0.0) msgpack (1.7.5) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -1478,12 +1472,9 @@ GEM pry-stack_explorer (0.6.1) binding_of_caller (~> 1.0) pry (~> 0.13) - racc (1.7.1) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -1505,29 +1496,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.0) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) shoryuken (6.0.0) aws-sdk-core (>= 2) concurrent-ruby @@ -1543,7 +1511,6 @@ GEM simplecov_json_formatter (0.1.4) strscan (3.1.0) thor (1.2.2) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -1577,10 +1544,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) shoryuken simplecov simplecov-cobertura (~> 2.1.0) diff --git a/gemfiles/ruby_3.3_contrib.gemfile b/gemfiles/ruby_3.3_contrib.gemfile index 6dab61251d9..07d57a70775 100644 --- a/gemfiles/ruby_3.3_contrib.gemfile +++ b/gemfiles/ruby_3.3_contrib.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.3_contrib.gemfile.lock b/gemfiles/ruby_3.3_contrib.gemfile.lock index 9ef671f2146..fa8f0682501 100644 --- a/gemfiles/ruby_3.3_contrib.gemfile.lock +++ b/gemfiles/ruby_3.3_contrib.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.4.0) amq-protocol (2.3.2) - ast (2.4.2) benchmark-ips (2.12.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -48,7 +47,6 @@ GEM google-protobuf (>= 3.25, < 5.0) googleapis-common-protos-types (~> 1.0) hashdiff (1.0.1) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -67,9 +65,6 @@ GEM mustermann (3.0.0) ruby2_keywords (~> 0.0.1) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.1) - ast (~> 2.4.1) pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -83,7 +78,6 @@ GEM rack rack-test (2.1.0) rack (>= 1.3) - rainbow (3.1.1) rake (12.3.3) rake-compiler (1.2.1) rake @@ -94,7 +88,6 @@ GEM connection_pool redis-namespace (1.10.0) redis (>= 4) - regexp_parser (2.8.1) resque (2.5.0) mono_logger (~> 1.0) multi_json (~> 1.0) @@ -123,29 +116,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.28.1) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) semantic_logger (4.13.0) concurrent-ruby (~> 1.0) @@ -186,7 +156,6 @@ GEM concurrent-ruby (~> 1.0) thor (1.2.2) tilt (2.1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -226,10 +195,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) semantic_logger (~> 4.0) sidekiq (~> 7) simplecov diff --git a/gemfiles/ruby_3.3_contrib_old.gemfile b/gemfiles/ruby_3.3_contrib_old.gemfile index a80fa0f9abb..ae3bba41c9e 100644 --- a/gemfiles/ruby_3.3_contrib_old.gemfile +++ b/gemfiles/ruby_3.3_contrib_old.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.3_contrib_old.gemfile.lock b/gemfiles/ruby_3.3_contrib_old.gemfile.lock index fea5a7c8a0d..dc732506453 100644 --- a/gemfiles/ruby_3.3_contrib_old.gemfile.lock +++ b/gemfiles/ruby_3.3_contrib_old.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) atomic (1.1.101) avl_tree (1.2.1) atomic (~> 1.1) @@ -43,7 +42,6 @@ GEM google-protobuf (3.23.1) hashdiff (1.0.1) hitimes (1.3.1) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -63,9 +61,6 @@ GEM mustermann (1.1.2) ruby2_keywords (~> 0.0.1) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.1) - ast (~> 2.4.1) pimpmychangelog (0.1.3) presto-client (0.6.6) faraday (~> 0.12) @@ -90,12 +85,10 @@ GEM rack (2.2.7) rack-protection (2.0.8.1) rack - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake redis (3.3.5) - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -117,29 +110,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.28.1) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) rusage (0.2.0) sentry-raven (0.15.6) @@ -166,7 +136,6 @@ GEM rack (>= 1, < 3) thor (0.19.4) tilt (2.1.0) - unicode-display_width (2.4.2) vegas (0.1.11) rack (>= 1.0.0) warning (1.3.0) @@ -204,10 +173,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.3_core_old.gemfile b/gemfiles/ruby_3.3_core_old.gemfile index d55b982d4ab..891044671de 100644 --- a/gemfiles/ruby_3.3_core_old.gemfile +++ b/gemfiles/ruby_3.3_core_old.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.3_core_old.gemfile.lock b/gemfiles/ruby_3.3_core_old.gemfile.lock index 583ec8b3682..063b7c70c3d 100644 --- a/gemfiles/ruby_3.3_core_old.gemfile.lock +++ b/gemfiles/ruby_3.3_core_old.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.12.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -32,7 +31,6 @@ GEM ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.23.1) hashdiff (1.0.1) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -45,9 +43,6 @@ GEM method_source (1.0.0) msgpack (1.7.5) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.1) - ast (~> 2.4.1) pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -55,11 +50,9 @@ GEM pry-stack_explorer (0.6.1) binding_of_caller (~> 1.0) pry (~> 0.13) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -81,29 +74,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.28.1) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -114,7 +84,6 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) strscan (3.1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -147,10 +116,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.3_elasticsearch_7.gemfile b/gemfiles/ruby_3.3_elasticsearch_7.gemfile index 09efed3a336..27b8e6b434b 100644 --- a/gemfiles/ruby_3.3_elasticsearch_7.gemfile +++ b/gemfiles/ruby_3.3_elasticsearch_7.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.3_elasticsearch_7.gemfile.lock b/gemfiles/ruby_3.3_elasticsearch_7.gemfile.lock index 60234ba7b4a..97e082e6b96 100644 --- a/gemfiles/ruby_3.3_elasticsearch_7.gemfile.lock +++ b/gemfiles/ruby_3.3_elasticsearch_7.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.5) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.12.0) benchmark-memory (0.1.2) @@ -66,10 +65,6 @@ GEM net-http (0.6.0) uri os (1.1.4) - parallel (1.23.0) - parser (3.2.2.4) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -78,12 +73,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (5.0.3) - racc (1.7.1) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.2) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -105,29 +97,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -138,7 +107,6 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) strscan (3.1.0) - unicode-display_width (2.5.0) uri (1.0.2) warning (1.3.0) webmock (3.19.1) @@ -173,10 +141,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.3_elasticsearch_8.gemfile b/gemfiles/ruby_3.3_elasticsearch_8.gemfile index 449ac43f845..aed5ebc4c02 100644 --- a/gemfiles/ruby_3.3_elasticsearch_8.gemfile +++ b/gemfiles/ruby_3.3_elasticsearch_8.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.3_elasticsearch_8.gemfile.lock b/gemfiles/ruby_3.3_elasticsearch_8.gemfile.lock index 7789c3cfc06..c185c27ce11 100644 --- a/gemfiles/ruby_3.3_elasticsearch_8.gemfile.lock +++ b/gemfiles/ruby_3.3_elasticsearch_8.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.5) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) benchmark-ips (2.12.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -64,10 +63,6 @@ GEM net-http (0.6.0) uri os (1.1.4) - parallel (1.23.0) - parser (3.2.2.4) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -76,12 +71,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (5.0.3) - racc (1.7.1) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.2) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -103,29 +95,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -136,7 +105,6 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) strscan (3.1.0) - unicode-display_width (2.5.0) uri (1.0.2) warning (1.3.0) webmock (3.19.1) @@ -171,10 +139,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.3_elasticsearch_latest.gemfile b/gemfiles/ruby_3.3_elasticsearch_latest.gemfile index f9405972c8a..badcfc73421 100644 --- a/gemfiles/ruby_3.3_elasticsearch_latest.gemfile +++ b/gemfiles/ruby_3.3_elasticsearch_latest.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.3_elasticsearch_latest.gemfile.lock b/gemfiles/ruby_3.3_elasticsearch_latest.gemfile.lock index 2f8317d4eac..dfdc838555b 100644 --- a/gemfiles/ruby_3.3_elasticsearch_latest.gemfile.lock +++ b/gemfiles/ruby_3.3_elasticsearch_latest.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.14.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -67,10 +66,6 @@ GEM net-http (0.6.0) uri os (1.1.4) - parallel (1.26.3) - parser (3.3.5.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -79,12 +74,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (6.0.1) - racc (1.8.1) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.7) rspec (3.13.0) rspec-core (~> 3.13.0) @@ -105,29 +97,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.3) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.22.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -137,7 +106,6 @@ GEM simplecov (~> 0.19) simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) - unicode-display_width (2.6.0) uri (1.0.2) warning (1.4.0) webmock (3.23.1) @@ -172,10 +140,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.3_graphql_1.13.gemfile b/gemfiles/ruby_3.3_graphql_1.13.gemfile index edb5898b51b..9d142953a86 100644 --- a/gemfiles/ruby_3.3_graphql_1.13.gemfile +++ b/gemfiles/ruby_3.3_graphql_1.13.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.3_graphql_1.13.gemfile.lock b/gemfiles/ruby_3.3_graphql_1.13.gemfile.lock index de273167c94..d0d782dee56 100644 --- a/gemfiles/ruby_3.3_graphql_1.13.gemfile.lock +++ b/gemfiles/ruby_3.3_graphql_1.13.gemfile.lock @@ -71,7 +71,6 @@ GEM zeitwerk (~> 2.3) addressable (2.8.6) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -102,7 +101,6 @@ GEM hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) - json (2.7.1) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -145,10 +143,6 @@ GEM nokogiri (1.16.6-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.24.0) - parser (3.3.0.5) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -189,11 +183,9 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.1.0) rake-compiler (1.2.6) rake - regexp_parser (2.9.0) request_store (1.7.0) rack (>= 1.4) rexml (3.2.8) @@ -217,29 +209,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.30.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.20.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.20.2) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.30.0, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -262,7 +231,6 @@ GEM timeout (0.4.1) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.5.0) warning (1.3.0) webmock (3.19.1) addressable (>= 2.8.0) @@ -302,10 +270,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_3.3_graphql_2.0.gemfile b/gemfiles/ruby_3.3_graphql_2.0.gemfile index f1eb85dfcd0..d066b71b009 100644 --- a/gemfiles/ruby_3.3_graphql_2.0.gemfile +++ b/gemfiles/ruby_3.3_graphql_2.0.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.3_graphql_2.0.gemfile.lock b/gemfiles/ruby_3.3_graphql_2.0.gemfile.lock index 4961696b224..d268e3ca052 100644 --- a/gemfiles/ruby_3.3_graphql_2.0.gemfile.lock +++ b/gemfiles/ruby_3.3_graphql_2.0.gemfile.lock @@ -71,7 +71,6 @@ GEM zeitwerk (~> 2.3) addressable (2.8.6) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -102,7 +101,6 @@ GEM hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) - json (2.7.1) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -145,10 +143,6 @@ GEM nokogiri (1.16.6-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.24.0) - parser (3.3.0.5) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -189,11 +183,9 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.1.0) rake-compiler (1.2.6) rake - regexp_parser (2.9.0) request_store (1.7.0) rack (>= 1.4) rexml (3.2.8) @@ -217,29 +209,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.30.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.20.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.20.2) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.30.0, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -262,7 +231,6 @@ GEM timeout (0.4.1) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.5.0) warning (1.3.0) webmock (3.19.1) addressable (>= 2.8.0) @@ -302,10 +270,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_3.3_graphql_2.1.gemfile b/gemfiles/ruby_3.3_graphql_2.1.gemfile index 4b799796f7e..0f2e84132b7 100644 --- a/gemfiles/ruby_3.3_graphql_2.1.gemfile +++ b/gemfiles/ruby_3.3_graphql_2.1.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.3_graphql_2.1.gemfile.lock b/gemfiles/ruby_3.3_graphql_2.1.gemfile.lock index d686acb1e7d..d3365b31b9d 100644 --- a/gemfiles/ruby_3.3_graphql_2.1.gemfile.lock +++ b/gemfiles/ruby_3.3_graphql_2.1.gemfile.lock @@ -71,7 +71,6 @@ GEM zeitwerk (~> 2.3) addressable (2.8.6) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -103,7 +102,6 @@ GEM hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) - json (2.7.1) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -146,10 +144,6 @@ GEM nokogiri (1.16.6-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.24.0) - parser (3.3.0.5) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -190,11 +184,9 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.1.0) rake-compiler (1.2.6) rake - regexp_parser (2.9.0) request_store (1.7.0) rack (>= 1.4) rexml (3.2.8) @@ -218,29 +210,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.30.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.20.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.20.2) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.30.0, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -263,7 +232,6 @@ GEM timeout (0.4.1) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.5.0) warning (1.3.0) webmock (3.19.1) addressable (>= 2.8.0) @@ -303,10 +271,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_3.3_graphql_2.2.gemfile b/gemfiles/ruby_3.3_graphql_2.2.gemfile index a9364961cd4..5da99d6a19f 100644 --- a/gemfiles/ruby_3.3_graphql_2.2.gemfile +++ b/gemfiles/ruby_3.3_graphql_2.2.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.3_graphql_2.2.gemfile.lock b/gemfiles/ruby_3.3_graphql_2.2.gemfile.lock index 2b8cf4c3eb1..97aa445bd07 100644 --- a/gemfiles/ruby_3.3_graphql_2.2.gemfile.lock +++ b/gemfiles/ruby_3.3_graphql_2.2.gemfile.lock @@ -71,7 +71,6 @@ GEM zeitwerk (~> 2.3) addressable (2.8.6) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -103,7 +102,6 @@ GEM hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) - json (2.7.1) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -146,10 +144,6 @@ GEM nokogiri (1.16.6-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.24.0) - parser (3.3.0.5) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -190,11 +184,9 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.1.0) rake-compiler (1.2.6) rake - regexp_parser (2.9.0) request_store (1.7.0) rack (>= 1.4) rexml (3.2.8) @@ -218,29 +210,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.30.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.20.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.20.2) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.30.0, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -263,7 +232,6 @@ GEM timeout (0.4.1) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.5.0) warning (1.3.0) webmock (3.19.1) addressable (>= 2.8.0) @@ -303,10 +271,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_3.3_graphql_2.3.gemfile b/gemfiles/ruby_3.3_graphql_2.3.gemfile index f667a0f732b..b81a2ff54c4 100644 --- a/gemfiles/ruby_3.3_graphql_2.3.gemfile +++ b/gemfiles/ruby_3.3_graphql_2.3.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.3_graphql_2.3.gemfile.lock b/gemfiles/ruby_3.3_graphql_2.3.gemfile.lock index 3691317f575..1e1f8252a2b 100644 --- a/gemfiles/ruby_3.3_graphql_2.3.gemfile.lock +++ b/gemfiles/ruby_3.3_graphql_2.3.gemfile.lock @@ -71,7 +71,6 @@ GEM zeitwerk (~> 2.3) addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -106,7 +105,6 @@ GEM hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -149,10 +147,6 @@ GEM nokogiri (1.16.6-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.25.1) - parser (3.3.3.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -193,11 +187,9 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) request_store (1.7.0) rack (>= 1.4) rexml (3.3.1) @@ -221,29 +213,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.31.3) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -266,7 +235,6 @@ GEM timeout (0.4.1) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -306,10 +274,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_3.3_http.gemfile b/gemfiles/ruby_3.3_http.gemfile index dc32cc47097..e6b82f3cce1 100644 --- a/gemfiles/ruby_3.3_http.gemfile +++ b/gemfiles/ruby_3.3_http.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.3_http.gemfile.lock b/gemfiles/ruby_3.3_http.gemfile.lock index ec9363ea535..0f276418bca 100644 --- a/gemfiles/ruby_3.3_http.gemfile.lock +++ b/gemfiles/ruby_3.3_http.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.12.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -54,7 +53,6 @@ GEM domain_name (~> 0.5) http-form_data (2.3.0) httpclient (2.8.3) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -74,10 +72,6 @@ GEM msgpack (1.7.5) netrc (0.11.0) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -85,12 +79,9 @@ GEM pry-stack_explorer (0.6.1) binding_of_caller (~> 1.0) pry (~> 0.13) - racc (1.7.1) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.1) rest-client (2.1.0) http-accept (>= 1.7.0, < 2.0) http-cookie (>= 1.0.2, < 2.0) @@ -117,29 +108,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.0) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) simplecov (0.21.2) docile (~> 1.1) @@ -156,7 +124,6 @@ GEM unf (0.1.4) unf_ext unf_ext (0.0.8.2) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -195,10 +162,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) typhoeus diff --git a/gemfiles/ruby_3.3_opensearch_2.gemfile b/gemfiles/ruby_3.3_opensearch_2.gemfile index de901141719..c45d76e4e2b 100644 --- a/gemfiles/ruby_3.3_opensearch_2.gemfile +++ b/gemfiles/ruby_3.3_opensearch_2.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.3_opensearch_2.gemfile.lock b/gemfiles/ruby_3.3_opensearch_2.gemfile.lock index 74f9ccdf37c..a103ff95300 100644 --- a/gemfiles/ruby_3.3_opensearch_2.gemfile.lock +++ b/gemfiles/ruby_3.3_opensearch_2.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.5) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) benchmark-ips (2.12.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -64,10 +63,6 @@ GEM faraday (>= 1.0, < 3) multi_json os (1.1.4) - parallel (1.23.0) - parser (3.2.2.4) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -76,12 +71,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (5.0.3) - racc (1.7.1) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -103,29 +95,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -136,7 +105,6 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) strscan (3.1.0) - unicode-display_width (2.5.0) uri (1.0.2) warning (1.3.0) webmock (3.19.1) @@ -171,10 +139,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.3_opensearch_3.gemfile b/gemfiles/ruby_3.3_opensearch_3.gemfile index ea9d740c6a2..2185f8aafc9 100644 --- a/gemfiles/ruby_3.3_opensearch_3.gemfile +++ b/gemfiles/ruby_3.3_opensearch_3.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.3_opensearch_3.gemfile.lock b/gemfiles/ruby_3.3_opensearch_3.gemfile.lock index 7b0071a059d..ffacf13176c 100644 --- a/gemfiles/ruby_3.3_opensearch_3.gemfile.lock +++ b/gemfiles/ruby_3.3_opensearch_3.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.5) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) benchmark-ips (2.12.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -59,10 +58,6 @@ GEM faraday (>= 1.0, < 3) multi_json (>= 1.0) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.4) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -71,12 +66,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (5.0.3) - racc (1.7.1) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -98,29 +90,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -131,7 +100,6 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) strscan (3.1.0) - unicode-display_width (2.5.0) uri (1.0.2) warning (1.3.0) webmock (3.19.1) @@ -166,10 +134,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.3_opensearch_latest.gemfile b/gemfiles/ruby_3.3_opensearch_latest.gemfile index e7ed9c1100f..f723c9243e7 100644 --- a/gemfiles/ruby_3.3_opensearch_latest.gemfile +++ b/gemfiles/ruby_3.3_opensearch_latest.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.3_opensearch_latest.gemfile.lock b/gemfiles/ruby_3.3_opensearch_latest.gemfile.lock index ec15305f3e3..7c38ac74612 100644 --- a/gemfiles/ruby_3.3_opensearch_latest.gemfile.lock +++ b/gemfiles/ruby_3.3_opensearch_latest.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.14.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -62,10 +61,6 @@ GEM faraday (>= 1.0, < 3) multi_json (>= 1.0) os (1.1.4) - parallel (1.26.3) - parser (3.3.5.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -74,12 +69,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (6.0.1) - racc (1.8.1) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.7) rspec (3.13.0) rspec-core (~> 3.13.0) @@ -100,29 +92,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.3) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.22.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -132,7 +101,6 @@ GEM simplecov (~> 0.19) simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) - unicode-display_width (2.6.0) uri (1.0.2) warning (1.4.0) webmock (3.23.1) @@ -167,10 +135,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.3_opentelemetry.gemfile b/gemfiles/ruby_3.3_opentelemetry.gemfile index b0ab8f1f286..be1276e89ac 100644 --- a/gemfiles/ruby_3.3_opentelemetry.gemfile +++ b/gemfiles/ruby_3.3_opentelemetry.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.3_opentelemetry.gemfile.lock b/gemfiles/ruby_3.3_opentelemetry.gemfile.lock index 072c43a1796..53b2696488c 100644 --- a/gemfiles/ruby_3.3_opentelemetry.gemfile.lock +++ b/gemfiles/ruby_3.3_opentelemetry.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.12.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -32,7 +31,6 @@ GEM ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.23.1) hashdiff (1.0.1) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -57,9 +55,6 @@ GEM opentelemetry-semantic_conventions (1.8.0) opentelemetry-api (~> 1.0) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.1) - ast (~> 2.4.1) pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -67,11 +62,9 @@ GEM pry-stack_explorer (0.6.1) binding_of_caller (~> 1.0) pry (~> 0.13) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -93,29 +86,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.28.1) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -126,7 +96,6 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) strscan (3.1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -160,10 +129,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.3_opentelemetry_otlp.gemfile b/gemfiles/ruby_3.3_opentelemetry_otlp.gemfile index 9843af97d99..b99812d76bd 100644 --- a/gemfiles/ruby_3.3_opentelemetry_otlp.gemfile +++ b/gemfiles/ruby_3.3_opentelemetry_otlp.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.3_opentelemetry_otlp.gemfile.lock b/gemfiles/ruby_3.3_opentelemetry_otlp.gemfile.lock index 003e96fdbcc..aa2f6a66b22 100644 --- a/gemfiles/ruby_3.3_opentelemetry_otlp.gemfile.lock +++ b/gemfiles/ruby_3.3_opentelemetry_otlp.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.6) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) benchmark-ips (2.13.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -38,7 +37,6 @@ GEM googleapis-common-protos-types (1.13.0) google-protobuf (~> 3.18) hashdiff (1.1.0) - json (2.7.1) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -70,10 +68,6 @@ GEM opentelemetry-semantic_conventions (1.10.0) opentelemetry-api (~> 1.0) os (1.1.4) - parallel (1.24.0) - parser (3.3.0.5) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -82,12 +76,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (5.0.4) - racc (1.7.3) - rainbow (3.1.1) rake (13.1.0) rake-compiler (1.2.7) rake - regexp_parser (2.9.0) rexml (3.3.8) rspec (3.13.0) rspec-core (~> 3.13.0) @@ -108,29 +99,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.31.1) - parser (>= 3.3.0.4) - rubocop-capybara (2.20.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.20.2) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.30.0, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -140,7 +108,6 @@ GEM simplecov (~> 0.19) simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) - unicode-display_width (2.5.0) warning (1.3.0) webmock (3.23.0) addressable (>= 2.8.0) @@ -175,10 +142,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.3_rack_2.gemfile b/gemfiles/ruby_3.3_rack_2.gemfile index 5f0e00d9f29..2590776110e 100644 --- a/gemfiles/ruby_3.3_rack_2.gemfile +++ b/gemfiles/ruby_3.3_rack_2.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.3_rack_2.gemfile.lock b/gemfiles/ruby_3.3_rack_2.gemfile.lock index 0dc721f203a..f15d532ca11 100644 --- a/gemfiles/ruby_3.3_rack_2.gemfile.lock +++ b/gemfiles/ruby_3.3_rack_2.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.12.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -32,7 +31,6 @@ GEM ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.24.3) hashdiff (1.0.1) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -45,10 +43,6 @@ GEM method_source (1.0.0) msgpack (1.7.5) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -56,17 +50,14 @@ GEM pry-stack_explorer (0.6.1) binding_of_caller (~> 1.0) pry (~> 0.13) - racc (1.7.1) rack (2.2.10) rack-contrib (2.3.0) rack (~> 2.0) rack-test (2.1.0) rack (>= 1.3) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -88,29 +79,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.0) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -121,7 +89,6 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) strscan (3.1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -157,10 +124,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.3_rack_3.gemfile b/gemfiles/ruby_3.3_rack_3.gemfile index a629b8caecb..6bd7ef3ab7f 100644 --- a/gemfiles/ruby_3.3_rack_3.gemfile +++ b/gemfiles/ruby_3.3_rack_3.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.3_rack_3.gemfile.lock b/gemfiles/ruby_3.3_rack_3.gemfile.lock index 18d842301b8..513cdc979a8 100644 --- a/gemfiles/ruby_3.3_rack_3.gemfile.lock +++ b/gemfiles/ruby_3.3_rack_3.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.12.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -32,7 +31,6 @@ GEM ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.24.3) hashdiff (1.0.1) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -45,10 +43,6 @@ GEM method_source (1.0.0) msgpack (1.7.5) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -56,17 +50,14 @@ GEM pry-stack_explorer (0.6.1) binding_of_caller (~> 1.0) pry (~> 0.13) - racc (1.7.1) rack (3.1.8) rack-contrib (1.2.0) rack (>= 0.9.1) rack-test (2.1.0) rack (>= 1.3) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -88,29 +79,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.0) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -121,7 +89,6 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) strscan (3.1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -157,10 +124,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.3_rack_latest.gemfile b/gemfiles/ruby_3.3_rack_latest.gemfile index ec624ba27ec..7f26c518698 100644 --- a/gemfiles/ruby_3.3_rack_latest.gemfile +++ b/gemfiles/ruby_3.3_rack_latest.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.3_rack_latest.gemfile.lock b/gemfiles/ruby_3.3_rack_latest.gemfile.lock index c7ed7113fd6..91d2940d5cb 100644 --- a/gemfiles/ruby_3.3_rack_latest.gemfile.lock +++ b/gemfiles/ruby_3.3_rack_latest.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.14.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -36,7 +35,6 @@ GEM google-protobuf (3.25.5-aarch64-linux) google-protobuf (3.25.5-x86_64-linux) hashdiff (1.1.1) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -49,10 +47,6 @@ GEM method_source (1.1.0) msgpack (1.7.5) os (1.1.4) - parallel (1.26.3) - parser (3.3.5.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -61,17 +55,14 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (6.0.1) - racc (1.8.1) rack (3.1.8) rack-contrib (2.5.0) rack (< 4) rack-test (2.1.0) rack (>= 1.3) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.7) rspec (3.13.0) rspec-core (~> 3.13.0) @@ -92,29 +83,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.3) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.22.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -124,7 +92,6 @@ GEM simplecov (~> 0.19) simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) - unicode-display_width (2.6.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -160,10 +127,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.3_rails61_mysql2.gemfile b/gemfiles/ruby_3.3_rails61_mysql2.gemfile index 3a88c449ac4..d0a43aab470 100644 --- a/gemfiles/ruby_3.3_rails61_mysql2.gemfile +++ b/gemfiles/ruby_3.3_rails61_mysql2.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.3_rails61_mysql2.gemfile.lock b/gemfiles/ruby_3.3_rails61_mysql2.gemfile.lock index 33cc3d174d9..17e52e1b6dd 100644 --- a/gemfiles/ruby_3.3_rails61_mysql2.gemfile.lock +++ b/gemfiles/ruby_3.3_rails61_mysql2.gemfile.lock @@ -70,7 +70,6 @@ GEM tzinfo (~> 2.0) zeitwerk (~> 2.3) addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.12.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -99,7 +98,6 @@ GEM hashdiff (1.0.1) i18n (1.13.0) concurrent-ruby (~> 1.0) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -143,9 +141,6 @@ GEM nokogiri (1.16.7-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.1) - ast (~> 2.4.1) pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -185,11 +180,9 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake - regexp_parser (2.8.1) request_store (1.5.1) rack (>= 1.4) rexml (3.2.8) @@ -213,29 +206,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.28.1) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -257,7 +227,6 @@ GEM timeout (0.3.2) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -298,10 +267,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_3.3_rails61_postgres.gemfile b/gemfiles/ruby_3.3_rails61_postgres.gemfile index e83b417adff..17811ef3980 100644 --- a/gemfiles/ruby_3.3_rails61_postgres.gemfile +++ b/gemfiles/ruby_3.3_rails61_postgres.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.3_rails61_postgres.gemfile.lock b/gemfiles/ruby_3.3_rails61_postgres.gemfile.lock index 232f82369b9..00bd7f36f76 100644 --- a/gemfiles/ruby_3.3_rails61_postgres.gemfile.lock +++ b/gemfiles/ruby_3.3_rails61_postgres.gemfile.lock @@ -70,7 +70,6 @@ GEM tzinfo (~> 2.0) zeitwerk (~> 2.3) addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.12.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -99,7 +98,6 @@ GEM hashdiff (1.0.1) i18n (1.13.0) concurrent-ruby (~> 1.0) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -142,9 +140,6 @@ GEM nokogiri (1.16.7-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.1) - ast (~> 2.4.1) pg (1.5.3) pimpmychangelog (0.1.3) pry (0.14.2) @@ -185,11 +180,9 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake - regexp_parser (2.8.1) request_store (1.5.1) rack (>= 1.4) rexml (3.2.8) @@ -213,29 +206,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.28.1) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -257,7 +227,6 @@ GEM timeout (0.3.2) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -298,10 +267,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_3.3_rails61_postgres_redis.gemfile b/gemfiles/ruby_3.3_rails61_postgres_redis.gemfile index da07d92f49d..071f6c4d2c7 100644 --- a/gemfiles/ruby_3.3_rails61_postgres_redis.gemfile +++ b/gemfiles/ruby_3.3_rails61_postgres_redis.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.3_rails61_postgres_redis.gemfile.lock b/gemfiles/ruby_3.3_rails61_postgres_redis.gemfile.lock index f4f73044ed5..478562b2908 100644 --- a/gemfiles/ruby_3.3_rails61_postgres_redis.gemfile.lock +++ b/gemfiles/ruby_3.3_rails61_postgres_redis.gemfile.lock @@ -70,7 +70,6 @@ GEM tzinfo (~> 2.0) zeitwerk (~> 2.3) addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.12.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -99,7 +98,6 @@ GEM hashdiff (1.0.1) i18n (1.13.0) concurrent-ruby (~> 1.0) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -142,9 +140,6 @@ GEM nokogiri (1.16.7-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.1) - ast (~> 2.4.1) pg (1.5.3) pimpmychangelog (0.1.3) pry (0.14.2) @@ -185,12 +180,10 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake redis (4.8.1) - regexp_parser (2.8.1) request_store (1.5.1) rack (>= 1.4) rexml (3.2.8) @@ -214,29 +207,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.28.1) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -258,7 +228,6 @@ GEM timeout (0.3.2) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -300,10 +269,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_3.3_rails61_postgres_sidekiq.gemfile b/gemfiles/ruby_3.3_rails61_postgres_sidekiq.gemfile index b65755b2159..98601cf69b3 100644 --- a/gemfiles/ruby_3.3_rails61_postgres_sidekiq.gemfile +++ b/gemfiles/ruby_3.3_rails61_postgres_sidekiq.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.3_rails61_postgres_sidekiq.gemfile.lock b/gemfiles/ruby_3.3_rails61_postgres_sidekiq.gemfile.lock index e9f569e110d..17b06582f76 100644 --- a/gemfiles/ruby_3.3_rails61_postgres_sidekiq.gemfile.lock +++ b/gemfiles/ruby_3.3_rails61_postgres_sidekiq.gemfile.lock @@ -70,7 +70,6 @@ GEM tzinfo (~> 2.0) zeitwerk (~> 2.3) addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.12.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -100,7 +99,6 @@ GEM hashdiff (1.0.1) i18n (1.13.0) concurrent-ruby (~> 1.0) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -143,9 +141,6 @@ GEM nokogiri (1.16.7-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.1) - ast (~> 2.4.1) pg (1.5.3) pimpmychangelog (0.1.3) pry (0.14.2) @@ -190,13 +185,11 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake redis-client (0.14.1) connection_pool - regexp_parser (2.8.1) request_store (1.5.1) rack (>= 1.4) rexml (3.2.8) @@ -220,29 +213,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.28.1) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) semantic_logger (4.13.0) concurrent-ruby (~> 1.0) sidekiq (7.1.0) @@ -271,7 +241,6 @@ GEM timeout (0.3.2) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -313,10 +282,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) sidekiq (>= 6.1.2) simplecov simplecov-cobertura (~> 2.1.0) diff --git a/gemfiles/ruby_3.3_rails61_semantic_logger.gemfile b/gemfiles/ruby_3.3_rails61_semantic_logger.gemfile index 7f42665e2bf..532d5992925 100644 --- a/gemfiles/ruby_3.3_rails61_semantic_logger.gemfile +++ b/gemfiles/ruby_3.3_rails61_semantic_logger.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.3_rails61_semantic_logger.gemfile.lock b/gemfiles/ruby_3.3_rails61_semantic_logger.gemfile.lock index 5891f7bb953..ed7183204d5 100644 --- a/gemfiles/ruby_3.3_rails61_semantic_logger.gemfile.lock +++ b/gemfiles/ruby_3.3_rails61_semantic_logger.gemfile.lock @@ -70,7 +70,6 @@ GEM tzinfo (~> 2.0) zeitwerk (~> 2.3) addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.12.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -99,7 +98,6 @@ GEM hashdiff (1.0.1) i18n (1.13.0) concurrent-ruby (~> 1.0) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -137,9 +135,6 @@ GEM nokogiri (1.16.7-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.1) - ast (~> 2.4.1) pg (1.5.3) pimpmychangelog (0.1.3) pry (0.14.2) @@ -184,11 +179,9 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -210,29 +203,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.28.1) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) semantic_logger (4.13.0) concurrent-ruby (~> 1.0) simplecov (0.21.2) @@ -256,7 +226,6 @@ GEM timeout (0.3.2) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -297,10 +266,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_3.3_rails61_trilogy.gemfile b/gemfiles/ruby_3.3_rails61_trilogy.gemfile index 286747986d4..483c5c6c05f 100644 --- a/gemfiles/ruby_3.3_rails61_trilogy.gemfile +++ b/gemfiles/ruby_3.3_rails61_trilogy.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.3_rails61_trilogy.gemfile.lock b/gemfiles/ruby_3.3_rails61_trilogy.gemfile.lock index f7c65ce8706..cd820d99d26 100644 --- a/gemfiles/ruby_3.3_rails61_trilogy.gemfile.lock +++ b/gemfiles/ruby_3.3_rails61_trilogy.gemfile.lock @@ -74,7 +74,6 @@ GEM zeitwerk (~> 2.3) addressable (2.8.5) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) benchmark-ips (2.12.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -103,7 +102,6 @@ GEM hashdiff (1.0.1) i18n (1.14.1) concurrent-ruby (~> 1.0) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -146,10 +144,6 @@ GEM nokogiri (1.16.7-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.4) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -190,11 +184,9 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.1.0) rake-compiler (1.2.5) rake - regexp_parser (2.8.2) request_store (1.5.1) rack (>= 1.4) rexml (3.2.8) @@ -218,29 +210,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.30.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -263,7 +232,6 @@ GEM trilogy (2.6.0) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.5.0) warning (1.3.0) webmock (3.19.1) addressable (>= 2.8.0) @@ -304,10 +272,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_3.3_rails7.gemfile b/gemfiles/ruby_3.3_rails7.gemfile index a24b15ca518..6d0b2c3573b 100644 --- a/gemfiles/ruby_3.3_rails7.gemfile +++ b/gemfiles/ruby_3.3_rails7.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.3_rails7.gemfile.lock b/gemfiles/ruby_3.3_rails7.gemfile.lock index 8b0b8e0e309..08cb11a5ab7 100644 --- a/gemfiles/ruby_3.3_rails7.gemfile.lock +++ b/gemfiles/ruby_3.3_rails7.gemfile.lock @@ -77,7 +77,6 @@ GEM tzinfo (~> 2.0) addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.13.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -109,7 +108,6 @@ GEM hashdiff (1.1.1) i18n (1.14.5) concurrent-ruby (~> 1.0) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -147,10 +145,6 @@ GEM nokogiri (1.16.7-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.26.3) - parser (3.3.4.2) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -191,11 +185,9 @@ GEM rake (>= 12.2) thor (~> 1.0) zeitwerk (~> 2.5) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.6) strscan rspec (3.13.0) @@ -217,29 +209,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.1) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -254,7 +223,6 @@ GEM timeout (0.4.1) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -292,10 +260,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.3_rails71.gemfile b/gemfiles/ruby_3.3_rails71.gemfile index 006dafab72d..cd45bf1a819 100644 --- a/gemfiles/ruby_3.3_rails71.gemfile +++ b/gemfiles/ruby_3.3_rails71.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.3_rails71.gemfile.lock b/gemfiles/ruby_3.3_rails71.gemfile.lock index 943bd28c2dc..f2f457a8ff8 100644 --- a/gemfiles/ruby_3.3_rails71.gemfile.lock +++ b/gemfiles/ruby_3.3_rails71.gemfile.lock @@ -86,7 +86,6 @@ GEM tzinfo (~> 2.0) addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -125,7 +124,6 @@ GEM irb (1.14.0) rdoc (>= 4.0.0) reline (>= 0.4.2) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -164,10 +162,6 @@ GEM nokogiri (1.16.7-x86_64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.26.3) - parser (3.3.4.2) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -216,13 +210,11 @@ GEM rake (>= 12.2) thor (~> 1.0, >= 1.2.2) zeitwerk (~> 2.6) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake rdoc (6.7.0) psych (>= 4.0.0) - regexp_parser (2.9.2) reline (0.5.9) io-console (~> 0.5) rexml (3.3.6) @@ -246,29 +238,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.1) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -284,7 +253,6 @@ GEM timeout (0.4.1) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -322,10 +290,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.3_rails_old_redis.gemfile b/gemfiles/ruby_3.3_rails_old_redis.gemfile index acf6f6605fa..b581376aa12 100644 --- a/gemfiles/ruby_3.3_rails_old_redis.gemfile +++ b/gemfiles/ruby_3.3_rails_old_redis.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.3_redis_3.gemfile b/gemfiles/ruby_3.3_redis_3.gemfile index c7423cbe3f0..9ca41079749 100644 --- a/gemfiles/ruby_3.3_redis_3.gemfile +++ b/gemfiles/ruby_3.3_redis_3.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.3_redis_3.gemfile.lock b/gemfiles/ruby_3.3_redis_3.gemfile.lock index 0da4e8939f3..84d40727081 100644 --- a/gemfiles/ruby_3.3_redis_3.gemfile.lock +++ b/gemfiles/ruby_3.3_redis_3.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.12.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -32,7 +31,6 @@ GEM ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.23.1) hashdiff (1.0.1) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -45,9 +43,6 @@ GEM method_source (1.0.0) msgpack (1.7.5) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.1) - ast (~> 2.4.1) pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -55,12 +50,10 @@ GEM pry-stack_explorer (0.6.1) binding_of_caller (~> 1.0) pry (~> 0.13) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake redis (3.3.5) - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -82,29 +75,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.28.1) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -115,7 +85,6 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) strscan (3.1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -149,10 +118,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.3_redis_4.gemfile b/gemfiles/ruby_3.3_redis_4.gemfile index a80abdd50a9..99ce6f43e9b 100644 --- a/gemfiles/ruby_3.3_redis_4.gemfile +++ b/gemfiles/ruby_3.3_redis_4.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.3_redis_4.gemfile.lock b/gemfiles/ruby_3.3_redis_4.gemfile.lock index f22e4d596b8..3196f10d80a 100644 --- a/gemfiles/ruby_3.3_redis_4.gemfile.lock +++ b/gemfiles/ruby_3.3_redis_4.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.12.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -32,7 +31,6 @@ GEM ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.23.1) hashdiff (1.0.1) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -45,9 +43,6 @@ GEM method_source (1.0.0) msgpack (1.7.5) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.1) - ast (~> 2.4.1) pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -55,12 +50,10 @@ GEM pry-stack_explorer (0.6.1) binding_of_caller (~> 1.0) pry (~> 0.13) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake redis (4.8.1) - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -82,29 +75,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.28.1) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -115,7 +85,6 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) strscan (3.1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -149,10 +118,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.3_redis_5.gemfile b/gemfiles/ruby_3.3_redis_5.gemfile index b79c4d9d9b8..85b8db19aed 100644 --- a/gemfiles/ruby_3.3_redis_5.gemfile +++ b/gemfiles/ruby_3.3_redis_5.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.3_redis_5.gemfile.lock b/gemfiles/ruby_3.3_redis_5.gemfile.lock index fc179422917..f211c5de2b6 100644 --- a/gemfiles/ruby_3.3_redis_5.gemfile.lock +++ b/gemfiles/ruby_3.3_redis_5.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.12.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -33,7 +32,6 @@ GEM ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.23.1) hashdiff (1.0.1) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -46,9 +44,6 @@ GEM method_source (1.0.0) msgpack (1.7.5) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.1) - ast (~> 2.4.1) pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -56,7 +51,6 @@ GEM pry-stack_explorer (0.6.1) binding_of_caller (~> 1.0) pry (~> 0.13) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake @@ -64,7 +58,6 @@ GEM redis-client (>= 0.9.0) redis-client (0.14.1) connection_pool - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -86,29 +79,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.28.1) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -119,7 +89,6 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) strscan (3.1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -153,10 +122,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.3_relational_db.gemfile b/gemfiles/ruby_3.3_relational_db.gemfile index 4f3a9bba7b0..cd8d81351ea 100644 --- a/gemfiles/ruby_3.3_relational_db.gemfile +++ b/gemfiles/ruby_3.3_relational_db.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.3_relational_db.gemfile.lock b/gemfiles/ruby_3.3_relational_db.gemfile.lock index 878a5ea38b5..7b19b882e76 100644 --- a/gemfiles/ruby_3.3_relational_db.gemfile.lock +++ b/gemfiles/ruby_3.3_relational_db.gemfile.lock @@ -21,7 +21,6 @@ GEM minitest (>= 5.1) tzinfo (~> 2.0) addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.12.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -50,7 +49,6 @@ GEM hashdiff (1.0.1) i18n (1.14.1) concurrent-ruby (~> 1.0) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -68,10 +66,6 @@ GEM msgpack (1.7.5) mysql2 (0.5.5) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.3) - ast (~> 2.4.1) - racc pg (1.5.4) pimpmychangelog (0.1.3) pry (0.14.2) @@ -80,12 +74,9 @@ GEM pry-stack_explorer (0.6.1) binding_of_caller (~> 1.0) pry (~> 0.13) - racc (1.7.1) - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.5) rake - regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -107,29 +98,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.0) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) sequel (5.83.1) bigdecimal simplecov (0.21.2) @@ -147,7 +115,6 @@ GEM trilogy (2.7.0) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -186,10 +153,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) sequel simplecov simplecov-cobertura (~> 2.1.0) diff --git a/gemfiles/ruby_3.3_resque2_redis3.gemfile b/gemfiles/ruby_3.3_resque2_redis3.gemfile index 25ae2f88533..9fee50f2c56 100644 --- a/gemfiles/ruby_3.3_resque2_redis3.gemfile +++ b/gemfiles/ruby_3.3_resque2_redis3.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.3_resque2_redis3.gemfile.lock b/gemfiles/ruby_3.3_resque2_redis3.gemfile.lock index 7e32714baf5..b476f932283 100644 --- a/gemfiles/ruby_3.3_resque2_redis3.gemfile.lock +++ b/gemfiles/ruby_3.3_resque2_redis3.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.12.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -32,7 +31,6 @@ GEM ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.23.1) hashdiff (1.0.1) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -49,9 +47,6 @@ GEM mustermann (3.0.0) ruby2_keywords (~> 0.0.1) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.1) - ast (~> 2.4.1) pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -62,14 +57,12 @@ GEM rack (2.2.7) rack-protection (3.0.6) rack - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake redis (3.3.5) redis-namespace (1.8.2) redis (>= 3.0.4) - regexp_parser (2.8.1) resque (2.5.0) mono_logger (~> 1.0) multi_json (~> 1.0) @@ -96,29 +89,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.28.1) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) simplecov (0.21.2) docile (~> 1.1) @@ -136,7 +106,6 @@ GEM tilt (~> 2.0) strscan (3.1.0) tilt (2.1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -171,10 +140,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.3_resque2_redis4.gemfile b/gemfiles/ruby_3.3_resque2_redis4.gemfile index cc1ae388517..aadef1821e8 100644 --- a/gemfiles/ruby_3.3_resque2_redis4.gemfile +++ b/gemfiles/ruby_3.3_resque2_redis4.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.3_resque2_redis4.gemfile.lock b/gemfiles/ruby_3.3_resque2_redis4.gemfile.lock index e13117348be..4ea24523ad2 100644 --- a/gemfiles/ruby_3.3_resque2_redis4.gemfile.lock +++ b/gemfiles/ruby_3.3_resque2_redis4.gemfile.lock @@ -11,7 +11,6 @@ GEM remote: https://rubygems.org/ specs: addressable (2.4.0) - ast (2.4.2) benchmark-ips (2.12.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -33,7 +32,6 @@ GEM ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.23.1) hashdiff (1.0.1) - json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -50,9 +48,6 @@ GEM mustermann (3.0.0) ruby2_keywords (~> 0.0.1) os (1.1.4) - parallel (1.23.0) - parser (3.2.2.1) - ast (~> 2.4.1) pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -63,7 +58,6 @@ GEM rack (2.2.7) rack-protection (3.0.6) rack - rainbow (3.1.1) rake (13.0.6) rake-compiler (1.2.1) rake @@ -73,7 +67,6 @@ GEM connection_pool redis-namespace (1.10.0) redis (>= 4) - regexp_parser (2.8.1) resque (2.5.0) mono_logger (~> 1.0) multi_json (~> 1.0) @@ -100,29 +93,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.28.1) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.17.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) simplecov (0.21.2) docile (~> 1.1) @@ -140,7 +110,6 @@ GEM tilt (~> 2.0) strscan (3.1.0) tilt (2.1.0) - unicode-display_width (2.4.2) warning (1.3.0) webmock (3.13.0) addressable (>= 2.3.6) @@ -175,10 +144,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.3_sinatra_2.gemfile b/gemfiles/ruby_3.3_sinatra_2.gemfile index 79c6068bc8b..12961d060b1 100644 --- a/gemfiles/ruby_3.3_sinatra_2.gemfile +++ b/gemfiles/ruby_3.3_sinatra_2.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.3_sinatra_2.gemfile.lock b/gemfiles/ruby_3.3_sinatra_2.gemfile.lock index 040b2784c37..c39cddaee80 100644 --- a/gemfiles/ruby_3.3_sinatra_2.gemfile.lock +++ b/gemfiles/ruby_3.3_sinatra_2.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.6) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) benchmark-ips (2.13.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -36,7 +35,6 @@ GEM google-protobuf (3.25.3-aarch64-linux) google-protobuf (3.25.3-x86_64-linux) hashdiff (1.1.0) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -51,10 +49,6 @@ GEM mustermann (2.0.2) ruby2_keywords (~> 0.0.1) os (1.1.4) - parallel (1.24.0) - parser (3.3.0.5) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -63,7 +57,6 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (5.0.5) - racc (1.7.3) rack (2.2.9) rack-contrib (2.4.0) rack (< 4) @@ -71,11 +64,9 @@ GEM rack rack-test (2.1.0) rack (>= 1.3) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.0) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -97,29 +88,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.31.2) - parser (>= 3.3.0.4) - rubocop-capybara (2.20.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.0) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) simplecov (0.21.2) docile (~> 1.1) @@ -137,7 +105,6 @@ GEM tilt (~> 2.0) strscan (3.1.0) tilt (2.3.0) - unicode-display_width (2.5.0) warning (1.3.0) webmock (3.23.0) addressable (>= 2.8.0) @@ -172,10 +139,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sinatra (~> 2) diff --git a/gemfiles/ruby_3.3_sinatra_3.gemfile b/gemfiles/ruby_3.3_sinatra_3.gemfile index a35d2d05075..9465f917f15 100644 --- a/gemfiles/ruby_3.3_sinatra_3.gemfile +++ b/gemfiles/ruby_3.3_sinatra_3.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.3_sinatra_3.gemfile.lock b/gemfiles/ruby_3.3_sinatra_3.gemfile.lock index 698e3f99f09..752832d9958 100644 --- a/gemfiles/ruby_3.3_sinatra_3.gemfile.lock +++ b/gemfiles/ruby_3.3_sinatra_3.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.6) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -37,7 +36,6 @@ GEM google-protobuf (3.25.3-aarch64-linux) google-protobuf (3.25.3-x86_64-linux) hashdiff (1.1.0) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -52,10 +50,6 @@ GEM mustermann (3.0.0) ruby2_keywords (~> 0.0.1) os (1.1.4) - parallel (1.24.0) - parser (3.3.0.5) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -64,7 +58,6 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (5.0.5) - racc (1.7.3) rack (2.2.9) rack-contrib (2.4.0) rack (< 4) @@ -73,11 +66,9 @@ GEM rack (~> 2.2, >= 2.2.4) rack-test (2.1.0) rack (>= 1.3) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.0) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -99,29 +90,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.31.2) - parser (>= 3.3.0.4) - rubocop-capybara (2.20.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.0) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) simplecov (0.21.2) docile (~> 1.1) @@ -139,7 +107,6 @@ GEM tilt (~> 2.0) strscan (3.1.0) tilt (2.3.0) - unicode-display_width (2.5.0) warning (1.3.0) webmock (3.23.0) addressable (>= 2.8.0) @@ -174,10 +141,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sinatra (~> 3) diff --git a/gemfiles/ruby_3.3_sinatra_4.gemfile b/gemfiles/ruby_3.3_sinatra_4.gemfile index ad413b7d594..cbc347d40eb 100644 --- a/gemfiles/ruby_3.3_sinatra_4.gemfile +++ b/gemfiles/ruby_3.3_sinatra_4.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.3_sinatra_4.gemfile.lock b/gemfiles/ruby_3.3_sinatra_4.gemfile.lock index 71fcfbc2f33..fead993cef1 100644 --- a/gemfiles/ruby_3.3_sinatra_4.gemfile.lock +++ b/gemfiles/ruby_3.3_sinatra_4.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.6) public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -37,7 +36,6 @@ GEM google-protobuf (3.25.3-aarch64-linux) google-protobuf (3.25.3-x86_64-linux) hashdiff (1.1.0) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -52,10 +50,6 @@ GEM mustermann (3.0.0) ruby2_keywords (~> 0.0.1) os (1.1.4) - parallel (1.24.0) - parser (3.3.0.5) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -64,7 +58,6 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (5.0.5) - racc (1.7.3) rack (3.0.10) rack-contrib (2.4.0) rack (< 4) @@ -75,11 +68,9 @@ GEM rack (>= 3.0.0) rack-test (2.1.0) rack (>= 1.3) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.0) rexml (3.2.8) strscan (>= 3.0.9) rspec (3.13.0) @@ -101,29 +92,6 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.31.2) - parser (>= 3.3.0.4) - rubocop-capybara (2.20.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.0) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) simplecov (0.21.2) docile (~> 1.1) @@ -142,7 +110,6 @@ GEM tilt (~> 2.0) strscan (3.1.0) tilt (2.3.0) - unicode-display_width (2.5.0) warning (1.3.0) webmock (3.23.0) addressable (>= 2.8.0) @@ -177,10 +144,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sinatra (~> 4) diff --git a/gemfiles/ruby_3.3_stripe_10.gemfile b/gemfiles/ruby_3.3_stripe_10.gemfile index 93a5975d521..87473a10869 100644 --- a/gemfiles/ruby_3.3_stripe_10.gemfile +++ b/gemfiles/ruby_3.3_stripe_10.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.3_stripe_10.gemfile.lock b/gemfiles/ruby_3.3_stripe_10.gemfile.lock index 5fbc0a7a593..dad05a9404a 100644 --- a/gemfiles/ruby_3.3_stripe_10.gemfile.lock +++ b/gemfiles/ruby_3.3_stripe_10.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.13.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -36,7 +35,6 @@ GEM google-protobuf (3.25.4-aarch64-linux) google-protobuf (3.25.4-x86_64-linux) hashdiff (1.1.1) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -49,10 +47,6 @@ GEM method_source (1.1.0) msgpack (1.7.5) os (1.1.4) - parallel (1.26.3) - parser (3.3.4.2) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -61,12 +55,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (6.0.1) - racc (1.8.1) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.6) strscan rspec (3.13.0) @@ -88,29 +79,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.1) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -122,7 +90,6 @@ GEM simplecov_json_formatter (0.1.4) stripe (10.15.0) strscan (3.1.0) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -155,10 +122,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 10) diff --git a/gemfiles/ruby_3.3_stripe_11.gemfile b/gemfiles/ruby_3.3_stripe_11.gemfile index d6ccbe3d451..41edeb33001 100644 --- a/gemfiles/ruby_3.3_stripe_11.gemfile +++ b/gemfiles/ruby_3.3_stripe_11.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.3_stripe_11.gemfile.lock b/gemfiles/ruby_3.3_stripe_11.gemfile.lock index 10d633de97f..6d56d35d6a3 100644 --- a/gemfiles/ruby_3.3_stripe_11.gemfile.lock +++ b/gemfiles/ruby_3.3_stripe_11.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.13.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -36,7 +35,6 @@ GEM google-protobuf (3.25.4-aarch64-linux) google-protobuf (3.25.4-x86_64-linux) hashdiff (1.1.1) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -49,10 +47,6 @@ GEM method_source (1.1.0) msgpack (1.7.5) os (1.1.4) - parallel (1.26.3) - parser (3.3.4.2) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -61,12 +55,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (6.0.1) - racc (1.8.1) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.6) strscan rspec (3.13.0) @@ -88,29 +79,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.1) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -122,7 +90,6 @@ GEM simplecov_json_formatter (0.1.4) stripe (11.7.0) strscan (3.1.0) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -155,10 +122,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 11) diff --git a/gemfiles/ruby_3.3_stripe_12.gemfile b/gemfiles/ruby_3.3_stripe_12.gemfile index 2e1b91d06ff..144c7a42adc 100644 --- a/gemfiles/ruby_3.3_stripe_12.gemfile +++ b/gemfiles/ruby_3.3_stripe_12.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.3_stripe_12.gemfile.lock b/gemfiles/ruby_3.3_stripe_12.gemfile.lock index 1c91f743b6c..e500be57fd7 100644 --- a/gemfiles/ruby_3.3_stripe_12.gemfile.lock +++ b/gemfiles/ruby_3.3_stripe_12.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.13.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -36,7 +35,6 @@ GEM google-protobuf (3.25.4-aarch64-linux) google-protobuf (3.25.4-x86_64-linux) hashdiff (1.1.1) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -49,10 +47,6 @@ GEM method_source (1.1.0) msgpack (1.7.5) os (1.1.4) - parallel (1.26.3) - parser (3.3.4.2) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -61,12 +55,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (6.0.1) - racc (1.8.1) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.6) strscan rspec (3.13.0) @@ -88,29 +79,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.1) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -122,7 +90,6 @@ GEM simplecov_json_formatter (0.1.4) stripe (12.6.0) strscan (3.1.0) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -155,10 +122,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 12) diff --git a/gemfiles/ruby_3.3_stripe_7.gemfile b/gemfiles/ruby_3.3_stripe_7.gemfile index 17d9a9abb41..adb9b336ba4 100644 --- a/gemfiles/ruby_3.3_stripe_7.gemfile +++ b/gemfiles/ruby_3.3_stripe_7.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.3_stripe_7.gemfile.lock b/gemfiles/ruby_3.3_stripe_7.gemfile.lock index bbb1c542d2b..139d197810a 100644 --- a/gemfiles/ruby_3.3_stripe_7.gemfile.lock +++ b/gemfiles/ruby_3.3_stripe_7.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.13.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -36,7 +35,6 @@ GEM google-protobuf (3.25.4-aarch64-linux) google-protobuf (3.25.4-x86_64-linux) hashdiff (1.1.1) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -49,10 +47,6 @@ GEM method_source (1.1.0) msgpack (1.7.5) os (1.1.4) - parallel (1.26.3) - parser (3.3.4.2) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -61,12 +55,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (6.0.1) - racc (1.8.1) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.6) strscan rspec (3.13.0) @@ -88,29 +79,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.1) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -122,7 +90,6 @@ GEM simplecov_json_formatter (0.1.4) stripe (7.1.0) strscan (3.1.0) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -155,10 +122,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 7) diff --git a/gemfiles/ruby_3.3_stripe_8.gemfile b/gemfiles/ruby_3.3_stripe_8.gemfile index 352eb982a29..7058ea2e0ee 100644 --- a/gemfiles/ruby_3.3_stripe_8.gemfile +++ b/gemfiles/ruby_3.3_stripe_8.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.3_stripe_8.gemfile.lock b/gemfiles/ruby_3.3_stripe_8.gemfile.lock index 001e899d443..10c3c95fc3f 100644 --- a/gemfiles/ruby_3.3_stripe_8.gemfile.lock +++ b/gemfiles/ruby_3.3_stripe_8.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.13.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -36,7 +35,6 @@ GEM google-protobuf (3.25.4-aarch64-linux) google-protobuf (3.25.4-x86_64-linux) hashdiff (1.1.1) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -49,10 +47,6 @@ GEM method_source (1.1.0) msgpack (1.7.5) os (1.1.4) - parallel (1.26.3) - parser (3.3.4.2) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -61,12 +55,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (6.0.1) - racc (1.8.1) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.6) strscan rspec (3.13.0) @@ -88,29 +79,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.1) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -122,7 +90,6 @@ GEM simplecov_json_formatter (0.1.4) stripe (8.7.0) strscan (3.1.0) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -155,10 +122,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 8) diff --git a/gemfiles/ruby_3.3_stripe_9.gemfile b/gemfiles/ruby_3.3_stripe_9.gemfile index 7e5411f19f1..d0e06e08f2a 100644 --- a/gemfiles/ruby_3.3_stripe_9.gemfile +++ b/gemfiles/ruby_3.3_stripe_9.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.3_stripe_9.gemfile.lock b/gemfiles/ruby_3.3_stripe_9.gemfile.lock index f15a3cf3abb..49aed417129 100644 --- a/gemfiles/ruby_3.3_stripe_9.gemfile.lock +++ b/gemfiles/ruby_3.3_stripe_9.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.13.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -36,7 +35,6 @@ GEM google-protobuf (3.25.4-aarch64-linux) google-protobuf (3.25.4-x86_64-linux) hashdiff (1.1.1) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -49,10 +47,6 @@ GEM method_source (1.1.0) msgpack (1.7.5) os (1.1.4) - parallel (1.26.3) - parser (3.3.4.2) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -61,12 +55,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (6.0.1) - racc (1.8.1) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.6) strscan rspec (3.13.0) @@ -88,29 +79,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.1) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -122,7 +90,6 @@ GEM simplecov_json_formatter (0.1.4) stripe (9.4.0) strscan (3.1.0) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -155,10 +122,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 9) diff --git a/gemfiles/ruby_3.3_stripe_latest.gemfile b/gemfiles/ruby_3.3_stripe_latest.gemfile index f84c0c4cf04..00a02c0e01f 100644 --- a/gemfiles/ruby_3.3_stripe_latest.gemfile +++ b/gemfiles/ruby_3.3_stripe_latest.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.3_stripe_latest.gemfile.lock b/gemfiles/ruby_3.3_stripe_latest.gemfile.lock index b18995496df..5c2cb366a49 100644 --- a/gemfiles/ruby_3.3_stripe_latest.gemfile.lock +++ b/gemfiles/ruby_3.3_stripe_latest.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.14.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -36,7 +35,6 @@ GEM google-protobuf (3.25.4-aarch64-linux) google-protobuf (3.25.4-x86_64-linux) hashdiff (1.1.1) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -49,10 +47,6 @@ GEM method_source (1.1.0) msgpack (1.7.5) os (1.1.4) - parallel (1.26.3) - parser (3.3.5.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -61,12 +55,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (6.0.1) - racc (1.8.1) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.7) rspec (3.13.0) rspec-core (~> 3.13.0) @@ -87,29 +78,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.3) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.22.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -120,7 +88,6 @@ GEM simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) stripe (13.3.0) - unicode-display_width (2.6.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -153,10 +120,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) stripe diff --git a/gemfiles/ruby_3.3_stripe_min.gemfile b/gemfiles/ruby_3.3_stripe_min.gemfile index cfbd5cdb264..3b331617a10 100644 --- a/gemfiles/ruby_3.3_stripe_min.gemfile +++ b/gemfiles/ruby_3.3_stripe_min.gemfile @@ -21,10 +21,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.3_stripe_min.gemfile.lock b/gemfiles/ruby_3.3_stripe_min.gemfile.lock index b27b795714f..7450308117c 100644 --- a/gemfiles/ruby_3.3_stripe_min.gemfile.lock +++ b/gemfiles/ruby_3.3_stripe_min.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) benchmark-ips (2.14.0) benchmark-memory (0.1.2) memory_profiler (~> 0.9) @@ -36,7 +35,6 @@ GEM google-protobuf (3.25.5-aarch64-linux) google-protobuf (3.25.5-x86_64-linux) hashdiff (1.1.1) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -49,10 +47,6 @@ GEM method_source (1.1.0) msgpack (1.7.5) os (1.1.4) - parallel (1.26.3) - parser (3.3.5.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -61,12 +55,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (6.0.1) - racc (1.8.1) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.7) rspec (3.13.0) rspec-core (~> 3.13.0) @@ -87,29 +78,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.3) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.22.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -120,7 +88,6 @@ GEM simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) stripe (5.15.0) - unicode-display_width (2.6.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -153,10 +120,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) stripe (= 5.15.0) diff --git a/gemfiles/ruby_3.4_activesupport.gemfile b/gemfiles/ruby_3.4_activesupport.gemfile index a2e07cceda6..f4f114ba5e3 100644 --- a/gemfiles/ruby_3.4_activesupport.gemfile +++ b/gemfiles/ruby_3.4_activesupport.gemfile @@ -24,10 +24,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.4_activesupport.gemfile.lock b/gemfiles/ruby_3.4_activesupport.gemfile.lock index 45df7994d26..f97e6f162f0 100644 --- a/gemfiles/ruby_3.4_activesupport.gemfile.lock +++ b/gemfiles/ruby_3.4_activesupport.gemfile.lock @@ -45,7 +45,6 @@ GEM tzinfo (~> 2.0) addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -105,7 +104,6 @@ GEM irb (1.13.2) rdoc (>= 4.0.0) reline (>= 0.4.2) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) jsonapi-renderer (0.2.2) @@ -138,10 +136,6 @@ GEM mini_portile2 (~> 2.8.2) racc (~> 1.4) os (1.1.4) - parallel (1.25.1) - parser (3.3.3.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -179,7 +173,6 @@ GEM rake (>= 12.2) thor (~> 1.0, >= 1.2.2) zeitwerk (~> 2.6) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake @@ -189,7 +182,6 @@ GEM rake (> 12) rdoc (6.7.0) psych (>= 4.0.0) - regexp_parser (2.9.2) reline (0.5.9) io-console (~> 0.5) request_store (1.7.0) @@ -215,31 +207,8 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.31.3) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) ruby-kafka (1.5.0) digest-crc - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) simplecov (0.21.2) docile (~> 1.1) @@ -255,7 +224,6 @@ GEM thor (1.3.1) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -299,10 +267,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) ruby-kafka (>= 0.7.10) simplecov simplecov-cobertura (~> 2.1.0) diff --git a/gemfiles/ruby_3.4_aws.gemfile b/gemfiles/ruby_3.4_aws.gemfile index c75126da92b..8d0ad0015d8 100644 --- a/gemfiles/ruby_3.4_aws.gemfile +++ b/gemfiles/ruby_3.4_aws.gemfile @@ -24,10 +24,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.4_aws.gemfile.lock b/gemfiles/ruby_3.4_aws.gemfile.lock index c133efc3e5d..840ad8dcc6b 100644 --- a/gemfiles/ruby_3.4_aws.gemfile.lock +++ b/gemfiles/ruby_3.4_aws.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) aws-eventstream (1.3.0) aws-partitions (1.948.0) aws-sdk (3.2.0) @@ -1585,7 +1584,6 @@ GEM google-protobuf (3.25.3) hashdiff (1.1.0) jmespath (1.6.2) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -1599,10 +1597,6 @@ GEM msgpack (1.7.5) mutex_m (0.2.0) os (1.1.4) - parallel (1.25.1) - parser (3.3.3.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -1611,12 +1605,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (6.0.0) - racc (1.8.0) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.1) strscan rspec (3.13.0) @@ -1638,29 +1629,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.31.3) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) shoryuken (6.2.1) aws-sdk-core (>= 2) concurrent-ruby @@ -1676,7 +1644,6 @@ GEM simplecov_json_formatter (0.1.4) strscan (3.1.1) thor (1.3.1) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -1713,10 +1680,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) shoryuken simplecov simplecov-cobertura (~> 2.1.0) diff --git a/gemfiles/ruby_3.4_contrib.gemfile b/gemfiles/ruby_3.4_contrib.gemfile index 1474d4ef6f4..bfa5f73836d 100644 --- a/gemfiles/ruby_3.4_contrib.gemfile +++ b/gemfiles/ruby_3.4_contrib.gemfile @@ -24,10 +24,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.4_contrib.gemfile.lock b/gemfiles/ruby_3.4_contrib.gemfile.lock index cee1993a870..cf3e93c45cc 100644 --- a/gemfiles/ruby_3.4_contrib.gemfile.lock +++ b/gemfiles/ruby_3.4_contrib.gemfile.lock @@ -13,7 +13,6 @@ GEM addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) amq-protocol (2.3.2) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -48,7 +47,6 @@ GEM google-protobuf (~> 3.25) googleapis-common-protos-types (~> 1.0) hashdiff (1.1.0) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -68,10 +66,6 @@ GEM ruby2_keywords (~> 0.0.1) mutex_m (0.2.0) os (1.1.4) - parallel (1.25.1) - parser (3.3.3.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -81,7 +75,6 @@ GEM pry (~> 0.13) public_suffix (6.0.0) que (2.3.0) - racc (1.8.0) rack (3.1.4) rack-protection (4.0.0) base64 (>= 0.1.0) @@ -92,7 +85,6 @@ GEM rack (>= 1.3) rackup (2.2.0) rack (>= 3) - rainbow (3.1.1) rake (12.3.3) rake-compiler (1.2.7) rake @@ -103,7 +95,6 @@ GEM connection_pool redis-namespace (1.11.0) redis (>= 4) - regexp_parser (2.9.2) resque (2.6.0) mono_logger (~> 1.0) multi_json (~> 1.0) @@ -132,29 +123,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.31.3) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) semantic_logger (4.15.0) concurrent-ruby (~> 1.0) @@ -196,7 +164,6 @@ GEM concurrent-ruby (~> 1.0) thor (1.3.1) tilt (2.4.0) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -240,10 +207,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) semantic_logger (~> 4.0) sidekiq (~> 7) simplecov diff --git a/gemfiles/ruby_3.4_contrib_old.gemfile b/gemfiles/ruby_3.4_contrib_old.gemfile index dcb90710598..8658fa2d219 100644 --- a/gemfiles/ruby_3.4_contrib_old.gemfile +++ b/gemfiles/ruby_3.4_contrib_old.gemfile @@ -24,10 +24,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.4_contrib_old.gemfile.lock b/gemfiles/ruby_3.4_contrib_old.gemfile.lock index c93978f82e0..644612107b7 100644 --- a/gemfiles/ruby_3.4_contrib_old.gemfile.lock +++ b/gemfiles/ruby_3.4_contrib_old.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) atomic (1.1.101) avl_tree (1.2.1) atomic (~> 1.1) @@ -47,7 +46,6 @@ GEM google-protobuf (3.25.3) hashdiff (1.1.0) hitimes (1.3.1) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -68,10 +66,6 @@ GEM ruby2_keywords (~> 0.0.1) mutex_m (0.2.0) os (1.1.4) - parallel (1.25.1) - parser (3.3.3.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) presto-client (0.6.6) faraday (~> 0.12) @@ -94,16 +88,13 @@ GEM thin (~> 1.6) thor (~> 0.19.1) vegas (~> 0.1.11) - racc (1.8.0) rack (2.2.9) rack-protection (2.0.8.1) rack - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake redis (3.3.5) - regexp_parser (2.9.2) rexml (3.3.1) strscan rspec (3.13.0) @@ -125,29 +116,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.31.3) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) rusage (0.2.0) sentry-raven (0.15.6) @@ -174,7 +142,6 @@ GEM rack (>= 1, < 3) thor (0.19.4) tilt (2.4.0) - unicode-display_width (2.5.0) vegas (0.1.11) rack (>= 1.0.0) warning (1.4.0) @@ -215,10 +182,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.4_core_old.gemfile b/gemfiles/ruby_3.4_core_old.gemfile index 01b23e2d3da..49f40b3d879 100644 --- a/gemfiles/ruby_3.4_core_old.gemfile +++ b/gemfiles/ruby_3.4_core_old.gemfile @@ -24,10 +24,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.4_core_old.gemfile.lock b/gemfiles/ruby_3.4_core_old.gemfile.lock index 5bde6ab9ed0..c5f0934af53 100644 --- a/gemfiles/ruby_3.4_core_old.gemfile.lock +++ b/gemfiles/ruby_3.4_core_old.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -36,7 +35,6 @@ GEM ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.3) hashdiff (1.1.0) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -50,10 +48,6 @@ GEM msgpack (1.7.5) mutex_m (0.2.0) os (1.1.4) - parallel (1.25.1) - parser (3.3.3.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -62,12 +56,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (6.0.0) - racc (1.8.0) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.1) strscan rspec (3.13.0) @@ -89,29 +80,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.31.3) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -122,7 +90,6 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) strscan (3.1.1) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -158,10 +125,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.4_elasticsearch_7.gemfile b/gemfiles/ruby_3.4_elasticsearch_7.gemfile index 21436a3d56d..1237f4ea150 100644 --- a/gemfiles/ruby_3.4_elasticsearch_7.gemfile +++ b/gemfiles/ruby_3.4_elasticsearch_7.gemfile @@ -24,10 +24,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.4_elasticsearch_7.gemfile.lock b/gemfiles/ruby_3.4_elasticsearch_7.gemfile.lock index 8127562c032..4c4e69f7fed 100644 --- a/gemfiles/ruby_3.4_elasticsearch_7.gemfile.lock +++ b/gemfiles/ruby_3.4_elasticsearch_7.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -69,10 +68,6 @@ GEM net-http (0.6.0) uri os (1.1.4) - parallel (1.25.1) - parser (3.3.3.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -81,12 +76,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (6.0.0) - racc (1.8.0) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.1) strscan rspec (3.13.0) @@ -108,29 +100,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.31.3) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -141,7 +110,6 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) strscan (3.1.1) - unicode-display_width (2.5.0) uri (1.0.2) warning (1.4.0) webmock (3.23.1) @@ -179,10 +147,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.4_elasticsearch_8.gemfile b/gemfiles/ruby_3.4_elasticsearch_8.gemfile index 12f2bc2e928..210175d3987 100644 --- a/gemfiles/ruby_3.4_elasticsearch_8.gemfile +++ b/gemfiles/ruby_3.4_elasticsearch_8.gemfile @@ -24,10 +24,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.4_elasticsearch_8.gemfile.lock b/gemfiles/ruby_3.4_elasticsearch_8.gemfile.lock index 84c4385435b..69f83de14bd 100644 --- a/gemfiles/ruby_3.4_elasticsearch_8.gemfile.lock +++ b/gemfiles/ruby_3.4_elasticsearch_8.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -68,10 +67,6 @@ GEM net-http (0.6.0) uri os (1.1.4) - parallel (1.25.1) - parser (3.3.3.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -80,12 +75,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (6.0.0) - racc (1.8.0) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.1) strscan rspec (3.13.0) @@ -107,29 +99,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.31.3) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -140,7 +109,6 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) strscan (3.1.1) - unicode-display_width (2.5.0) uri (1.0.2) warning (1.4.0) webmock (3.23.1) @@ -178,10 +146,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.4_elasticsearch_latest.gemfile b/gemfiles/ruby_3.4_elasticsearch_latest.gemfile index af6d40078a6..f7693bb269d 100644 --- a/gemfiles/ruby_3.4_elasticsearch_latest.gemfile +++ b/gemfiles/ruby_3.4_elasticsearch_latest.gemfile @@ -24,10 +24,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.4_elasticsearch_latest.gemfile.lock b/gemfiles/ruby_3.4_elasticsearch_latest.gemfile.lock index 9ec5358a17c..6f71d768e91 100644 --- a/gemfiles/ruby_3.4_elasticsearch_latest.gemfile.lock +++ b/gemfiles/ruby_3.4_elasticsearch_latest.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.14.0) benchmark-memory (0.1.2) @@ -68,10 +67,6 @@ GEM net-http (0.6.0) uri os (1.1.4) - parallel (1.26.3) - parser (3.3.5.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -80,12 +75,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (6.0.1) - racc (1.8.1) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.7) rspec (3.13.0) rspec-core (~> 3.13.0) @@ -106,29 +98,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.3) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.22.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -138,7 +107,6 @@ GEM simplecov (~> 0.19) simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) - unicode-display_width (2.6.0) uri (1.0.2) warning (1.4.0) webmock (3.23.1) @@ -176,10 +144,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.4_graphql_1.13.gemfile b/gemfiles/ruby_3.4_graphql_1.13.gemfile index ff2b885583a..504df2e2797 100644 --- a/gemfiles/ruby_3.4_graphql_1.13.gemfile +++ b/gemfiles/ruby_3.4_graphql_1.13.gemfile @@ -24,10 +24,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.4_graphql_1.13.gemfile.lock b/gemfiles/ruby_3.4_graphql_1.13.gemfile.lock index d107c1264d5..41141b3d79f 100644 --- a/gemfiles/ruby_3.4_graphql_1.13.gemfile.lock +++ b/gemfiles/ruby_3.4_graphql_1.13.gemfile.lock @@ -71,7 +71,6 @@ GEM zeitwerk (~> 2.3) addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -105,7 +104,6 @@ GEM hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -148,10 +146,6 @@ GEM mini_portile2 (~> 2.8.2) racc (~> 1.4) os (1.1.4) - parallel (1.25.1) - parser (3.3.3.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -192,11 +186,9 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) request_store (1.7.0) rack (>= 1.4) rexml (3.3.1) @@ -220,29 +212,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.31.3) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -265,7 +234,6 @@ GEM timeout (0.4.1) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -308,10 +276,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_3.4_graphql_2.0.gemfile b/gemfiles/ruby_3.4_graphql_2.0.gemfile index 375c20be96f..c5c64a26cd2 100644 --- a/gemfiles/ruby_3.4_graphql_2.0.gemfile +++ b/gemfiles/ruby_3.4_graphql_2.0.gemfile @@ -24,10 +24,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.4_graphql_2.0.gemfile.lock b/gemfiles/ruby_3.4_graphql_2.0.gemfile.lock index 9ed446be3e1..6a9bd611a3f 100644 --- a/gemfiles/ruby_3.4_graphql_2.0.gemfile.lock +++ b/gemfiles/ruby_3.4_graphql_2.0.gemfile.lock @@ -71,7 +71,6 @@ GEM zeitwerk (~> 2.3) addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -105,7 +104,6 @@ GEM hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -148,10 +146,6 @@ GEM mini_portile2 (~> 2.8.2) racc (~> 1.4) os (1.1.4) - parallel (1.25.1) - parser (3.3.3.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -192,11 +186,9 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) request_store (1.7.0) rack (>= 1.4) rexml (3.3.1) @@ -220,29 +212,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.31.3) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -265,7 +234,6 @@ GEM timeout (0.4.1) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -308,10 +276,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_3.4_graphql_2.1.gemfile b/gemfiles/ruby_3.4_graphql_2.1.gemfile index d3a8c9d8161..947bd92fefb 100644 --- a/gemfiles/ruby_3.4_graphql_2.1.gemfile +++ b/gemfiles/ruby_3.4_graphql_2.1.gemfile @@ -24,10 +24,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.4_graphql_2.1.gemfile.lock b/gemfiles/ruby_3.4_graphql_2.1.gemfile.lock index b959d6e6ea4..de15e8374d0 100644 --- a/gemfiles/ruby_3.4_graphql_2.1.gemfile.lock +++ b/gemfiles/ruby_3.4_graphql_2.1.gemfile.lock @@ -71,7 +71,6 @@ GEM zeitwerk (~> 2.3) addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -105,7 +104,6 @@ GEM hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -148,10 +146,6 @@ GEM mini_portile2 (~> 2.8.2) racc (~> 1.4) os (1.1.4) - parallel (1.25.1) - parser (3.3.3.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -192,11 +186,9 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) request_store (1.7.0) rack (>= 1.4) rexml (3.3.1) @@ -220,29 +212,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.31.3) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -265,7 +234,6 @@ GEM timeout (0.4.1) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -308,10 +276,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_3.4_graphql_2.2.gemfile b/gemfiles/ruby_3.4_graphql_2.2.gemfile index 46d08eb7f03..027450148c4 100644 --- a/gemfiles/ruby_3.4_graphql_2.2.gemfile +++ b/gemfiles/ruby_3.4_graphql_2.2.gemfile @@ -24,10 +24,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.4_graphql_2.2.gemfile.lock b/gemfiles/ruby_3.4_graphql_2.2.gemfile.lock index 4f35d93aa3a..6a68bdfe0f8 100644 --- a/gemfiles/ruby_3.4_graphql_2.2.gemfile.lock +++ b/gemfiles/ruby_3.4_graphql_2.2.gemfile.lock @@ -71,7 +71,6 @@ GEM zeitwerk (~> 2.3) addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -105,7 +104,6 @@ GEM hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -148,10 +146,6 @@ GEM mini_portile2 (~> 2.8.2) racc (~> 1.4) os (1.1.4) - parallel (1.25.1) - parser (3.3.3.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -192,11 +186,9 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) request_store (1.7.0) rack (>= 1.4) rexml (3.3.1) @@ -220,29 +212,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.31.3) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -265,7 +234,6 @@ GEM timeout (0.4.1) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -308,10 +276,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_3.4_graphql_2.3.gemfile b/gemfiles/ruby_3.4_graphql_2.3.gemfile index fd458a7b381..b92d03d0cbe 100644 --- a/gemfiles/ruby_3.4_graphql_2.3.gemfile +++ b/gemfiles/ruby_3.4_graphql_2.3.gemfile @@ -24,10 +24,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.4_graphql_2.3.gemfile.lock b/gemfiles/ruby_3.4_graphql_2.3.gemfile.lock index 0d1cc4a2f5f..83371169324 100644 --- a/gemfiles/ruby_3.4_graphql_2.3.gemfile.lock +++ b/gemfiles/ruby_3.4_graphql_2.3.gemfile.lock @@ -71,7 +71,6 @@ GEM zeitwerk (~> 2.3) addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -105,7 +104,6 @@ GEM hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -148,10 +146,6 @@ GEM mini_portile2 (~> 2.8.2) racc (~> 1.4) os (1.1.4) - parallel (1.25.1) - parser (3.3.3.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -192,11 +186,9 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) request_store (1.7.0) rack (>= 1.4) rexml (3.3.1) @@ -220,29 +212,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.31.3) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -265,7 +234,6 @@ GEM timeout (0.4.1) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -308,10 +276,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_3.4_http.gemfile b/gemfiles/ruby_3.4_http.gemfile index 09320ec2626..9d51dfae5fa 100644 --- a/gemfiles/ruby_3.4_http.gemfile +++ b/gemfiles/ruby_3.4_http.gemfile @@ -24,10 +24,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.4_http.gemfile.lock b/gemfiles/ruby_3.4_http.gemfile.lock index bfbe3f6559a..c0f7d80afa7 100644 --- a/gemfiles/ruby_3.4_http.gemfile.lock +++ b/gemfiles/ruby_3.4_http.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -58,7 +57,6 @@ GEM domain_name (~> 0.5) http-form_data (2.3.0) httpclient (2.8.3) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -81,10 +79,6 @@ GEM uri netrc (0.11.0) os (1.1.4) - parallel (1.25.1) - parser (3.3.3.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -93,12 +87,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (6.0.0) - racc (1.8.0) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rest-client (2.1.0) http-accept (>= 1.7.0, < 2.0) http-cookie (>= 1.0.2, < 2.0) @@ -125,29 +116,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.31.3) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -160,7 +128,6 @@ GEM strscan (3.1.1) typhoeus (1.4.1) ethon (>= 0.9.0) - unicode-display_width (2.5.0) uri (1.0.2) warning (1.4.0) webmock (3.23.1) @@ -203,10 +170,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) typhoeus diff --git a/gemfiles/ruby_3.4_opensearch_2.gemfile b/gemfiles/ruby_3.4_opensearch_2.gemfile index be165b3fb44..da5447fd7cb 100644 --- a/gemfiles/ruby_3.4_opensearch_2.gemfile +++ b/gemfiles/ruby_3.4_opensearch_2.gemfile @@ -24,10 +24,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.4_opensearch_2.gemfile.lock b/gemfiles/ruby_3.4_opensearch_2.gemfile.lock index 193c639f5f0..8a6e10be7ed 100644 --- a/gemfiles/ruby_3.4_opensearch_2.gemfile.lock +++ b/gemfiles/ruby_3.4_opensearch_2.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -68,10 +67,6 @@ GEM faraday (>= 1.0, < 3) multi_json os (1.1.4) - parallel (1.25.1) - parser (3.3.3.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -80,12 +75,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (6.0.0) - racc (1.8.0) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.1) strscan rspec (3.13.0) @@ -107,29 +99,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.31.3) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -140,7 +109,6 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) strscan (3.1.1) - unicode-display_width (2.5.0) uri (1.0.2) warning (1.4.0) webmock (3.23.1) @@ -178,10 +146,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.4_opensearch_3.gemfile b/gemfiles/ruby_3.4_opensearch_3.gemfile index 7327e22aba9..af95c34319e 100644 --- a/gemfiles/ruby_3.4_opensearch_3.gemfile +++ b/gemfiles/ruby_3.4_opensearch_3.gemfile @@ -24,10 +24,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.4_opensearch_3.gemfile.lock b/gemfiles/ruby_3.4_opensearch_3.gemfile.lock index e47e94be01e..6bd9ff7563a 100644 --- a/gemfiles/ruby_3.4_opensearch_3.gemfile.lock +++ b/gemfiles/ruby_3.4_opensearch_3.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -63,10 +62,6 @@ GEM faraday (>= 1.0, < 3) multi_json (>= 1.0) os (1.1.4) - parallel (1.25.1) - parser (3.3.3.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -75,12 +70,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (6.0.0) - racc (1.8.0) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.1) strscan rspec (3.13.0) @@ -102,29 +94,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.31.3) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -135,7 +104,6 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) strscan (3.1.1) - unicode-display_width (2.5.0) uri (1.0.2) warning (1.4.0) webmock (3.23.1) @@ -173,10 +141,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.4_opensearch_latest.gemfile b/gemfiles/ruby_3.4_opensearch_latest.gemfile index 68ef9748484..0595d9e54c1 100644 --- a/gemfiles/ruby_3.4_opensearch_latest.gemfile +++ b/gemfiles/ruby_3.4_opensearch_latest.gemfile @@ -24,10 +24,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.4_opensearch_latest.gemfile.lock b/gemfiles/ruby_3.4_opensearch_latest.gemfile.lock index c21a5addc66..bf46f755e95 100644 --- a/gemfiles/ruby_3.4_opensearch_latest.gemfile.lock +++ b/gemfiles/ruby_3.4_opensearch_latest.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.14.0) benchmark-memory (0.1.2) @@ -63,10 +62,6 @@ GEM faraday (>= 1.0, < 3) multi_json (>= 1.0) os (1.1.4) - parallel (1.26.3) - parser (3.3.5.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -75,12 +70,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (6.0.1) - racc (1.8.1) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.7) rspec (3.13.0) rspec-core (~> 3.13.0) @@ -101,29 +93,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.3) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.22.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -133,7 +102,6 @@ GEM simplecov (~> 0.19) simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) - unicode-display_width (2.6.0) uri (1.0.2) warning (1.4.0) webmock (3.23.1) @@ -171,10 +139,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.4_opentelemetry.gemfile b/gemfiles/ruby_3.4_opentelemetry.gemfile index c613f8f9968..f1bd46aca09 100644 --- a/gemfiles/ruby_3.4_opentelemetry.gemfile +++ b/gemfiles/ruby_3.4_opentelemetry.gemfile @@ -24,10 +24,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.4_opentelemetry.gemfile.lock b/gemfiles/ruby_3.4_opentelemetry.gemfile.lock index 0fc192e8a41..cc0380332df 100644 --- a/gemfiles/ruby_3.4_opentelemetry.gemfile.lock +++ b/gemfiles/ruby_3.4_opentelemetry.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -36,7 +35,6 @@ GEM ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.3) hashdiff (1.1.0) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -62,10 +60,6 @@ GEM opentelemetry-semantic_conventions (1.10.0) opentelemetry-api (~> 1.0) os (1.1.4) - parallel (1.25.1) - parser (3.3.3.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -74,12 +68,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (6.0.0) - racc (1.8.0) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.1) strscan rspec (3.13.0) @@ -101,29 +92,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.31.3) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -134,7 +102,6 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) strscan (3.1.1) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -171,10 +138,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.4_opentelemetry_otlp.gemfile b/gemfiles/ruby_3.4_opentelemetry_otlp.gemfile index bdb686e46d9..e541029d137 100644 --- a/gemfiles/ruby_3.4_opentelemetry_otlp.gemfile +++ b/gemfiles/ruby_3.4_opentelemetry_otlp.gemfile @@ -24,10 +24,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.4_opentelemetry_otlp.gemfile.lock b/gemfiles/ruby_3.4_opentelemetry_otlp.gemfile.lock index 6bf38e94ae6..41f215fc0f0 100644 --- a/gemfiles/ruby_3.4_opentelemetry_otlp.gemfile.lock +++ b/gemfiles/ruby_3.4_opentelemetry_otlp.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.14.0) benchmark-memory (0.1.2) @@ -38,7 +37,6 @@ GEM googleapis-common-protos-types (1.16.0) google-protobuf (>= 3.18, < 5.a) hashdiff (1.1.1) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -71,10 +69,6 @@ GEM opentelemetry-semantic_conventions (1.10.1) opentelemetry-api (~> 1.0) os (1.1.4) - parallel (1.26.3) - parser (3.3.5.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -83,12 +77,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (6.0.1) - racc (1.8.1) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.8) rake - regexp_parser (2.9.2) rexml (3.3.8) rspec (3.13.0) rspec-core (~> 3.13.0) @@ -109,29 +100,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.3) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.22.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -141,7 +109,6 @@ GEM simplecov (~> 0.19) simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) - unicode-display_width (2.6.0) warning (1.4.0) webmock (3.24.0) addressable (>= 2.8.0) @@ -179,10 +146,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.4_rack_2.gemfile b/gemfiles/ruby_3.4_rack_2.gemfile index c5d31419955..4d37375eb11 100644 --- a/gemfiles/ruby_3.4_rack_2.gemfile +++ b/gemfiles/ruby_3.4_rack_2.gemfile @@ -24,10 +24,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.4_rack_2.gemfile.lock b/gemfiles/ruby_3.4_rack_2.gemfile.lock index 70bd5f5e6ae..3c2d882c0cf 100644 --- a/gemfiles/ruby_3.4_rack_2.gemfile.lock +++ b/gemfiles/ruby_3.4_rack_2.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -36,7 +35,6 @@ GEM ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.3) hashdiff (1.1.0) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -50,10 +48,6 @@ GEM msgpack (1.7.5) mutex_m (0.2.0) os (1.1.4) - parallel (1.25.1) - parser (3.3.3.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -62,17 +56,14 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (6.0.0) - racc (1.8.0) rack (2.2.10) rack-contrib (2.5.0) rack (< 4) rack-test (2.1.0) rack (>= 1.3) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.1) strscan rspec (3.13.0) @@ -94,29 +85,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.31.3) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -127,7 +95,6 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) strscan (3.1.1) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -166,10 +133,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.4_rack_3.gemfile b/gemfiles/ruby_3.4_rack_3.gemfile index 76c7008ca2d..6aa6134698d 100644 --- a/gemfiles/ruby_3.4_rack_3.gemfile +++ b/gemfiles/ruby_3.4_rack_3.gemfile @@ -24,10 +24,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.4_rack_3.gemfile.lock b/gemfiles/ruby_3.4_rack_3.gemfile.lock index 4a8392c503f..42be05c7ed0 100644 --- a/gemfiles/ruby_3.4_rack_3.gemfile.lock +++ b/gemfiles/ruby_3.4_rack_3.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -36,7 +35,6 @@ GEM ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.3) hashdiff (1.1.0) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -50,10 +48,6 @@ GEM msgpack (1.7.5) mutex_m (0.2.0) os (1.1.4) - parallel (1.25.1) - parser (3.3.3.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -62,17 +56,14 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (6.0.0) - racc (1.8.0) rack (3.1.8) rack-contrib (2.5.0) rack (< 4) rack-test (2.1.0) rack (>= 1.3) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.1) strscan rspec (3.13.0) @@ -94,29 +85,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.31.3) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -127,7 +95,6 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) strscan (3.1.1) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -166,10 +133,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.4_rack_latest.gemfile b/gemfiles/ruby_3.4_rack_latest.gemfile index 0cc32214beb..d64f02bcb3f 100644 --- a/gemfiles/ruby_3.4_rack_latest.gemfile +++ b/gemfiles/ruby_3.4_rack_latest.gemfile @@ -24,10 +24,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.4_rack_latest.gemfile.lock b/gemfiles/ruby_3.4_rack_latest.gemfile.lock index 22f97c82b97..dfbcd3fbda5 100644 --- a/gemfiles/ruby_3.4_rack_latest.gemfile.lock +++ b/gemfiles/ruby_3.4_rack_latest.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.14.0) benchmark-memory (0.1.2) @@ -36,7 +35,6 @@ GEM ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.5) hashdiff (1.1.1) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -50,10 +48,6 @@ GEM msgpack (1.7.5) mutex_m (0.2.0) os (1.1.4) - parallel (1.26.3) - parser (3.3.5.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -62,17 +56,14 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (6.0.1) - racc (1.8.1) rack (3.1.8) rack-contrib (2.5.0) rack (< 4) rack-test (2.1.0) rack (>= 1.3) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.7) rspec (3.13.0) rspec-core (~> 3.13.0) @@ -93,29 +84,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.3) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.22.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -125,7 +93,6 @@ GEM simplecov (~> 0.19) simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) - unicode-display_width (2.6.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -164,10 +131,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.4_rails61_mysql2.gemfile b/gemfiles/ruby_3.4_rails61_mysql2.gemfile index 5bfc78b0799..8b2103c478b 100644 --- a/gemfiles/ruby_3.4_rails61_mysql2.gemfile +++ b/gemfiles/ruby_3.4_rails61_mysql2.gemfile @@ -24,10 +24,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.4_rails61_mysql2.gemfile.lock b/gemfiles/ruby_3.4_rails61_mysql2.gemfile.lock index 23a19f1603f..fc15081c378 100644 --- a/gemfiles/ruby_3.4_rails61_mysql2.gemfile.lock +++ b/gemfiles/ruby_3.4_rails61_mysql2.gemfile.lock @@ -71,7 +71,6 @@ GEM zeitwerk (~> 2.3) addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -103,7 +102,6 @@ GEM hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -147,10 +145,6 @@ GEM mini_portile2 (~> 2.8.2) racc (~> 1.4) os (1.1.4) - parallel (1.25.1) - parser (3.3.3.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -191,11 +185,9 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) request_store (1.7.0) rack (>= 1.4) rexml (3.3.1) @@ -219,29 +211,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.31.3) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -264,7 +233,6 @@ GEM timeout (0.4.1) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -308,10 +276,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_3.4_rails61_postgres.gemfile b/gemfiles/ruby_3.4_rails61_postgres.gemfile index 3f6d2014a6b..cf7ce6d49e5 100644 --- a/gemfiles/ruby_3.4_rails61_postgres.gemfile +++ b/gemfiles/ruby_3.4_rails61_postgres.gemfile @@ -24,10 +24,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.4_rails61_postgres.gemfile.lock b/gemfiles/ruby_3.4_rails61_postgres.gemfile.lock index ff2dcde8299..ecec4a62040 100644 --- a/gemfiles/ruby_3.4_rails61_postgres.gemfile.lock +++ b/gemfiles/ruby_3.4_rails61_postgres.gemfile.lock @@ -71,7 +71,6 @@ GEM zeitwerk (~> 2.3) addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -103,7 +102,6 @@ GEM hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -146,10 +144,6 @@ GEM mini_portile2 (~> 2.8.2) racc (~> 1.4) os (1.1.4) - parallel (1.25.1) - parser (3.3.3.0) - ast (~> 2.4.1) - racc pg (1.5.6) pimpmychangelog (0.1.3) pry (0.14.2) @@ -191,11 +185,9 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) request_store (1.7.0) rack (>= 1.4) rexml (3.3.1) @@ -219,29 +211,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.31.3) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -264,7 +233,6 @@ GEM timeout (0.4.1) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -308,10 +276,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_3.4_rails61_postgres_redis.gemfile b/gemfiles/ruby_3.4_rails61_postgres_redis.gemfile index f06f03de175..a46d6d80df4 100644 --- a/gemfiles/ruby_3.4_rails61_postgres_redis.gemfile +++ b/gemfiles/ruby_3.4_rails61_postgres_redis.gemfile @@ -24,10 +24,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.4_rails61_postgres_redis.gemfile.lock b/gemfiles/ruby_3.4_rails61_postgres_redis.gemfile.lock index 5e891d8d541..e20312bfc67 100644 --- a/gemfiles/ruby_3.4_rails61_postgres_redis.gemfile.lock +++ b/gemfiles/ruby_3.4_rails61_postgres_redis.gemfile.lock @@ -71,7 +71,6 @@ GEM zeitwerk (~> 2.3) addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -103,7 +102,6 @@ GEM hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -146,10 +144,6 @@ GEM mini_portile2 (~> 2.8.2) racc (~> 1.4) os (1.1.4) - parallel (1.25.1) - parser (3.3.3.0) - ast (~> 2.4.1) - racc pg (1.5.6) pimpmychangelog (0.1.3) pry (0.14.2) @@ -191,12 +185,10 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake redis (4.8.1) - regexp_parser (2.9.2) request_store (1.7.0) rack (>= 1.4) rexml (3.3.1) @@ -220,29 +212,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.31.3) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -265,7 +234,6 @@ GEM timeout (0.4.1) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -310,10 +278,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_3.4_rails61_postgres_sidekiq.gemfile b/gemfiles/ruby_3.4_rails61_postgres_sidekiq.gemfile index 66ce515f422..b481e14fc45 100644 --- a/gemfiles/ruby_3.4_rails61_postgres_sidekiq.gemfile +++ b/gemfiles/ruby_3.4_rails61_postgres_sidekiq.gemfile @@ -24,10 +24,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.4_rails61_postgres_sidekiq.gemfile.lock b/gemfiles/ruby_3.4_rails61_postgres_sidekiq.gemfile.lock index 58ee0a67dc9..c21d4cb2429 100644 --- a/gemfiles/ruby_3.4_rails61_postgres_sidekiq.gemfile.lock +++ b/gemfiles/ruby_3.4_rails61_postgres_sidekiq.gemfile.lock @@ -71,7 +71,6 @@ GEM zeitwerk (~> 2.3) addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -104,7 +103,6 @@ GEM hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -147,10 +145,6 @@ GEM mini_portile2 (~> 2.8.2) racc (~> 1.4) os (1.1.4) - parallel (1.25.1) - parser (3.3.3.0) - ast (~> 2.4.1) - racc pg (1.5.6) pimpmychangelog (0.1.3) pry (0.14.2) @@ -196,13 +190,11 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake redis-client (0.22.2) connection_pool - regexp_parser (2.9.2) request_store (1.7.0) rack (>= 1.4) rexml (3.3.1) @@ -226,29 +218,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.31.3) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) semantic_logger (4.15.0) concurrent-ruby (~> 1.0) sidekiq (7.2.4) @@ -278,7 +247,6 @@ GEM timeout (0.4.1) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -323,10 +291,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) sidekiq (>= 6.1.2) simplecov simplecov-cobertura (~> 2.1.0) diff --git a/gemfiles/ruby_3.4_rails61_semantic_logger.gemfile b/gemfiles/ruby_3.4_rails61_semantic_logger.gemfile index a7a575df72e..d55babb46c4 100644 --- a/gemfiles/ruby_3.4_rails61_semantic_logger.gemfile +++ b/gemfiles/ruby_3.4_rails61_semantic_logger.gemfile @@ -24,10 +24,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.4_rails61_semantic_logger.gemfile.lock b/gemfiles/ruby_3.4_rails61_semantic_logger.gemfile.lock index 041e4ab3948..3be10c50b06 100644 --- a/gemfiles/ruby_3.4_rails61_semantic_logger.gemfile.lock +++ b/gemfiles/ruby_3.4_rails61_semantic_logger.gemfile.lock @@ -71,7 +71,6 @@ GEM zeitwerk (~> 2.3) addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -103,7 +102,6 @@ GEM hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -141,10 +139,6 @@ GEM mini_portile2 (~> 2.8.2) racc (~> 1.4) os (1.1.4) - parallel (1.25.1) - parser (3.3.3.0) - ast (~> 2.4.1) - racc pg (1.5.6) pimpmychangelog (0.1.3) pry (0.14.2) @@ -190,11 +184,9 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.1) strscan rspec (3.13.0) @@ -216,29 +208,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.31.3) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) semantic_logger (4.15.0) concurrent-ruby (~> 1.0) simplecov (0.21.2) @@ -263,7 +232,6 @@ GEM timeout (0.4.1) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -307,10 +275,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_3.4_rails61_trilogy.gemfile b/gemfiles/ruby_3.4_rails61_trilogy.gemfile index f1557668313..c4da7ecbde2 100644 --- a/gemfiles/ruby_3.4_rails61_trilogy.gemfile +++ b/gemfiles/ruby_3.4_rails61_trilogy.gemfile @@ -24,10 +24,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.4_rails61_trilogy.gemfile.lock b/gemfiles/ruby_3.4_rails61_trilogy.gemfile.lock index ec49b85f13d..354d0f444f9 100644 --- a/gemfiles/ruby_3.4_rails61_trilogy.gemfile.lock +++ b/gemfiles/ruby_3.4_rails61_trilogy.gemfile.lock @@ -74,7 +74,6 @@ GEM zeitwerk (~> 2.3) addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -106,7 +105,6 @@ GEM hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -149,10 +147,6 @@ GEM mini_portile2 (~> 2.8.2) racc (~> 1.4) os (1.1.4) - parallel (1.25.1) - parser (3.3.3.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -193,11 +187,9 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) request_store (1.7.0) rack (>= 1.4) rexml (3.3.1) @@ -221,29 +213,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.31.3) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -267,7 +236,6 @@ GEM trilogy (2.8.1) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -311,10 +279,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sprockets (< 4) diff --git a/gemfiles/ruby_3.4_rails7.gemfile b/gemfiles/ruby_3.4_rails7.gemfile index 64bc1e18f59..64bb8db6aca 100644 --- a/gemfiles/ruby_3.4_rails7.gemfile +++ b/gemfiles/ruby_3.4_rails7.gemfile @@ -24,10 +24,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.4_rails7.gemfile.lock b/gemfiles/ruby_3.4_rails7.gemfile.lock index 312f01efc99..f2cdd4df253 100644 --- a/gemfiles/ruby_3.4_rails7.gemfile.lock +++ b/gemfiles/ruby_3.4_rails7.gemfile.lock @@ -77,7 +77,6 @@ GEM tzinfo (~> 2.0) addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -110,7 +109,6 @@ GEM hashdiff (1.1.1) i18n (1.14.5) concurrent-ruby (~> 1.0) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -151,10 +149,6 @@ GEM mini_portile2 (~> 2.8.2) racc (~> 1.4) os (1.1.4) - parallel (1.26.3) - parser (3.3.4.2) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -195,11 +189,9 @@ GEM rake (>= 12.2) thor (~> 1.0) zeitwerk (~> 2.5) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.6) strscan rspec (3.13.0) @@ -221,29 +213,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.1) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -258,7 +227,6 @@ GEM timeout (0.4.1) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -300,10 +268,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.4_rails71.gemfile b/gemfiles/ruby_3.4_rails71.gemfile index 1c3874e191c..07f4a7a98ef 100644 --- a/gemfiles/ruby_3.4_rails71.gemfile +++ b/gemfiles/ruby_3.4_rails71.gemfile @@ -24,10 +24,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.4_rails71.gemfile.lock b/gemfiles/ruby_3.4_rails71.gemfile.lock index d446d36b952..2ca790ddad6 100644 --- a/gemfiles/ruby_3.4_rails71.gemfile.lock +++ b/gemfiles/ruby_3.4_rails71.gemfile.lock @@ -86,7 +86,6 @@ GEM tzinfo (~> 2.0) addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -125,7 +124,6 @@ GEM irb (1.14.0) rdoc (>= 4.0.0) reline (>= 0.4.2) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0) @@ -166,10 +164,6 @@ GEM mini_portile2 (~> 2.8.2) racc (~> 1.4) os (1.1.4) - parallel (1.26.3) - parser (3.3.4.2) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -218,13 +212,11 @@ GEM rake (>= 12.2) thor (~> 1.0, >= 1.2.2) zeitwerk (~> 2.6) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake rdoc (6.7.0) psych (>= 4.0.0) - regexp_parser (2.9.2) reline (0.5.9) io-console (~> 0.5) rexml (3.3.6) @@ -248,29 +240,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.1) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -286,7 +255,6 @@ GEM timeout (0.4.1) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -328,10 +296,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.4_rails_old_redis.gemfile b/gemfiles/ruby_3.4_rails_old_redis.gemfile index d159ab84a59..147f45a317b 100644 --- a/gemfiles/ruby_3.4_rails_old_redis.gemfile +++ b/gemfiles/ruby_3.4_rails_old_redis.gemfile @@ -24,10 +24,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.4_redis_3.gemfile b/gemfiles/ruby_3.4_redis_3.gemfile index aa4f61f1b45..31746f661d6 100644 --- a/gemfiles/ruby_3.4_redis_3.gemfile +++ b/gemfiles/ruby_3.4_redis_3.gemfile @@ -24,10 +24,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.4_redis_3.gemfile.lock b/gemfiles/ruby_3.4_redis_3.gemfile.lock index d51e22bb65d..3ca823ebab6 100644 --- a/gemfiles/ruby_3.4_redis_3.gemfile.lock +++ b/gemfiles/ruby_3.4_redis_3.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -36,7 +35,6 @@ GEM ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.3) hashdiff (1.1.0) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -50,10 +48,6 @@ GEM msgpack (1.7.5) mutex_m (0.2.0) os (1.1.4) - parallel (1.25.1) - parser (3.3.3.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -62,13 +56,10 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (6.0.0) - racc (1.8.0) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake redis (3.3.5) - regexp_parser (2.9.2) rexml (3.3.1) strscan rspec (3.13.0) @@ -90,29 +81,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.31.3) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -123,7 +91,6 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) strscan (3.1.1) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -160,10 +127,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.4_redis_4.gemfile b/gemfiles/ruby_3.4_redis_4.gemfile index 14dfd5a1506..5bd31e37398 100644 --- a/gemfiles/ruby_3.4_redis_4.gemfile +++ b/gemfiles/ruby_3.4_redis_4.gemfile @@ -24,10 +24,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.4_redis_4.gemfile.lock b/gemfiles/ruby_3.4_redis_4.gemfile.lock index 1e5e86bbf21..31b70853fd0 100644 --- a/gemfiles/ruby_3.4_redis_4.gemfile.lock +++ b/gemfiles/ruby_3.4_redis_4.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -36,7 +35,6 @@ GEM ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.3) hashdiff (1.1.0) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -50,10 +48,6 @@ GEM msgpack (1.7.5) mutex_m (0.2.0) os (1.1.4) - parallel (1.25.1) - parser (3.3.3.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -62,13 +56,10 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (6.0.0) - racc (1.8.0) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake redis (4.8.1) - regexp_parser (2.9.2) rexml (3.3.1) strscan rspec (3.13.0) @@ -90,29 +81,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.31.3) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -123,7 +91,6 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) strscan (3.1.1) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -160,10 +127,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.4_redis_5.gemfile b/gemfiles/ruby_3.4_redis_5.gemfile index c0441e954b0..78c7941b735 100644 --- a/gemfiles/ruby_3.4_redis_5.gemfile +++ b/gemfiles/ruby_3.4_redis_5.gemfile @@ -24,10 +24,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.4_redis_5.gemfile.lock b/gemfiles/ruby_3.4_redis_5.gemfile.lock index 186e3129d8f..20ff6350563 100644 --- a/gemfiles/ruby_3.4_redis_5.gemfile.lock +++ b/gemfiles/ruby_3.4_redis_5.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -37,7 +36,6 @@ GEM ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.3) hashdiff (1.1.0) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -51,10 +49,6 @@ GEM msgpack (1.7.5) mutex_m (0.2.0) os (1.1.4) - parallel (1.25.1) - parser (3.3.3.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -63,8 +57,6 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (6.0.0) - racc (1.8.0) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake @@ -72,7 +64,6 @@ GEM redis-client (>= 0.22.0) redis-client (0.22.2) connection_pool - regexp_parser (2.9.2) rexml (3.3.1) strscan rspec (3.13.0) @@ -94,29 +85,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.31.3) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -127,7 +95,6 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) strscan (3.1.1) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -164,10 +131,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.4_relational_db.gemfile b/gemfiles/ruby_3.4_relational_db.gemfile index 869ab1aeb32..85f8804a529 100644 --- a/gemfiles/ruby_3.4_relational_db.gemfile +++ b/gemfiles/ruby_3.4_relational_db.gemfile @@ -24,10 +24,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.4_relational_db.gemfile.lock b/gemfiles/ruby_3.4_relational_db.gemfile.lock index eca878ee832..fed9809081c 100644 --- a/gemfiles/ruby_3.4_relational_db.gemfile.lock +++ b/gemfiles/ruby_3.4_relational_db.gemfile.lock @@ -22,7 +22,6 @@ GEM tzinfo (~> 2.0) addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.14.0) benchmark-memory (0.1.2) @@ -53,7 +52,6 @@ GEM hashdiff (1.1.2) i18n (1.14.6) concurrent-ruby (~> 1.0) - json (2.8.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -72,10 +70,6 @@ GEM mutex_m (0.2.0) mysql2 (0.5.6) os (1.1.4) - parallel (1.26.3) - parser (3.3.6.0) - ast (~> 2.4.1) - racc pg (1.5.9) pimpmychangelog (0.1.3) pry (0.14.2) @@ -85,12 +79,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (6.0.1) - racc (1.8.1) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.8) rake - regexp_parser (2.9.2) rexml (3.3.9) rspec (3.13.0) rspec-core (~> 3.13.0) @@ -111,29 +102,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.36.1) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.23.0) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) sequel (5.86.0) bigdecimal simplecov (0.21.2) @@ -150,7 +118,6 @@ GEM trilogy (2.9.0) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.6.0) warning (1.4.0) webmock (3.24.0) addressable (>= 2.8.0) @@ -192,10 +159,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) sequel simplecov simplecov-cobertura (~> 2.1.0) diff --git a/gemfiles/ruby_3.4_resque2_redis3.gemfile b/gemfiles/ruby_3.4_resque2_redis3.gemfile index 6f6ea6450a9..e2ec06ac0fe 100644 --- a/gemfiles/ruby_3.4_resque2_redis3.gemfile +++ b/gemfiles/ruby_3.4_resque2_redis3.gemfile @@ -24,10 +24,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.4_resque2_redis3.gemfile.lock b/gemfiles/ruby_3.4_resque2_redis3.gemfile.lock index 92d77581eea..a50d6bcb878 100644 --- a/gemfiles/ruby_3.4_resque2_redis3.gemfile.lock +++ b/gemfiles/ruby_3.4_resque2_redis3.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -36,7 +35,6 @@ GEM ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.3) hashdiff (1.1.0) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -54,10 +52,6 @@ GEM ruby2_keywords (~> 0.0.1) mutex_m (0.2.0) os (1.1.4) - parallel (1.25.1) - parser (3.3.3.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -66,21 +60,18 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (6.0.0) - racc (1.8.0) rack (3.1.4) rack-protection (4.0.0) base64 (>= 0.1.0) rack (>= 3.0.0, < 4) rack-session (2.0.0) rack (>= 3.0.0) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake redis (3.3.5) redis-namespace (1.8.2) redis (>= 3.0.4) - regexp_parser (2.9.2) resque (2.6.0) mono_logger (~> 1.0) multi_json (~> 1.0) @@ -107,29 +98,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.31.3) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) simplecov (0.21.2) docile (~> 1.1) @@ -148,7 +116,6 @@ GEM tilt (~> 2.0) strscan (3.1.1) tilt (2.4.0) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -186,10 +153,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.4_resque2_redis4.gemfile b/gemfiles/ruby_3.4_resque2_redis4.gemfile index 5dad2208aa7..0485f8c591b 100644 --- a/gemfiles/ruby_3.4_resque2_redis4.gemfile +++ b/gemfiles/ruby_3.4_resque2_redis4.gemfile @@ -24,10 +24,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.4_resque2_redis4.gemfile.lock b/gemfiles/ruby_3.4_resque2_redis4.gemfile.lock index 5c8a59c471d..c4459a75c6f 100644 --- a/gemfiles/ruby_3.4_resque2_redis4.gemfile.lock +++ b/gemfiles/ruby_3.4_resque2_redis4.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -37,7 +36,6 @@ GEM ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.3) hashdiff (1.1.0) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -55,10 +53,6 @@ GEM ruby2_keywords (~> 0.0.1) mutex_m (0.2.0) os (1.1.4) - parallel (1.25.1) - parser (3.3.3.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -67,14 +61,12 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (6.0.0) - racc (1.8.0) rack (3.1.4) rack-protection (4.0.0) base64 (>= 0.1.0) rack (>= 3.0.0, < 4) rack-session (2.0.0) rack (>= 3.0.0) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake @@ -84,7 +76,6 @@ GEM connection_pool redis-namespace (1.11.0) redis (>= 4) - regexp_parser (2.9.2) resque (2.6.0) mono_logger (~> 1.0) multi_json (~> 1.0) @@ -111,29 +102,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.31.3) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) simplecov (0.21.2) docile (~> 1.1) @@ -152,7 +120,6 @@ GEM tilt (~> 2.0) strscan (3.1.1) tilt (2.4.0) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -190,10 +157,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) warning (~> 1) diff --git a/gemfiles/ruby_3.4_sinatra_2.gemfile b/gemfiles/ruby_3.4_sinatra_2.gemfile index b7b9197e136..71b06b59ebe 100644 --- a/gemfiles/ruby_3.4_sinatra_2.gemfile +++ b/gemfiles/ruby_3.4_sinatra_2.gemfile @@ -24,10 +24,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.4_sinatra_2.gemfile.lock b/gemfiles/ruby_3.4_sinatra_2.gemfile.lock index 24e490ba099..f98c889030f 100644 --- a/gemfiles/ruby_3.4_sinatra_2.gemfile.lock +++ b/gemfiles/ruby_3.4_sinatra_2.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -36,7 +35,6 @@ GEM ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.3) hashdiff (1.1.0) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -52,10 +50,6 @@ GEM ruby2_keywords (~> 0.0.1) mutex_m (0.2.0) os (1.1.4) - parallel (1.25.1) - parser (3.3.3.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -64,7 +58,6 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (6.0.0) - racc (1.8.0) rack (2.2.9) rack-contrib (2.5.0) rack (< 4) @@ -72,11 +65,9 @@ GEM rack rack-test (2.1.0) rack (>= 1.3) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.1) strscan rspec (3.13.0) @@ -98,29 +89,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.31.3) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) simplecov (0.21.2) docile (~> 1.1) @@ -138,7 +106,6 @@ GEM tilt (~> 2.0) strscan (3.1.1) tilt (2.4.0) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -176,10 +143,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sinatra (~> 2) diff --git a/gemfiles/ruby_3.4_sinatra_3.gemfile b/gemfiles/ruby_3.4_sinatra_3.gemfile index e895aecb1f4..4b3618149df 100644 --- a/gemfiles/ruby_3.4_sinatra_3.gemfile +++ b/gemfiles/ruby_3.4_sinatra_3.gemfile @@ -24,10 +24,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.4_sinatra_3.gemfile.lock b/gemfiles/ruby_3.4_sinatra_3.gemfile.lock index 55ef87a6738..7d11916788c 100644 --- a/gemfiles/ruby_3.4_sinatra_3.gemfile.lock +++ b/gemfiles/ruby_3.4_sinatra_3.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -36,7 +35,6 @@ GEM ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.3) hashdiff (1.1.0) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -52,10 +50,6 @@ GEM ruby2_keywords (~> 0.0.1) mutex_m (0.2.0) os (1.1.4) - parallel (1.25.1) - parser (3.3.3.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -64,7 +58,6 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (6.0.0) - racc (1.8.0) rack (2.2.9) rack-contrib (2.5.0) rack (< 4) @@ -73,11 +66,9 @@ GEM rack (~> 2.2, >= 2.2.4) rack-test (2.1.0) rack (>= 1.3) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.1) strscan rspec (3.13.0) @@ -99,29 +90,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.31.3) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) simplecov (0.21.2) docile (~> 1.1) @@ -139,7 +107,6 @@ GEM tilt (~> 2.0) strscan (3.1.1) tilt (2.4.0) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -177,10 +144,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sinatra (~> 3) diff --git a/gemfiles/ruby_3.4_sinatra_4.gemfile b/gemfiles/ruby_3.4_sinatra_4.gemfile index dc4bee184c2..333a97ebf5d 100644 --- a/gemfiles/ruby_3.4_sinatra_4.gemfile +++ b/gemfiles/ruby_3.4_sinatra_4.gemfile @@ -24,10 +24,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.4_sinatra_4.gemfile.lock b/gemfiles/ruby_3.4_sinatra_4.gemfile.lock index c60753b6b5b..8f4e54eb64f 100644 --- a/gemfiles/ruby_3.4_sinatra_4.gemfile.lock +++ b/gemfiles/ruby_3.4_sinatra_4.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -36,7 +35,6 @@ GEM ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.3) hashdiff (1.1.0) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -52,10 +50,6 @@ GEM ruby2_keywords (~> 0.0.1) mutex_m (0.2.0) os (1.1.4) - parallel (1.25.1) - parser (3.3.3.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -64,7 +58,6 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (6.0.0) - racc (1.8.0) rack (3.1.4) rack-contrib (2.5.0) rack (< 4) @@ -75,11 +68,9 @@ GEM rack (>= 3.0.0) rack-test (2.1.0) rack (>= 1.3) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.1) strscan rspec (3.13.0) @@ -101,29 +92,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.31.3) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) simplecov (0.21.2) docile (~> 1.1) @@ -142,7 +110,6 @@ GEM tilt (~> 2.0) strscan (3.1.1) tilt (2.4.0) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -180,10 +147,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) sinatra (~> 4) diff --git a/gemfiles/ruby_3.4_stripe_10.gemfile b/gemfiles/ruby_3.4_stripe_10.gemfile index d7a78b18476..1953837d69f 100644 --- a/gemfiles/ruby_3.4_stripe_10.gemfile +++ b/gemfiles/ruby_3.4_stripe_10.gemfile @@ -24,10 +24,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.4_stripe_10.gemfile.lock b/gemfiles/ruby_3.4_stripe_10.gemfile.lock index 726f9b0626e..a4bf97ffa24 100644 --- a/gemfiles/ruby_3.4_stripe_10.gemfile.lock +++ b/gemfiles/ruby_3.4_stripe_10.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -36,7 +35,6 @@ GEM ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.4) hashdiff (1.1.1) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -50,10 +48,6 @@ GEM msgpack (1.7.5) mutex_m (0.2.0) os (1.1.4) - parallel (1.26.3) - parser (3.3.4.2) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -62,12 +56,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (6.0.1) - racc (1.8.1) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.6) strscan rspec (3.13.0) @@ -89,29 +80,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.1) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -123,7 +91,6 @@ GEM simplecov_json_formatter (0.1.4) stripe (10.15.0) strscan (3.1.1) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -159,10 +126,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 10) diff --git a/gemfiles/ruby_3.4_stripe_11.gemfile b/gemfiles/ruby_3.4_stripe_11.gemfile index 30907c0ac61..c1cc8ce4efd 100644 --- a/gemfiles/ruby_3.4_stripe_11.gemfile +++ b/gemfiles/ruby_3.4_stripe_11.gemfile @@ -24,10 +24,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.4_stripe_11.gemfile.lock b/gemfiles/ruby_3.4_stripe_11.gemfile.lock index c57f17f4731..5fb68173d0e 100644 --- a/gemfiles/ruby_3.4_stripe_11.gemfile.lock +++ b/gemfiles/ruby_3.4_stripe_11.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -36,7 +35,6 @@ GEM ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.4) hashdiff (1.1.1) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -50,10 +48,6 @@ GEM msgpack (1.7.5) mutex_m (0.2.0) os (1.1.4) - parallel (1.26.3) - parser (3.3.4.2) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -62,12 +56,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (6.0.1) - racc (1.8.1) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.6) strscan rspec (3.13.0) @@ -89,29 +80,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.1) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -123,7 +91,6 @@ GEM simplecov_json_formatter (0.1.4) stripe (11.7.0) strscan (3.1.1) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -159,10 +126,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 11) diff --git a/gemfiles/ruby_3.4_stripe_12.gemfile b/gemfiles/ruby_3.4_stripe_12.gemfile index 0f4275546dd..446b0c9ca51 100644 --- a/gemfiles/ruby_3.4_stripe_12.gemfile +++ b/gemfiles/ruby_3.4_stripe_12.gemfile @@ -24,10 +24,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.4_stripe_12.gemfile.lock b/gemfiles/ruby_3.4_stripe_12.gemfile.lock index cf0af25322d..2d7ca5d0223 100644 --- a/gemfiles/ruby_3.4_stripe_12.gemfile.lock +++ b/gemfiles/ruby_3.4_stripe_12.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -36,7 +35,6 @@ GEM ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.4) hashdiff (1.1.1) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -50,10 +48,6 @@ GEM msgpack (1.7.5) mutex_m (0.2.0) os (1.1.4) - parallel (1.26.3) - parser (3.3.4.2) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -62,12 +56,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (6.0.1) - racc (1.8.1) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.6) strscan rspec (3.13.0) @@ -89,29 +80,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.1) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -123,7 +91,6 @@ GEM simplecov_json_formatter (0.1.4) stripe (12.6.0) strscan (3.1.1) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -159,10 +126,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 12) diff --git a/gemfiles/ruby_3.4_stripe_7.gemfile b/gemfiles/ruby_3.4_stripe_7.gemfile index 64a331e89d4..90c9a0923f1 100644 --- a/gemfiles/ruby_3.4_stripe_7.gemfile +++ b/gemfiles/ruby_3.4_stripe_7.gemfile @@ -24,10 +24,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.4_stripe_7.gemfile.lock b/gemfiles/ruby_3.4_stripe_7.gemfile.lock index 4de7200d505..d555e1155c9 100644 --- a/gemfiles/ruby_3.4_stripe_7.gemfile.lock +++ b/gemfiles/ruby_3.4_stripe_7.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -36,7 +35,6 @@ GEM ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.4) hashdiff (1.1.1) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -50,10 +48,6 @@ GEM msgpack (1.7.5) mutex_m (0.2.0) os (1.1.4) - parallel (1.26.3) - parser (3.3.4.2) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -62,12 +56,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (6.0.1) - racc (1.8.1) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.6) strscan rspec (3.13.0) @@ -89,29 +80,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.1) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -123,7 +91,6 @@ GEM simplecov_json_formatter (0.1.4) stripe (7.1.0) strscan (3.1.1) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -159,10 +126,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 7) diff --git a/gemfiles/ruby_3.4_stripe_8.gemfile b/gemfiles/ruby_3.4_stripe_8.gemfile index 22f53972283..9f5c085907d 100644 --- a/gemfiles/ruby_3.4_stripe_8.gemfile +++ b/gemfiles/ruby_3.4_stripe_8.gemfile @@ -24,10 +24,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.4_stripe_8.gemfile.lock b/gemfiles/ruby_3.4_stripe_8.gemfile.lock index b4d80210957..631564d8bfb 100644 --- a/gemfiles/ruby_3.4_stripe_8.gemfile.lock +++ b/gemfiles/ruby_3.4_stripe_8.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -36,7 +35,6 @@ GEM ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.4) hashdiff (1.1.1) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -50,10 +48,6 @@ GEM msgpack (1.7.5) mutex_m (0.2.0) os (1.1.4) - parallel (1.26.3) - parser (3.3.4.2) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -62,12 +56,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (6.0.1) - racc (1.8.1) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.6) strscan rspec (3.13.0) @@ -89,29 +80,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.1) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -123,7 +91,6 @@ GEM simplecov_json_formatter (0.1.4) stripe (8.7.0) strscan (3.1.1) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -159,10 +126,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 8) diff --git a/gemfiles/ruby_3.4_stripe_9.gemfile b/gemfiles/ruby_3.4_stripe_9.gemfile index 36478a0f1bf..b24d5808452 100644 --- a/gemfiles/ruby_3.4_stripe_9.gemfile +++ b/gemfiles/ruby_3.4_stripe_9.gemfile @@ -24,10 +24,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.4_stripe_9.gemfile.lock b/gemfiles/ruby_3.4_stripe_9.gemfile.lock index 58222e88d2c..d1c96dd6c93 100644 --- a/gemfiles/ruby_3.4_stripe_9.gemfile.lock +++ b/gemfiles/ruby_3.4_stripe_9.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.13.0) benchmark-memory (0.1.2) @@ -36,7 +35,6 @@ GEM ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.4) hashdiff (1.1.1) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -50,10 +48,6 @@ GEM msgpack (1.7.5) mutex_m (0.2.0) os (1.1.4) - parallel (1.26.3) - parser (3.3.4.2) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -62,12 +56,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (6.0.1) - racc (1.8.1) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.6) strscan rspec (3.13.0) @@ -89,29 +80,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.1) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -123,7 +91,6 @@ GEM simplecov_json_formatter (0.1.4) stripe (9.4.0) strscan (3.1.1) - unicode-display_width (2.5.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -159,10 +126,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) stripe (~> 9) diff --git a/gemfiles/ruby_3.4_stripe_latest.gemfile b/gemfiles/ruby_3.4_stripe_latest.gemfile index 4d62d6ac60d..182c5244d36 100644 --- a/gemfiles/ruby_3.4_stripe_latest.gemfile +++ b/gemfiles/ruby_3.4_stripe_latest.gemfile @@ -24,10 +24,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.4_stripe_latest.gemfile.lock b/gemfiles/ruby_3.4_stripe_latest.gemfile.lock index d62196fdfc8..807a87dc8e0 100644 --- a/gemfiles/ruby_3.4_stripe_latest.gemfile.lock +++ b/gemfiles/ruby_3.4_stripe_latest.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.14.0) benchmark-memory (0.1.2) @@ -36,7 +35,6 @@ GEM ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.4) hashdiff (1.1.1) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -50,10 +48,6 @@ GEM msgpack (1.7.5) mutex_m (0.2.0) os (1.1.4) - parallel (1.26.3) - parser (3.3.5.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -62,12 +56,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (6.0.1) - racc (1.8.1) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.7) rspec (3.13.0) rspec-core (~> 3.13.0) @@ -88,29 +79,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.3) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.22.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -121,7 +89,6 @@ GEM simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) stripe (13.3.0) - unicode-display_width (2.6.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -157,10 +124,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) stripe diff --git a/gemfiles/ruby_3.4_stripe_min.gemfile b/gemfiles/ruby_3.4_stripe_min.gemfile index c76df823bae..4f70a72af07 100644 --- a/gemfiles/ruby_3.4_stripe_min.gemfile +++ b/gemfiles/ruby_3.4_stripe_min.gemfile @@ -24,10 +24,6 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "rubocop", "~> 1.50.0", require: false -gem "rubocop-packaging", "~> 0.5.2", require: false -gem "rubocop-performance", "~> 1.9", require: false -gem "rubocop-rspec", ["~> 2.20", "< 2.21"], require: false gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" diff --git a/gemfiles/ruby_3.4_stripe_min.gemfile.lock b/gemfiles/ruby_3.4_stripe_min.gemfile.lock index 0413dd361ec..6a039a2b0d3 100644 --- a/gemfiles/ruby_3.4_stripe_min.gemfile.lock +++ b/gemfiles/ruby_3.4_stripe_min.gemfile.lock @@ -12,7 +12,6 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - ast (2.4.2) base64 (0.2.0) benchmark-ips (2.14.0) benchmark-memory (0.1.2) @@ -36,7 +35,6 @@ GEM ffi (1.17.1-x86_64-linux-gnu) google-protobuf (3.25.5) hashdiff (1.1.1) - json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) libdatadog (14.3.1.1.0-aarch64-linux) @@ -50,10 +48,6 @@ GEM msgpack (1.7.5) mutex_m (0.2.0) os (1.1.4) - parallel (1.26.3) - parser (3.3.5.0) - ast (~> 2.4.1) - racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -62,12 +56,9 @@ GEM binding_of_caller (~> 1.0) pry (~> 0.13) public_suffix (6.0.1) - racc (1.8.1) - rainbow (3.1.1) rake (13.2.1) rake-compiler (1.2.7) rake - regexp_parser (2.9.2) rexml (3.3.7) rspec (3.13.0) rspec-core (~> 3.13.0) @@ -88,29 +79,6 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.50.2) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.3) - parser (>= 3.3.1.0) - rubocop-capybara (2.21.0) - rubocop (~> 1.41) - rubocop-packaging (0.5.2) - rubocop (>= 1.33, < 2.0) - rubocop-performance (1.22.1) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.20.0) - rubocop (~> 1.33) - rubocop-capybara (~> 2.17) - ruby-progressbar (1.13.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -121,7 +89,6 @@ GEM simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) stripe (5.15.0) - unicode-display_width (2.6.0) warning (1.4.0) webmock (3.23.1) addressable (>= 2.8.0) @@ -157,10 +124,6 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - rubocop (~> 1.50.0) - rubocop-packaging (~> 0.5.2) - rubocop-performance (~> 1.9) - rubocop-rspec (~> 2.20, < 2.21) simplecov simplecov-cobertura (~> 2.1.0) stripe (= 5.15.0) From 76c0d81909237a44c28d5dcfc2ef307a8803c601 Mon Sep 17 00:00:00 2001 From: Tony Hsu Date: Fri, 10 Jan 2025 15:47:35 +0100 Subject: [PATCH 129/161] Fix another checksum --- .circleci/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 31075f7c9aa..4202d5407db 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -96,7 +96,7 @@ step_compute_bundle_checksum: &step_compute_bundle_checksum # updating the gemset lock files produces extremely large commits. command: | bundle lock # Create Gemfile.lock - cat Gemfile Gemfile.lock ruby-*.gemfile gemfiles/*.gemfile gemfiles/*.gemfile.lock | md5sum > .circleci/bundle_checksum + cat Gemfile Gemfile.lock jruby-*.gemfile ruby-*.gemfile gemfiles/*.gemfile gemfiles/*.gemfile.lock | md5sum > .circleci/bundle_checksum step_get_test_agent_trace_check_results: &step_get_test_agent_trace_check_results run: name: Get APM Test Agent Trace Check Results From 42a7173c4cc5adc1b83644045080a5b1e941095a Mon Sep 17 00:00:00 2001 From: Oleg Pudeyev <156273877+p-datadog@users.noreply.github.com> Date: Fri, 10 Jan 2025 10:07:46 -0500 Subject: [PATCH 130/161] Instructions for running integration tests (#4260) Co-authored-by: Oleg Pudeyev --- integration/README.md | 46 +++++++++++++++++++++++++ integration/apps/rails-seven/.gitignore | 2 ++ 2 files changed, 48 insertions(+) diff --git a/integration/README.md b/integration/README.md index 0f1e86f0622..2daf0707c61 100644 --- a/integration/README.md +++ b/integration/README.md @@ -42,6 +42,52 @@ The `images/` folders hosts some images for Ruby applications. Ruby base images include `Datadog::DemoEnv` and other helpers. +### Running Integration Tests + +1. Pick an application to run the tests against: + + ``` + cd apps/rails-seven + ``` + +2. Pick a Ruby version and build Docker images: + + ``` + ./script/build-images -v 3.3 + ``` + +Note: you need to build the images using this command whenever you make +any changes in the source code. + +3. Run integration test script: + + ``` + ./script/ci -v 3.3 + ``` + +### Running Integration Tests Not In Docker + +Run the test application manually (in a separate terminal): + +``` +cd apps/rails-seven +export RUBYOPT=-I../../images/include +# Use local dd-trace-rb tree +export DD_DEMO_ENV_GEM_LOCAL_DATADOG=../../.. +export DATABASE_URL=mysql2://user:password@localhost:3306 +bundle exec rake db:create db:migrate +bundle exec rails server -p 3000 +``` + +Run the tests: + +``` +cd apps/rails-seven +export RUBYOPT=-I../../images/include +export TEST_INTEGRATION=1 TEST_HOSTNAME=localhost TEST_PORT=3000 +bundle exec rspec +``` + ### Debugging #### Profiling memory diff --git a/integration/apps/rails-seven/.gitignore b/integration/apps/rails-seven/.gitignore index c91ff4d0528..758cff842c5 100644 --- a/integration/apps/rails-seven/.gitignore +++ b/integration/apps/rails-seven/.gitignore @@ -37,3 +37,5 @@ # Ignore local variables /index.html* .envrc + +db/schema.rb From 60ed5623b2129d4728f92b496a41c1adbeadea87 Mon Sep 17 00:00:00 2001 From: Tony Hsu Date: Fri, 10 Jan 2025 16:28:37 +0100 Subject: [PATCH 131/161] Align simplcov version usage --- integration/apps/rails-five/Gemfile | 1 - integration/apps/rails-six/Gemfile | 1 - jruby-9.2.gemfile | 2 +- jruby-9.3.gemfile | 2 +- jruby-9.4.gemfile | 2 +- ruby-2.5.gemfile | 2 +- ruby-2.6.gemfile | 2 +- ruby-2.7.gemfile | 2 +- ruby-3.0.gemfile | 2 +- ruby-3.1.gemfile | 2 +- ruby-3.2.gemfile | 2 +- ruby-3.3.gemfile | 2 +- ruby-3.4.gemfile | 2 +- ruby-3.5.gemfile | 2 +- 14 files changed, 12 insertions(+), 14 deletions(-) diff --git a/integration/apps/rails-five/Gemfile b/integration/apps/rails-five/Gemfile index 765d3bea197..d50445bff50 100644 --- a/integration/apps/rails-five/Gemfile +++ b/integration/apps/rails-five/Gemfile @@ -78,7 +78,6 @@ group :test do gem 'rspec-collection_matchers' gem 'rspec-rails' gem 'shoulda-matchers', '4.0.1' - gem 'simplecov', require: false # Will install simplecov-html as a dependency gem 'timecop' gem 'webmock' end diff --git a/integration/apps/rails-six/Gemfile b/integration/apps/rails-six/Gemfile index ef4cbcc6b02..9dcce283d06 100644 --- a/integration/apps/rails-six/Gemfile +++ b/integration/apps/rails-six/Gemfile @@ -84,7 +84,6 @@ group :test do gem 'shoulda-matchers' end - gem 'simplecov', require: false # Will install simplecov-html as a dependency gem 'timecop' gem 'webmock' end diff --git a/jruby-9.2.gemfile b/jruby-9.2.gemfile index a6845372400..3e3b7b7ab05 100644 --- a/jruby-9.2.gemfile +++ b/jruby-9.2.gemfile @@ -26,7 +26,7 @@ gem 'rspec-collection_matchers', '~> 1.1' gem 'rspec-wait', '~> 0' gem 'rspec_junit_formatter', '>= 0.5.1' -gem 'simplecov' +gem 'simplecov', '~> 0.22.0' gem 'simplecov-cobertura', '~> 2.1.0' # Used by codecov gem 'warning', '~> 1' # NOTE: Used in spec_helper.rb diff --git a/jruby-9.3.gemfile b/jruby-9.3.gemfile index 761aa6b2efe..c9e0fef1494 100644 --- a/jruby-9.3.gemfile +++ b/jruby-9.3.gemfile @@ -26,7 +26,7 @@ gem 'rspec-collection_matchers', '~> 1.1' gem 'rspec-wait', '~> 0' gem 'rspec_junit_formatter', '>= 0.5.1' -gem 'simplecov' +gem 'simplecov', '~> 0.22.0' gem 'simplecov-cobertura', '~> 2.1.0' # Used by codecov gem 'warning', '~> 1' # NOTE: Used in spec_helper.rb diff --git a/jruby-9.4.gemfile b/jruby-9.4.gemfile index 58f6e430e15..e0f7464c212 100644 --- a/jruby-9.4.gemfile +++ b/jruby-9.4.gemfile @@ -27,7 +27,7 @@ gem 'rspec-collection_matchers', '~> 1.1' gem 'rspec-wait', '~> 0' gem 'rspec_junit_formatter', '>= 0.5.1' -gem 'simplecov' +gem 'simplecov', '~> 0.22.0' gem 'simplecov-cobertura', '~> 2.1.0' # Used by codecov gem 'warning', '~> 1' # NOTE: Used in spec_helper.rb diff --git a/ruby-2.5.gemfile b/ruby-2.5.gemfile index e8853452152..46a0a661e55 100644 --- a/ruby-2.5.gemfile +++ b/ruby-2.5.gemfile @@ -35,7 +35,7 @@ gem 'rspec-collection_matchers', '~> 1.1' gem 'rspec-wait', '~> 0' gem 'rspec_junit_formatter', '>= 0.5.1' -gem 'simplecov' +gem 'simplecov', '~> 0.22.0' gem 'simplecov-cobertura', '~> 2.1.0' # Used by codecov gem 'warning', '~> 1' # NOTE: Used in spec_helper.rb diff --git a/ruby-2.6.gemfile b/ruby-2.6.gemfile index eebb115a867..40f4f4bc960 100644 --- a/ruby-2.6.gemfile +++ b/ruby-2.6.gemfile @@ -35,7 +35,7 @@ gem 'rspec-collection_matchers', '~> 1.1' gem 'rspec-wait', '~> 0' gem 'rspec_junit_formatter', '>= 0.5.1' -gem 'simplecov' +gem 'simplecov', '~> 0.22.0' gem 'simplecov-cobertura', '~> 2.1.0' # Used by codecov gem 'warning', '~> 1' # NOTE: Used in spec_helper.rb diff --git a/ruby-2.7.gemfile b/ruby-2.7.gemfile index bf5e73a950d..154c33f6786 100644 --- a/ruby-2.7.gemfile +++ b/ruby-2.7.gemfile @@ -35,7 +35,7 @@ gem 'rspec-collection_matchers', '~> 1.1' gem 'rspec-wait', '~> 0' gem 'rspec_junit_formatter', '>= 0.5.1' -gem 'simplecov' +gem 'simplecov', '~> 0.22.0' gem 'simplecov-cobertura', '~> 2.1.0' # Used by codecov gem 'warning', '~> 1' # NOTE: Used in spec_helper.rb diff --git a/ruby-3.0.gemfile b/ruby-3.0.gemfile index d7aa6f93304..f0b2770be21 100644 --- a/ruby-3.0.gemfile +++ b/ruby-3.0.gemfile @@ -35,7 +35,7 @@ gem 'rspec-collection_matchers', '~> 1.1' gem 'rspec-wait', '~> 0' gem 'rspec_junit_formatter', '>= 0.5.1' -gem 'simplecov' +gem 'simplecov', '~> 0.22.0' gem 'simplecov-cobertura', '~> 2.1.0' # Used by codecov gem 'warning', '~> 1' # NOTE: Used in spec_helper.rb diff --git a/ruby-3.1.gemfile b/ruby-3.1.gemfile index a75a93d9c1a..335b3ba0317 100644 --- a/ruby-3.1.gemfile +++ b/ruby-3.1.gemfile @@ -35,7 +35,7 @@ gem 'rspec-collection_matchers', '~> 1.1' gem 'rspec-wait', '~> 0' gem 'rspec_junit_formatter', '>= 0.5.1' -gem 'simplecov' +gem 'simplecov', '~> 0.22.0' gem 'simplecov-cobertura', '~> 2.1.0' # Used by codecov gem 'warning', '~> 1' # NOTE: Used in spec_helper.rb diff --git a/ruby-3.2.gemfile b/ruby-3.2.gemfile index 1500dcdac6c..93db39da8db 100644 --- a/ruby-3.2.gemfile +++ b/ruby-3.2.gemfile @@ -34,7 +34,7 @@ gem 'rspec-collection_matchers', '~> 1.1' gem 'rspec-wait', '~> 0' gem 'rspec_junit_formatter', '>= 0.5.1' -gem 'simplecov' +gem 'simplecov', '~> 0.22.0' gem 'simplecov-cobertura', '~> 2.1.0' # Used by codecov gem 'warning', '~> 1' # NOTE: Used in spec_helper.rb diff --git a/ruby-3.3.gemfile b/ruby-3.3.gemfile index 1500dcdac6c..93db39da8db 100644 --- a/ruby-3.3.gemfile +++ b/ruby-3.3.gemfile @@ -34,7 +34,7 @@ gem 'rspec-collection_matchers', '~> 1.1' gem 'rspec-wait', '~> 0' gem 'rspec_junit_formatter', '>= 0.5.1' -gem 'simplecov' +gem 'simplecov', '~> 0.22.0' gem 'simplecov-cobertura', '~> 2.1.0' # Used by codecov gem 'warning', '~> 1' # NOTE: Used in spec_helper.rb diff --git a/ruby-3.4.gemfile b/ruby-3.4.gemfile index 0509cdc69ae..b1d1102e9d5 100644 --- a/ruby-3.4.gemfile +++ b/ruby-3.4.gemfile @@ -37,7 +37,7 @@ gem 'rspec-collection_matchers', '~> 1.1' gem 'rspec-wait', '~> 0' gem 'rspec_junit_formatter', '>= 0.5.1' -gem 'simplecov' +gem 'simplecov', '~> 0.22.0' gem 'simplecov-cobertura', '~> 2.1.0' # Used by codecov gem 'warning', '~> 1' # NOTE: Used in spec_helper.rb gem 'webmock', '>= 3.10.0' diff --git a/ruby-3.5.gemfile b/ruby-3.5.gemfile index 426a18b4b1d..26c393dffcc 100644 --- a/ruby-3.5.gemfile +++ b/ruby-3.5.gemfile @@ -37,7 +37,7 @@ gem 'rspec-collection_matchers', '~> 1.1' gem 'rspec-wait', '~> 0' gem 'rspec_junit_formatter', '>= 0.5.1' -gem 'simplecov' +gem 'simplecov', '~> 0.22.0' gem 'simplecov-cobertura', '~> 2.1.0' # Used by codecov gem 'warning', '~> 1' # NOTE: Used in spec_helper.rb From 7a50b661955decd1d60e4719f6945fa0b260ab39 Mon Sep 17 00:00:00 2001 From: TonyCTHsu Date: Fri, 10 Jan 2025 15:37:59 +0000 Subject: [PATCH 132/161] =?UTF-8?q?[=F0=9F=A4=96]=20Lock=20Dependency:=20h?= =?UTF-8?q?ttps://github.com/DataDog/dd-trace-rb/actions/runs/12712388067?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- gemfiles/jruby_9.2_activesupport.gemfile | 2 +- gemfiles/jruby_9.2_activesupport.gemfile.lock | 8 ++++---- gemfiles/jruby_9.2_aws.gemfile | 2 +- gemfiles/jruby_9.2_aws.gemfile.lock | 8 ++++---- gemfiles/jruby_9.2_contrib.gemfile | 2 +- gemfiles/jruby_9.2_contrib.gemfile.lock | 8 ++++---- gemfiles/jruby_9.2_contrib_old.gemfile | 2 +- gemfiles/jruby_9.2_contrib_old.gemfile.lock | 8 ++++---- gemfiles/jruby_9.2_core_old.gemfile | 2 +- gemfiles/jruby_9.2_core_old.gemfile.lock | 8 ++++---- gemfiles/jruby_9.2_elasticsearch_7.gemfile | 2 +- gemfiles/jruby_9.2_elasticsearch_7.gemfile.lock | 8 ++++---- gemfiles/jruby_9.2_elasticsearch_8.gemfile | 2 +- gemfiles/jruby_9.2_elasticsearch_8.gemfile.lock | 8 ++++---- gemfiles/jruby_9.2_elasticsearch_latest.gemfile | 2 +- gemfiles/jruby_9.2_elasticsearch_latest.gemfile.lock | 4 ++-- gemfiles/jruby_9.2_graphql_2.0.gemfile | 2 +- gemfiles/jruby_9.2_graphql_2.0.gemfile.lock | 8 ++++---- gemfiles/jruby_9.2_http.gemfile | 2 +- gemfiles/jruby_9.2_http.gemfile.lock | 8 ++++---- gemfiles/jruby_9.2_opensearch_2.gemfile | 2 +- gemfiles/jruby_9.2_opensearch_2.gemfile.lock | 8 ++++---- gemfiles/jruby_9.2_opensearch_3.gemfile | 2 +- gemfiles/jruby_9.2_opensearch_3.gemfile.lock | 8 ++++---- gemfiles/jruby_9.2_opensearch_latest.gemfile | 2 +- gemfiles/jruby_9.2_opensearch_latest.gemfile.lock | 4 ++-- gemfiles/jruby_9.2_rack_1.gemfile | 2 +- gemfiles/jruby_9.2_rack_1.gemfile.lock | 8 ++++---- gemfiles/jruby_9.2_rack_2.gemfile | 2 +- gemfiles/jruby_9.2_rack_2.gemfile.lock | 8 ++++---- gemfiles/jruby_9.2_rack_3.gemfile | 2 +- gemfiles/jruby_9.2_rack_3.gemfile.lock | 8 ++++---- gemfiles/jruby_9.2_rack_latest.gemfile | 2 +- gemfiles/jruby_9.2_rack_latest.gemfile.lock | 4 ++-- gemfiles/jruby_9.2_rails5_mysql2.gemfile | 2 +- gemfiles/jruby_9.2_rails5_mysql2.gemfile.lock | 8 ++++---- gemfiles/jruby_9.2_rails5_postgres.gemfile | 2 +- gemfiles/jruby_9.2_rails5_postgres.gemfile.lock | 8 ++++---- gemfiles/jruby_9.2_rails5_postgres_redis.gemfile | 2 +- gemfiles/jruby_9.2_rails5_postgres_redis.gemfile.lock | 8 ++++---- .../jruby_9.2_rails5_postgres_redis_activesupport.gemfile | 2 +- ...y_9.2_rails5_postgres_redis_activesupport.gemfile.lock | 8 ++++---- gemfiles/jruby_9.2_rails5_postgres_sidekiq.gemfile | 2 +- gemfiles/jruby_9.2_rails5_postgres_sidekiq.gemfile.lock | 8 ++++---- gemfiles/jruby_9.2_rails5_semantic_logger.gemfile | 2 +- gemfiles/jruby_9.2_rails5_semantic_logger.gemfile.lock | 8 ++++---- gemfiles/jruby_9.2_rails61_mysql2.gemfile | 2 +- gemfiles/jruby_9.2_rails61_mysql2.gemfile.lock | 8 ++++---- gemfiles/jruby_9.2_rails61_postgres.gemfile | 2 +- gemfiles/jruby_9.2_rails61_postgres.gemfile.lock | 8 ++++---- gemfiles/jruby_9.2_rails61_postgres_redis.gemfile | 2 +- gemfiles/jruby_9.2_rails61_postgres_redis.gemfile.lock | 8 ++++---- gemfiles/jruby_9.2_rails61_postgres_sidekiq.gemfile | 2 +- gemfiles/jruby_9.2_rails61_postgres_sidekiq.gemfile.lock | 8 ++++---- gemfiles/jruby_9.2_rails61_semantic_logger.gemfile | 2 +- gemfiles/jruby_9.2_rails61_semantic_logger.gemfile.lock | 8 ++++---- gemfiles/jruby_9.2_rails6_mysql2.gemfile | 2 +- gemfiles/jruby_9.2_rails6_mysql2.gemfile.lock | 8 ++++---- gemfiles/jruby_9.2_rails6_postgres.gemfile | 2 +- gemfiles/jruby_9.2_rails6_postgres.gemfile.lock | 8 ++++---- gemfiles/jruby_9.2_rails6_postgres_redis.gemfile | 2 +- gemfiles/jruby_9.2_rails6_postgres_redis.gemfile.lock | 8 ++++---- .../jruby_9.2_rails6_postgres_redis_activesupport.gemfile | 2 +- ...y_9.2_rails6_postgres_redis_activesupport.gemfile.lock | 8 ++++---- gemfiles/jruby_9.2_rails6_postgres_sidekiq.gemfile | 2 +- gemfiles/jruby_9.2_rails6_postgres_sidekiq.gemfile.lock | 8 ++++---- gemfiles/jruby_9.2_rails6_semantic_logger.gemfile | 2 +- gemfiles/jruby_9.2_rails6_semantic_logger.gemfile.lock | 8 ++++---- gemfiles/jruby_9.2_rails_old_redis.gemfile | 2 +- gemfiles/jruby_9.2_redis_3.gemfile | 2 +- gemfiles/jruby_9.2_redis_3.gemfile.lock | 8 ++++---- gemfiles/jruby_9.2_redis_4.gemfile | 2 +- gemfiles/jruby_9.2_redis_4.gemfile.lock | 8 ++++---- gemfiles/jruby_9.2_redis_5.gemfile | 2 +- gemfiles/jruby_9.2_redis_5.gemfile.lock | 8 ++++---- gemfiles/jruby_9.2_relational_db.gemfile | 2 +- gemfiles/jruby_9.2_relational_db.gemfile.lock | 8 ++++---- gemfiles/jruby_9.2_resque2_redis3.gemfile | 2 +- gemfiles/jruby_9.2_resque2_redis3.gemfile.lock | 8 ++++---- gemfiles/jruby_9.2_resque2_redis4.gemfile | 2 +- gemfiles/jruby_9.2_resque2_redis4.gemfile.lock | 8 ++++---- gemfiles/jruby_9.2_sinatra_2.gemfile | 2 +- gemfiles/jruby_9.2_sinatra_2.gemfile.lock | 8 ++++---- gemfiles/jruby_9.2_stripe_10.gemfile | 2 +- gemfiles/jruby_9.2_stripe_10.gemfile.lock | 6 +++--- gemfiles/jruby_9.2_stripe_11.gemfile | 2 +- gemfiles/jruby_9.2_stripe_11.gemfile.lock | 6 +++--- gemfiles/jruby_9.2_stripe_12.gemfile | 2 +- gemfiles/jruby_9.2_stripe_12.gemfile.lock | 6 +++--- gemfiles/jruby_9.2_stripe_7.gemfile | 2 +- gemfiles/jruby_9.2_stripe_7.gemfile.lock | 6 +++--- gemfiles/jruby_9.2_stripe_8.gemfile | 2 +- gemfiles/jruby_9.2_stripe_8.gemfile.lock | 6 +++--- gemfiles/jruby_9.2_stripe_9.gemfile | 2 +- gemfiles/jruby_9.2_stripe_9.gemfile.lock | 6 +++--- gemfiles/jruby_9.2_stripe_latest.gemfile | 2 +- gemfiles/jruby_9.2_stripe_latest.gemfile.lock | 4 ++-- gemfiles/jruby_9.2_stripe_min.gemfile | 2 +- gemfiles/jruby_9.2_stripe_min.gemfile.lock | 4 ++-- gemfiles/jruby_9.3_activesupport.gemfile | 2 +- gemfiles/jruby_9.3_activesupport.gemfile.lock | 8 ++++---- gemfiles/jruby_9.3_aws.gemfile | 2 +- gemfiles/jruby_9.3_aws.gemfile.lock | 8 ++++---- gemfiles/jruby_9.3_contrib.gemfile | 2 +- gemfiles/jruby_9.3_contrib.gemfile.lock | 8 ++++---- gemfiles/jruby_9.3_contrib_old.gemfile | 2 +- gemfiles/jruby_9.3_contrib_old.gemfile.lock | 8 ++++---- gemfiles/jruby_9.3_core_old.gemfile | 2 +- gemfiles/jruby_9.3_core_old.gemfile.lock | 8 ++++---- gemfiles/jruby_9.3_elasticsearch_7.gemfile | 2 +- gemfiles/jruby_9.3_elasticsearch_7.gemfile.lock | 8 ++++---- gemfiles/jruby_9.3_elasticsearch_8.gemfile | 2 +- gemfiles/jruby_9.3_elasticsearch_8.gemfile.lock | 8 ++++---- gemfiles/jruby_9.3_elasticsearch_latest.gemfile | 2 +- gemfiles/jruby_9.3_elasticsearch_latest.gemfile.lock | 4 ++-- gemfiles/jruby_9.3_graphql_1.13.gemfile | 2 +- gemfiles/jruby_9.3_graphql_1.13.gemfile.lock | 8 ++++---- gemfiles/jruby_9.3_graphql_2.0.gemfile | 2 +- gemfiles/jruby_9.3_graphql_2.0.gemfile.lock | 8 ++++---- gemfiles/jruby_9.3_http.gemfile | 2 +- gemfiles/jruby_9.3_http.gemfile.lock | 8 ++++---- gemfiles/jruby_9.3_opensearch_2.gemfile | 2 +- gemfiles/jruby_9.3_opensearch_2.gemfile.lock | 8 ++++---- gemfiles/jruby_9.3_opensearch_3.gemfile | 2 +- gemfiles/jruby_9.3_opensearch_3.gemfile.lock | 8 ++++---- gemfiles/jruby_9.3_opensearch_latest.gemfile | 2 +- gemfiles/jruby_9.3_opensearch_latest.gemfile.lock | 4 ++-- gemfiles/jruby_9.3_rack_1.gemfile | 2 +- gemfiles/jruby_9.3_rack_1.gemfile.lock | 8 ++++---- gemfiles/jruby_9.3_rack_2.gemfile | 2 +- gemfiles/jruby_9.3_rack_2.gemfile.lock | 8 ++++---- gemfiles/jruby_9.3_rack_3.gemfile | 2 +- gemfiles/jruby_9.3_rack_3.gemfile.lock | 8 ++++---- gemfiles/jruby_9.3_rack_latest.gemfile | 2 +- gemfiles/jruby_9.3_rack_latest.gemfile.lock | 4 ++-- gemfiles/jruby_9.3_rails5_mysql2.gemfile | 2 +- gemfiles/jruby_9.3_rails5_mysql2.gemfile.lock | 8 ++++---- gemfiles/jruby_9.3_rails5_postgres.gemfile | 2 +- gemfiles/jruby_9.3_rails5_postgres.gemfile.lock | 8 ++++---- gemfiles/jruby_9.3_rails5_postgres_redis.gemfile | 2 +- gemfiles/jruby_9.3_rails5_postgres_redis.gemfile.lock | 8 ++++---- .../jruby_9.3_rails5_postgres_redis_activesupport.gemfile | 2 +- ...y_9.3_rails5_postgres_redis_activesupport.gemfile.lock | 8 ++++---- gemfiles/jruby_9.3_rails5_postgres_sidekiq.gemfile | 2 +- gemfiles/jruby_9.3_rails5_postgres_sidekiq.gemfile.lock | 8 ++++---- gemfiles/jruby_9.3_rails5_semantic_logger.gemfile | 2 +- gemfiles/jruby_9.3_rails5_semantic_logger.gemfile.lock | 8 ++++---- gemfiles/jruby_9.3_rails61_mysql2.gemfile | 2 +- gemfiles/jruby_9.3_rails61_mysql2.gemfile.lock | 8 ++++---- gemfiles/jruby_9.3_rails61_postgres.gemfile | 2 +- gemfiles/jruby_9.3_rails61_postgres.gemfile.lock | 8 ++++---- gemfiles/jruby_9.3_rails61_postgres_redis.gemfile | 2 +- gemfiles/jruby_9.3_rails61_postgres_redis.gemfile.lock | 8 ++++---- gemfiles/jruby_9.3_rails61_postgres_sidekiq.gemfile | 2 +- gemfiles/jruby_9.3_rails61_postgres_sidekiq.gemfile.lock | 8 ++++---- gemfiles/jruby_9.3_rails61_semantic_logger.gemfile | 2 +- gemfiles/jruby_9.3_rails61_semantic_logger.gemfile.lock | 8 ++++---- gemfiles/jruby_9.3_rails6_mysql2.gemfile | 2 +- gemfiles/jruby_9.3_rails6_mysql2.gemfile.lock | 8 ++++---- gemfiles/jruby_9.3_rails6_postgres.gemfile | 2 +- gemfiles/jruby_9.3_rails6_postgres.gemfile.lock | 8 ++++---- gemfiles/jruby_9.3_rails6_postgres_redis.gemfile | 2 +- gemfiles/jruby_9.3_rails6_postgres_redis.gemfile.lock | 8 ++++---- .../jruby_9.3_rails6_postgres_redis_activesupport.gemfile | 2 +- ...y_9.3_rails6_postgres_redis_activesupport.gemfile.lock | 8 ++++---- gemfiles/jruby_9.3_rails6_postgres_sidekiq.gemfile | 2 +- gemfiles/jruby_9.3_rails6_postgres_sidekiq.gemfile.lock | 8 ++++---- gemfiles/jruby_9.3_rails6_semantic_logger.gemfile | 2 +- gemfiles/jruby_9.3_rails6_semantic_logger.gemfile.lock | 8 ++++---- gemfiles/jruby_9.3_rails_old_redis.gemfile | 2 +- gemfiles/jruby_9.3_redis_3.gemfile | 2 +- gemfiles/jruby_9.3_redis_3.gemfile.lock | 8 ++++---- gemfiles/jruby_9.3_redis_4.gemfile | 2 +- gemfiles/jruby_9.3_redis_4.gemfile.lock | 8 ++++---- gemfiles/jruby_9.3_redis_5.gemfile | 2 +- gemfiles/jruby_9.3_redis_5.gemfile.lock | 8 ++++---- gemfiles/jruby_9.3_relational_db.gemfile | 2 +- gemfiles/jruby_9.3_relational_db.gemfile.lock | 8 ++++---- gemfiles/jruby_9.3_resque2_redis3.gemfile | 2 +- gemfiles/jruby_9.3_resque2_redis3.gemfile.lock | 8 ++++---- gemfiles/jruby_9.3_resque2_redis4.gemfile | 2 +- gemfiles/jruby_9.3_resque2_redis4.gemfile.lock | 8 ++++---- gemfiles/jruby_9.3_sinatra_2.gemfile | 2 +- gemfiles/jruby_9.3_sinatra_2.gemfile.lock | 8 ++++---- gemfiles/jruby_9.3_sinatra_3.gemfile | 2 +- gemfiles/jruby_9.3_sinatra_3.gemfile.lock | 8 ++++---- gemfiles/jruby_9.3_stripe_10.gemfile | 2 +- gemfiles/jruby_9.3_stripe_10.gemfile.lock | 6 +++--- gemfiles/jruby_9.3_stripe_11.gemfile | 2 +- gemfiles/jruby_9.3_stripe_11.gemfile.lock | 6 +++--- gemfiles/jruby_9.3_stripe_12.gemfile | 2 +- gemfiles/jruby_9.3_stripe_12.gemfile.lock | 6 +++--- gemfiles/jruby_9.3_stripe_7.gemfile | 2 +- gemfiles/jruby_9.3_stripe_7.gemfile.lock | 6 +++--- gemfiles/jruby_9.3_stripe_8.gemfile | 2 +- gemfiles/jruby_9.3_stripe_8.gemfile.lock | 6 +++--- gemfiles/jruby_9.3_stripe_9.gemfile | 2 +- gemfiles/jruby_9.3_stripe_9.gemfile.lock | 6 +++--- gemfiles/jruby_9.3_stripe_latest.gemfile | 2 +- gemfiles/jruby_9.3_stripe_latest.gemfile.lock | 4 ++-- gemfiles/jruby_9.3_stripe_min.gemfile | 2 +- gemfiles/jruby_9.3_stripe_min.gemfile.lock | 4 ++-- gemfiles/jruby_9.4_activesupport.gemfile | 2 +- gemfiles/jruby_9.4_activesupport.gemfile.lock | 8 ++++---- gemfiles/jruby_9.4_aws.gemfile | 2 +- gemfiles/jruby_9.4_aws.gemfile.lock | 8 ++++---- gemfiles/jruby_9.4_contrib.gemfile | 2 +- gemfiles/jruby_9.4_contrib.gemfile.lock | 8 ++++---- gemfiles/jruby_9.4_contrib_old.gemfile | 2 +- gemfiles/jruby_9.4_contrib_old.gemfile.lock | 8 ++++---- gemfiles/jruby_9.4_core_old.gemfile | 2 +- gemfiles/jruby_9.4_core_old.gemfile.lock | 8 ++++---- gemfiles/jruby_9.4_elasticsearch_7.gemfile | 2 +- gemfiles/jruby_9.4_elasticsearch_7.gemfile.lock | 8 ++++---- gemfiles/jruby_9.4_elasticsearch_8.gemfile | 2 +- gemfiles/jruby_9.4_elasticsearch_8.gemfile.lock | 8 ++++---- gemfiles/jruby_9.4_elasticsearch_latest.gemfile | 2 +- gemfiles/jruby_9.4_elasticsearch_latest.gemfile.lock | 4 ++-- gemfiles/jruby_9.4_graphql_1.13.gemfile | 2 +- gemfiles/jruby_9.4_graphql_1.13.gemfile.lock | 8 ++++---- gemfiles/jruby_9.4_graphql_2.0.gemfile | 2 +- gemfiles/jruby_9.4_graphql_2.0.gemfile.lock | 8 ++++---- gemfiles/jruby_9.4_graphql_2.1.gemfile | 2 +- gemfiles/jruby_9.4_graphql_2.1.gemfile.lock | 8 ++++---- gemfiles/jruby_9.4_graphql_2.2.gemfile | 2 +- gemfiles/jruby_9.4_graphql_2.2.gemfile.lock | 8 ++++---- gemfiles/jruby_9.4_graphql_2.3.gemfile | 2 +- gemfiles/jruby_9.4_graphql_2.3.gemfile.lock | 8 ++++---- gemfiles/jruby_9.4_http.gemfile | 2 +- gemfiles/jruby_9.4_http.gemfile.lock | 8 ++++---- gemfiles/jruby_9.4_opensearch_2.gemfile | 2 +- gemfiles/jruby_9.4_opensearch_2.gemfile.lock | 8 ++++---- gemfiles/jruby_9.4_opensearch_3.gemfile | 2 +- gemfiles/jruby_9.4_opensearch_3.gemfile.lock | 8 ++++---- gemfiles/jruby_9.4_opensearch_latest.gemfile | 2 +- gemfiles/jruby_9.4_opensearch_latest.gemfile.lock | 4 ++-- gemfiles/jruby_9.4_rack_1.gemfile | 2 +- gemfiles/jruby_9.4_rack_1.gemfile.lock | 8 ++++---- gemfiles/jruby_9.4_rack_2.gemfile | 2 +- gemfiles/jruby_9.4_rack_2.gemfile.lock | 8 ++++---- gemfiles/jruby_9.4_rack_3.gemfile | 2 +- gemfiles/jruby_9.4_rack_3.gemfile.lock | 8 ++++---- gemfiles/jruby_9.4_rack_latest.gemfile | 2 +- gemfiles/jruby_9.4_rack_latest.gemfile.lock | 4 ++-- gemfiles/jruby_9.4_rails61_mysql2.gemfile | 2 +- gemfiles/jruby_9.4_rails61_mysql2.gemfile.lock | 8 ++++---- gemfiles/jruby_9.4_rails61_postgres.gemfile | 2 +- gemfiles/jruby_9.4_rails61_postgres.gemfile.lock | 8 ++++---- gemfiles/jruby_9.4_rails61_postgres_redis.gemfile | 2 +- gemfiles/jruby_9.4_rails61_postgres_redis.gemfile.lock | 8 ++++---- gemfiles/jruby_9.4_rails61_postgres_sidekiq.gemfile | 2 +- gemfiles/jruby_9.4_rails61_postgres_sidekiq.gemfile.lock | 8 ++++---- gemfiles/jruby_9.4_rails61_semantic_logger.gemfile | 2 +- gemfiles/jruby_9.4_rails61_semantic_logger.gemfile.lock | 8 ++++---- gemfiles/jruby_9.4_rails_old_redis.gemfile | 2 +- gemfiles/jruby_9.4_redis_3.gemfile | 2 +- gemfiles/jruby_9.4_redis_3.gemfile.lock | 8 ++++---- gemfiles/jruby_9.4_redis_4.gemfile | 2 +- gemfiles/jruby_9.4_redis_4.gemfile.lock | 8 ++++---- gemfiles/jruby_9.4_redis_5.gemfile | 2 +- gemfiles/jruby_9.4_redis_5.gemfile.lock | 8 ++++---- gemfiles/jruby_9.4_relational_db.gemfile | 2 +- gemfiles/jruby_9.4_relational_db.gemfile.lock | 8 ++++---- gemfiles/jruby_9.4_resque2_redis3.gemfile | 2 +- gemfiles/jruby_9.4_resque2_redis3.gemfile.lock | 8 ++++---- gemfiles/jruby_9.4_resque2_redis4.gemfile | 2 +- gemfiles/jruby_9.4_resque2_redis4.gemfile.lock | 8 ++++---- gemfiles/jruby_9.4_sinatra_2.gemfile | 2 +- gemfiles/jruby_9.4_sinatra_2.gemfile.lock | 8 ++++---- gemfiles/jruby_9.4_sinatra_3.gemfile | 2 +- gemfiles/jruby_9.4_sinatra_3.gemfile.lock | 8 ++++---- gemfiles/jruby_9.4_sinatra_4.gemfile | 2 +- gemfiles/jruby_9.4_sinatra_4.gemfile.lock | 8 ++++---- gemfiles/jruby_9.4_stripe_10.gemfile | 2 +- gemfiles/jruby_9.4_stripe_10.gemfile.lock | 6 +++--- gemfiles/jruby_9.4_stripe_11.gemfile | 2 +- gemfiles/jruby_9.4_stripe_11.gemfile.lock | 6 +++--- gemfiles/jruby_9.4_stripe_12.gemfile | 2 +- gemfiles/jruby_9.4_stripe_12.gemfile.lock | 6 +++--- gemfiles/jruby_9.4_stripe_7.gemfile | 2 +- gemfiles/jruby_9.4_stripe_7.gemfile.lock | 6 +++--- gemfiles/jruby_9.4_stripe_8.gemfile | 2 +- gemfiles/jruby_9.4_stripe_8.gemfile.lock | 6 +++--- gemfiles/jruby_9.4_stripe_9.gemfile | 2 +- gemfiles/jruby_9.4_stripe_9.gemfile.lock | 6 +++--- gemfiles/jruby_9.4_stripe_latest.gemfile | 2 +- gemfiles/jruby_9.4_stripe_latest.gemfile.lock | 4 ++-- gemfiles/jruby_9.4_stripe_min.gemfile | 2 +- gemfiles/jruby_9.4_stripe_min.gemfile.lock | 4 ++-- gemfiles/ruby_2.5_activesupport.gemfile | 2 +- gemfiles/ruby_2.5_activesupport.gemfile.lock | 8 ++++---- gemfiles/ruby_2.5_aws.gemfile | 2 +- gemfiles/ruby_2.5_aws.gemfile.lock | 8 ++++---- gemfiles/ruby_2.5_contrib.gemfile | 2 +- gemfiles/ruby_2.5_contrib.gemfile.lock | 8 ++++---- gemfiles/ruby_2.5_contrib_old.gemfile | 2 +- gemfiles/ruby_2.5_contrib_old.gemfile.lock | 8 ++++---- gemfiles/ruby_2.5_core_old.gemfile | 2 +- gemfiles/ruby_2.5_core_old.gemfile.lock | 8 ++++---- gemfiles/ruby_2.5_elasticsearch_7.gemfile | 2 +- gemfiles/ruby_2.5_elasticsearch_7.gemfile.lock | 8 ++++---- gemfiles/ruby_2.5_elasticsearch_8.gemfile | 2 +- gemfiles/ruby_2.5_elasticsearch_8.gemfile.lock | 8 ++++---- gemfiles/ruby_2.5_elasticsearch_latest.gemfile | 2 +- gemfiles/ruby_2.5_elasticsearch_latest.gemfile.lock | 4 ++-- gemfiles/ruby_2.5_graphql_2.0.gemfile | 2 +- gemfiles/ruby_2.5_graphql_2.0.gemfile.lock | 8 ++++---- gemfiles/ruby_2.5_hanami_1.gemfile | 2 +- gemfiles/ruby_2.5_hanami_1.gemfile.lock | 8 ++++---- gemfiles/ruby_2.5_http.gemfile | 2 +- gemfiles/ruby_2.5_http.gemfile.lock | 8 ++++---- gemfiles/ruby_2.5_opensearch_2.gemfile | 2 +- gemfiles/ruby_2.5_opensearch_2.gemfile.lock | 8 ++++---- gemfiles/ruby_2.5_opensearch_3.gemfile | 2 +- gemfiles/ruby_2.5_opensearch_3.gemfile.lock | 8 ++++---- gemfiles/ruby_2.5_opensearch_latest.gemfile | 2 +- gemfiles/ruby_2.5_opensearch_latest.gemfile.lock | 4 ++-- gemfiles/ruby_2.5_rack_1.gemfile | 2 +- gemfiles/ruby_2.5_rack_1.gemfile.lock | 8 ++++---- gemfiles/ruby_2.5_rack_2.gemfile | 2 +- gemfiles/ruby_2.5_rack_2.gemfile.lock | 8 ++++---- gemfiles/ruby_2.5_rack_3.gemfile | 2 +- gemfiles/ruby_2.5_rack_3.gemfile.lock | 8 ++++---- gemfiles/ruby_2.5_rack_latest.gemfile | 2 +- gemfiles/ruby_2.5_rack_latest.gemfile.lock | 4 ++-- gemfiles/ruby_2.5_rails4_mysql2.gemfile | 2 +- gemfiles/ruby_2.5_rails4_mysql2.gemfile.lock | 8 ++++---- gemfiles/ruby_2.5_rails4_postgres.gemfile | 2 +- gemfiles/ruby_2.5_rails4_postgres.gemfile.lock | 8 ++++---- gemfiles/ruby_2.5_rails4_postgres_redis.gemfile | 2 +- gemfiles/ruby_2.5_rails4_postgres_redis.gemfile.lock | 8 ++++---- gemfiles/ruby_2.5_rails4_postgres_sidekiq.gemfile | 2 +- gemfiles/ruby_2.5_rails4_postgres_sidekiq.gemfile.lock | 8 ++++---- gemfiles/ruby_2.5_rails4_semantic_logger.gemfile | 2 +- gemfiles/ruby_2.5_rails4_semantic_logger.gemfile.lock | 8 ++++---- gemfiles/ruby_2.5_rails5_mysql2.gemfile | 2 +- gemfiles/ruby_2.5_rails5_mysql2.gemfile.lock | 8 ++++---- gemfiles/ruby_2.5_rails5_postgres.gemfile | 2 +- gemfiles/ruby_2.5_rails5_postgres.gemfile.lock | 8 ++++---- gemfiles/ruby_2.5_rails5_postgres_redis.gemfile | 2 +- gemfiles/ruby_2.5_rails5_postgres_redis.gemfile.lock | 8 ++++---- .../ruby_2.5_rails5_postgres_redis_activesupport.gemfile | 2 +- ...y_2.5_rails5_postgres_redis_activesupport.gemfile.lock | 8 ++++---- gemfiles/ruby_2.5_rails5_postgres_sidekiq.gemfile | 2 +- gemfiles/ruby_2.5_rails5_postgres_sidekiq.gemfile.lock | 8 ++++---- gemfiles/ruby_2.5_rails5_semantic_logger.gemfile | 2 +- gemfiles/ruby_2.5_rails5_semantic_logger.gemfile.lock | 8 ++++---- gemfiles/ruby_2.5_rails61_mysql2.gemfile | 2 +- gemfiles/ruby_2.5_rails61_mysql2.gemfile.lock | 8 ++++---- gemfiles/ruby_2.5_rails61_postgres.gemfile | 2 +- gemfiles/ruby_2.5_rails61_postgres.gemfile.lock | 8 ++++---- gemfiles/ruby_2.5_rails61_postgres_redis.gemfile | 2 +- gemfiles/ruby_2.5_rails61_postgres_redis.gemfile.lock | 8 ++++---- gemfiles/ruby_2.5_rails61_postgres_sidekiq.gemfile | 2 +- gemfiles/ruby_2.5_rails61_postgres_sidekiq.gemfile.lock | 8 ++++---- gemfiles/ruby_2.5_rails61_semantic_logger.gemfile | 2 +- gemfiles/ruby_2.5_rails61_semantic_logger.gemfile.lock | 8 ++++---- gemfiles/ruby_2.5_rails6_mysql2.gemfile | 2 +- gemfiles/ruby_2.5_rails6_mysql2.gemfile.lock | 8 ++++---- gemfiles/ruby_2.5_rails6_postgres.gemfile | 2 +- gemfiles/ruby_2.5_rails6_postgres.gemfile.lock | 8 ++++---- gemfiles/ruby_2.5_rails6_postgres_redis.gemfile | 2 +- gemfiles/ruby_2.5_rails6_postgres_redis.gemfile.lock | 8 ++++---- .../ruby_2.5_rails6_postgres_redis_activesupport.gemfile | 2 +- ...y_2.5_rails6_postgres_redis_activesupport.gemfile.lock | 8 ++++---- gemfiles/ruby_2.5_rails6_postgres_sidekiq.gemfile | 2 +- gemfiles/ruby_2.5_rails6_postgres_sidekiq.gemfile.lock | 8 ++++---- gemfiles/ruby_2.5_rails6_semantic_logger.gemfile | 2 +- gemfiles/ruby_2.5_rails6_semantic_logger.gemfile.lock | 8 ++++---- gemfiles/ruby_2.5_rails_old_redis.gemfile | 2 +- gemfiles/ruby_2.5_redis_3.gemfile | 2 +- gemfiles/ruby_2.5_redis_3.gemfile.lock | 8 ++++---- gemfiles/ruby_2.5_redis_4.gemfile | 2 +- gemfiles/ruby_2.5_redis_4.gemfile.lock | 8 ++++---- gemfiles/ruby_2.5_redis_5.gemfile | 2 +- gemfiles/ruby_2.5_redis_5.gemfile.lock | 8 ++++---- gemfiles/ruby_2.5_relational_db.gemfile | 2 +- gemfiles/ruby_2.5_relational_db.gemfile.lock | 8 ++++---- gemfiles/ruby_2.5_resque2_redis3.gemfile | 2 +- gemfiles/ruby_2.5_resque2_redis3.gemfile.lock | 8 ++++---- gemfiles/ruby_2.5_resque2_redis4.gemfile | 2 +- gemfiles/ruby_2.5_resque2_redis4.gemfile.lock | 8 ++++---- gemfiles/ruby_2.5_sinatra_2.gemfile | 2 +- gemfiles/ruby_2.5_sinatra_2.gemfile.lock | 8 ++++---- gemfiles/ruby_2.5_stripe_10.gemfile | 2 +- gemfiles/ruby_2.5_stripe_10.gemfile.lock | 6 +++--- gemfiles/ruby_2.5_stripe_11.gemfile | 2 +- gemfiles/ruby_2.5_stripe_11.gemfile.lock | 6 +++--- gemfiles/ruby_2.5_stripe_12.gemfile | 2 +- gemfiles/ruby_2.5_stripe_12.gemfile.lock | 6 +++--- gemfiles/ruby_2.5_stripe_7.gemfile | 2 +- gemfiles/ruby_2.5_stripe_7.gemfile.lock | 6 +++--- gemfiles/ruby_2.5_stripe_8.gemfile | 2 +- gemfiles/ruby_2.5_stripe_8.gemfile.lock | 6 +++--- gemfiles/ruby_2.5_stripe_9.gemfile | 2 +- gemfiles/ruby_2.5_stripe_9.gemfile.lock | 6 +++--- gemfiles/ruby_2.5_stripe_latest.gemfile | 2 +- gemfiles/ruby_2.5_stripe_latest.gemfile.lock | 4 ++-- gemfiles/ruby_2.5_stripe_min.gemfile | 2 +- gemfiles/ruby_2.5_stripe_min.gemfile.lock | 4 ++-- gemfiles/ruby_2.6_activesupport.gemfile | 2 +- gemfiles/ruby_2.6_activesupport.gemfile.lock | 8 ++++---- gemfiles/ruby_2.6_aws.gemfile | 2 +- gemfiles/ruby_2.6_aws.gemfile.lock | 8 ++++---- gemfiles/ruby_2.6_contrib.gemfile | 2 +- gemfiles/ruby_2.6_contrib.gemfile.lock | 8 ++++---- gemfiles/ruby_2.6_contrib_old.gemfile | 2 +- gemfiles/ruby_2.6_contrib_old.gemfile.lock | 8 ++++---- gemfiles/ruby_2.6_core_old.gemfile | 2 +- gemfiles/ruby_2.6_core_old.gemfile.lock | 8 ++++---- gemfiles/ruby_2.6_elasticsearch_7.gemfile | 2 +- gemfiles/ruby_2.6_elasticsearch_7.gemfile.lock | 8 ++++---- gemfiles/ruby_2.6_elasticsearch_8.gemfile | 2 +- gemfiles/ruby_2.6_elasticsearch_8.gemfile.lock | 8 ++++---- gemfiles/ruby_2.6_elasticsearch_latest.gemfile | 2 +- gemfiles/ruby_2.6_elasticsearch_latest.gemfile.lock | 4 ++-- gemfiles/ruby_2.6_graphql_1.13.gemfile | 2 +- gemfiles/ruby_2.6_graphql_1.13.gemfile.lock | 8 ++++---- gemfiles/ruby_2.6_graphql_2.0.gemfile | 2 +- gemfiles/ruby_2.6_graphql_2.0.gemfile.lock | 8 ++++---- gemfiles/ruby_2.6_hanami_1.gemfile | 2 +- gemfiles/ruby_2.6_hanami_1.gemfile.lock | 8 ++++---- gemfiles/ruby_2.6_http.gemfile | 2 +- gemfiles/ruby_2.6_http.gemfile.lock | 8 ++++---- gemfiles/ruby_2.6_opensearch_2.gemfile | 2 +- gemfiles/ruby_2.6_opensearch_2.gemfile.lock | 8 ++++---- gemfiles/ruby_2.6_opensearch_3.gemfile | 2 +- gemfiles/ruby_2.6_opensearch_3.gemfile.lock | 8 ++++---- gemfiles/ruby_2.6_opensearch_latest.gemfile | 2 +- gemfiles/ruby_2.6_opensearch_latest.gemfile.lock | 4 ++-- gemfiles/ruby_2.6_opentelemetry.gemfile | 2 +- gemfiles/ruby_2.6_opentelemetry.gemfile.lock | 8 ++++---- gemfiles/ruby_2.6_opentelemetry_otlp.gemfile | 2 +- gemfiles/ruby_2.6_opentelemetry_otlp.gemfile.lock | 8 ++++---- gemfiles/ruby_2.6_rack_1.gemfile | 2 +- gemfiles/ruby_2.6_rack_1.gemfile.lock | 8 ++++---- gemfiles/ruby_2.6_rack_2.gemfile | 2 +- gemfiles/ruby_2.6_rack_2.gemfile.lock | 8 ++++---- gemfiles/ruby_2.6_rack_3.gemfile | 2 +- gemfiles/ruby_2.6_rack_3.gemfile.lock | 8 ++++---- gemfiles/ruby_2.6_rack_latest.gemfile | 2 +- gemfiles/ruby_2.6_rack_latest.gemfile.lock | 4 ++-- gemfiles/ruby_2.6_rails5_mysql2.gemfile | 2 +- gemfiles/ruby_2.6_rails5_mysql2.gemfile.lock | 8 ++++---- gemfiles/ruby_2.6_rails5_postgres.gemfile | 2 +- gemfiles/ruby_2.6_rails5_postgres.gemfile.lock | 8 ++++---- gemfiles/ruby_2.6_rails5_postgres_redis.gemfile | 2 +- gemfiles/ruby_2.6_rails5_postgres_redis.gemfile.lock | 8 ++++---- .../ruby_2.6_rails5_postgres_redis_activesupport.gemfile | 2 +- ...y_2.6_rails5_postgres_redis_activesupport.gemfile.lock | 8 ++++---- gemfiles/ruby_2.6_rails5_postgres_sidekiq.gemfile | 2 +- gemfiles/ruby_2.6_rails5_postgres_sidekiq.gemfile.lock | 8 ++++---- gemfiles/ruby_2.6_rails5_semantic_logger.gemfile | 2 +- gemfiles/ruby_2.6_rails5_semantic_logger.gemfile.lock | 8 ++++---- gemfiles/ruby_2.6_rails61_mysql2.gemfile | 2 +- gemfiles/ruby_2.6_rails61_mysql2.gemfile.lock | 8 ++++---- gemfiles/ruby_2.6_rails61_postgres.gemfile | 2 +- gemfiles/ruby_2.6_rails61_postgres.gemfile.lock | 8 ++++---- gemfiles/ruby_2.6_rails61_postgres_redis.gemfile | 2 +- gemfiles/ruby_2.6_rails61_postgres_redis.gemfile.lock | 8 ++++---- gemfiles/ruby_2.6_rails61_postgres_sidekiq.gemfile | 2 +- gemfiles/ruby_2.6_rails61_postgres_sidekiq.gemfile.lock | 8 ++++---- gemfiles/ruby_2.6_rails61_semantic_logger.gemfile | 2 +- gemfiles/ruby_2.6_rails61_semantic_logger.gemfile.lock | 8 ++++---- gemfiles/ruby_2.6_rails6_mysql2.gemfile | 2 +- gemfiles/ruby_2.6_rails6_mysql2.gemfile.lock | 8 ++++---- gemfiles/ruby_2.6_rails6_postgres.gemfile | 2 +- gemfiles/ruby_2.6_rails6_postgres.gemfile.lock | 8 ++++---- gemfiles/ruby_2.6_rails6_postgres_redis.gemfile | 2 +- gemfiles/ruby_2.6_rails6_postgres_redis.gemfile.lock | 8 ++++---- .../ruby_2.6_rails6_postgres_redis_activesupport.gemfile | 2 +- ...y_2.6_rails6_postgres_redis_activesupport.gemfile.lock | 8 ++++---- gemfiles/ruby_2.6_rails6_postgres_sidekiq.gemfile | 2 +- gemfiles/ruby_2.6_rails6_postgres_sidekiq.gemfile.lock | 8 ++++---- gemfiles/ruby_2.6_rails6_semantic_logger.gemfile | 2 +- gemfiles/ruby_2.6_rails6_semantic_logger.gemfile.lock | 8 ++++---- gemfiles/ruby_2.6_rails_old_redis.gemfile | 2 +- gemfiles/ruby_2.6_redis_3.gemfile | 2 +- gemfiles/ruby_2.6_redis_3.gemfile.lock | 8 ++++---- gemfiles/ruby_2.6_redis_4.gemfile | 2 +- gemfiles/ruby_2.6_redis_4.gemfile.lock | 8 ++++---- gemfiles/ruby_2.6_redis_5.gemfile | 2 +- gemfiles/ruby_2.6_redis_5.gemfile.lock | 8 ++++---- gemfiles/ruby_2.6_relational_db.gemfile | 2 +- gemfiles/ruby_2.6_relational_db.gemfile.lock | 8 ++++---- gemfiles/ruby_2.6_resque2_redis3.gemfile | 2 +- gemfiles/ruby_2.6_resque2_redis3.gemfile.lock | 8 ++++---- gemfiles/ruby_2.6_resque2_redis4.gemfile | 2 +- gemfiles/ruby_2.6_resque2_redis4.gemfile.lock | 8 ++++---- gemfiles/ruby_2.6_sinatra_2.gemfile | 2 +- gemfiles/ruby_2.6_sinatra_2.gemfile.lock | 8 ++++---- gemfiles/ruby_2.6_sinatra_3.gemfile | 2 +- gemfiles/ruby_2.6_sinatra_3.gemfile.lock | 8 ++++---- gemfiles/ruby_2.6_stripe_10.gemfile | 2 +- gemfiles/ruby_2.6_stripe_10.gemfile.lock | 6 +++--- gemfiles/ruby_2.6_stripe_11.gemfile | 2 +- gemfiles/ruby_2.6_stripe_11.gemfile.lock | 6 +++--- gemfiles/ruby_2.6_stripe_12.gemfile | 2 +- gemfiles/ruby_2.6_stripe_12.gemfile.lock | 6 +++--- gemfiles/ruby_2.6_stripe_7.gemfile | 2 +- gemfiles/ruby_2.6_stripe_7.gemfile.lock | 6 +++--- gemfiles/ruby_2.6_stripe_8.gemfile | 2 +- gemfiles/ruby_2.6_stripe_8.gemfile.lock | 6 +++--- gemfiles/ruby_2.6_stripe_9.gemfile | 2 +- gemfiles/ruby_2.6_stripe_9.gemfile.lock | 6 +++--- gemfiles/ruby_2.6_stripe_latest.gemfile | 2 +- gemfiles/ruby_2.6_stripe_latest.gemfile.lock | 4 ++-- gemfiles/ruby_2.6_stripe_min.gemfile | 2 +- gemfiles/ruby_2.6_stripe_min.gemfile.lock | 4 ++-- gemfiles/ruby_2.7_activesupport.gemfile | 2 +- gemfiles/ruby_2.7_activesupport.gemfile.lock | 8 ++++---- gemfiles/ruby_2.7_aws.gemfile | 2 +- gemfiles/ruby_2.7_aws.gemfile.lock | 8 ++++---- gemfiles/ruby_2.7_contrib.gemfile | 2 +- gemfiles/ruby_2.7_contrib.gemfile.lock | 8 ++++---- gemfiles/ruby_2.7_contrib_old.gemfile | 2 +- gemfiles/ruby_2.7_contrib_old.gemfile.lock | 8 ++++---- gemfiles/ruby_2.7_core_old.gemfile | 2 +- gemfiles/ruby_2.7_core_old.gemfile.lock | 8 ++++---- gemfiles/ruby_2.7_elasticsearch_7.gemfile | 2 +- gemfiles/ruby_2.7_elasticsearch_7.gemfile.lock | 8 ++++---- gemfiles/ruby_2.7_elasticsearch_8.gemfile | 2 +- gemfiles/ruby_2.7_elasticsearch_8.gemfile.lock | 8 ++++---- gemfiles/ruby_2.7_elasticsearch_latest.gemfile | 2 +- gemfiles/ruby_2.7_elasticsearch_latest.gemfile.lock | 4 ++-- gemfiles/ruby_2.7_graphql_1.13.gemfile | 2 +- gemfiles/ruby_2.7_graphql_1.13.gemfile.lock | 8 ++++---- gemfiles/ruby_2.7_graphql_2.0.gemfile | 2 +- gemfiles/ruby_2.7_graphql_2.0.gemfile.lock | 8 ++++---- gemfiles/ruby_2.7_graphql_2.1.gemfile | 2 +- gemfiles/ruby_2.7_graphql_2.1.gemfile.lock | 8 ++++---- gemfiles/ruby_2.7_graphql_2.2.gemfile | 2 +- gemfiles/ruby_2.7_graphql_2.2.gemfile.lock | 8 ++++---- gemfiles/ruby_2.7_graphql_2.3.gemfile | 2 +- gemfiles/ruby_2.7_graphql_2.3.gemfile.lock | 8 ++++---- gemfiles/ruby_2.7_hanami_1.gemfile | 2 +- gemfiles/ruby_2.7_hanami_1.gemfile.lock | 8 ++++---- gemfiles/ruby_2.7_http.gemfile | 2 +- gemfiles/ruby_2.7_http.gemfile.lock | 8 ++++---- gemfiles/ruby_2.7_opensearch_2.gemfile | 2 +- gemfiles/ruby_2.7_opensearch_2.gemfile.lock | 8 ++++---- gemfiles/ruby_2.7_opensearch_3.gemfile | 2 +- gemfiles/ruby_2.7_opensearch_3.gemfile.lock | 8 ++++---- gemfiles/ruby_2.7_opensearch_latest.gemfile | 2 +- gemfiles/ruby_2.7_opensearch_latest.gemfile.lock | 4 ++-- gemfiles/ruby_2.7_opentelemetry.gemfile | 2 +- gemfiles/ruby_2.7_opentelemetry.gemfile.lock | 8 ++++---- gemfiles/ruby_2.7_opentelemetry_otlp.gemfile | 2 +- gemfiles/ruby_2.7_opentelemetry_otlp.gemfile.lock | 8 ++++---- gemfiles/ruby_2.7_rack_1.gemfile | 2 +- gemfiles/ruby_2.7_rack_1.gemfile.lock | 8 ++++---- gemfiles/ruby_2.7_rack_2.gemfile | 2 +- gemfiles/ruby_2.7_rack_2.gemfile.lock | 8 ++++---- gemfiles/ruby_2.7_rack_3.gemfile | 2 +- gemfiles/ruby_2.7_rack_3.gemfile.lock | 8 ++++---- gemfiles/ruby_2.7_rack_latest.gemfile | 2 +- gemfiles/ruby_2.7_rack_latest.gemfile.lock | 4 ++-- gemfiles/ruby_2.7_rails5_mysql2.gemfile | 2 +- gemfiles/ruby_2.7_rails5_mysql2.gemfile.lock | 8 ++++---- gemfiles/ruby_2.7_rails5_postgres.gemfile | 2 +- gemfiles/ruby_2.7_rails5_postgres.gemfile.lock | 8 ++++---- gemfiles/ruby_2.7_rails5_postgres_redis.gemfile | 2 +- gemfiles/ruby_2.7_rails5_postgres_redis.gemfile.lock | 8 ++++---- .../ruby_2.7_rails5_postgres_redis_activesupport.gemfile | 2 +- ...y_2.7_rails5_postgres_redis_activesupport.gemfile.lock | 8 ++++---- gemfiles/ruby_2.7_rails5_postgres_sidekiq.gemfile | 2 +- gemfiles/ruby_2.7_rails5_postgres_sidekiq.gemfile.lock | 8 ++++---- gemfiles/ruby_2.7_rails5_semantic_logger.gemfile | 2 +- gemfiles/ruby_2.7_rails5_semantic_logger.gemfile.lock | 8 ++++---- gemfiles/ruby_2.7_rails61_mysql2.gemfile | 2 +- gemfiles/ruby_2.7_rails61_mysql2.gemfile.lock | 8 ++++---- gemfiles/ruby_2.7_rails61_postgres.gemfile | 2 +- gemfiles/ruby_2.7_rails61_postgres.gemfile.lock | 8 ++++---- gemfiles/ruby_2.7_rails61_postgres_redis.gemfile | 2 +- gemfiles/ruby_2.7_rails61_postgres_redis.gemfile.lock | 8 ++++---- gemfiles/ruby_2.7_rails61_postgres_sidekiq.gemfile | 2 +- gemfiles/ruby_2.7_rails61_postgres_sidekiq.gemfile.lock | 8 ++++---- gemfiles/ruby_2.7_rails61_semantic_logger.gemfile | 2 +- gemfiles/ruby_2.7_rails61_semantic_logger.gemfile.lock | 8 ++++---- gemfiles/ruby_2.7_rails6_mysql2.gemfile | 2 +- gemfiles/ruby_2.7_rails6_mysql2.gemfile.lock | 8 ++++---- gemfiles/ruby_2.7_rails6_postgres.gemfile | 2 +- gemfiles/ruby_2.7_rails6_postgres.gemfile.lock | 8 ++++---- gemfiles/ruby_2.7_rails6_postgres_redis.gemfile | 2 +- gemfiles/ruby_2.7_rails6_postgres_redis.gemfile.lock | 8 ++++---- .../ruby_2.7_rails6_postgres_redis_activesupport.gemfile | 2 +- ...y_2.7_rails6_postgres_redis_activesupport.gemfile.lock | 8 ++++---- gemfiles/ruby_2.7_rails6_postgres_sidekiq.gemfile | 2 +- gemfiles/ruby_2.7_rails6_postgres_sidekiq.gemfile.lock | 8 ++++---- gemfiles/ruby_2.7_rails6_semantic_logger.gemfile | 2 +- gemfiles/ruby_2.7_rails6_semantic_logger.gemfile.lock | 8 ++++---- gemfiles/ruby_2.7_rails_old_redis.gemfile | 2 +- gemfiles/ruby_2.7_redis_3.gemfile | 2 +- gemfiles/ruby_2.7_redis_3.gemfile.lock | 8 ++++---- gemfiles/ruby_2.7_redis_4.gemfile | 2 +- gemfiles/ruby_2.7_redis_4.gemfile.lock | 8 ++++---- gemfiles/ruby_2.7_redis_5.gemfile | 2 +- gemfiles/ruby_2.7_redis_5.gemfile.lock | 8 ++++---- gemfiles/ruby_2.7_relational_db.gemfile | 2 +- gemfiles/ruby_2.7_relational_db.gemfile.lock | 8 ++++---- gemfiles/ruby_2.7_resque2_redis3.gemfile | 2 +- gemfiles/ruby_2.7_resque2_redis3.gemfile.lock | 8 ++++---- gemfiles/ruby_2.7_resque2_redis4.gemfile | 2 +- gemfiles/ruby_2.7_resque2_redis4.gemfile.lock | 8 ++++---- gemfiles/ruby_2.7_sinatra_2.gemfile | 2 +- gemfiles/ruby_2.7_sinatra_2.gemfile.lock | 8 ++++---- gemfiles/ruby_2.7_sinatra_3.gemfile | 2 +- gemfiles/ruby_2.7_sinatra_3.gemfile.lock | 8 ++++---- gemfiles/ruby_2.7_stripe_10.gemfile | 2 +- gemfiles/ruby_2.7_stripe_10.gemfile.lock | 6 +++--- gemfiles/ruby_2.7_stripe_11.gemfile | 2 +- gemfiles/ruby_2.7_stripe_11.gemfile.lock | 6 +++--- gemfiles/ruby_2.7_stripe_12.gemfile | 2 +- gemfiles/ruby_2.7_stripe_12.gemfile.lock | 6 +++--- gemfiles/ruby_2.7_stripe_7.gemfile | 2 +- gemfiles/ruby_2.7_stripe_7.gemfile.lock | 6 +++--- gemfiles/ruby_2.7_stripe_8.gemfile | 2 +- gemfiles/ruby_2.7_stripe_8.gemfile.lock | 6 +++--- gemfiles/ruby_2.7_stripe_9.gemfile | 2 +- gemfiles/ruby_2.7_stripe_9.gemfile.lock | 6 +++--- gemfiles/ruby_2.7_stripe_latest.gemfile | 2 +- gemfiles/ruby_2.7_stripe_latest.gemfile.lock | 4 ++-- gemfiles/ruby_2.7_stripe_min.gemfile | 2 +- gemfiles/ruby_2.7_stripe_min.gemfile.lock | 4 ++-- gemfiles/ruby_3.0_activesupport.gemfile | 2 +- gemfiles/ruby_3.0_activesupport.gemfile.lock | 8 ++++---- gemfiles/ruby_3.0_aws.gemfile | 2 +- gemfiles/ruby_3.0_aws.gemfile.lock | 8 ++++---- gemfiles/ruby_3.0_contrib.gemfile | 2 +- gemfiles/ruby_3.0_contrib.gemfile.lock | 8 ++++---- gemfiles/ruby_3.0_contrib_old.gemfile | 2 +- gemfiles/ruby_3.0_contrib_old.gemfile.lock | 8 ++++---- gemfiles/ruby_3.0_core_old.gemfile | 2 +- gemfiles/ruby_3.0_core_old.gemfile.lock | 8 ++++---- gemfiles/ruby_3.0_elasticsearch_7.gemfile | 2 +- gemfiles/ruby_3.0_elasticsearch_7.gemfile.lock | 8 ++++---- gemfiles/ruby_3.0_elasticsearch_8.gemfile | 2 +- gemfiles/ruby_3.0_elasticsearch_8.gemfile.lock | 8 ++++---- gemfiles/ruby_3.0_elasticsearch_latest.gemfile | 2 +- gemfiles/ruby_3.0_elasticsearch_latest.gemfile.lock | 4 ++-- gemfiles/ruby_3.0_graphql_1.13.gemfile | 2 +- gemfiles/ruby_3.0_graphql_1.13.gemfile.lock | 8 ++++---- gemfiles/ruby_3.0_graphql_2.0.gemfile | 2 +- gemfiles/ruby_3.0_graphql_2.0.gemfile.lock | 8 ++++---- gemfiles/ruby_3.0_graphql_2.1.gemfile | 2 +- gemfiles/ruby_3.0_graphql_2.1.gemfile.lock | 8 ++++---- gemfiles/ruby_3.0_graphql_2.2.gemfile | 2 +- gemfiles/ruby_3.0_graphql_2.2.gemfile.lock | 8 ++++---- gemfiles/ruby_3.0_graphql_2.3.gemfile | 2 +- gemfiles/ruby_3.0_graphql_2.3.gemfile.lock | 8 ++++---- gemfiles/ruby_3.0_http.gemfile | 2 +- gemfiles/ruby_3.0_http.gemfile.lock | 8 ++++---- gemfiles/ruby_3.0_opensearch_2.gemfile | 2 +- gemfiles/ruby_3.0_opensearch_2.gemfile.lock | 8 ++++---- gemfiles/ruby_3.0_opensearch_3.gemfile | 2 +- gemfiles/ruby_3.0_opensearch_3.gemfile.lock | 8 ++++---- gemfiles/ruby_3.0_opensearch_latest.gemfile | 2 +- gemfiles/ruby_3.0_opensearch_latest.gemfile.lock | 4 ++-- gemfiles/ruby_3.0_opentelemetry.gemfile | 2 +- gemfiles/ruby_3.0_opentelemetry.gemfile.lock | 8 ++++---- gemfiles/ruby_3.0_opentelemetry_otlp.gemfile | 2 +- gemfiles/ruby_3.0_opentelemetry_otlp.gemfile.lock | 8 ++++---- gemfiles/ruby_3.0_rack_1.gemfile | 2 +- gemfiles/ruby_3.0_rack_1.gemfile.lock | 8 ++++---- gemfiles/ruby_3.0_rack_2.gemfile | 2 +- gemfiles/ruby_3.0_rack_2.gemfile.lock | 8 ++++---- gemfiles/ruby_3.0_rack_3.gemfile | 2 +- gemfiles/ruby_3.0_rack_3.gemfile.lock | 8 ++++---- gemfiles/ruby_3.0_rack_latest.gemfile | 2 +- gemfiles/ruby_3.0_rack_latest.gemfile.lock | 4 ++-- gemfiles/ruby_3.0_rails61_mysql2.gemfile | 2 +- gemfiles/ruby_3.0_rails61_mysql2.gemfile.lock | 8 ++++---- gemfiles/ruby_3.0_rails61_postgres.gemfile | 2 +- gemfiles/ruby_3.0_rails61_postgres.gemfile.lock | 8 ++++---- gemfiles/ruby_3.0_rails61_postgres_redis.gemfile | 2 +- gemfiles/ruby_3.0_rails61_postgres_redis.gemfile.lock | 8 ++++---- gemfiles/ruby_3.0_rails61_postgres_sidekiq.gemfile | 2 +- gemfiles/ruby_3.0_rails61_postgres_sidekiq.gemfile.lock | 8 ++++---- gemfiles/ruby_3.0_rails61_semantic_logger.gemfile | 2 +- gemfiles/ruby_3.0_rails61_semantic_logger.gemfile.lock | 8 ++++---- gemfiles/ruby_3.0_rails61_trilogy.gemfile | 2 +- gemfiles/ruby_3.0_rails61_trilogy.gemfile.lock | 8 ++++---- gemfiles/ruby_3.0_rails7.gemfile | 2 +- gemfiles/ruby_3.0_rails7.gemfile.lock | 6 +++--- gemfiles/ruby_3.0_rails71.gemfile | 2 +- gemfiles/ruby_3.0_rails71.gemfile.lock | 6 +++--- gemfiles/ruby_3.0_rails_old_redis.gemfile | 2 +- gemfiles/ruby_3.0_redis_3.gemfile | 2 +- gemfiles/ruby_3.0_redis_3.gemfile.lock | 8 ++++---- gemfiles/ruby_3.0_redis_4.gemfile | 2 +- gemfiles/ruby_3.0_redis_4.gemfile.lock | 8 ++++---- gemfiles/ruby_3.0_redis_5.gemfile | 2 +- gemfiles/ruby_3.0_redis_5.gemfile.lock | 8 ++++---- gemfiles/ruby_3.0_relational_db.gemfile | 2 +- gemfiles/ruby_3.0_relational_db.gemfile.lock | 8 ++++---- gemfiles/ruby_3.0_resque2_redis3.gemfile | 2 +- gemfiles/ruby_3.0_resque2_redis3.gemfile.lock | 8 ++++---- gemfiles/ruby_3.0_resque2_redis4.gemfile | 2 +- gemfiles/ruby_3.0_resque2_redis4.gemfile.lock | 8 ++++---- gemfiles/ruby_3.0_sinatra_2.gemfile | 2 +- gemfiles/ruby_3.0_sinatra_2.gemfile.lock | 8 ++++---- gemfiles/ruby_3.0_sinatra_3.gemfile | 2 +- gemfiles/ruby_3.0_sinatra_3.gemfile.lock | 8 ++++---- gemfiles/ruby_3.0_sinatra_4.gemfile | 2 +- gemfiles/ruby_3.0_sinatra_4.gemfile.lock | 8 ++++---- gemfiles/ruby_3.0_stripe_10.gemfile | 2 +- gemfiles/ruby_3.0_stripe_10.gemfile.lock | 6 +++--- gemfiles/ruby_3.0_stripe_11.gemfile | 2 +- gemfiles/ruby_3.0_stripe_11.gemfile.lock | 6 +++--- gemfiles/ruby_3.0_stripe_12.gemfile | 2 +- gemfiles/ruby_3.0_stripe_12.gemfile.lock | 6 +++--- gemfiles/ruby_3.0_stripe_7.gemfile | 2 +- gemfiles/ruby_3.0_stripe_7.gemfile.lock | 6 +++--- gemfiles/ruby_3.0_stripe_8.gemfile | 2 +- gemfiles/ruby_3.0_stripe_8.gemfile.lock | 6 +++--- gemfiles/ruby_3.0_stripe_9.gemfile | 2 +- gemfiles/ruby_3.0_stripe_9.gemfile.lock | 6 +++--- gemfiles/ruby_3.0_stripe_latest.gemfile | 2 +- gemfiles/ruby_3.0_stripe_latest.gemfile.lock | 4 ++-- gemfiles/ruby_3.0_stripe_min.gemfile | 2 +- gemfiles/ruby_3.0_stripe_min.gemfile.lock | 4 ++-- gemfiles/ruby_3.1_activesupport.gemfile | 2 +- gemfiles/ruby_3.1_activesupport.gemfile.lock | 8 ++++---- gemfiles/ruby_3.1_aws.gemfile | 2 +- gemfiles/ruby_3.1_aws.gemfile.lock | 8 ++++---- gemfiles/ruby_3.1_contrib.gemfile | 2 +- gemfiles/ruby_3.1_contrib.gemfile.lock | 8 ++++---- gemfiles/ruby_3.1_contrib_old.gemfile | 2 +- gemfiles/ruby_3.1_contrib_old.gemfile.lock | 8 ++++---- gemfiles/ruby_3.1_core_old.gemfile | 2 +- gemfiles/ruby_3.1_core_old.gemfile.lock | 8 ++++---- gemfiles/ruby_3.1_elasticsearch_7.gemfile | 2 +- gemfiles/ruby_3.1_elasticsearch_7.gemfile.lock | 8 ++++---- gemfiles/ruby_3.1_elasticsearch_8.gemfile | 2 +- gemfiles/ruby_3.1_elasticsearch_8.gemfile.lock | 8 ++++---- gemfiles/ruby_3.1_elasticsearch_latest.gemfile | 2 +- gemfiles/ruby_3.1_elasticsearch_latest.gemfile.lock | 4 ++-- gemfiles/ruby_3.1_graphql_1.13.gemfile | 2 +- gemfiles/ruby_3.1_graphql_1.13.gemfile.lock | 8 ++++---- gemfiles/ruby_3.1_graphql_2.0.gemfile | 2 +- gemfiles/ruby_3.1_graphql_2.0.gemfile.lock | 8 ++++---- gemfiles/ruby_3.1_graphql_2.1.gemfile | 2 +- gemfiles/ruby_3.1_graphql_2.1.gemfile.lock | 8 ++++---- gemfiles/ruby_3.1_graphql_2.2.gemfile | 2 +- gemfiles/ruby_3.1_graphql_2.2.gemfile.lock | 8 ++++---- gemfiles/ruby_3.1_graphql_2.3.gemfile | 2 +- gemfiles/ruby_3.1_graphql_2.3.gemfile.lock | 8 ++++---- gemfiles/ruby_3.1_http.gemfile | 2 +- gemfiles/ruby_3.1_http.gemfile.lock | 8 ++++---- gemfiles/ruby_3.1_opensearch_2.gemfile | 2 +- gemfiles/ruby_3.1_opensearch_2.gemfile.lock | 8 ++++---- gemfiles/ruby_3.1_opensearch_3.gemfile | 2 +- gemfiles/ruby_3.1_opensearch_3.gemfile.lock | 8 ++++---- gemfiles/ruby_3.1_opensearch_latest.gemfile | 2 +- gemfiles/ruby_3.1_opensearch_latest.gemfile.lock | 4 ++-- gemfiles/ruby_3.1_opentelemetry.gemfile | 2 +- gemfiles/ruby_3.1_opentelemetry.gemfile.lock | 8 ++++---- gemfiles/ruby_3.1_opentelemetry_otlp.gemfile | 2 +- gemfiles/ruby_3.1_opentelemetry_otlp.gemfile.lock | 8 ++++---- gemfiles/ruby_3.1_rack_1.gemfile | 2 +- gemfiles/ruby_3.1_rack_1.gemfile.lock | 8 ++++---- gemfiles/ruby_3.1_rack_2.gemfile | 2 +- gemfiles/ruby_3.1_rack_2.gemfile.lock | 8 ++++---- gemfiles/ruby_3.1_rack_3.gemfile | 2 +- gemfiles/ruby_3.1_rack_3.gemfile.lock | 8 ++++---- gemfiles/ruby_3.1_rack_latest.gemfile | 2 +- gemfiles/ruby_3.1_rack_latest.gemfile.lock | 4 ++-- gemfiles/ruby_3.1_rails61_mysql2.gemfile | 2 +- gemfiles/ruby_3.1_rails61_mysql2.gemfile.lock | 8 ++++---- gemfiles/ruby_3.1_rails61_postgres.gemfile | 2 +- gemfiles/ruby_3.1_rails61_postgres.gemfile.lock | 8 ++++---- gemfiles/ruby_3.1_rails61_postgres_redis.gemfile | 2 +- gemfiles/ruby_3.1_rails61_postgres_redis.gemfile.lock | 8 ++++---- gemfiles/ruby_3.1_rails61_postgres_sidekiq.gemfile | 2 +- gemfiles/ruby_3.1_rails61_postgres_sidekiq.gemfile.lock | 8 ++++---- gemfiles/ruby_3.1_rails61_semantic_logger.gemfile | 2 +- gemfiles/ruby_3.1_rails61_semantic_logger.gemfile.lock | 8 ++++---- gemfiles/ruby_3.1_rails61_trilogy.gemfile | 2 +- gemfiles/ruby_3.1_rails61_trilogy.gemfile.lock | 8 ++++---- gemfiles/ruby_3.1_rails7.gemfile | 2 +- gemfiles/ruby_3.1_rails7.gemfile.lock | 6 +++--- gemfiles/ruby_3.1_rails71.gemfile | 2 +- gemfiles/ruby_3.1_rails71.gemfile.lock | 6 +++--- gemfiles/ruby_3.1_rails_old_redis.gemfile | 2 +- gemfiles/ruby_3.1_redis_3.gemfile | 2 +- gemfiles/ruby_3.1_redis_3.gemfile.lock | 8 ++++---- gemfiles/ruby_3.1_redis_4.gemfile | 2 +- gemfiles/ruby_3.1_redis_4.gemfile.lock | 8 ++++---- gemfiles/ruby_3.1_redis_5.gemfile | 2 +- gemfiles/ruby_3.1_redis_5.gemfile.lock | 8 ++++---- gemfiles/ruby_3.1_relational_db.gemfile | 2 +- gemfiles/ruby_3.1_relational_db.gemfile.lock | 8 ++++---- gemfiles/ruby_3.1_resque2_redis3.gemfile | 2 +- gemfiles/ruby_3.1_resque2_redis3.gemfile.lock | 8 ++++---- gemfiles/ruby_3.1_resque2_redis4.gemfile | 2 +- gemfiles/ruby_3.1_resque2_redis4.gemfile.lock | 8 ++++---- gemfiles/ruby_3.1_sinatra_2.gemfile | 2 +- gemfiles/ruby_3.1_sinatra_2.gemfile.lock | 8 ++++---- gemfiles/ruby_3.1_sinatra_3.gemfile | 2 +- gemfiles/ruby_3.1_sinatra_3.gemfile.lock | 8 ++++---- gemfiles/ruby_3.1_sinatra_4.gemfile | 2 +- gemfiles/ruby_3.1_sinatra_4.gemfile.lock | 8 ++++---- gemfiles/ruby_3.1_stripe_10.gemfile | 2 +- gemfiles/ruby_3.1_stripe_10.gemfile.lock | 6 +++--- gemfiles/ruby_3.1_stripe_11.gemfile | 2 +- gemfiles/ruby_3.1_stripe_11.gemfile.lock | 6 +++--- gemfiles/ruby_3.1_stripe_12.gemfile | 2 +- gemfiles/ruby_3.1_stripe_12.gemfile.lock | 6 +++--- gemfiles/ruby_3.1_stripe_7.gemfile | 2 +- gemfiles/ruby_3.1_stripe_7.gemfile.lock | 6 +++--- gemfiles/ruby_3.1_stripe_8.gemfile | 2 +- gemfiles/ruby_3.1_stripe_8.gemfile.lock | 6 +++--- gemfiles/ruby_3.1_stripe_9.gemfile | 2 +- gemfiles/ruby_3.1_stripe_9.gemfile.lock | 6 +++--- gemfiles/ruby_3.1_stripe_latest.gemfile | 2 +- gemfiles/ruby_3.1_stripe_latest.gemfile.lock | 4 ++-- gemfiles/ruby_3.1_stripe_min.gemfile | 2 +- gemfiles/ruby_3.1_stripe_min.gemfile.lock | 4 ++-- gemfiles/ruby_3.2_activesupport.gemfile | 2 +- gemfiles/ruby_3.2_activesupport.gemfile.lock | 8 ++++---- gemfiles/ruby_3.2_aws.gemfile | 2 +- gemfiles/ruby_3.2_aws.gemfile.lock | 8 ++++---- gemfiles/ruby_3.2_contrib.gemfile | 2 +- gemfiles/ruby_3.2_contrib.gemfile.lock | 8 ++++---- gemfiles/ruby_3.2_contrib_old.gemfile | 2 +- gemfiles/ruby_3.2_contrib_old.gemfile.lock | 8 ++++---- gemfiles/ruby_3.2_core_old.gemfile | 2 +- gemfiles/ruby_3.2_core_old.gemfile.lock | 8 ++++---- gemfiles/ruby_3.2_elasticsearch_7.gemfile | 2 +- gemfiles/ruby_3.2_elasticsearch_7.gemfile.lock | 8 ++++---- gemfiles/ruby_3.2_elasticsearch_8.gemfile | 2 +- gemfiles/ruby_3.2_elasticsearch_8.gemfile.lock | 8 ++++---- gemfiles/ruby_3.2_elasticsearch_latest.gemfile | 2 +- gemfiles/ruby_3.2_elasticsearch_latest.gemfile.lock | 4 ++-- gemfiles/ruby_3.2_graphql_1.13.gemfile | 2 +- gemfiles/ruby_3.2_graphql_1.13.gemfile.lock | 8 ++++---- gemfiles/ruby_3.2_graphql_2.0.gemfile | 2 +- gemfiles/ruby_3.2_graphql_2.0.gemfile.lock | 8 ++++---- gemfiles/ruby_3.2_graphql_2.1.gemfile | 2 +- gemfiles/ruby_3.2_graphql_2.1.gemfile.lock | 8 ++++---- gemfiles/ruby_3.2_graphql_2.2.gemfile | 2 +- gemfiles/ruby_3.2_graphql_2.2.gemfile.lock | 8 ++++---- gemfiles/ruby_3.2_graphql_2.3.gemfile | 2 +- gemfiles/ruby_3.2_graphql_2.3.gemfile.lock | 8 ++++---- gemfiles/ruby_3.2_http.gemfile | 2 +- gemfiles/ruby_3.2_http.gemfile.lock | 8 ++++---- gemfiles/ruby_3.2_opensearch_2.gemfile | 2 +- gemfiles/ruby_3.2_opensearch_2.gemfile.lock | 8 ++++---- gemfiles/ruby_3.2_opensearch_3.gemfile | 2 +- gemfiles/ruby_3.2_opensearch_3.gemfile.lock | 8 ++++---- gemfiles/ruby_3.2_opensearch_latest.gemfile | 2 +- gemfiles/ruby_3.2_opensearch_latest.gemfile.lock | 4 ++-- gemfiles/ruby_3.2_opentelemetry.gemfile | 2 +- gemfiles/ruby_3.2_opentelemetry.gemfile.lock | 8 ++++---- gemfiles/ruby_3.2_opentelemetry_otlp.gemfile | 2 +- gemfiles/ruby_3.2_opentelemetry_otlp.gemfile.lock | 8 ++++---- gemfiles/ruby_3.2_rack_1.gemfile | 2 +- gemfiles/ruby_3.2_rack_1.gemfile.lock | 8 ++++---- gemfiles/ruby_3.2_rack_2.gemfile | 2 +- gemfiles/ruby_3.2_rack_2.gemfile.lock | 8 ++++---- gemfiles/ruby_3.2_rack_3.gemfile | 2 +- gemfiles/ruby_3.2_rack_3.gemfile.lock | 8 ++++---- gemfiles/ruby_3.2_rack_latest.gemfile | 2 +- gemfiles/ruby_3.2_rack_latest.gemfile.lock | 4 ++-- gemfiles/ruby_3.2_rails61_mysql2.gemfile | 2 +- gemfiles/ruby_3.2_rails61_mysql2.gemfile.lock | 8 ++++---- gemfiles/ruby_3.2_rails61_postgres.gemfile | 2 +- gemfiles/ruby_3.2_rails61_postgres.gemfile.lock | 8 ++++---- gemfiles/ruby_3.2_rails61_postgres_redis.gemfile | 2 +- gemfiles/ruby_3.2_rails61_postgres_redis.gemfile.lock | 8 ++++---- gemfiles/ruby_3.2_rails61_postgres_sidekiq.gemfile | 2 +- gemfiles/ruby_3.2_rails61_postgres_sidekiq.gemfile.lock | 8 ++++---- gemfiles/ruby_3.2_rails61_semantic_logger.gemfile | 2 +- gemfiles/ruby_3.2_rails61_semantic_logger.gemfile.lock | 8 ++++---- gemfiles/ruby_3.2_rails61_trilogy.gemfile | 2 +- gemfiles/ruby_3.2_rails61_trilogy.gemfile.lock | 8 ++++---- gemfiles/ruby_3.2_rails7.gemfile | 2 +- gemfiles/ruby_3.2_rails7.gemfile.lock | 6 +++--- gemfiles/ruby_3.2_rails71.gemfile | 2 +- gemfiles/ruby_3.2_rails71.gemfile.lock | 6 +++--- gemfiles/ruby_3.2_rails_old_redis.gemfile | 2 +- gemfiles/ruby_3.2_redis_3.gemfile | 2 +- gemfiles/ruby_3.2_redis_3.gemfile.lock | 8 ++++---- gemfiles/ruby_3.2_redis_4.gemfile | 2 +- gemfiles/ruby_3.2_redis_4.gemfile.lock | 8 ++++---- gemfiles/ruby_3.2_redis_5.gemfile | 2 +- gemfiles/ruby_3.2_redis_5.gemfile.lock | 8 ++++---- gemfiles/ruby_3.2_relational_db.gemfile | 2 +- gemfiles/ruby_3.2_relational_db.gemfile.lock | 8 ++++---- gemfiles/ruby_3.2_resque2_redis3.gemfile | 2 +- gemfiles/ruby_3.2_resque2_redis3.gemfile.lock | 8 ++++---- gemfiles/ruby_3.2_resque2_redis4.gemfile | 2 +- gemfiles/ruby_3.2_resque2_redis4.gemfile.lock | 8 ++++---- gemfiles/ruby_3.2_sinatra_2.gemfile | 2 +- gemfiles/ruby_3.2_sinatra_2.gemfile.lock | 8 ++++---- gemfiles/ruby_3.2_sinatra_3.gemfile | 2 +- gemfiles/ruby_3.2_sinatra_3.gemfile.lock | 8 ++++---- gemfiles/ruby_3.2_sinatra_4.gemfile | 2 +- gemfiles/ruby_3.2_sinatra_4.gemfile.lock | 8 ++++---- gemfiles/ruby_3.2_stripe_10.gemfile | 2 +- gemfiles/ruby_3.2_stripe_10.gemfile.lock | 6 +++--- gemfiles/ruby_3.2_stripe_11.gemfile | 2 +- gemfiles/ruby_3.2_stripe_11.gemfile.lock | 6 +++--- gemfiles/ruby_3.2_stripe_12.gemfile | 2 +- gemfiles/ruby_3.2_stripe_12.gemfile.lock | 6 +++--- gemfiles/ruby_3.2_stripe_7.gemfile | 2 +- gemfiles/ruby_3.2_stripe_7.gemfile.lock | 6 +++--- gemfiles/ruby_3.2_stripe_8.gemfile | 2 +- gemfiles/ruby_3.2_stripe_8.gemfile.lock | 6 +++--- gemfiles/ruby_3.2_stripe_9.gemfile | 2 +- gemfiles/ruby_3.2_stripe_9.gemfile.lock | 6 +++--- gemfiles/ruby_3.2_stripe_latest.gemfile | 2 +- gemfiles/ruby_3.2_stripe_latest.gemfile.lock | 4 ++-- gemfiles/ruby_3.2_stripe_min.gemfile | 2 +- gemfiles/ruby_3.2_stripe_min.gemfile.lock | 4 ++-- gemfiles/ruby_3.3_activesupport.gemfile | 2 +- gemfiles/ruby_3.3_activesupport.gemfile.lock | 8 ++++---- gemfiles/ruby_3.3_aws.gemfile | 2 +- gemfiles/ruby_3.3_aws.gemfile.lock | 8 ++++---- gemfiles/ruby_3.3_contrib.gemfile | 2 +- gemfiles/ruby_3.3_contrib.gemfile.lock | 8 ++++---- gemfiles/ruby_3.3_contrib_old.gemfile | 2 +- gemfiles/ruby_3.3_contrib_old.gemfile.lock | 8 ++++---- gemfiles/ruby_3.3_core_old.gemfile | 2 +- gemfiles/ruby_3.3_core_old.gemfile.lock | 8 ++++---- gemfiles/ruby_3.3_elasticsearch_7.gemfile | 2 +- gemfiles/ruby_3.3_elasticsearch_7.gemfile.lock | 8 ++++---- gemfiles/ruby_3.3_elasticsearch_8.gemfile | 2 +- gemfiles/ruby_3.3_elasticsearch_8.gemfile.lock | 8 ++++---- gemfiles/ruby_3.3_elasticsearch_latest.gemfile | 2 +- gemfiles/ruby_3.3_elasticsearch_latest.gemfile.lock | 4 ++-- gemfiles/ruby_3.3_graphql_1.13.gemfile | 2 +- gemfiles/ruby_3.3_graphql_1.13.gemfile.lock | 8 ++++---- gemfiles/ruby_3.3_graphql_2.0.gemfile | 2 +- gemfiles/ruby_3.3_graphql_2.0.gemfile.lock | 8 ++++---- gemfiles/ruby_3.3_graphql_2.1.gemfile | 2 +- gemfiles/ruby_3.3_graphql_2.1.gemfile.lock | 8 ++++---- gemfiles/ruby_3.3_graphql_2.2.gemfile | 2 +- gemfiles/ruby_3.3_graphql_2.2.gemfile.lock | 8 ++++---- gemfiles/ruby_3.3_graphql_2.3.gemfile | 2 +- gemfiles/ruby_3.3_graphql_2.3.gemfile.lock | 8 ++++---- gemfiles/ruby_3.3_http.gemfile | 2 +- gemfiles/ruby_3.3_http.gemfile.lock | 8 ++++---- gemfiles/ruby_3.3_opensearch_2.gemfile | 2 +- gemfiles/ruby_3.3_opensearch_2.gemfile.lock | 8 ++++---- gemfiles/ruby_3.3_opensearch_3.gemfile | 2 +- gemfiles/ruby_3.3_opensearch_3.gemfile.lock | 8 ++++---- gemfiles/ruby_3.3_opensearch_latest.gemfile | 2 +- gemfiles/ruby_3.3_opensearch_latest.gemfile.lock | 4 ++-- gemfiles/ruby_3.3_opentelemetry.gemfile | 2 +- gemfiles/ruby_3.3_opentelemetry.gemfile.lock | 8 ++++---- gemfiles/ruby_3.3_opentelemetry_otlp.gemfile | 2 +- gemfiles/ruby_3.3_opentelemetry_otlp.gemfile.lock | 8 ++++---- gemfiles/ruby_3.3_rack_2.gemfile | 2 +- gemfiles/ruby_3.3_rack_2.gemfile.lock | 8 ++++---- gemfiles/ruby_3.3_rack_3.gemfile | 2 +- gemfiles/ruby_3.3_rack_3.gemfile.lock | 8 ++++---- gemfiles/ruby_3.3_rack_latest.gemfile | 2 +- gemfiles/ruby_3.3_rack_latest.gemfile.lock | 4 ++-- gemfiles/ruby_3.3_rails61_mysql2.gemfile | 2 +- gemfiles/ruby_3.3_rails61_mysql2.gemfile.lock | 8 ++++---- gemfiles/ruby_3.3_rails61_postgres.gemfile | 2 +- gemfiles/ruby_3.3_rails61_postgres.gemfile.lock | 8 ++++---- gemfiles/ruby_3.3_rails61_postgres_redis.gemfile | 2 +- gemfiles/ruby_3.3_rails61_postgres_redis.gemfile.lock | 8 ++++---- gemfiles/ruby_3.3_rails61_postgres_sidekiq.gemfile | 2 +- gemfiles/ruby_3.3_rails61_postgres_sidekiq.gemfile.lock | 8 ++++---- gemfiles/ruby_3.3_rails61_semantic_logger.gemfile | 2 +- gemfiles/ruby_3.3_rails61_semantic_logger.gemfile.lock | 8 ++++---- gemfiles/ruby_3.3_rails61_trilogy.gemfile | 2 +- gemfiles/ruby_3.3_rails61_trilogy.gemfile.lock | 8 ++++---- gemfiles/ruby_3.3_rails7.gemfile | 2 +- gemfiles/ruby_3.3_rails7.gemfile.lock | 6 +++--- gemfiles/ruby_3.3_rails71.gemfile | 2 +- gemfiles/ruby_3.3_rails71.gemfile.lock | 6 +++--- gemfiles/ruby_3.3_rails_old_redis.gemfile | 2 +- gemfiles/ruby_3.3_redis_3.gemfile | 2 +- gemfiles/ruby_3.3_redis_3.gemfile.lock | 8 ++++---- gemfiles/ruby_3.3_redis_4.gemfile | 2 +- gemfiles/ruby_3.3_redis_4.gemfile.lock | 8 ++++---- gemfiles/ruby_3.3_redis_5.gemfile | 2 +- gemfiles/ruby_3.3_redis_5.gemfile.lock | 8 ++++---- gemfiles/ruby_3.3_relational_db.gemfile | 2 +- gemfiles/ruby_3.3_relational_db.gemfile.lock | 8 ++++---- gemfiles/ruby_3.3_resque2_redis3.gemfile | 2 +- gemfiles/ruby_3.3_resque2_redis3.gemfile.lock | 8 ++++---- gemfiles/ruby_3.3_resque2_redis4.gemfile | 2 +- gemfiles/ruby_3.3_resque2_redis4.gemfile.lock | 8 ++++---- gemfiles/ruby_3.3_sinatra_2.gemfile | 2 +- gemfiles/ruby_3.3_sinatra_2.gemfile.lock | 8 ++++---- gemfiles/ruby_3.3_sinatra_3.gemfile | 2 +- gemfiles/ruby_3.3_sinatra_3.gemfile.lock | 8 ++++---- gemfiles/ruby_3.3_sinatra_4.gemfile | 2 +- gemfiles/ruby_3.3_sinatra_4.gemfile.lock | 8 ++++---- gemfiles/ruby_3.3_stripe_10.gemfile | 2 +- gemfiles/ruby_3.3_stripe_10.gemfile.lock | 6 +++--- gemfiles/ruby_3.3_stripe_11.gemfile | 2 +- gemfiles/ruby_3.3_stripe_11.gemfile.lock | 6 +++--- gemfiles/ruby_3.3_stripe_12.gemfile | 2 +- gemfiles/ruby_3.3_stripe_12.gemfile.lock | 6 +++--- gemfiles/ruby_3.3_stripe_7.gemfile | 2 +- gemfiles/ruby_3.3_stripe_7.gemfile.lock | 6 +++--- gemfiles/ruby_3.3_stripe_8.gemfile | 2 +- gemfiles/ruby_3.3_stripe_8.gemfile.lock | 6 +++--- gemfiles/ruby_3.3_stripe_9.gemfile | 2 +- gemfiles/ruby_3.3_stripe_9.gemfile.lock | 6 +++--- gemfiles/ruby_3.3_stripe_latest.gemfile | 2 +- gemfiles/ruby_3.3_stripe_latest.gemfile.lock | 4 ++-- gemfiles/ruby_3.3_stripe_min.gemfile | 2 +- gemfiles/ruby_3.3_stripe_min.gemfile.lock | 4 ++-- gemfiles/ruby_3.4_activesupport.gemfile | 2 +- gemfiles/ruby_3.4_activesupport.gemfile.lock | 8 ++++---- gemfiles/ruby_3.4_aws.gemfile | 2 +- gemfiles/ruby_3.4_aws.gemfile.lock | 8 ++++---- gemfiles/ruby_3.4_contrib.gemfile | 2 +- gemfiles/ruby_3.4_contrib.gemfile.lock | 8 ++++---- gemfiles/ruby_3.4_contrib_old.gemfile | 2 +- gemfiles/ruby_3.4_contrib_old.gemfile.lock | 8 ++++---- gemfiles/ruby_3.4_core_old.gemfile | 2 +- gemfiles/ruby_3.4_core_old.gemfile.lock | 8 ++++---- gemfiles/ruby_3.4_elasticsearch_7.gemfile | 2 +- gemfiles/ruby_3.4_elasticsearch_7.gemfile.lock | 8 ++++---- gemfiles/ruby_3.4_elasticsearch_8.gemfile | 2 +- gemfiles/ruby_3.4_elasticsearch_8.gemfile.lock | 8 ++++---- gemfiles/ruby_3.4_elasticsearch_latest.gemfile | 2 +- gemfiles/ruby_3.4_elasticsearch_latest.gemfile.lock | 4 ++-- gemfiles/ruby_3.4_graphql_1.13.gemfile | 2 +- gemfiles/ruby_3.4_graphql_1.13.gemfile.lock | 8 ++++---- gemfiles/ruby_3.4_graphql_2.0.gemfile | 2 +- gemfiles/ruby_3.4_graphql_2.0.gemfile.lock | 8 ++++---- gemfiles/ruby_3.4_graphql_2.1.gemfile | 2 +- gemfiles/ruby_3.4_graphql_2.1.gemfile.lock | 8 ++++---- gemfiles/ruby_3.4_graphql_2.2.gemfile | 2 +- gemfiles/ruby_3.4_graphql_2.2.gemfile.lock | 8 ++++---- gemfiles/ruby_3.4_graphql_2.3.gemfile | 2 +- gemfiles/ruby_3.4_graphql_2.3.gemfile.lock | 8 ++++---- gemfiles/ruby_3.4_http.gemfile | 2 +- gemfiles/ruby_3.4_http.gemfile.lock | 8 ++++---- gemfiles/ruby_3.4_opensearch_2.gemfile | 2 +- gemfiles/ruby_3.4_opensearch_2.gemfile.lock | 8 ++++---- gemfiles/ruby_3.4_opensearch_3.gemfile | 2 +- gemfiles/ruby_3.4_opensearch_3.gemfile.lock | 8 ++++---- gemfiles/ruby_3.4_opensearch_latest.gemfile | 2 +- gemfiles/ruby_3.4_opensearch_latest.gemfile.lock | 4 ++-- gemfiles/ruby_3.4_opentelemetry.gemfile | 2 +- gemfiles/ruby_3.4_opentelemetry.gemfile.lock | 8 ++++---- gemfiles/ruby_3.4_opentelemetry_otlp.gemfile | 2 +- gemfiles/ruby_3.4_opentelemetry_otlp.gemfile.lock | 4 ++-- gemfiles/ruby_3.4_rack_2.gemfile | 2 +- gemfiles/ruby_3.4_rack_2.gemfile.lock | 8 ++++---- gemfiles/ruby_3.4_rack_3.gemfile | 2 +- gemfiles/ruby_3.4_rack_3.gemfile.lock | 8 ++++---- gemfiles/ruby_3.4_rack_latest.gemfile | 2 +- gemfiles/ruby_3.4_rack_latest.gemfile.lock | 4 ++-- gemfiles/ruby_3.4_rails61_mysql2.gemfile | 2 +- gemfiles/ruby_3.4_rails61_mysql2.gemfile.lock | 8 ++++---- gemfiles/ruby_3.4_rails61_postgres.gemfile | 2 +- gemfiles/ruby_3.4_rails61_postgres.gemfile.lock | 8 ++++---- gemfiles/ruby_3.4_rails61_postgres_redis.gemfile | 2 +- gemfiles/ruby_3.4_rails61_postgres_redis.gemfile.lock | 8 ++++---- gemfiles/ruby_3.4_rails61_postgres_sidekiq.gemfile | 2 +- gemfiles/ruby_3.4_rails61_postgres_sidekiq.gemfile.lock | 8 ++++---- gemfiles/ruby_3.4_rails61_semantic_logger.gemfile | 2 +- gemfiles/ruby_3.4_rails61_semantic_logger.gemfile.lock | 8 ++++---- gemfiles/ruby_3.4_rails61_trilogy.gemfile | 2 +- gemfiles/ruby_3.4_rails61_trilogy.gemfile.lock | 8 ++++---- gemfiles/ruby_3.4_rails7.gemfile | 2 +- gemfiles/ruby_3.4_rails7.gemfile.lock | 6 +++--- gemfiles/ruby_3.4_rails71.gemfile | 2 +- gemfiles/ruby_3.4_rails71.gemfile.lock | 6 +++--- gemfiles/ruby_3.4_rails_old_redis.gemfile | 2 +- gemfiles/ruby_3.4_redis_3.gemfile | 2 +- gemfiles/ruby_3.4_redis_3.gemfile.lock | 8 ++++---- gemfiles/ruby_3.4_redis_4.gemfile | 2 +- gemfiles/ruby_3.4_redis_4.gemfile.lock | 8 ++++---- gemfiles/ruby_3.4_redis_5.gemfile | 2 +- gemfiles/ruby_3.4_redis_5.gemfile.lock | 8 ++++---- gemfiles/ruby_3.4_relational_db.gemfile | 2 +- gemfiles/ruby_3.4_relational_db.gemfile.lock | 4 ++-- gemfiles/ruby_3.4_resque2_redis3.gemfile | 2 +- gemfiles/ruby_3.4_resque2_redis3.gemfile.lock | 8 ++++---- gemfiles/ruby_3.4_resque2_redis4.gemfile | 2 +- gemfiles/ruby_3.4_resque2_redis4.gemfile.lock | 8 ++++---- gemfiles/ruby_3.4_sinatra_2.gemfile | 2 +- gemfiles/ruby_3.4_sinatra_2.gemfile.lock | 8 ++++---- gemfiles/ruby_3.4_sinatra_3.gemfile | 2 +- gemfiles/ruby_3.4_sinatra_3.gemfile.lock | 8 ++++---- gemfiles/ruby_3.4_sinatra_4.gemfile | 2 +- gemfiles/ruby_3.4_sinatra_4.gemfile.lock | 8 ++++---- gemfiles/ruby_3.4_stripe_10.gemfile | 2 +- gemfiles/ruby_3.4_stripe_10.gemfile.lock | 6 +++--- gemfiles/ruby_3.4_stripe_11.gemfile | 2 +- gemfiles/ruby_3.4_stripe_11.gemfile.lock | 6 +++--- gemfiles/ruby_3.4_stripe_12.gemfile | 2 +- gemfiles/ruby_3.4_stripe_12.gemfile.lock | 6 +++--- gemfiles/ruby_3.4_stripe_7.gemfile | 2 +- gemfiles/ruby_3.4_stripe_7.gemfile.lock | 6 +++--- gemfiles/ruby_3.4_stripe_8.gemfile | 2 +- gemfiles/ruby_3.4_stripe_8.gemfile.lock | 6 +++--- gemfiles/ruby_3.4_stripe_9.gemfile | 2 +- gemfiles/ruby_3.4_stripe_9.gemfile.lock | 6 +++--- gemfiles/ruby_3.4_stripe_latest.gemfile | 2 +- gemfiles/ruby_3.4_stripe_latest.gemfile.lock | 4 ++-- gemfiles/ruby_3.4_stripe_min.gemfile | 2 +- gemfiles/ruby_3.4_stripe_min.gemfile.lock | 4 ++-- 1105 files changed, 2556 insertions(+), 2556 deletions(-) diff --git a/gemfiles/jruby_9.2_activesupport.gemfile b/gemfiles/jruby_9.2_activesupport.gemfile index 352e079e15d..48aef3e1ce0 100644 --- a/gemfiles/jruby_9.2_activesupport.gemfile +++ b/gemfiles/jruby_9.2_activesupport.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.2_activesupport.gemfile.lock b/gemfiles/jruby_9.2_activesupport.gemfile.lock index 813b28e4236..46cdb836d64 100644 --- a/gemfiles/jruby_9.2_activesupport.gemfile.lock +++ b/gemfiles/jruby_9.2_activesupport.gemfile.lock @@ -52,7 +52,7 @@ GEM diff-lcs (1.5.0) digest-crc (0.6.5) rake (>= 12.0.0, < 14.0.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) dry-configurable (0.12.1) concurrent-ruby (~> 1.0) @@ -174,14 +174,14 @@ GEM ruby-kafka (1.5.0) digest-crc ruby2_keywords (0.0.5) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) spoon (0.0.6) ffi @@ -226,7 +226,7 @@ DEPENDENCIES rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) ruby-kafka (>= 0.7.10) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/jruby_9.2_aws.gemfile b/gemfiles/jruby_9.2_aws.gemfile index 6c9a4988ba4..51f501079e9 100644 --- a/gemfiles/jruby_9.2_aws.gemfile +++ b/gemfiles/jruby_9.2_aws.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.2_aws.gemfile.lock b/gemfiles/jruby_9.2_aws.gemfile.lock index c21809665a1..f3e69bd5824 100644 --- a/gemfiles/jruby_9.2_aws.gemfile.lock +++ b/gemfiles/jruby_9.2_aws.gemfile.lock @@ -1442,7 +1442,7 @@ GEM rexml datadog-ruby_core_source (3.3.7) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.0) ffi (1.17.1-java) hashdiff (1.0.1) @@ -1492,14 +1492,14 @@ GEM aws-sdk-core (>= 2) concurrent-ruby thor - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) spoon (0.0.6) ffi @@ -1535,7 +1535,7 @@ DEPENDENCIES rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) shoryuken - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/jruby_9.2_contrib.gemfile b/gemfiles/jruby_9.2_contrib.gemfile index 259dd7fada2..32c9b266168 100644 --- a/gemfiles/jruby_9.2_contrib.gemfile +++ b/gemfiles/jruby_9.2_contrib.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.2_contrib.gemfile.lock b/gemfiles/jruby_9.2_contrib.gemfile.lock index 0aa56a7ee1a..7fd9d5fdfd4 100644 --- a/gemfiles/jruby_9.2_contrib.gemfile.lock +++ b/gemfiles/jruby_9.2_contrib.gemfile.lock @@ -28,7 +28,7 @@ GEM dalli (3.2.0) datadog-ruby_core_source (3.3.7) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.0) ffi (1.17.1-java) hashdiff (1.0.1) @@ -108,14 +108,14 @@ GEM rack (~> 2.0) redis (>= 4.5.0, < 5) sigdump (0.2.5) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sinatra (2.2.4) mustermann (~> 2.0) @@ -174,7 +174,7 @@ DEPENDENCIES rspec_junit_formatter (>= 0.5.1) semantic_logger (~> 4.0) sidekiq - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sneakers (>= 2.12.0) sucker_punch diff --git a/gemfiles/jruby_9.2_contrib_old.gemfile b/gemfiles/jruby_9.2_contrib_old.gemfile index e6e722154f9..f679de2e048 100644 --- a/gemfiles/jruby_9.2_contrib_old.gemfile +++ b/gemfiles/jruby_9.2_contrib_old.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.2_contrib_old.gemfile.lock b/gemfiles/jruby_9.2_contrib_old.gemfile.lock index 3572501204a..2a6b4da1105 100644 --- a/gemfiles/jruby_9.2_contrib_old.gemfile.lock +++ b/gemfiles/jruby_9.2_contrib_old.gemfile.lock @@ -22,7 +22,7 @@ GEM dalli (2.7.11) datadog-ruby_core_source (3.3.7) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.5.0) faraday (0.17.0) multipart-post (>= 1.2, < 3) @@ -80,14 +80,14 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby-debug-base (0.11.0-java) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) spoon (0.0.6) ffi @@ -125,7 +125,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/jruby_9.2_core_old.gemfile b/gemfiles/jruby_9.2_core_old.gemfile index 4b556852f84..30f468ee253 100644 --- a/gemfiles/jruby_9.2_core_old.gemfile +++ b/gemfiles/jruby_9.2_core_old.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.2_core_old.gemfile.lock b/gemfiles/jruby_9.2_core_old.gemfile.lock index 52d7b6a59fc..bca75bdaa36 100644 --- a/gemfiles/jruby_9.2_core_old.gemfile.lock +++ b/gemfiles/jruby_9.2_core_old.gemfile.lock @@ -21,7 +21,7 @@ GEM rexml datadog-ruby_core_source (3.3.7) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (4.8.3) ffi (1.17.1-java) hashdiff (1.0.1) @@ -67,14 +67,14 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby-debug-base (0.11.0-java) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) spoon (0.0.6) ffi @@ -107,7 +107,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/jruby_9.2_elasticsearch_7.gemfile b/gemfiles/jruby_9.2_elasticsearch_7.gemfile index 4f90b94b745..0936ec76583 100644 --- a/gemfiles/jruby_9.2_elasticsearch_7.gemfile +++ b/gemfiles/jruby_9.2_elasticsearch_7.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.2_elasticsearch_7.gemfile.lock b/gemfiles/jruby_9.2_elasticsearch_7.gemfile.lock index 3eb3faa892c..faf88a72ac2 100644 --- a/gemfiles/jruby_9.2_elasticsearch_7.gemfile.lock +++ b/gemfiles/jruby_9.2_elasticsearch_7.gemfile.lock @@ -23,7 +23,7 @@ GEM rexml datadog-ruby_core_source (3.3.7) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) elasticsearch (7.17.11) elasticsearch-api (= 7.17.11) @@ -105,14 +105,14 @@ GEM rspec-core (>= 2, < 4, != 2.12.0) ruby-debug-base (0.11.0-java) ruby2_keywords (0.0.5) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) spoon (0.0.6) ffi @@ -146,7 +146,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/jruby_9.2_elasticsearch_8.gemfile b/gemfiles/jruby_9.2_elasticsearch_8.gemfile index 449c9ac82d3..63693bd1560 100644 --- a/gemfiles/jruby_9.2_elasticsearch_8.gemfile +++ b/gemfiles/jruby_9.2_elasticsearch_8.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.2_elasticsearch_8.gemfile.lock b/gemfiles/jruby_9.2_elasticsearch_8.gemfile.lock index ecfecf0eed5..634e50ced6c 100644 --- a/gemfiles/jruby_9.2_elasticsearch_8.gemfile.lock +++ b/gemfiles/jruby_9.2_elasticsearch_8.gemfile.lock @@ -22,7 +22,7 @@ GEM rexml datadog-ruby_core_source (3.3.7) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) elastic-transport (8.3.5) faraday (< 3) @@ -103,14 +103,14 @@ GEM rspec-core (>= 2, < 4, != 2.12.0) ruby-debug-base (0.11.0-java) ruby2_keywords (0.0.5) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) spoon (0.0.6) ffi @@ -144,7 +144,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/jruby_9.2_elasticsearch_latest.gemfile b/gemfiles/jruby_9.2_elasticsearch_latest.gemfile index f076ec51da6..c15df95fb7e 100644 --- a/gemfiles/jruby_9.2_elasticsearch_latest.gemfile +++ b/gemfiles/jruby_9.2_elasticsearch_latest.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.2_elasticsearch_latest.gemfile.lock b/gemfiles/jruby_9.2_elasticsearch_latest.gemfile.lock index b9dee844200..ece50752ba0 100644 --- a/gemfiles/jruby_9.2_elasticsearch_latest.gemfile.lock +++ b/gemfiles/jruby_9.2_elasticsearch_latest.gemfile.lock @@ -104,7 +104,7 @@ GEM rspec-core (>= 2, < 4, != 2.12.0) ruby-debug-base (0.11.0-java) ruby2_keywords (0.0.5) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) @@ -144,7 +144,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/jruby_9.2_graphql_2.0.gemfile b/gemfiles/jruby_9.2_graphql_2.0.gemfile index 7e796e9df6a..30c21deb73d 100644 --- a/gemfiles/jruby_9.2_graphql_2.0.gemfile +++ b/gemfiles/jruby_9.2_graphql_2.0.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.2_graphql_2.0.gemfile.lock b/gemfiles/jruby_9.2_graphql_2.0.gemfile.lock index 9945d2d2f76..aec2fd370c2 100644 --- a/gemfiles/jruby_9.2_graphql_2.0.gemfile.lock +++ b/gemfiles/jruby_9.2_graphql_2.0.gemfile.lock @@ -85,7 +85,7 @@ GEM datadog-ruby_core_source (3.3.7) diff-lcs (1.5.0) digest (3.1.1-java) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) erubi (1.13.0) ffi (1.17.1-java) @@ -204,14 +204,14 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby-debug-base (0.11.0-java) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) spoon (0.0.6) ffi @@ -263,7 +263,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/jruby_9.2_http.gemfile b/gemfiles/jruby_9.2_http.gemfile index 7f0c5f78f8b..33207465efb 100644 --- a/gemfiles/jruby_9.2_http.gemfile +++ b/gemfiles/jruby_9.2_http.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.2_http.gemfile.lock b/gemfiles/jruby_9.2_http.gemfile.lock index c54dbfff7c9..d4e688c6968 100644 --- a/gemfiles/jruby_9.2_http.gemfile.lock +++ b/gemfiles/jruby_9.2_http.gemfile.lock @@ -21,7 +21,7 @@ GEM rexml datadog-ruby_core_source (3.3.7) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) domain_name (0.5.20190701) unf (>= 0.0.5, < 1.0.0) @@ -121,14 +121,14 @@ GEM rspec-core (>= 2, < 4, != 2.12.0) ruby-debug-base (0.11.0-java) ruby2_keywords (0.0.5) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) spoon (0.0.6) ffi @@ -170,7 +170,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) typhoeus warning (~> 1) diff --git a/gemfiles/jruby_9.2_opensearch_2.gemfile b/gemfiles/jruby_9.2_opensearch_2.gemfile index cd851d3320c..92d227686a1 100644 --- a/gemfiles/jruby_9.2_opensearch_2.gemfile +++ b/gemfiles/jruby_9.2_opensearch_2.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.2_opensearch_2.gemfile.lock b/gemfiles/jruby_9.2_opensearch_2.gemfile.lock index f9278f898d6..4cad48398bb 100644 --- a/gemfiles/jruby_9.2_opensearch_2.gemfile.lock +++ b/gemfiles/jruby_9.2_opensearch_2.gemfile.lock @@ -22,7 +22,7 @@ GEM rexml datadog-ruby_core_source (3.3.7) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) faraday (1.10.4) faraday-em_http (~> 1.0) @@ -103,14 +103,14 @@ GEM rspec-core (>= 2, < 4, != 2.12.0) ruby-debug-base (0.11.0-java) ruby2_keywords (0.0.5) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) spoon (0.0.6) ffi @@ -144,7 +144,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/jruby_9.2_opensearch_3.gemfile b/gemfiles/jruby_9.2_opensearch_3.gemfile index 0a4ce6a7696..c8d1e6eba01 100644 --- a/gemfiles/jruby_9.2_opensearch_3.gemfile +++ b/gemfiles/jruby_9.2_opensearch_3.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.2_opensearch_3.gemfile.lock b/gemfiles/jruby_9.2_opensearch_3.gemfile.lock index 8b023501904..b438113e4c4 100644 --- a/gemfiles/jruby_9.2_opensearch_3.gemfile.lock +++ b/gemfiles/jruby_9.2_opensearch_3.gemfile.lock @@ -22,7 +22,7 @@ GEM rexml datadog-ruby_core_source (3.3.7) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) faraday (1.10.4) faraday-em_http (~> 1.0) @@ -98,14 +98,14 @@ GEM rspec-core (>= 2, < 4, != 2.12.0) ruby-debug-base (0.11.0-java) ruby2_keywords (0.0.5) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) spoon (0.0.6) ffi @@ -139,7 +139,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/jruby_9.2_opensearch_latest.gemfile b/gemfiles/jruby_9.2_opensearch_latest.gemfile index 1a569f23dd3..28d46b8f21b 100644 --- a/gemfiles/jruby_9.2_opensearch_latest.gemfile +++ b/gemfiles/jruby_9.2_opensearch_latest.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.2_opensearch_latest.gemfile.lock b/gemfiles/jruby_9.2_opensearch_latest.gemfile.lock index 08bffb537c9..a43b2abf80e 100644 --- a/gemfiles/jruby_9.2_opensearch_latest.gemfile.lock +++ b/gemfiles/jruby_9.2_opensearch_latest.gemfile.lock @@ -99,7 +99,7 @@ GEM rspec-core (>= 2, < 4, != 2.12.0) ruby-debug-base (0.11.0-java) ruby2_keywords (0.0.5) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) @@ -139,7 +139,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/jruby_9.2_rack_1.gemfile b/gemfiles/jruby_9.2_rack_1.gemfile index d1e5f089eed..8515af841fe 100644 --- a/gemfiles/jruby_9.2_rack_1.gemfile +++ b/gemfiles/jruby_9.2_rack_1.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.2_rack_1.gemfile.lock b/gemfiles/jruby_9.2_rack_1.gemfile.lock index fc5ab7deaae..7448ff8833d 100644 --- a/gemfiles/jruby_9.2_rack_1.gemfile.lock +++ b/gemfiles/jruby_9.2_rack_1.gemfile.lock @@ -21,7 +21,7 @@ GEM rexml datadog-ruby_core_source (3.3.7) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) ffi (1.17.1-java) hashdiff (1.0.1) @@ -72,14 +72,14 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby-debug-base (0.11.0-java) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) spoon (0.0.6) ffi @@ -115,7 +115,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/jruby_9.2_rack_2.gemfile b/gemfiles/jruby_9.2_rack_2.gemfile index 3a477a041e3..1d3f351b82d 100644 --- a/gemfiles/jruby_9.2_rack_2.gemfile +++ b/gemfiles/jruby_9.2_rack_2.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.2_rack_2.gemfile.lock b/gemfiles/jruby_9.2_rack_2.gemfile.lock index 25cdcd88771..abf73e686dd 100644 --- a/gemfiles/jruby_9.2_rack_2.gemfile.lock +++ b/gemfiles/jruby_9.2_rack_2.gemfile.lock @@ -21,7 +21,7 @@ GEM rexml datadog-ruby_core_source (3.3.7) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) ffi (1.17.1-java) hashdiff (1.0.1) @@ -72,14 +72,14 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby-debug-base (0.11.0-java) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) spoon (0.0.6) ffi @@ -115,7 +115,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/jruby_9.2_rack_3.gemfile b/gemfiles/jruby_9.2_rack_3.gemfile index aca27f9ad27..a7ea1fa6d18 100644 --- a/gemfiles/jruby_9.2_rack_3.gemfile +++ b/gemfiles/jruby_9.2_rack_3.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.2_rack_3.gemfile.lock b/gemfiles/jruby_9.2_rack_3.gemfile.lock index 15b99b87344..777e8219fdd 100644 --- a/gemfiles/jruby_9.2_rack_3.gemfile.lock +++ b/gemfiles/jruby_9.2_rack_3.gemfile.lock @@ -21,7 +21,7 @@ GEM rexml datadog-ruby_core_source (3.3.7) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) ffi (1.17.1-java) hashdiff (1.0.1) @@ -72,14 +72,14 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby-debug-base (0.11.0-java) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) spoon (0.0.6) ffi @@ -115,7 +115,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/jruby_9.2_rack_latest.gemfile b/gemfiles/jruby_9.2_rack_latest.gemfile index 651ea9fe890..c3430c06379 100644 --- a/gemfiles/jruby_9.2_rack_latest.gemfile +++ b/gemfiles/jruby_9.2_rack_latest.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.2_rack_latest.gemfile.lock b/gemfiles/jruby_9.2_rack_latest.gemfile.lock index c55229bb362..2ef5a29eb67 100644 --- a/gemfiles/jruby_9.2_rack_latest.gemfile.lock +++ b/gemfiles/jruby_9.2_rack_latest.gemfile.lock @@ -75,7 +75,7 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby-debug-base (0.11.0-java) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) @@ -117,7 +117,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/jruby_9.2_rails5_mysql2.gemfile b/gemfiles/jruby_9.2_rails5_mysql2.gemfile index 88f7e435e0a..5f9c55aecf5 100644 --- a/gemfiles/jruby_9.2_rails5_mysql2.gemfile +++ b/gemfiles/jruby_9.2_rails5_mysql2.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.2_rails5_mysql2.gemfile.lock b/gemfiles/jruby_9.2_rails5_mysql2.gemfile.lock index 52f7ee41928..38b42c0ac13 100644 --- a/gemfiles/jruby_9.2_rails5_mysql2.gemfile.lock +++ b/gemfiles/jruby_9.2_rails5_mysql2.gemfile.lock @@ -70,7 +70,7 @@ GEM crass (1.0.6) datadog-ruby_core_source (3.3.7) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.5.0) erubi (1.12.0) ffi (1.17.1-java) @@ -168,14 +168,14 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby-debug-base (0.11.0-java) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) spoon (0.0.6) ffi @@ -227,7 +227,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/jruby_9.2_rails5_postgres.gemfile b/gemfiles/jruby_9.2_rails5_postgres.gemfile index cb48547d37b..0811e39626e 100644 --- a/gemfiles/jruby_9.2_rails5_postgres.gemfile +++ b/gemfiles/jruby_9.2_rails5_postgres.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.2_rails5_postgres.gemfile.lock b/gemfiles/jruby_9.2_rails5_postgres.gemfile.lock index 384f41f764e..93235e1f242 100644 --- a/gemfiles/jruby_9.2_rails5_postgres.gemfile.lock +++ b/gemfiles/jruby_9.2_rails5_postgres.gemfile.lock @@ -71,7 +71,7 @@ GEM datadog-ruby_core_source (3.3.7) diff-lcs (1.5.0) digest (3.1.1-java) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.5.0) erubi (1.12.0) ffi (1.17.1-java) @@ -186,14 +186,14 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby-debug-base (0.11.0-java) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) spoon (0.0.6) ffi @@ -245,7 +245,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/jruby_9.2_rails5_postgres_redis.gemfile b/gemfiles/jruby_9.2_rails5_postgres_redis.gemfile index 3f39efc3266..5e06ef27766 100644 --- a/gemfiles/jruby_9.2_rails5_postgres_redis.gemfile +++ b/gemfiles/jruby_9.2_rails5_postgres_redis.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.2_rails5_postgres_redis.gemfile.lock b/gemfiles/jruby_9.2_rails5_postgres_redis.gemfile.lock index 32a277500ba..a36c717c8c0 100644 --- a/gemfiles/jruby_9.2_rails5_postgres_redis.gemfile.lock +++ b/gemfiles/jruby_9.2_rails5_postgres_redis.gemfile.lock @@ -72,7 +72,7 @@ GEM datadog-ruby_core_source (3.3.7) diff-lcs (1.5.0) digest (3.1.1-java) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.5.0) erubi (1.12.0) ffi (1.17.1-java) @@ -191,14 +191,14 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby-debug-base (0.11.0-java) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) spoon (0.0.6) ffi @@ -251,7 +251,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/jruby_9.2_rails5_postgres_redis_activesupport.gemfile b/gemfiles/jruby_9.2_rails5_postgres_redis_activesupport.gemfile index bb19b7c1c70..d145027e7f4 100644 --- a/gemfiles/jruby_9.2_rails5_postgres_redis_activesupport.gemfile +++ b/gemfiles/jruby_9.2_rails5_postgres_redis_activesupport.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.2_rails5_postgres_redis_activesupport.gemfile.lock b/gemfiles/jruby_9.2_rails5_postgres_redis_activesupport.gemfile.lock index 247efbad744..fa5b23b5451 100644 --- a/gemfiles/jruby_9.2_rails5_postgres_redis_activesupport.gemfile.lock +++ b/gemfiles/jruby_9.2_rails5_postgres_redis_activesupport.gemfile.lock @@ -71,7 +71,7 @@ GEM datadog-ruby_core_source (3.3.7) diff-lcs (1.5.0) digest (3.1.1-java) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.5.0) erubi (1.12.0) ffi (1.17.1-java) @@ -203,14 +203,14 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby-debug-base (0.11.0-java) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) spoon (0.0.6) ffi @@ -265,7 +265,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/jruby_9.2_rails5_postgres_sidekiq.gemfile b/gemfiles/jruby_9.2_rails5_postgres_sidekiq.gemfile index 1baf868c4e4..42cbb579fb5 100644 --- a/gemfiles/jruby_9.2_rails5_postgres_sidekiq.gemfile +++ b/gemfiles/jruby_9.2_rails5_postgres_sidekiq.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.2_rails5_postgres_sidekiq.gemfile.lock b/gemfiles/jruby_9.2_rails5_postgres_sidekiq.gemfile.lock index 2783d2b39d0..e55a8dfbb7b 100644 --- a/gemfiles/jruby_9.2_rails5_postgres_sidekiq.gemfile.lock +++ b/gemfiles/jruby_9.2_rails5_postgres_sidekiq.gemfile.lock @@ -72,7 +72,7 @@ GEM datadog-ruby_core_source (3.3.7) diff-lcs (1.5.0) digest (3.1.1-java) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.5.0) erubi (1.12.0) ffi (1.17.1-java) @@ -192,14 +192,14 @@ GEM connection_pool (>= 2.2.5, < 3) rack (~> 2.0) redis (>= 4.5.0, < 5) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) spoon (0.0.6) ffi @@ -253,7 +253,7 @@ DEPENDENCIES rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) sidekiq - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/jruby_9.2_rails5_semantic_logger.gemfile b/gemfiles/jruby_9.2_rails5_semantic_logger.gemfile index 680d01ca78a..8284c663adb 100644 --- a/gemfiles/jruby_9.2_rails5_semantic_logger.gemfile +++ b/gemfiles/jruby_9.2_rails5_semantic_logger.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.2_rails5_semantic_logger.gemfile.lock b/gemfiles/jruby_9.2_rails5_semantic_logger.gemfile.lock index d06b6873410..b445ab1e6ff 100644 --- a/gemfiles/jruby_9.2_rails5_semantic_logger.gemfile.lock +++ b/gemfiles/jruby_9.2_rails5_semantic_logger.gemfile.lock @@ -71,7 +71,7 @@ GEM datadog-ruby_core_source (3.3.7) diff-lcs (1.5.0) digest (3.1.1-java) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.5.0) erubi (1.12.0) ffi (1.17.1-java) @@ -185,14 +185,14 @@ GEM ruby-debug-base (0.11.0-java) semantic_logger (4.12.0) concurrent-ruby (~> 1.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) spoon (0.0.6) ffi @@ -244,7 +244,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/jruby_9.2_rails61_mysql2.gemfile b/gemfiles/jruby_9.2_rails61_mysql2.gemfile index 4a2361e36b8..5d3af24b8e3 100644 --- a/gemfiles/jruby_9.2_rails61_mysql2.gemfile +++ b/gemfiles/jruby_9.2_rails61_mysql2.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.2_rails61_mysql2.gemfile.lock b/gemfiles/jruby_9.2_rails61_mysql2.gemfile.lock index 9cbd8272cff..e8ff94a20df 100644 --- a/gemfiles/jruby_9.2_rails61_mysql2.gemfile.lock +++ b/gemfiles/jruby_9.2_rails61_mysql2.gemfile.lock @@ -87,7 +87,7 @@ GEM crass (1.0.6) datadog-ruby_core_source (3.3.7) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.5.0) erubi (1.12.0) ffi (1.17.1-java) @@ -187,14 +187,14 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby-debug-base (0.11.0-java) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) spoon (0.0.6) ffi @@ -246,7 +246,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/jruby_9.2_rails61_postgres.gemfile b/gemfiles/jruby_9.2_rails61_postgres.gemfile index 212f137e34b..99fa4b0f6b5 100644 --- a/gemfiles/jruby_9.2_rails61_postgres.gemfile +++ b/gemfiles/jruby_9.2_rails61_postgres.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.2_rails61_postgres.gemfile.lock b/gemfiles/jruby_9.2_rails61_postgres.gemfile.lock index dab7f2493c8..65e850ce150 100644 --- a/gemfiles/jruby_9.2_rails61_postgres.gemfile.lock +++ b/gemfiles/jruby_9.2_rails61_postgres.gemfile.lock @@ -88,7 +88,7 @@ GEM datadog-ruby_core_source (3.3.7) diff-lcs (1.5.0) digest (3.1.1-java) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.5.0) erubi (1.12.0) ffi (1.17.1-java) @@ -205,14 +205,14 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby-debug-base (0.11.0-java) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) spoon (0.0.6) ffi @@ -264,7 +264,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/jruby_9.2_rails61_postgres_redis.gemfile b/gemfiles/jruby_9.2_rails61_postgres_redis.gemfile index 0aa5e9f2753..03e0d55fa88 100644 --- a/gemfiles/jruby_9.2_rails61_postgres_redis.gemfile +++ b/gemfiles/jruby_9.2_rails61_postgres_redis.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.2_rails61_postgres_redis.gemfile.lock b/gemfiles/jruby_9.2_rails61_postgres_redis.gemfile.lock index 6b4237ef684..b0d6bd46142 100644 --- a/gemfiles/jruby_9.2_rails61_postgres_redis.gemfile.lock +++ b/gemfiles/jruby_9.2_rails61_postgres_redis.gemfile.lock @@ -89,7 +89,7 @@ GEM datadog-ruby_core_source (3.3.7) diff-lcs (1.5.0) digest (3.1.1-java) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.5.0) erubi (1.12.0) ffi (1.17.1-java) @@ -210,14 +210,14 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby-debug-base (0.11.0-java) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) spoon (0.0.6) ffi @@ -270,7 +270,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/jruby_9.2_rails61_postgres_sidekiq.gemfile b/gemfiles/jruby_9.2_rails61_postgres_sidekiq.gemfile index b364dbebfac..3bc7253f852 100644 --- a/gemfiles/jruby_9.2_rails61_postgres_sidekiq.gemfile +++ b/gemfiles/jruby_9.2_rails61_postgres_sidekiq.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.2_rails61_postgres_sidekiq.gemfile.lock b/gemfiles/jruby_9.2_rails61_postgres_sidekiq.gemfile.lock index f45d279bb86..e93b098ef1d 100644 --- a/gemfiles/jruby_9.2_rails61_postgres_sidekiq.gemfile.lock +++ b/gemfiles/jruby_9.2_rails61_postgres_sidekiq.gemfile.lock @@ -89,7 +89,7 @@ GEM datadog-ruby_core_source (3.3.7) diff-lcs (1.5.0) digest (3.1.1-java) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.5.0) erubi (1.12.0) ffi (1.17.1-java) @@ -211,14 +211,14 @@ GEM connection_pool (>= 2.2.5, < 3) rack (~> 2.0) redis (>= 4.5.0, < 5) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) spoon (0.0.6) ffi @@ -271,7 +271,7 @@ DEPENDENCIES rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) sidekiq (>= 6.1.2) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/jruby_9.2_rails61_semantic_logger.gemfile b/gemfiles/jruby_9.2_rails61_semantic_logger.gemfile index 6205acc46f9..fd7102567f7 100644 --- a/gemfiles/jruby_9.2_rails61_semantic_logger.gemfile +++ b/gemfiles/jruby_9.2_rails61_semantic_logger.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.2_rails61_semantic_logger.gemfile.lock b/gemfiles/jruby_9.2_rails61_semantic_logger.gemfile.lock index ef200bb5c79..14cd044288a 100644 --- a/gemfiles/jruby_9.2_rails61_semantic_logger.gemfile.lock +++ b/gemfiles/jruby_9.2_rails61_semantic_logger.gemfile.lock @@ -88,7 +88,7 @@ GEM datadog-ruby_core_source (3.3.7) diff-lcs (1.5.0) digest (3.1.1-java) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.5.0) erubi (1.12.0) ffi (1.17.1-java) @@ -204,14 +204,14 @@ GEM ruby-debug-base (0.11.0-java) semantic_logger (4.12.0) concurrent-ruby (~> 1.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) spoon (0.0.6) ffi @@ -263,7 +263,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/jruby_9.2_rails6_mysql2.gemfile b/gemfiles/jruby_9.2_rails6_mysql2.gemfile index 236c3c0a339..532f72f18ef 100644 --- a/gemfiles/jruby_9.2_rails6_mysql2.gemfile +++ b/gemfiles/jruby_9.2_rails6_mysql2.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.2_rails6_mysql2.gemfile.lock b/gemfiles/jruby_9.2_rails6_mysql2.gemfile.lock index 37e8ceeb616..663b3563800 100644 --- a/gemfiles/jruby_9.2_rails6_mysql2.gemfile.lock +++ b/gemfiles/jruby_9.2_rails6_mysql2.gemfile.lock @@ -83,7 +83,7 @@ GEM crass (1.0.6) datadog-ruby_core_source (3.3.7) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.5.0) erubi (1.12.0) ffi (1.17.1-java) @@ -183,14 +183,14 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby-debug-base (0.11.0-java) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) spoon (0.0.6) ffi @@ -243,7 +243,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/jruby_9.2_rails6_postgres.gemfile b/gemfiles/jruby_9.2_rails6_postgres.gemfile index 72ef9d1e7bc..740b1a517cc 100644 --- a/gemfiles/jruby_9.2_rails6_postgres.gemfile +++ b/gemfiles/jruby_9.2_rails6_postgres.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.2_rails6_postgres.gemfile.lock b/gemfiles/jruby_9.2_rails6_postgres.gemfile.lock index 6901dcd191b..0f2e05c7b90 100644 --- a/gemfiles/jruby_9.2_rails6_postgres.gemfile.lock +++ b/gemfiles/jruby_9.2_rails6_postgres.gemfile.lock @@ -84,7 +84,7 @@ GEM datadog-ruby_core_source (3.3.7) diff-lcs (1.5.0) digest (3.1.1-java) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.5.0) erubi (1.12.0) ffi (1.17.1-java) @@ -201,14 +201,14 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby-debug-base (0.11.0-java) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) spoon (0.0.6) ffi @@ -261,7 +261,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/jruby_9.2_rails6_postgres_redis.gemfile b/gemfiles/jruby_9.2_rails6_postgres_redis.gemfile index 7ec2eb13c0f..8ec76b64a0d 100644 --- a/gemfiles/jruby_9.2_rails6_postgres_redis.gemfile +++ b/gemfiles/jruby_9.2_rails6_postgres_redis.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.2_rails6_postgres_redis.gemfile.lock b/gemfiles/jruby_9.2_rails6_postgres_redis.gemfile.lock index 25b00434d47..692fb17252b 100644 --- a/gemfiles/jruby_9.2_rails6_postgres_redis.gemfile.lock +++ b/gemfiles/jruby_9.2_rails6_postgres_redis.gemfile.lock @@ -85,7 +85,7 @@ GEM datadog-ruby_core_source (3.3.7) diff-lcs (1.5.0) digest (3.1.1-java) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.5.0) erubi (1.12.0) ffi (1.17.1-java) @@ -206,14 +206,14 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby-debug-base (0.11.0-java) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) spoon (0.0.6) ffi @@ -267,7 +267,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/jruby_9.2_rails6_postgres_redis_activesupport.gemfile b/gemfiles/jruby_9.2_rails6_postgres_redis_activesupport.gemfile index 34545314cc0..e1cbb18d0d5 100644 --- a/gemfiles/jruby_9.2_rails6_postgres_redis_activesupport.gemfile +++ b/gemfiles/jruby_9.2_rails6_postgres_redis_activesupport.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.2_rails6_postgres_redis_activesupport.gemfile.lock b/gemfiles/jruby_9.2_rails6_postgres_redis_activesupport.gemfile.lock index 2dcae434fb8..b63ae59fe50 100644 --- a/gemfiles/jruby_9.2_rails6_postgres_redis_activesupport.gemfile.lock +++ b/gemfiles/jruby_9.2_rails6_postgres_redis_activesupport.gemfile.lock @@ -84,7 +84,7 @@ GEM datadog-ruby_core_source (3.3.7) diff-lcs (1.5.0) digest (3.1.1-java) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.5.0) erubi (1.12.0) ffi (1.17.1-java) @@ -218,14 +218,14 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby-debug-base (0.11.0-java) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) spoon (0.0.6) ffi @@ -281,7 +281,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/jruby_9.2_rails6_postgres_sidekiq.gemfile b/gemfiles/jruby_9.2_rails6_postgres_sidekiq.gemfile index ab20acd3c63..381d0f27179 100644 --- a/gemfiles/jruby_9.2_rails6_postgres_sidekiq.gemfile +++ b/gemfiles/jruby_9.2_rails6_postgres_sidekiq.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.2_rails6_postgres_sidekiq.gemfile.lock b/gemfiles/jruby_9.2_rails6_postgres_sidekiq.gemfile.lock index 49ec02ec154..fed02b34d2a 100644 --- a/gemfiles/jruby_9.2_rails6_postgres_sidekiq.gemfile.lock +++ b/gemfiles/jruby_9.2_rails6_postgres_sidekiq.gemfile.lock @@ -85,7 +85,7 @@ GEM datadog-ruby_core_source (3.3.7) diff-lcs (1.5.0) digest (3.1.1-java) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.5.0) erubi (1.12.0) ffi (1.17.1-java) @@ -207,14 +207,14 @@ GEM connection_pool (>= 2.2.5, < 3) rack (~> 2.0) redis (>= 4.5.0, < 5) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) spoon (0.0.6) ffi @@ -269,7 +269,7 @@ DEPENDENCIES rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) sidekiq - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/jruby_9.2_rails6_semantic_logger.gemfile b/gemfiles/jruby_9.2_rails6_semantic_logger.gemfile index e2cb4989e5c..8241c489488 100644 --- a/gemfiles/jruby_9.2_rails6_semantic_logger.gemfile +++ b/gemfiles/jruby_9.2_rails6_semantic_logger.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.2_rails6_semantic_logger.gemfile.lock b/gemfiles/jruby_9.2_rails6_semantic_logger.gemfile.lock index ee28a3fcce6..becc4c9e68d 100644 --- a/gemfiles/jruby_9.2_rails6_semantic_logger.gemfile.lock +++ b/gemfiles/jruby_9.2_rails6_semantic_logger.gemfile.lock @@ -84,7 +84,7 @@ GEM datadog-ruby_core_source (3.3.7) diff-lcs (1.5.0) digest (3.1.1-java) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.5.0) erubi (1.12.0) ffi (1.17.1-java) @@ -200,14 +200,14 @@ GEM ruby-debug-base (0.11.0-java) semantic_logger (4.12.0) concurrent-ruby (~> 1.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) spoon (0.0.6) ffi @@ -260,7 +260,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/jruby_9.2_rails_old_redis.gemfile b/gemfiles/jruby_9.2_rails_old_redis.gemfile index a839e79b61f..18a58fc4601 100644 --- a/gemfiles/jruby_9.2_rails_old_redis.gemfile +++ b/gemfiles/jruby_9.2_rails_old_redis.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.2_redis_3.gemfile b/gemfiles/jruby_9.2_redis_3.gemfile index 5f179afa342..fa30e2888ce 100644 --- a/gemfiles/jruby_9.2_redis_3.gemfile +++ b/gemfiles/jruby_9.2_redis_3.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.2_redis_3.gemfile.lock b/gemfiles/jruby_9.2_redis_3.gemfile.lock index ec184a53af1..d359a21cea7 100644 --- a/gemfiles/jruby_9.2_redis_3.gemfile.lock +++ b/gemfiles/jruby_9.2_redis_3.gemfile.lock @@ -21,7 +21,7 @@ GEM rexml datadog-ruby_core_source (3.3.7) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.5.0) ffi (1.17.1-java) hashdiff (1.0.1) @@ -68,14 +68,14 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby-debug-base (0.11.0-java) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) spoon (0.0.6) ffi @@ -109,7 +109,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/jruby_9.2_redis_4.gemfile b/gemfiles/jruby_9.2_redis_4.gemfile index e90a14494fb..bb7df1f0e11 100644 --- a/gemfiles/jruby_9.2_redis_4.gemfile +++ b/gemfiles/jruby_9.2_redis_4.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.2_redis_4.gemfile.lock b/gemfiles/jruby_9.2_redis_4.gemfile.lock index d0c6074e0fe..5a541cd9feb 100644 --- a/gemfiles/jruby_9.2_redis_4.gemfile.lock +++ b/gemfiles/jruby_9.2_redis_4.gemfile.lock @@ -21,7 +21,7 @@ GEM rexml datadog-ruby_core_source (3.3.7) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.5.0) ffi (1.17.1-java) hashdiff (1.0.1) @@ -68,14 +68,14 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby-debug-base (0.11.0-java) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) spoon (0.0.6) ffi @@ -109,7 +109,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/jruby_9.2_redis_5.gemfile b/gemfiles/jruby_9.2_redis_5.gemfile index b5824c32d8a..a9512e0cdd4 100644 --- a/gemfiles/jruby_9.2_redis_5.gemfile +++ b/gemfiles/jruby_9.2_redis_5.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.2_redis_5.gemfile.lock b/gemfiles/jruby_9.2_redis_5.gemfile.lock index 3b00bac2324..a48ef1c2be8 100644 --- a/gemfiles/jruby_9.2_redis_5.gemfile.lock +++ b/gemfiles/jruby_9.2_redis_5.gemfile.lock @@ -22,7 +22,7 @@ GEM rexml datadog-ruby_core_source (3.3.7) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.5.0) ffi (1.17.1-java) hashdiff (1.0.1) @@ -72,14 +72,14 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby-debug-base (0.11.0-java) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) spoon (0.0.6) ffi @@ -113,7 +113,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/jruby_9.2_relational_db.gemfile b/gemfiles/jruby_9.2_relational_db.gemfile index 98eef26d00e..f2e29d5c2a2 100644 --- a/gemfiles/jruby_9.2_relational_db.gemfile +++ b/gemfiles/jruby_9.2_relational_db.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.2_relational_db.gemfile.lock b/gemfiles/jruby_9.2_relational_db.gemfile.lock index 20ce04c901f..a775082a6df 100644 --- a/gemfiles/jruby_9.2_relational_db.gemfile.lock +++ b/gemfiles/jruby_9.2_relational_db.gemfile.lock @@ -50,7 +50,7 @@ GEM activerecord (>= 3.0, < 8.0) delayed_job (>= 3.0, < 5) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) ffi (1.17.1-java) hashdiff (1.0.1) @@ -106,14 +106,14 @@ GEM ruby-debug-base (0.11.0-java) sequel (5.83.1) bigdecimal - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) spoon (0.0.6) ffi @@ -157,7 +157,7 @@ DEPENDENCIES rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) sequel - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/jruby_9.2_resque2_redis3.gemfile b/gemfiles/jruby_9.2_resque2_redis3.gemfile index 46496c90d8d..3b1bc289073 100644 --- a/gemfiles/jruby_9.2_resque2_redis3.gemfile +++ b/gemfiles/jruby_9.2_resque2_redis3.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.2_resque2_redis3.gemfile.lock b/gemfiles/jruby_9.2_resque2_redis3.gemfile.lock index 7c11266e07f..10212001ef6 100644 --- a/gemfiles/jruby_9.2_resque2_redis3.gemfile.lock +++ b/gemfiles/jruby_9.2_resque2_redis3.gemfile.lock @@ -21,7 +21,7 @@ GEM rexml datadog-ruby_core_source (3.3.7) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.5.0) ffi (1.17.1-java) hashdiff (1.0.1) @@ -83,14 +83,14 @@ GEM rspec-core (>= 2, < 4, != 2.12.0) ruby-debug-base (0.11.0-java) ruby2_keywords (0.0.5) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sinatra (2.2.4) mustermann (~> 2.0) @@ -131,7 +131,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/jruby_9.2_resque2_redis4.gemfile b/gemfiles/jruby_9.2_resque2_redis4.gemfile index e965c8b5722..d4cf8dd2d56 100644 --- a/gemfiles/jruby_9.2_resque2_redis4.gemfile +++ b/gemfiles/jruby_9.2_resque2_redis4.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.2_resque2_redis4.gemfile.lock b/gemfiles/jruby_9.2_resque2_redis4.gemfile.lock index ebcb53b5996..1db79c60dbd 100644 --- a/gemfiles/jruby_9.2_resque2_redis4.gemfile.lock +++ b/gemfiles/jruby_9.2_resque2_redis4.gemfile.lock @@ -22,7 +22,7 @@ GEM rexml datadog-ruby_core_source (3.3.7) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.5.0) ffi (1.17.1-java) hashdiff (1.0.1) @@ -87,14 +87,14 @@ GEM rspec-core (>= 2, < 4, != 2.12.0) ruby-debug-base (0.11.0-java) ruby2_keywords (0.0.5) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sinatra (2.2.4) mustermann (~> 2.0) @@ -135,7 +135,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/jruby_9.2_sinatra_2.gemfile b/gemfiles/jruby_9.2_sinatra_2.gemfile index 3c2eedb98ef..9962277bd25 100644 --- a/gemfiles/jruby_9.2_sinatra_2.gemfile +++ b/gemfiles/jruby_9.2_sinatra_2.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.2_sinatra_2.gemfile.lock b/gemfiles/jruby_9.2_sinatra_2.gemfile.lock index cad6924e248..f4e5271e6f2 100644 --- a/gemfiles/jruby_9.2_sinatra_2.gemfile.lock +++ b/gemfiles/jruby_9.2_sinatra_2.gemfile.lock @@ -24,7 +24,7 @@ GEM rexml datadog-ruby_core_source (3.3.7) diff-lcs (1.5.1) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) ffi (1.17.1-java) hashdiff (1.1.0) @@ -81,14 +81,14 @@ GEM rspec-core (>= 2, < 4, != 2.12.0) ruby-debug-base (0.11.0-java) ruby2_keywords (0.0.5) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sinatra (2.2.4) mustermann (~> 2.0) @@ -129,7 +129,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sinatra (~> 2) warning (~> 1) diff --git a/gemfiles/jruby_9.2_stripe_10.gemfile b/gemfiles/jruby_9.2_stripe_10.gemfile index 2ab238b25d4..3b83bb8a677 100644 --- a/gemfiles/jruby_9.2_stripe_10.gemfile +++ b/gemfiles/jruby_9.2_stripe_10.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.2_stripe_10.gemfile.lock b/gemfiles/jruby_9.2_stripe_10.gemfile.lock index 86d70a66797..7fed1d0fa36 100644 --- a/gemfiles/jruby_9.2_stripe_10.gemfile.lock +++ b/gemfiles/jruby_9.2_stripe_10.gemfile.lock @@ -71,14 +71,14 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby-debug-base (0.11.0-java) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) spoon (0.0.6) ffi @@ -112,7 +112,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) stripe (~> 10) warning (~> 1) diff --git a/gemfiles/jruby_9.2_stripe_11.gemfile b/gemfiles/jruby_9.2_stripe_11.gemfile index 0ce879b28e4..5bc3959e4e9 100644 --- a/gemfiles/jruby_9.2_stripe_11.gemfile +++ b/gemfiles/jruby_9.2_stripe_11.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.2_stripe_11.gemfile.lock b/gemfiles/jruby_9.2_stripe_11.gemfile.lock index 64f0236ee94..85a5391ca18 100644 --- a/gemfiles/jruby_9.2_stripe_11.gemfile.lock +++ b/gemfiles/jruby_9.2_stripe_11.gemfile.lock @@ -71,14 +71,14 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby-debug-base (0.11.0-java) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) spoon (0.0.6) ffi @@ -112,7 +112,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) stripe (~> 11) warning (~> 1) diff --git a/gemfiles/jruby_9.2_stripe_12.gemfile b/gemfiles/jruby_9.2_stripe_12.gemfile index 37742d718d0..244048bbac2 100644 --- a/gemfiles/jruby_9.2_stripe_12.gemfile +++ b/gemfiles/jruby_9.2_stripe_12.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.2_stripe_12.gemfile.lock b/gemfiles/jruby_9.2_stripe_12.gemfile.lock index 22fd2f30b54..931eaed0f65 100644 --- a/gemfiles/jruby_9.2_stripe_12.gemfile.lock +++ b/gemfiles/jruby_9.2_stripe_12.gemfile.lock @@ -71,14 +71,14 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby-debug-base (0.11.0-java) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) spoon (0.0.6) ffi @@ -112,7 +112,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) stripe (~> 12) warning (~> 1) diff --git a/gemfiles/jruby_9.2_stripe_7.gemfile b/gemfiles/jruby_9.2_stripe_7.gemfile index b57ca37efcc..d9467c8a98f 100644 --- a/gemfiles/jruby_9.2_stripe_7.gemfile +++ b/gemfiles/jruby_9.2_stripe_7.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.2_stripe_7.gemfile.lock b/gemfiles/jruby_9.2_stripe_7.gemfile.lock index 68db845d18d..020dcb22eb7 100644 --- a/gemfiles/jruby_9.2_stripe_7.gemfile.lock +++ b/gemfiles/jruby_9.2_stripe_7.gemfile.lock @@ -71,14 +71,14 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby-debug-base (0.11.0-java) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) spoon (0.0.6) ffi @@ -112,7 +112,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) stripe (~> 7) warning (~> 1) diff --git a/gemfiles/jruby_9.2_stripe_8.gemfile b/gemfiles/jruby_9.2_stripe_8.gemfile index 4e5f5f74408..026bf9f26f0 100644 --- a/gemfiles/jruby_9.2_stripe_8.gemfile +++ b/gemfiles/jruby_9.2_stripe_8.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.2_stripe_8.gemfile.lock b/gemfiles/jruby_9.2_stripe_8.gemfile.lock index 441533e11b6..3b771470bd7 100644 --- a/gemfiles/jruby_9.2_stripe_8.gemfile.lock +++ b/gemfiles/jruby_9.2_stripe_8.gemfile.lock @@ -71,14 +71,14 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby-debug-base (0.11.0-java) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) spoon (0.0.6) ffi @@ -112,7 +112,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) stripe (~> 8) warning (~> 1) diff --git a/gemfiles/jruby_9.2_stripe_9.gemfile b/gemfiles/jruby_9.2_stripe_9.gemfile index cf79371164b..15005def40d 100644 --- a/gemfiles/jruby_9.2_stripe_9.gemfile +++ b/gemfiles/jruby_9.2_stripe_9.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.2_stripe_9.gemfile.lock b/gemfiles/jruby_9.2_stripe_9.gemfile.lock index 8587f3562eb..e3dc7a68cdc 100644 --- a/gemfiles/jruby_9.2_stripe_9.gemfile.lock +++ b/gemfiles/jruby_9.2_stripe_9.gemfile.lock @@ -71,14 +71,14 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby-debug-base (0.11.0-java) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) spoon (0.0.6) ffi @@ -112,7 +112,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) stripe (~> 9) warning (~> 1) diff --git a/gemfiles/jruby_9.2_stripe_latest.gemfile b/gemfiles/jruby_9.2_stripe_latest.gemfile index 65b1abda99d..83782d08333 100644 --- a/gemfiles/jruby_9.2_stripe_latest.gemfile +++ b/gemfiles/jruby_9.2_stripe_latest.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.2_stripe_latest.gemfile.lock b/gemfiles/jruby_9.2_stripe_latest.gemfile.lock index fa22f4fea67..07dcee067af 100644 --- a/gemfiles/jruby_9.2_stripe_latest.gemfile.lock +++ b/gemfiles/jruby_9.2_stripe_latest.gemfile.lock @@ -70,7 +70,7 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby-debug-base (0.11.0-java) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) @@ -110,7 +110,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) stripe warning (~> 1) diff --git a/gemfiles/jruby_9.2_stripe_min.gemfile b/gemfiles/jruby_9.2_stripe_min.gemfile index 10309f0512e..6d2400337b7 100644 --- a/gemfiles/jruby_9.2_stripe_min.gemfile +++ b/gemfiles/jruby_9.2_stripe_min.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.2_stripe_min.gemfile.lock b/gemfiles/jruby_9.2_stripe_min.gemfile.lock index e04cd66ca3e..2001a7f4b51 100644 --- a/gemfiles/jruby_9.2_stripe_min.gemfile.lock +++ b/gemfiles/jruby_9.2_stripe_min.gemfile.lock @@ -70,7 +70,7 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby-debug-base (0.11.0-java) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) @@ -110,7 +110,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) stripe (= 5.15.0) warning (~> 1) diff --git a/gemfiles/jruby_9.3_activesupport.gemfile b/gemfiles/jruby_9.3_activesupport.gemfile index d320a3bc8ec..49283a0c75f 100644 --- a/gemfiles/jruby_9.3_activesupport.gemfile +++ b/gemfiles/jruby_9.3_activesupport.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.3_activesupport.gemfile.lock b/gemfiles/jruby_9.3_activesupport.gemfile.lock index c8d2269d6c4..957203857ba 100644 --- a/gemfiles/jruby_9.3_activesupport.gemfile.lock +++ b/gemfiles/jruby_9.3_activesupport.gemfile.lock @@ -53,7 +53,7 @@ GEM diff-lcs (1.5.0) digest-crc (0.6.5) rake (>= 12.0.0, < 14.0.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) dry-configurable (0.13.0) concurrent-ruby (~> 1.0) @@ -175,14 +175,14 @@ GEM ruby-kafka (1.5.0) digest-crc ruby2_keywords (0.0.5) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) spoon (0.0.6) ffi @@ -228,7 +228,7 @@ DEPENDENCIES rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) ruby-kafka (>= 0.7.10) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/jruby_9.3_aws.gemfile b/gemfiles/jruby_9.3_aws.gemfile index 6c9a4988ba4..51f501079e9 100644 --- a/gemfiles/jruby_9.3_aws.gemfile +++ b/gemfiles/jruby_9.3_aws.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.3_aws.gemfile.lock b/gemfiles/jruby_9.3_aws.gemfile.lock index 5b63f518857..02f39ea3704 100644 --- a/gemfiles/jruby_9.3_aws.gemfile.lock +++ b/gemfiles/jruby_9.3_aws.gemfile.lock @@ -1442,7 +1442,7 @@ GEM rexml datadog-ruby_core_source (3.3.7) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.0) ffi (1.17.1-java) hashdiff (1.0.1) @@ -1492,14 +1492,14 @@ GEM aws-sdk-core (>= 2) concurrent-ruby thor - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) spoon (0.0.6) ffi @@ -1535,7 +1535,7 @@ DEPENDENCIES rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) shoryuken - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/jruby_9.3_contrib.gemfile b/gemfiles/jruby_9.3_contrib.gemfile index be331b4c16c..5a758c353a3 100644 --- a/gemfiles/jruby_9.3_contrib.gemfile +++ b/gemfiles/jruby_9.3_contrib.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.3_contrib.gemfile.lock b/gemfiles/jruby_9.3_contrib.gemfile.lock index 240ec02dc8b..0012cb70184 100644 --- a/gemfiles/jruby_9.3_contrib.gemfile.lock +++ b/gemfiles/jruby_9.3_contrib.gemfile.lock @@ -28,7 +28,7 @@ GEM dalli (3.2.3) datadog-ruby_core_source (3.3.7) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) ffi (1.17.1-java) hashdiff (1.0.1) @@ -106,14 +106,14 @@ GEM rack (~> 2.0) redis (>= 4.5.0, < 5) sigdump (0.2.4) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sinatra (3.0.5) mustermann (~> 3.0) @@ -171,7 +171,7 @@ DEPENDENCIES rspec_junit_formatter (>= 0.5.1) semantic_logger (~> 4.0) sidekiq (~> 6.5) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sneakers (>= 2.12.0) sucker_punch diff --git a/gemfiles/jruby_9.3_contrib_old.gemfile b/gemfiles/jruby_9.3_contrib_old.gemfile index e6e722154f9..f679de2e048 100644 --- a/gemfiles/jruby_9.3_contrib_old.gemfile +++ b/gemfiles/jruby_9.3_contrib_old.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.3_contrib_old.gemfile.lock b/gemfiles/jruby_9.3_contrib_old.gemfile.lock index b0d288edaff..b90c81dacab 100644 --- a/gemfiles/jruby_9.3_contrib_old.gemfile.lock +++ b/gemfiles/jruby_9.3_contrib_old.gemfile.lock @@ -22,7 +22,7 @@ GEM dalli (2.7.11) datadog-ruby_core_source (3.3.7) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) faraday (0.17.0) multipart-post (>= 1.2, < 3) @@ -80,14 +80,14 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby-debug-base (0.11.0-java) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) spoon (0.0.6) ffi @@ -125,7 +125,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/jruby_9.3_core_old.gemfile b/gemfiles/jruby_9.3_core_old.gemfile index 4b556852f84..30f468ee253 100644 --- a/gemfiles/jruby_9.3_core_old.gemfile +++ b/gemfiles/jruby_9.3_core_old.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.3_core_old.gemfile.lock b/gemfiles/jruby_9.3_core_old.gemfile.lock index 8682ae56c5d..ef4da6ad91a 100644 --- a/gemfiles/jruby_9.3_core_old.gemfile.lock +++ b/gemfiles/jruby_9.3_core_old.gemfile.lock @@ -21,7 +21,7 @@ GEM rexml datadog-ruby_core_source (3.3.7) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (4.8.3) ffi (1.17.1-java) hashdiff (1.0.1) @@ -67,14 +67,14 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby-debug-base (0.11.0-java) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) spoon (0.0.6) ffi @@ -107,7 +107,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/jruby_9.3_elasticsearch_7.gemfile b/gemfiles/jruby_9.3_elasticsearch_7.gemfile index 4f90b94b745..0936ec76583 100644 --- a/gemfiles/jruby_9.3_elasticsearch_7.gemfile +++ b/gemfiles/jruby_9.3_elasticsearch_7.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.3_elasticsearch_7.gemfile.lock b/gemfiles/jruby_9.3_elasticsearch_7.gemfile.lock index 0484bf32a07..43feb56f009 100644 --- a/gemfiles/jruby_9.3_elasticsearch_7.gemfile.lock +++ b/gemfiles/jruby_9.3_elasticsearch_7.gemfile.lock @@ -23,7 +23,7 @@ GEM rexml datadog-ruby_core_source (3.3.7) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) elasticsearch (7.17.11) elasticsearch-api (= 7.17.11) @@ -86,14 +86,14 @@ GEM rspec-core (>= 2, < 4, != 2.12.0) ruby-debug-base (0.11.0-java) ruby2_keywords (0.0.5) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) spoon (0.0.6) ffi @@ -127,7 +127,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/jruby_9.3_elasticsearch_8.gemfile b/gemfiles/jruby_9.3_elasticsearch_8.gemfile index 449c9ac82d3..63693bd1560 100644 --- a/gemfiles/jruby_9.3_elasticsearch_8.gemfile +++ b/gemfiles/jruby_9.3_elasticsearch_8.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.3_elasticsearch_8.gemfile.lock b/gemfiles/jruby_9.3_elasticsearch_8.gemfile.lock index eb151284916..d3480fdb7ec 100644 --- a/gemfiles/jruby_9.3_elasticsearch_8.gemfile.lock +++ b/gemfiles/jruby_9.3_elasticsearch_8.gemfile.lock @@ -23,7 +23,7 @@ GEM rexml datadog-ruby_core_source (3.3.7) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) elastic-transport (8.3.5) faraday (< 3) @@ -85,14 +85,14 @@ GEM rspec-core (>= 2, < 4, != 2.12.0) ruby-debug-base (0.11.0-java) ruby2_keywords (0.0.5) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) spoon (0.0.6) ffi @@ -126,7 +126,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/jruby_9.3_elasticsearch_latest.gemfile b/gemfiles/jruby_9.3_elasticsearch_latest.gemfile index f076ec51da6..c15df95fb7e 100644 --- a/gemfiles/jruby_9.3_elasticsearch_latest.gemfile +++ b/gemfiles/jruby_9.3_elasticsearch_latest.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.3_elasticsearch_latest.gemfile.lock b/gemfiles/jruby_9.3_elasticsearch_latest.gemfile.lock index a0d39caf32e..2297e116830 100644 --- a/gemfiles/jruby_9.3_elasticsearch_latest.gemfile.lock +++ b/gemfiles/jruby_9.3_elasticsearch_latest.gemfile.lock @@ -86,7 +86,7 @@ GEM rspec-core (>= 2, < 4, != 2.12.0) ruby-debug-base (0.11.0-java) ruby2_keywords (0.0.5) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) @@ -126,7 +126,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/jruby_9.3_graphql_1.13.gemfile b/gemfiles/jruby_9.3_graphql_1.13.gemfile index 1aefe7d9a22..e1308abb275 100644 --- a/gemfiles/jruby_9.3_graphql_1.13.gemfile +++ b/gemfiles/jruby_9.3_graphql_1.13.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.3_graphql_1.13.gemfile.lock b/gemfiles/jruby_9.3_graphql_1.13.gemfile.lock index 4ee4de7252b..da1a7dc0cae 100644 --- a/gemfiles/jruby_9.3_graphql_1.13.gemfile.lock +++ b/gemfiles/jruby_9.3_graphql_1.13.gemfile.lock @@ -85,7 +85,7 @@ GEM datadog-ruby_core_source (3.3.7) date (3.3.4-java) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) erubi (1.13.0) ffi (1.17.1-java) @@ -199,14 +199,14 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby-debug-base (0.11.0-java) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) spoon (0.0.6) ffi @@ -258,7 +258,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/jruby_9.3_graphql_2.0.gemfile b/gemfiles/jruby_9.3_graphql_2.0.gemfile index 7e796e9df6a..30c21deb73d 100644 --- a/gemfiles/jruby_9.3_graphql_2.0.gemfile +++ b/gemfiles/jruby_9.3_graphql_2.0.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.3_graphql_2.0.gemfile.lock b/gemfiles/jruby_9.3_graphql_2.0.gemfile.lock index eb809c8120b..7fa7aff9daf 100644 --- a/gemfiles/jruby_9.3_graphql_2.0.gemfile.lock +++ b/gemfiles/jruby_9.3_graphql_2.0.gemfile.lock @@ -85,7 +85,7 @@ GEM datadog-ruby_core_source (3.3.7) date (3.3.4-java) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) erubi (1.13.0) ffi (1.17.1-java) @@ -199,14 +199,14 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby-debug-base (0.11.0-java) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) spoon (0.0.6) ffi @@ -258,7 +258,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/jruby_9.3_http.gemfile b/gemfiles/jruby_9.3_http.gemfile index 7e9c26211ed..31b6288f83b 100644 --- a/gemfiles/jruby_9.3_http.gemfile +++ b/gemfiles/jruby_9.3_http.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.3_http.gemfile.lock b/gemfiles/jruby_9.3_http.gemfile.lock index 4b6f2f275a2..c35fec5596a 100644 --- a/gemfiles/jruby_9.3_http.gemfile.lock +++ b/gemfiles/jruby_9.3_http.gemfile.lock @@ -21,7 +21,7 @@ GEM rexml datadog-ruby_core_source (3.3.7) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) domain_name (0.5.20190701) unf (>= 0.0.5, < 1.0.0) @@ -101,14 +101,14 @@ GEM rspec-core (>= 2, < 4, != 2.12.0) ruby-debug-base (0.11.0-java) ruby2_keywords (0.0.5) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) spoon (0.0.6) ffi @@ -150,7 +150,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) typhoeus warning (~> 1) diff --git a/gemfiles/jruby_9.3_opensearch_2.gemfile b/gemfiles/jruby_9.3_opensearch_2.gemfile index cd851d3320c..92d227686a1 100644 --- a/gemfiles/jruby_9.3_opensearch_2.gemfile +++ b/gemfiles/jruby_9.3_opensearch_2.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.3_opensearch_2.gemfile.lock b/gemfiles/jruby_9.3_opensearch_2.gemfile.lock index e87190f322c..7e8f8c7cd38 100644 --- a/gemfiles/jruby_9.3_opensearch_2.gemfile.lock +++ b/gemfiles/jruby_9.3_opensearch_2.gemfile.lock @@ -23,7 +23,7 @@ GEM rexml datadog-ruby_core_source (3.3.7) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) faraday (2.8.1) base64 @@ -85,14 +85,14 @@ GEM rspec-core (>= 2, < 4, != 2.12.0) ruby-debug-base (0.11.0-java) ruby2_keywords (0.0.5) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) spoon (0.0.6) ffi @@ -126,7 +126,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/jruby_9.3_opensearch_3.gemfile b/gemfiles/jruby_9.3_opensearch_3.gemfile index 0a4ce6a7696..c8d1e6eba01 100644 --- a/gemfiles/jruby_9.3_opensearch_3.gemfile +++ b/gemfiles/jruby_9.3_opensearch_3.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.3_opensearch_3.gemfile.lock b/gemfiles/jruby_9.3_opensearch_3.gemfile.lock index c63d0af9b23..2150985660e 100644 --- a/gemfiles/jruby_9.3_opensearch_3.gemfile.lock +++ b/gemfiles/jruby_9.3_opensearch_3.gemfile.lock @@ -23,7 +23,7 @@ GEM rexml datadog-ruby_core_source (3.3.7) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) faraday (2.8.1) base64 @@ -80,14 +80,14 @@ GEM rspec-core (>= 2, < 4, != 2.12.0) ruby-debug-base (0.11.0-java) ruby2_keywords (0.0.5) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) spoon (0.0.6) ffi @@ -121,7 +121,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/jruby_9.3_opensearch_latest.gemfile b/gemfiles/jruby_9.3_opensearch_latest.gemfile index 1a569f23dd3..28d46b8f21b 100644 --- a/gemfiles/jruby_9.3_opensearch_latest.gemfile +++ b/gemfiles/jruby_9.3_opensearch_latest.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.3_opensearch_latest.gemfile.lock b/gemfiles/jruby_9.3_opensearch_latest.gemfile.lock index 9525641d313..fd3d167a99c 100644 --- a/gemfiles/jruby_9.3_opensearch_latest.gemfile.lock +++ b/gemfiles/jruby_9.3_opensearch_latest.gemfile.lock @@ -81,7 +81,7 @@ GEM rspec-core (>= 2, < 4, != 2.12.0) ruby-debug-base (0.11.0-java) ruby2_keywords (0.0.5) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) @@ -121,7 +121,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/jruby_9.3_rack_1.gemfile b/gemfiles/jruby_9.3_rack_1.gemfile index d1e5f089eed..8515af841fe 100644 --- a/gemfiles/jruby_9.3_rack_1.gemfile +++ b/gemfiles/jruby_9.3_rack_1.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.3_rack_1.gemfile.lock b/gemfiles/jruby_9.3_rack_1.gemfile.lock index 529e8b43341..83147bd88e7 100644 --- a/gemfiles/jruby_9.3_rack_1.gemfile.lock +++ b/gemfiles/jruby_9.3_rack_1.gemfile.lock @@ -21,7 +21,7 @@ GEM rexml datadog-ruby_core_source (3.3.7) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) ffi (1.17.1-java) hashdiff (1.0.1) @@ -72,14 +72,14 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby-debug-base (0.11.0-java) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) spoon (0.0.6) ffi @@ -115,7 +115,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/jruby_9.3_rack_2.gemfile b/gemfiles/jruby_9.3_rack_2.gemfile index 3a477a041e3..1d3f351b82d 100644 --- a/gemfiles/jruby_9.3_rack_2.gemfile +++ b/gemfiles/jruby_9.3_rack_2.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.3_rack_2.gemfile.lock b/gemfiles/jruby_9.3_rack_2.gemfile.lock index 16d49541f4e..fef05d3c922 100644 --- a/gemfiles/jruby_9.3_rack_2.gemfile.lock +++ b/gemfiles/jruby_9.3_rack_2.gemfile.lock @@ -21,7 +21,7 @@ GEM rexml datadog-ruby_core_source (3.3.7) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) ffi (1.17.1-java) hashdiff (1.0.1) @@ -72,14 +72,14 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby-debug-base (0.11.0-java) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) spoon (0.0.6) ffi @@ -115,7 +115,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/jruby_9.3_rack_3.gemfile b/gemfiles/jruby_9.3_rack_3.gemfile index aca27f9ad27..a7ea1fa6d18 100644 --- a/gemfiles/jruby_9.3_rack_3.gemfile +++ b/gemfiles/jruby_9.3_rack_3.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.3_rack_3.gemfile.lock b/gemfiles/jruby_9.3_rack_3.gemfile.lock index 880d5532e24..84475665cef 100644 --- a/gemfiles/jruby_9.3_rack_3.gemfile.lock +++ b/gemfiles/jruby_9.3_rack_3.gemfile.lock @@ -21,7 +21,7 @@ GEM rexml datadog-ruby_core_source (3.3.7) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) ffi (1.17.1-java) hashdiff (1.0.1) @@ -72,14 +72,14 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby-debug-base (0.11.0-java) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) spoon (0.0.6) ffi @@ -115,7 +115,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/jruby_9.3_rack_latest.gemfile b/gemfiles/jruby_9.3_rack_latest.gemfile index 651ea9fe890..c3430c06379 100644 --- a/gemfiles/jruby_9.3_rack_latest.gemfile +++ b/gemfiles/jruby_9.3_rack_latest.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.3_rack_latest.gemfile.lock b/gemfiles/jruby_9.3_rack_latest.gemfile.lock index 48187a4afa5..dee520713c9 100644 --- a/gemfiles/jruby_9.3_rack_latest.gemfile.lock +++ b/gemfiles/jruby_9.3_rack_latest.gemfile.lock @@ -75,7 +75,7 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby-debug-base (0.11.0-java) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) @@ -117,7 +117,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/jruby_9.3_rails5_mysql2.gemfile b/gemfiles/jruby_9.3_rails5_mysql2.gemfile index c33d6dc5109..52e1ce1562c 100644 --- a/gemfiles/jruby_9.3_rails5_mysql2.gemfile +++ b/gemfiles/jruby_9.3_rails5_mysql2.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.3_rails5_mysql2.gemfile.lock b/gemfiles/jruby_9.3_rails5_mysql2.gemfile.lock index 6da2e536d51..489facfc0ce 100644 --- a/gemfiles/jruby_9.3_rails5_mysql2.gemfile.lock +++ b/gemfiles/jruby_9.3_rails5_mysql2.gemfile.lock @@ -71,7 +71,7 @@ GEM datadog-ruby_core_source (3.3.7) date (3.3.3-java) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) erubi (1.12.0) ffi (1.17.1-java) @@ -181,14 +181,14 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby-debug-base (0.11.0-java) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) spoon (0.0.6) ffi @@ -239,7 +239,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/jruby_9.3_rails5_postgres.gemfile b/gemfiles/jruby_9.3_rails5_postgres.gemfile index f4ca541cffe..4c02385b85b 100644 --- a/gemfiles/jruby_9.3_rails5_postgres.gemfile +++ b/gemfiles/jruby_9.3_rails5_postgres.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.3_rails5_postgres.gemfile.lock b/gemfiles/jruby_9.3_rails5_postgres.gemfile.lock index 703aace8aad..2a2ac015277 100644 --- a/gemfiles/jruby_9.3_rails5_postgres.gemfile.lock +++ b/gemfiles/jruby_9.3_rails5_postgres.gemfile.lock @@ -71,7 +71,7 @@ GEM datadog-ruby_core_source (3.3.7) date (3.3.3-java) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) erubi (1.12.0) ffi (1.17.1-java) @@ -181,14 +181,14 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby-debug-base (0.11.0-java) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) spoon (0.0.6) ffi @@ -239,7 +239,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/jruby_9.3_rails5_postgres_redis.gemfile b/gemfiles/jruby_9.3_rails5_postgres_redis.gemfile index 5aa7d756268..5af78c22bf9 100644 --- a/gemfiles/jruby_9.3_rails5_postgres_redis.gemfile +++ b/gemfiles/jruby_9.3_rails5_postgres_redis.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.3_rails5_postgres_redis.gemfile.lock b/gemfiles/jruby_9.3_rails5_postgres_redis.gemfile.lock index 7d95847557d..bba0fcc2b16 100644 --- a/gemfiles/jruby_9.3_rails5_postgres_redis.gemfile.lock +++ b/gemfiles/jruby_9.3_rails5_postgres_redis.gemfile.lock @@ -71,7 +71,7 @@ GEM datadog-ruby_core_source (3.3.7) date (3.3.3-java) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) erubi (1.12.0) ffi (1.17.1-java) @@ -182,14 +182,14 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby-debug-base (0.11.0-java) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) spoon (0.0.6) ffi @@ -241,7 +241,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/jruby_9.3_rails5_postgres_redis_activesupport.gemfile b/gemfiles/jruby_9.3_rails5_postgres_redis_activesupport.gemfile index 5e779bed3f0..f602744e8f2 100644 --- a/gemfiles/jruby_9.3_rails5_postgres_redis_activesupport.gemfile +++ b/gemfiles/jruby_9.3_rails5_postgres_redis_activesupport.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.3_rails5_postgres_redis_activesupport.gemfile.lock b/gemfiles/jruby_9.3_rails5_postgres_redis_activesupport.gemfile.lock index f0011d05946..fa30762d265 100644 --- a/gemfiles/jruby_9.3_rails5_postgres_redis_activesupport.gemfile.lock +++ b/gemfiles/jruby_9.3_rails5_postgres_redis_activesupport.gemfile.lock @@ -71,7 +71,7 @@ GEM datadog-ruby_core_source (3.3.7) date (3.3.3-java) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) erubi (1.12.0) ffi (1.17.1-java) @@ -198,14 +198,14 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby-debug-base (0.11.0-java) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) spoon (0.0.6) ffi @@ -259,7 +259,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/jruby_9.3_rails5_postgres_sidekiq.gemfile b/gemfiles/jruby_9.3_rails5_postgres_sidekiq.gemfile index 4bf6a9ffe8c..cacb82d0da3 100644 --- a/gemfiles/jruby_9.3_rails5_postgres_sidekiq.gemfile +++ b/gemfiles/jruby_9.3_rails5_postgres_sidekiq.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.3_rails5_postgres_sidekiq.gemfile.lock b/gemfiles/jruby_9.3_rails5_postgres_sidekiq.gemfile.lock index 513cde899ff..ef611f4ff90 100644 --- a/gemfiles/jruby_9.3_rails5_postgres_sidekiq.gemfile.lock +++ b/gemfiles/jruby_9.3_rails5_postgres_sidekiq.gemfile.lock @@ -72,7 +72,7 @@ GEM datadog-ruby_core_source (3.3.7) date (3.3.3-java) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) erubi (1.12.0) ffi (1.17.1-java) @@ -187,14 +187,14 @@ GEM connection_pool (>= 2.2.5, < 3) rack (~> 2.0) redis (>= 4.5.0, < 5) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) spoon (0.0.6) ffi @@ -247,7 +247,7 @@ DEPENDENCIES rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) sidekiq - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/jruby_9.3_rails5_semantic_logger.gemfile b/gemfiles/jruby_9.3_rails5_semantic_logger.gemfile index 0fa1afc8ca7..c7e36d2e35c 100644 --- a/gemfiles/jruby_9.3_rails5_semantic_logger.gemfile +++ b/gemfiles/jruby_9.3_rails5_semantic_logger.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.3_rails5_semantic_logger.gemfile.lock b/gemfiles/jruby_9.3_rails5_semantic_logger.gemfile.lock index cb32cb0ff66..e83d543ad98 100644 --- a/gemfiles/jruby_9.3_rails5_semantic_logger.gemfile.lock +++ b/gemfiles/jruby_9.3_rails5_semantic_logger.gemfile.lock @@ -71,7 +71,7 @@ GEM datadog-ruby_core_source (3.3.7) date (3.3.3-java) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) erubi (1.12.0) ffi (1.17.1-java) @@ -180,14 +180,14 @@ GEM ruby-debug-base (0.11.0-java) semantic_logger (4.12.0) concurrent-ruby (~> 1.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) spoon (0.0.6) ffi @@ -238,7 +238,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/jruby_9.3_rails61_mysql2.gemfile b/gemfiles/jruby_9.3_rails61_mysql2.gemfile index c77c23b0afd..ef4826f8c52 100644 --- a/gemfiles/jruby_9.3_rails61_mysql2.gemfile +++ b/gemfiles/jruby_9.3_rails61_mysql2.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.3_rails61_mysql2.gemfile.lock b/gemfiles/jruby_9.3_rails61_mysql2.gemfile.lock index 1934b7dc8b4..3fab8e55bfa 100644 --- a/gemfiles/jruby_9.3_rails61_mysql2.gemfile.lock +++ b/gemfiles/jruby_9.3_rails61_mysql2.gemfile.lock @@ -88,7 +88,7 @@ GEM datadog-ruby_core_source (3.3.7) date (3.3.3-java) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) erubi (1.12.0) ffi (1.17.1-java) @@ -200,14 +200,14 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby-debug-base (0.11.0-java) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) spoon (0.0.6) ffi @@ -258,7 +258,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/jruby_9.3_rails61_postgres.gemfile b/gemfiles/jruby_9.3_rails61_postgres.gemfile index 68897cc3f8d..b9e92b01d90 100644 --- a/gemfiles/jruby_9.3_rails61_postgres.gemfile +++ b/gemfiles/jruby_9.3_rails61_postgres.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.3_rails61_postgres.gemfile.lock b/gemfiles/jruby_9.3_rails61_postgres.gemfile.lock index f4ec0dde46b..97f5e589dfd 100644 --- a/gemfiles/jruby_9.3_rails61_postgres.gemfile.lock +++ b/gemfiles/jruby_9.3_rails61_postgres.gemfile.lock @@ -88,7 +88,7 @@ GEM datadog-ruby_core_source (3.3.7) date (3.3.3-java) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) erubi (1.12.0) ffi (1.17.1-java) @@ -200,14 +200,14 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby-debug-base (0.11.0-java) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) spoon (0.0.6) ffi @@ -258,7 +258,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/jruby_9.3_rails61_postgres_redis.gemfile b/gemfiles/jruby_9.3_rails61_postgres_redis.gemfile index fe455da1a14..79d8cc4278f 100644 --- a/gemfiles/jruby_9.3_rails61_postgres_redis.gemfile +++ b/gemfiles/jruby_9.3_rails61_postgres_redis.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.3_rails61_postgres_redis.gemfile.lock b/gemfiles/jruby_9.3_rails61_postgres_redis.gemfile.lock index 0aec0e527c4..1efd08f5427 100644 --- a/gemfiles/jruby_9.3_rails61_postgres_redis.gemfile.lock +++ b/gemfiles/jruby_9.3_rails61_postgres_redis.gemfile.lock @@ -88,7 +88,7 @@ GEM datadog-ruby_core_source (3.3.7) date (3.3.3-java) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) erubi (1.12.0) ffi (1.17.1-java) @@ -201,14 +201,14 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby-debug-base (0.11.0-java) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) spoon (0.0.6) ffi @@ -260,7 +260,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/jruby_9.3_rails61_postgres_sidekiq.gemfile b/gemfiles/jruby_9.3_rails61_postgres_sidekiq.gemfile index a29a9a0ca05..3623fcf34c0 100644 --- a/gemfiles/jruby_9.3_rails61_postgres_sidekiq.gemfile +++ b/gemfiles/jruby_9.3_rails61_postgres_sidekiq.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.3_rails61_postgres_sidekiq.gemfile.lock b/gemfiles/jruby_9.3_rails61_postgres_sidekiq.gemfile.lock index 23e99dc0ee8..8551cc18352 100644 --- a/gemfiles/jruby_9.3_rails61_postgres_sidekiq.gemfile.lock +++ b/gemfiles/jruby_9.3_rails61_postgres_sidekiq.gemfile.lock @@ -89,7 +89,7 @@ GEM datadog-ruby_core_source (3.3.7) date (3.3.3-java) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) erubi (1.12.0) ffi (1.17.1-java) @@ -206,14 +206,14 @@ GEM connection_pool (>= 2.2.5, < 3) rack (~> 2.0) redis (>= 4.5.0, < 5) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) spoon (0.0.6) ffi @@ -265,7 +265,7 @@ DEPENDENCIES rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) sidekiq (>= 6.1.2) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/jruby_9.3_rails61_semantic_logger.gemfile b/gemfiles/jruby_9.3_rails61_semantic_logger.gemfile index 873e23c0cad..23f379bbf18 100644 --- a/gemfiles/jruby_9.3_rails61_semantic_logger.gemfile +++ b/gemfiles/jruby_9.3_rails61_semantic_logger.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.3_rails61_semantic_logger.gemfile.lock b/gemfiles/jruby_9.3_rails61_semantic_logger.gemfile.lock index 6bbbf3e072b..f70be77c5cb 100644 --- a/gemfiles/jruby_9.3_rails61_semantic_logger.gemfile.lock +++ b/gemfiles/jruby_9.3_rails61_semantic_logger.gemfile.lock @@ -88,7 +88,7 @@ GEM datadog-ruby_core_source (3.3.7) date (3.3.3-java) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) erubi (1.12.0) ffi (1.17.1-java) @@ -199,14 +199,14 @@ GEM ruby-debug-base (0.11.0-java) semantic_logger (4.12.0) concurrent-ruby (~> 1.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) spoon (0.0.6) ffi @@ -257,7 +257,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/jruby_9.3_rails6_mysql2.gemfile b/gemfiles/jruby_9.3_rails6_mysql2.gemfile index 34f9efbf557..88d22e75512 100644 --- a/gemfiles/jruby_9.3_rails6_mysql2.gemfile +++ b/gemfiles/jruby_9.3_rails6_mysql2.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.3_rails6_mysql2.gemfile.lock b/gemfiles/jruby_9.3_rails6_mysql2.gemfile.lock index ef5393de888..0a48c23753f 100644 --- a/gemfiles/jruby_9.3_rails6_mysql2.gemfile.lock +++ b/gemfiles/jruby_9.3_rails6_mysql2.gemfile.lock @@ -84,7 +84,7 @@ GEM datadog-ruby_core_source (3.3.7) date (3.3.3-java) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) erubi (1.12.0) ffi (1.17.1-java) @@ -196,14 +196,14 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby-debug-base (0.11.0-java) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) spoon (0.0.6) ffi @@ -255,7 +255,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/jruby_9.3_rails6_postgres.gemfile b/gemfiles/jruby_9.3_rails6_postgres.gemfile index 44a36e69b2e..a149380c05e 100644 --- a/gemfiles/jruby_9.3_rails6_postgres.gemfile +++ b/gemfiles/jruby_9.3_rails6_postgres.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.3_rails6_postgres.gemfile.lock b/gemfiles/jruby_9.3_rails6_postgres.gemfile.lock index 63f71eb64ee..f7a2e67a4c1 100644 --- a/gemfiles/jruby_9.3_rails6_postgres.gemfile.lock +++ b/gemfiles/jruby_9.3_rails6_postgres.gemfile.lock @@ -84,7 +84,7 @@ GEM datadog-ruby_core_source (3.3.7) date (3.3.3-java) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) erubi (1.12.0) ffi (1.17.1-java) @@ -196,14 +196,14 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby-debug-base (0.11.0-java) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) spoon (0.0.6) ffi @@ -255,7 +255,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/jruby_9.3_rails6_postgres_redis.gemfile b/gemfiles/jruby_9.3_rails6_postgres_redis.gemfile index 63d6cc83ea2..f8cdf99bbca 100644 --- a/gemfiles/jruby_9.3_rails6_postgres_redis.gemfile +++ b/gemfiles/jruby_9.3_rails6_postgres_redis.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.3_rails6_postgres_redis.gemfile.lock b/gemfiles/jruby_9.3_rails6_postgres_redis.gemfile.lock index 00cf49e8f1e..306640a725d 100644 --- a/gemfiles/jruby_9.3_rails6_postgres_redis.gemfile.lock +++ b/gemfiles/jruby_9.3_rails6_postgres_redis.gemfile.lock @@ -84,7 +84,7 @@ GEM datadog-ruby_core_source (3.3.7) date (3.3.3-java) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) erubi (1.12.0) ffi (1.17.1-java) @@ -197,14 +197,14 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby-debug-base (0.11.0-java) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) spoon (0.0.6) ffi @@ -257,7 +257,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/jruby_9.3_rails6_postgres_redis_activesupport.gemfile b/gemfiles/jruby_9.3_rails6_postgres_redis_activesupport.gemfile index a68103160e2..70f044bb89a 100644 --- a/gemfiles/jruby_9.3_rails6_postgres_redis_activesupport.gemfile +++ b/gemfiles/jruby_9.3_rails6_postgres_redis_activesupport.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.3_rails6_postgres_redis_activesupport.gemfile.lock b/gemfiles/jruby_9.3_rails6_postgres_redis_activesupport.gemfile.lock index 1c384de0277..8dbdb4e64a9 100644 --- a/gemfiles/jruby_9.3_rails6_postgres_redis_activesupport.gemfile.lock +++ b/gemfiles/jruby_9.3_rails6_postgres_redis_activesupport.gemfile.lock @@ -84,7 +84,7 @@ GEM datadog-ruby_core_source (3.3.7) date (3.3.3-java) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) erubi (1.12.0) ffi (1.17.1-java) @@ -213,14 +213,14 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby-debug-base (0.11.0-java) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) spoon (0.0.6) ffi @@ -275,7 +275,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/jruby_9.3_rails6_postgres_sidekiq.gemfile b/gemfiles/jruby_9.3_rails6_postgres_sidekiq.gemfile index 47442328ae4..21fa518a17a 100644 --- a/gemfiles/jruby_9.3_rails6_postgres_sidekiq.gemfile +++ b/gemfiles/jruby_9.3_rails6_postgres_sidekiq.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.3_rails6_postgres_sidekiq.gemfile.lock b/gemfiles/jruby_9.3_rails6_postgres_sidekiq.gemfile.lock index 9664bf1fc33..c0f71226cd9 100644 --- a/gemfiles/jruby_9.3_rails6_postgres_sidekiq.gemfile.lock +++ b/gemfiles/jruby_9.3_rails6_postgres_sidekiq.gemfile.lock @@ -85,7 +85,7 @@ GEM datadog-ruby_core_source (3.3.7) date (3.3.3-java) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) erubi (1.12.0) ffi (1.17.1-java) @@ -202,14 +202,14 @@ GEM connection_pool (>= 2.2.5, < 3) rack (~> 2.0) redis (>= 4.5.0, < 5) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) spoon (0.0.6) ffi @@ -263,7 +263,7 @@ DEPENDENCIES rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) sidekiq - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/jruby_9.3_rails6_semantic_logger.gemfile b/gemfiles/jruby_9.3_rails6_semantic_logger.gemfile index c9de9356354..bb90cb22384 100644 --- a/gemfiles/jruby_9.3_rails6_semantic_logger.gemfile +++ b/gemfiles/jruby_9.3_rails6_semantic_logger.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.3_rails6_semantic_logger.gemfile.lock b/gemfiles/jruby_9.3_rails6_semantic_logger.gemfile.lock index c377e38a1c0..59b3839e83e 100644 --- a/gemfiles/jruby_9.3_rails6_semantic_logger.gemfile.lock +++ b/gemfiles/jruby_9.3_rails6_semantic_logger.gemfile.lock @@ -84,7 +84,7 @@ GEM datadog-ruby_core_source (3.3.7) date (3.3.3-java) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) erubi (1.12.0) ffi (1.17.1-java) @@ -195,14 +195,14 @@ GEM ruby-debug-base (0.11.0-java) semantic_logger (4.12.0) concurrent-ruby (~> 1.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) spoon (0.0.6) ffi @@ -254,7 +254,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/jruby_9.3_rails_old_redis.gemfile b/gemfiles/jruby_9.3_rails_old_redis.gemfile index a839e79b61f..18a58fc4601 100644 --- a/gemfiles/jruby_9.3_rails_old_redis.gemfile +++ b/gemfiles/jruby_9.3_rails_old_redis.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.3_redis_3.gemfile b/gemfiles/jruby_9.3_redis_3.gemfile index 5f179afa342..fa30e2888ce 100644 --- a/gemfiles/jruby_9.3_redis_3.gemfile +++ b/gemfiles/jruby_9.3_redis_3.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.3_redis_3.gemfile.lock b/gemfiles/jruby_9.3_redis_3.gemfile.lock index 0c659204a7f..6f46b64b4de 100644 --- a/gemfiles/jruby_9.3_redis_3.gemfile.lock +++ b/gemfiles/jruby_9.3_redis_3.gemfile.lock @@ -21,7 +21,7 @@ GEM rexml datadog-ruby_core_source (3.3.7) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) ffi (1.17.1-java) hashdiff (1.0.1) @@ -68,14 +68,14 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby-debug-base (0.11.0-java) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) spoon (0.0.6) ffi @@ -109,7 +109,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/jruby_9.3_redis_4.gemfile b/gemfiles/jruby_9.3_redis_4.gemfile index e90a14494fb..bb7df1f0e11 100644 --- a/gemfiles/jruby_9.3_redis_4.gemfile +++ b/gemfiles/jruby_9.3_redis_4.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.3_redis_4.gemfile.lock b/gemfiles/jruby_9.3_redis_4.gemfile.lock index 3453a1cbbf5..837b3687a1d 100644 --- a/gemfiles/jruby_9.3_redis_4.gemfile.lock +++ b/gemfiles/jruby_9.3_redis_4.gemfile.lock @@ -21,7 +21,7 @@ GEM rexml datadog-ruby_core_source (3.3.7) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) ffi (1.17.1-java) hashdiff (1.0.1) @@ -68,14 +68,14 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby-debug-base (0.11.0-java) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) spoon (0.0.6) ffi @@ -109,7 +109,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/jruby_9.3_redis_5.gemfile b/gemfiles/jruby_9.3_redis_5.gemfile index b5824c32d8a..a9512e0cdd4 100644 --- a/gemfiles/jruby_9.3_redis_5.gemfile +++ b/gemfiles/jruby_9.3_redis_5.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.3_redis_5.gemfile.lock b/gemfiles/jruby_9.3_redis_5.gemfile.lock index 92757f668f1..36aa4788031 100644 --- a/gemfiles/jruby_9.3_redis_5.gemfile.lock +++ b/gemfiles/jruby_9.3_redis_5.gemfile.lock @@ -22,7 +22,7 @@ GEM rexml datadog-ruby_core_source (3.3.7) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) ffi (1.17.1-java) hashdiff (1.0.1) @@ -72,14 +72,14 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby-debug-base (0.11.0-java) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) spoon (0.0.6) ffi @@ -113,7 +113,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/jruby_9.3_relational_db.gemfile b/gemfiles/jruby_9.3_relational_db.gemfile index 8d0dc7e4ece..53f7a5aa7f9 100644 --- a/gemfiles/jruby_9.3_relational_db.gemfile +++ b/gemfiles/jruby_9.3_relational_db.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.3_relational_db.gemfile.lock b/gemfiles/jruby_9.3_relational_db.gemfile.lock index 904f26d7f48..07526512001 100644 --- a/gemfiles/jruby_9.3_relational_db.gemfile.lock +++ b/gemfiles/jruby_9.3_relational_db.gemfile.lock @@ -46,7 +46,7 @@ GEM activerecord (>= 3.0, < 8.0) delayed_job (>= 3.0, < 5) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) ffi (1.17.1-java) hashdiff (1.0.1) @@ -102,14 +102,14 @@ GEM ruby-debug-base (0.11.0-java) sequel (5.83.1) bigdecimal - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) spoon (0.0.6) ffi @@ -154,7 +154,7 @@ DEPENDENCIES rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) sequel - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/jruby_9.3_resque2_redis3.gemfile b/gemfiles/jruby_9.3_resque2_redis3.gemfile index 32902aed35c..800a6343ab7 100644 --- a/gemfiles/jruby_9.3_resque2_redis3.gemfile +++ b/gemfiles/jruby_9.3_resque2_redis3.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.3_resque2_redis3.gemfile.lock b/gemfiles/jruby_9.3_resque2_redis3.gemfile.lock index 2dcf785a788..c79b3a9e76b 100644 --- a/gemfiles/jruby_9.3_resque2_redis3.gemfile.lock +++ b/gemfiles/jruby_9.3_resque2_redis3.gemfile.lock @@ -21,7 +21,7 @@ GEM rexml datadog-ruby_core_source (3.3.7) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) ffi (1.17.1-java) hashdiff (1.0.1) @@ -83,14 +83,14 @@ GEM rspec-core (>= 2, < 4, != 2.12.0) ruby-debug-base (0.11.0-java) ruby2_keywords (0.0.5) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sinatra (3.0.5) mustermann (~> 3.0) @@ -131,7 +131,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/jruby_9.3_resque2_redis4.gemfile b/gemfiles/jruby_9.3_resque2_redis4.gemfile index ce2a99a113c..028f30b3eb1 100644 --- a/gemfiles/jruby_9.3_resque2_redis4.gemfile +++ b/gemfiles/jruby_9.3_resque2_redis4.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.3_resque2_redis4.gemfile.lock b/gemfiles/jruby_9.3_resque2_redis4.gemfile.lock index 852888c0fa6..6b10079e48f 100644 --- a/gemfiles/jruby_9.3_resque2_redis4.gemfile.lock +++ b/gemfiles/jruby_9.3_resque2_redis4.gemfile.lock @@ -21,7 +21,7 @@ GEM rexml datadog-ruby_core_source (3.3.7) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) ffi (1.17.1-java) hashdiff (1.0.1) @@ -83,14 +83,14 @@ GEM rspec-core (>= 2, < 4, != 2.12.0) ruby-debug-base (0.11.0-java) ruby2_keywords (0.0.5) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sinatra (3.0.5) mustermann (~> 3.0) @@ -131,7 +131,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/jruby_9.3_sinatra_2.gemfile b/gemfiles/jruby_9.3_sinatra_2.gemfile index 3c2eedb98ef..9962277bd25 100644 --- a/gemfiles/jruby_9.3_sinatra_2.gemfile +++ b/gemfiles/jruby_9.3_sinatra_2.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.3_sinatra_2.gemfile.lock b/gemfiles/jruby_9.3_sinatra_2.gemfile.lock index a91b024f025..90f9dbcef38 100644 --- a/gemfiles/jruby_9.3_sinatra_2.gemfile.lock +++ b/gemfiles/jruby_9.3_sinatra_2.gemfile.lock @@ -24,7 +24,7 @@ GEM rexml datadog-ruby_core_source (3.3.7) diff-lcs (1.5.1) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) ffi (1.17.1-java) hashdiff (1.1.0) @@ -81,14 +81,14 @@ GEM rspec-core (>= 2, < 4, != 2.12.0) ruby-debug-base (0.11.0-java) ruby2_keywords (0.0.5) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sinatra (2.2.4) mustermann (~> 2.0) @@ -129,7 +129,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sinatra (~> 2) warning (~> 1) diff --git a/gemfiles/jruby_9.3_sinatra_3.gemfile b/gemfiles/jruby_9.3_sinatra_3.gemfile index 1b6226e0f1d..319b7b699c6 100644 --- a/gemfiles/jruby_9.3_sinatra_3.gemfile +++ b/gemfiles/jruby_9.3_sinatra_3.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.3_sinatra_3.gemfile.lock b/gemfiles/jruby_9.3_sinatra_3.gemfile.lock index 51215c8df8c..a89a3f4e41c 100644 --- a/gemfiles/jruby_9.3_sinatra_3.gemfile.lock +++ b/gemfiles/jruby_9.3_sinatra_3.gemfile.lock @@ -25,7 +25,7 @@ GEM rexml datadog-ruby_core_source (3.3.7) diff-lcs (1.5.1) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) ffi (1.17.1-java) hashdiff (1.1.0) @@ -83,14 +83,14 @@ GEM rspec-core (>= 2, < 4, != 2.12.0) ruby-debug-base (0.11.0-java) ruby2_keywords (0.0.5) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sinatra (3.2.0) mustermann (~> 3.0) @@ -131,7 +131,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sinatra (~> 3) warning (~> 1) diff --git a/gemfiles/jruby_9.3_stripe_10.gemfile b/gemfiles/jruby_9.3_stripe_10.gemfile index 2ab238b25d4..3b83bb8a677 100644 --- a/gemfiles/jruby_9.3_stripe_10.gemfile +++ b/gemfiles/jruby_9.3_stripe_10.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.3_stripe_10.gemfile.lock b/gemfiles/jruby_9.3_stripe_10.gemfile.lock index f8c15c4bc98..e4d4dca8a51 100644 --- a/gemfiles/jruby_9.3_stripe_10.gemfile.lock +++ b/gemfiles/jruby_9.3_stripe_10.gemfile.lock @@ -71,14 +71,14 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby-debug-base (0.11.0-java) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) spoon (0.0.6) ffi @@ -112,7 +112,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) stripe (~> 10) warning (~> 1) diff --git a/gemfiles/jruby_9.3_stripe_11.gemfile b/gemfiles/jruby_9.3_stripe_11.gemfile index 0ce879b28e4..5bc3959e4e9 100644 --- a/gemfiles/jruby_9.3_stripe_11.gemfile +++ b/gemfiles/jruby_9.3_stripe_11.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.3_stripe_11.gemfile.lock b/gemfiles/jruby_9.3_stripe_11.gemfile.lock index 521548836e1..b0fa5269d7c 100644 --- a/gemfiles/jruby_9.3_stripe_11.gemfile.lock +++ b/gemfiles/jruby_9.3_stripe_11.gemfile.lock @@ -71,14 +71,14 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby-debug-base (0.11.0-java) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) spoon (0.0.6) ffi @@ -112,7 +112,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) stripe (~> 11) warning (~> 1) diff --git a/gemfiles/jruby_9.3_stripe_12.gemfile b/gemfiles/jruby_9.3_stripe_12.gemfile index 37742d718d0..244048bbac2 100644 --- a/gemfiles/jruby_9.3_stripe_12.gemfile +++ b/gemfiles/jruby_9.3_stripe_12.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.3_stripe_12.gemfile.lock b/gemfiles/jruby_9.3_stripe_12.gemfile.lock index 1dcdf1af90e..48dde77505f 100644 --- a/gemfiles/jruby_9.3_stripe_12.gemfile.lock +++ b/gemfiles/jruby_9.3_stripe_12.gemfile.lock @@ -71,14 +71,14 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby-debug-base (0.11.0-java) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) spoon (0.0.6) ffi @@ -112,7 +112,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) stripe (~> 12) warning (~> 1) diff --git a/gemfiles/jruby_9.3_stripe_7.gemfile b/gemfiles/jruby_9.3_stripe_7.gemfile index b57ca37efcc..d9467c8a98f 100644 --- a/gemfiles/jruby_9.3_stripe_7.gemfile +++ b/gemfiles/jruby_9.3_stripe_7.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.3_stripe_7.gemfile.lock b/gemfiles/jruby_9.3_stripe_7.gemfile.lock index 4e0d4932a98..8d10d78bc09 100644 --- a/gemfiles/jruby_9.3_stripe_7.gemfile.lock +++ b/gemfiles/jruby_9.3_stripe_7.gemfile.lock @@ -71,14 +71,14 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby-debug-base (0.11.0-java) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) spoon (0.0.6) ffi @@ -112,7 +112,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) stripe (~> 7) warning (~> 1) diff --git a/gemfiles/jruby_9.3_stripe_8.gemfile b/gemfiles/jruby_9.3_stripe_8.gemfile index 4e5f5f74408..026bf9f26f0 100644 --- a/gemfiles/jruby_9.3_stripe_8.gemfile +++ b/gemfiles/jruby_9.3_stripe_8.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.3_stripe_8.gemfile.lock b/gemfiles/jruby_9.3_stripe_8.gemfile.lock index f4bdf4eb587..26417a8bd22 100644 --- a/gemfiles/jruby_9.3_stripe_8.gemfile.lock +++ b/gemfiles/jruby_9.3_stripe_8.gemfile.lock @@ -71,14 +71,14 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby-debug-base (0.11.0-java) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) spoon (0.0.6) ffi @@ -112,7 +112,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) stripe (~> 8) warning (~> 1) diff --git a/gemfiles/jruby_9.3_stripe_9.gemfile b/gemfiles/jruby_9.3_stripe_9.gemfile index cf79371164b..15005def40d 100644 --- a/gemfiles/jruby_9.3_stripe_9.gemfile +++ b/gemfiles/jruby_9.3_stripe_9.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.3_stripe_9.gemfile.lock b/gemfiles/jruby_9.3_stripe_9.gemfile.lock index 26f5914a7e4..e467ed2f3d3 100644 --- a/gemfiles/jruby_9.3_stripe_9.gemfile.lock +++ b/gemfiles/jruby_9.3_stripe_9.gemfile.lock @@ -71,14 +71,14 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby-debug-base (0.11.0-java) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) spoon (0.0.6) ffi @@ -112,7 +112,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) stripe (~> 9) warning (~> 1) diff --git a/gemfiles/jruby_9.3_stripe_latest.gemfile b/gemfiles/jruby_9.3_stripe_latest.gemfile index 65b1abda99d..83782d08333 100644 --- a/gemfiles/jruby_9.3_stripe_latest.gemfile +++ b/gemfiles/jruby_9.3_stripe_latest.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.3_stripe_latest.gemfile.lock b/gemfiles/jruby_9.3_stripe_latest.gemfile.lock index b86db5c8601..0bf6e8d3694 100644 --- a/gemfiles/jruby_9.3_stripe_latest.gemfile.lock +++ b/gemfiles/jruby_9.3_stripe_latest.gemfile.lock @@ -70,7 +70,7 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby-debug-base (0.11.0-java) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) @@ -110,7 +110,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) stripe warning (~> 1) diff --git a/gemfiles/jruby_9.3_stripe_min.gemfile b/gemfiles/jruby_9.3_stripe_min.gemfile index 10309f0512e..6d2400337b7 100644 --- a/gemfiles/jruby_9.3_stripe_min.gemfile +++ b/gemfiles/jruby_9.3_stripe_min.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.3_stripe_min.gemfile.lock b/gemfiles/jruby_9.3_stripe_min.gemfile.lock index 9fafa3472e3..3bc2c008636 100644 --- a/gemfiles/jruby_9.3_stripe_min.gemfile.lock +++ b/gemfiles/jruby_9.3_stripe_min.gemfile.lock @@ -70,7 +70,7 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby-debug-base (0.11.0-java) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) @@ -110,7 +110,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) stripe (= 5.15.0) warning (~> 1) diff --git a/gemfiles/jruby_9.4_activesupport.gemfile b/gemfiles/jruby_9.4_activesupport.gemfile index 99c35071501..e50fb9760f1 100644 --- a/gemfiles/jruby_9.4_activesupport.gemfile +++ b/gemfiles/jruby_9.4_activesupport.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.4_activesupport.gemfile.lock b/gemfiles/jruby_9.4_activesupport.gemfile.lock index 3ed54f9f1b0..f84e053cf6a 100644 --- a/gemfiles/jruby_9.4_activesupport.gemfile.lock +++ b/gemfiles/jruby_9.4_activesupport.gemfile.lock @@ -52,7 +52,7 @@ GEM diff-lcs (1.5.0) digest-crc (0.6.5) rake (>= 12.0.0, < 14.0.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) dry-core (1.0.1) concurrent-ruby (~> 1.0) @@ -172,14 +172,14 @@ GEM ruby-kafka (1.5.0) digest-crc ruby2_keywords (0.0.5) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) spoon (0.0.6) ffi @@ -225,7 +225,7 @@ DEPENDENCIES rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) ruby-kafka (>= 0.7.10) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/jruby_9.4_aws.gemfile b/gemfiles/jruby_9.4_aws.gemfile index 14f7eb86205..890913cce16 100644 --- a/gemfiles/jruby_9.4_aws.gemfile +++ b/gemfiles/jruby_9.4_aws.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.4_aws.gemfile.lock b/gemfiles/jruby_9.4_aws.gemfile.lock index 5ecdd5b172d..fcf5182720e 100644 --- a/gemfiles/jruby_9.4_aws.gemfile.lock +++ b/gemfiles/jruby_9.4_aws.gemfile.lock @@ -1442,7 +1442,7 @@ GEM rexml datadog-ruby_core_source (3.3.7) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.0) ffi (1.17.1-java) hashdiff (1.0.1) @@ -1493,14 +1493,14 @@ GEM aws-sdk-core (>= 2) concurrent-ruby thor - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) spoon (0.0.6) ffi @@ -1537,7 +1537,7 @@ DEPENDENCIES rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) shoryuken - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/jruby_9.4_contrib.gemfile b/gemfiles/jruby_9.4_contrib.gemfile index 7e150fe4271..7c0db243407 100644 --- a/gemfiles/jruby_9.4_contrib.gemfile +++ b/gemfiles/jruby_9.4_contrib.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.4_contrib.gemfile.lock b/gemfiles/jruby_9.4_contrib.gemfile.lock index b9599f9dc24..e698dd05c95 100644 --- a/gemfiles/jruby_9.4_contrib.gemfile.lock +++ b/gemfiles/jruby_9.4_contrib.gemfile.lock @@ -28,7 +28,7 @@ GEM dalli (3.2.3) datadog-ruby_core_source (3.3.7) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.5.0) ffi (1.17.1-java) hashdiff (1.0.1) @@ -109,14 +109,14 @@ GEM rack (>= 2.2.4) redis-client (>= 0.14.0) sigdump (0.2.4) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sinatra (3.0.5) mustermann (~> 3.0) @@ -174,7 +174,7 @@ DEPENDENCIES rspec_junit_formatter (>= 0.5.1) semantic_logger (~> 4.0) sidekiq (~> 7) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sneakers (>= 2.12.0) sucker_punch diff --git a/gemfiles/jruby_9.4_contrib_old.gemfile b/gemfiles/jruby_9.4_contrib_old.gemfile index c3776718de8..5b66b061bff 100644 --- a/gemfiles/jruby_9.4_contrib_old.gemfile +++ b/gemfiles/jruby_9.4_contrib_old.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.4_contrib_old.gemfile.lock b/gemfiles/jruby_9.4_contrib_old.gemfile.lock index a5eb7712a50..9fa398e5b85 100644 --- a/gemfiles/jruby_9.4_contrib_old.gemfile.lock +++ b/gemfiles/jruby_9.4_contrib_old.gemfile.lock @@ -22,7 +22,7 @@ GEM dalli (2.7.11) datadog-ruby_core_source (3.3.7) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.5.0) faraday (0.17.6) multipart-post (>= 1.2, < 3) @@ -80,14 +80,14 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby-debug-base (0.11.0-java) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) spoon (0.0.6) ffi @@ -125,7 +125,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/jruby_9.4_core_old.gemfile b/gemfiles/jruby_9.4_core_old.gemfile index 2cbf46d1357..1a6d2aba6ed 100644 --- a/gemfiles/jruby_9.4_core_old.gemfile +++ b/gemfiles/jruby_9.4_core_old.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.4_core_old.gemfile.lock b/gemfiles/jruby_9.4_core_old.gemfile.lock index 10d05123fd8..9124bb84e53 100644 --- a/gemfiles/jruby_9.4_core_old.gemfile.lock +++ b/gemfiles/jruby_9.4_core_old.gemfile.lock @@ -21,7 +21,7 @@ GEM rexml datadog-ruby_core_source (3.3.7) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (4.8.3) ffi (1.17.1-java) hashdiff (1.0.1) @@ -67,14 +67,14 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby-debug-base (0.11.0-java) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) spoon (0.0.6) ffi @@ -108,7 +108,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/jruby_9.4_elasticsearch_7.gemfile b/gemfiles/jruby_9.4_elasticsearch_7.gemfile index 4349a490284..318b1fcdd8e 100644 --- a/gemfiles/jruby_9.4_elasticsearch_7.gemfile +++ b/gemfiles/jruby_9.4_elasticsearch_7.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.4_elasticsearch_7.gemfile.lock b/gemfiles/jruby_9.4_elasticsearch_7.gemfile.lock index fd8baa1ddc0..3e37729435c 100644 --- a/gemfiles/jruby_9.4_elasticsearch_7.gemfile.lock +++ b/gemfiles/jruby_9.4_elasticsearch_7.gemfile.lock @@ -23,7 +23,7 @@ GEM rexml datadog-ruby_core_source (3.3.7) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) elasticsearch (7.17.11) elasticsearch-api (= 7.17.11) @@ -90,14 +90,14 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby-debug-base (0.11.0-java) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) spoon (0.0.6) ffi @@ -133,7 +133,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/jruby_9.4_elasticsearch_8.gemfile b/gemfiles/jruby_9.4_elasticsearch_8.gemfile index e457e2d23f5..b5935471d47 100644 --- a/gemfiles/jruby_9.4_elasticsearch_8.gemfile +++ b/gemfiles/jruby_9.4_elasticsearch_8.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.4_elasticsearch_8.gemfile.lock b/gemfiles/jruby_9.4_elasticsearch_8.gemfile.lock index 403fd0f3b46..d630ad121cf 100644 --- a/gemfiles/jruby_9.4_elasticsearch_8.gemfile.lock +++ b/gemfiles/jruby_9.4_elasticsearch_8.gemfile.lock @@ -22,7 +22,7 @@ GEM rexml datadog-ruby_core_source (3.3.7) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) elastic-transport (8.3.5) faraday (< 3) @@ -88,14 +88,14 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby-debug-base (0.11.0-java) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) spoon (0.0.6) ffi @@ -131,7 +131,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/jruby_9.4_elasticsearch_latest.gemfile b/gemfiles/jruby_9.4_elasticsearch_latest.gemfile index 68c48468192..5fe469b85d5 100644 --- a/gemfiles/jruby_9.4_elasticsearch_latest.gemfile +++ b/gemfiles/jruby_9.4_elasticsearch_latest.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.4_elasticsearch_latest.gemfile.lock b/gemfiles/jruby_9.4_elasticsearch_latest.gemfile.lock index 1ce368e870a..3dcb1a57ed6 100644 --- a/gemfiles/jruby_9.4_elasticsearch_latest.gemfile.lock +++ b/gemfiles/jruby_9.4_elasticsearch_latest.gemfile.lock @@ -89,7 +89,7 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby-debug-base (0.11.0-java) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) @@ -131,7 +131,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/jruby_9.4_graphql_1.13.gemfile b/gemfiles/jruby_9.4_graphql_1.13.gemfile index 1875fc96980..1e220466f01 100644 --- a/gemfiles/jruby_9.4_graphql_1.13.gemfile +++ b/gemfiles/jruby_9.4_graphql_1.13.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.4_graphql_1.13.gemfile.lock b/gemfiles/jruby_9.4_graphql_1.13.gemfile.lock index 1e163a96b9f..29f974c9d6c 100644 --- a/gemfiles/jruby_9.4_graphql_1.13.gemfile.lock +++ b/gemfiles/jruby_9.4_graphql_1.13.gemfile.lock @@ -85,7 +85,7 @@ GEM datadog-ruby_core_source (3.3.7) date (3.3.4-java) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) erubi (1.13.0) ffi (1.17.1-java) @@ -200,14 +200,14 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby-debug-base (0.11.0-java) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) spoon (0.0.6) ffi @@ -260,7 +260,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/jruby_9.4_graphql_2.0.gemfile b/gemfiles/jruby_9.4_graphql_2.0.gemfile index e729d469a9c..fe66f243b09 100644 --- a/gemfiles/jruby_9.4_graphql_2.0.gemfile +++ b/gemfiles/jruby_9.4_graphql_2.0.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.4_graphql_2.0.gemfile.lock b/gemfiles/jruby_9.4_graphql_2.0.gemfile.lock index c33a0026e42..890dfebc871 100644 --- a/gemfiles/jruby_9.4_graphql_2.0.gemfile.lock +++ b/gemfiles/jruby_9.4_graphql_2.0.gemfile.lock @@ -85,7 +85,7 @@ GEM datadog-ruby_core_source (3.3.7) date (3.3.4-java) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) erubi (1.13.0) ffi (1.17.1-java) @@ -200,14 +200,14 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby-debug-base (0.11.0-java) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) spoon (0.0.6) ffi @@ -260,7 +260,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/jruby_9.4_graphql_2.1.gemfile b/gemfiles/jruby_9.4_graphql_2.1.gemfile index 4c04f5baaa3..28a806a92bf 100644 --- a/gemfiles/jruby_9.4_graphql_2.1.gemfile +++ b/gemfiles/jruby_9.4_graphql_2.1.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.4_graphql_2.1.gemfile.lock b/gemfiles/jruby_9.4_graphql_2.1.gemfile.lock index 8efca7fea96..6687b16e2ea 100644 --- a/gemfiles/jruby_9.4_graphql_2.1.gemfile.lock +++ b/gemfiles/jruby_9.4_graphql_2.1.gemfile.lock @@ -85,7 +85,7 @@ GEM datadog-ruby_core_source (3.3.7) date (3.3.4-java) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) erubi (1.13.0) ffi (1.17.1-java) @@ -201,14 +201,14 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby-debug-base (0.11.0-java) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) spoon (0.0.6) ffi @@ -261,7 +261,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/jruby_9.4_graphql_2.2.gemfile b/gemfiles/jruby_9.4_graphql_2.2.gemfile index bb13661a6d8..e9fdef9fbfc 100644 --- a/gemfiles/jruby_9.4_graphql_2.2.gemfile +++ b/gemfiles/jruby_9.4_graphql_2.2.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.4_graphql_2.2.gemfile.lock b/gemfiles/jruby_9.4_graphql_2.2.gemfile.lock index c2e108cb476..fc158547d9b 100644 --- a/gemfiles/jruby_9.4_graphql_2.2.gemfile.lock +++ b/gemfiles/jruby_9.4_graphql_2.2.gemfile.lock @@ -85,7 +85,7 @@ GEM datadog-ruby_core_source (3.3.7) date (3.3.4-java) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) erubi (1.13.0) ffi (1.17.1-java) @@ -201,14 +201,14 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby-debug-base (0.11.0-java) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) spoon (0.0.6) ffi @@ -261,7 +261,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/jruby_9.4_graphql_2.3.gemfile b/gemfiles/jruby_9.4_graphql_2.3.gemfile index 58f77948803..00ebc9e95a8 100644 --- a/gemfiles/jruby_9.4_graphql_2.3.gemfile +++ b/gemfiles/jruby_9.4_graphql_2.3.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.4_graphql_2.3.gemfile.lock b/gemfiles/jruby_9.4_graphql_2.3.gemfile.lock index 073e39e6ace..a983e51b259 100644 --- a/gemfiles/jruby_9.4_graphql_2.3.gemfile.lock +++ b/gemfiles/jruby_9.4_graphql_2.3.gemfile.lock @@ -87,7 +87,7 @@ GEM datadog-ruby_core_source (3.3.7) date (3.3.4-java) diff-lcs (1.5.1) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) erubi (1.13.0) ffi (1.17.1-java) @@ -203,14 +203,14 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby-debug-base (0.11.0-java) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) spoon (0.0.6) ffi @@ -263,7 +263,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/jruby_9.4_http.gemfile b/gemfiles/jruby_9.4_http.gemfile index 33287df0391..0065a9cf976 100644 --- a/gemfiles/jruby_9.4_http.gemfile +++ b/gemfiles/jruby_9.4_http.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.4_http.gemfile.lock b/gemfiles/jruby_9.4_http.gemfile.lock index 469ace04f52..96f72636bae 100644 --- a/gemfiles/jruby_9.4_http.gemfile.lock +++ b/gemfiles/jruby_9.4_http.gemfile.lock @@ -21,7 +21,7 @@ GEM rexml datadog-ruby_core_source (3.3.7) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) domain_name (0.5.20190701) unf (>= 0.0.5, < 1.0.0) @@ -101,14 +101,14 @@ GEM rspec-core (>= 2, < 4, != 2.12.0) ruby-debug-base (0.11.0-java) ruby2_keywords (0.0.5) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) spoon (0.0.6) ffi @@ -151,7 +151,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) typhoeus warning (~> 1) diff --git a/gemfiles/jruby_9.4_opensearch_2.gemfile b/gemfiles/jruby_9.4_opensearch_2.gemfile index e3dd78c43c9..3eb754e42d3 100644 --- a/gemfiles/jruby_9.4_opensearch_2.gemfile +++ b/gemfiles/jruby_9.4_opensearch_2.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.4_opensearch_2.gemfile.lock b/gemfiles/jruby_9.4_opensearch_2.gemfile.lock index 9ebba407af7..8e04668cc81 100644 --- a/gemfiles/jruby_9.4_opensearch_2.gemfile.lock +++ b/gemfiles/jruby_9.4_opensearch_2.gemfile.lock @@ -22,7 +22,7 @@ GEM rexml datadog-ruby_core_source (3.3.7) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) faraday (2.12.2) faraday-net_http (>= 2.0, < 3.5) @@ -88,14 +88,14 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby-debug-base (0.11.0-java) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) spoon (0.0.6) ffi @@ -131,7 +131,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/jruby_9.4_opensearch_3.gemfile b/gemfiles/jruby_9.4_opensearch_3.gemfile index 0ea85b9ba48..ccbbcc0f3aa 100644 --- a/gemfiles/jruby_9.4_opensearch_3.gemfile +++ b/gemfiles/jruby_9.4_opensearch_3.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.4_opensearch_3.gemfile.lock b/gemfiles/jruby_9.4_opensearch_3.gemfile.lock index 22c10fda3bf..a50d7be2028 100644 --- a/gemfiles/jruby_9.4_opensearch_3.gemfile.lock +++ b/gemfiles/jruby_9.4_opensearch_3.gemfile.lock @@ -22,7 +22,7 @@ GEM rexml datadog-ruby_core_source (3.3.7) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) faraday (2.12.2) faraday-net_http (>= 2.0, < 3.5) @@ -83,14 +83,14 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby-debug-base (0.11.0-java) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) spoon (0.0.6) ffi @@ -126,7 +126,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/jruby_9.4_opensearch_latest.gemfile b/gemfiles/jruby_9.4_opensearch_latest.gemfile index 29a7d68cb28..30f6e1bc9f4 100644 --- a/gemfiles/jruby_9.4_opensearch_latest.gemfile +++ b/gemfiles/jruby_9.4_opensearch_latest.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.4_opensearch_latest.gemfile.lock b/gemfiles/jruby_9.4_opensearch_latest.gemfile.lock index a281f0cb0fa..e67af6201cd 100644 --- a/gemfiles/jruby_9.4_opensearch_latest.gemfile.lock +++ b/gemfiles/jruby_9.4_opensearch_latest.gemfile.lock @@ -84,7 +84,7 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby-debug-base (0.11.0-java) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) @@ -126,7 +126,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/jruby_9.4_rack_1.gemfile b/gemfiles/jruby_9.4_rack_1.gemfile index 312cffb51d9..0d6c2da2564 100644 --- a/gemfiles/jruby_9.4_rack_1.gemfile +++ b/gemfiles/jruby_9.4_rack_1.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.4_rack_1.gemfile.lock b/gemfiles/jruby_9.4_rack_1.gemfile.lock index 4569b3ebc0a..fc205265d9e 100644 --- a/gemfiles/jruby_9.4_rack_1.gemfile.lock +++ b/gemfiles/jruby_9.4_rack_1.gemfile.lock @@ -21,7 +21,7 @@ GEM rexml datadog-ruby_core_source (3.3.7) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) ffi (1.17.1-java) hashdiff (1.0.1) @@ -72,14 +72,14 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby-debug-base (0.11.0-java) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) spoon (0.0.6) ffi @@ -116,7 +116,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/jruby_9.4_rack_2.gemfile b/gemfiles/jruby_9.4_rack_2.gemfile index 55d8ebadb0e..27769fc1856 100644 --- a/gemfiles/jruby_9.4_rack_2.gemfile +++ b/gemfiles/jruby_9.4_rack_2.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.4_rack_2.gemfile.lock b/gemfiles/jruby_9.4_rack_2.gemfile.lock index ced5234ec8f..59fd3d6b518 100644 --- a/gemfiles/jruby_9.4_rack_2.gemfile.lock +++ b/gemfiles/jruby_9.4_rack_2.gemfile.lock @@ -21,7 +21,7 @@ GEM rexml datadog-ruby_core_source (3.3.7) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) ffi (1.17.1-java) hashdiff (1.0.1) @@ -72,14 +72,14 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby-debug-base (0.11.0-java) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) spoon (0.0.6) ffi @@ -116,7 +116,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/jruby_9.4_rack_3.gemfile b/gemfiles/jruby_9.4_rack_3.gemfile index ee218e298d4..971114fb6e4 100644 --- a/gemfiles/jruby_9.4_rack_3.gemfile +++ b/gemfiles/jruby_9.4_rack_3.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.4_rack_3.gemfile.lock b/gemfiles/jruby_9.4_rack_3.gemfile.lock index ef234610b59..cd855bd5d32 100644 --- a/gemfiles/jruby_9.4_rack_3.gemfile.lock +++ b/gemfiles/jruby_9.4_rack_3.gemfile.lock @@ -21,7 +21,7 @@ GEM rexml datadog-ruby_core_source (3.3.7) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) ffi (1.17.1-java) hashdiff (1.0.1) @@ -72,14 +72,14 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby-debug-base (0.11.0-java) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) spoon (0.0.6) ffi @@ -116,7 +116,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/jruby_9.4_rack_latest.gemfile b/gemfiles/jruby_9.4_rack_latest.gemfile index 9247fd70f37..006b9b2f2f3 100644 --- a/gemfiles/jruby_9.4_rack_latest.gemfile +++ b/gemfiles/jruby_9.4_rack_latest.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.4_rack_latest.gemfile.lock b/gemfiles/jruby_9.4_rack_latest.gemfile.lock index c1181080d03..655fc2e0e62 100644 --- a/gemfiles/jruby_9.4_rack_latest.gemfile.lock +++ b/gemfiles/jruby_9.4_rack_latest.gemfile.lock @@ -75,7 +75,7 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby-debug-base (0.11.0-java) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) @@ -118,7 +118,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/jruby_9.4_rails61_mysql2.gemfile b/gemfiles/jruby_9.4_rails61_mysql2.gemfile index 4fa906b1d43..a2c647a9453 100644 --- a/gemfiles/jruby_9.4_rails61_mysql2.gemfile +++ b/gemfiles/jruby_9.4_rails61_mysql2.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.4_rails61_mysql2.gemfile.lock b/gemfiles/jruby_9.4_rails61_mysql2.gemfile.lock index 6ac272814c8..b3ca3683082 100644 --- a/gemfiles/jruby_9.4_rails61_mysql2.gemfile.lock +++ b/gemfiles/jruby_9.4_rails61_mysql2.gemfile.lock @@ -92,7 +92,7 @@ GEM datadog-ruby_core_source (3.3.7) date (3.3.4-java) diff-lcs (1.5.1) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) erubi (1.13.0) ffi (1.17.1-java) @@ -207,14 +207,14 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby-debug-base (0.11.0-java) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) spoon (0.0.6) ffi @@ -268,7 +268,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/jruby_9.4_rails61_postgres.gemfile b/gemfiles/jruby_9.4_rails61_postgres.gemfile index 61353511a16..a7844f600e0 100644 --- a/gemfiles/jruby_9.4_rails61_postgres.gemfile +++ b/gemfiles/jruby_9.4_rails61_postgres.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.4_rails61_postgres.gemfile.lock b/gemfiles/jruby_9.4_rails61_postgres.gemfile.lock index ae6ee885859..ace31419a19 100644 --- a/gemfiles/jruby_9.4_rails61_postgres.gemfile.lock +++ b/gemfiles/jruby_9.4_rails61_postgres.gemfile.lock @@ -88,7 +88,7 @@ GEM datadog-ruby_core_source (3.3.7) date (3.3.3-java) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.5.0) erubi (1.12.0) ffi (1.17.1-java) @@ -200,14 +200,14 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby-debug-base (0.11.0-java) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) spoon (0.0.6) ffi @@ -260,7 +260,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/jruby_9.4_rails61_postgres_redis.gemfile b/gemfiles/jruby_9.4_rails61_postgres_redis.gemfile index 7d63415c047..388c5a7a806 100644 --- a/gemfiles/jruby_9.4_rails61_postgres_redis.gemfile +++ b/gemfiles/jruby_9.4_rails61_postgres_redis.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.4_rails61_postgres_redis.gemfile.lock b/gemfiles/jruby_9.4_rails61_postgres_redis.gemfile.lock index c207ac0ab38..17b1e02585d 100644 --- a/gemfiles/jruby_9.4_rails61_postgres_redis.gemfile.lock +++ b/gemfiles/jruby_9.4_rails61_postgres_redis.gemfile.lock @@ -88,7 +88,7 @@ GEM datadog-ruby_core_source (3.3.7) date (3.3.3-java) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.5.0) erubi (1.12.0) ffi (1.17.1-java) @@ -201,14 +201,14 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby-debug-base (0.11.0-java) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) spoon (0.0.6) ffi @@ -262,7 +262,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/jruby_9.4_rails61_postgres_sidekiq.gemfile b/gemfiles/jruby_9.4_rails61_postgres_sidekiq.gemfile index 6bf0f4e21ce..ff997aa4bf4 100644 --- a/gemfiles/jruby_9.4_rails61_postgres_sidekiq.gemfile +++ b/gemfiles/jruby_9.4_rails61_postgres_sidekiq.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.4_rails61_postgres_sidekiq.gemfile.lock b/gemfiles/jruby_9.4_rails61_postgres_sidekiq.gemfile.lock index 5cd283351a8..542fd9644cc 100644 --- a/gemfiles/jruby_9.4_rails61_postgres_sidekiq.gemfile.lock +++ b/gemfiles/jruby_9.4_rails61_postgres_sidekiq.gemfile.lock @@ -89,7 +89,7 @@ GEM datadog-ruby_core_source (3.3.7) date (3.3.3-java) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.5.0) erubi (1.12.0) ffi (1.17.1-java) @@ -214,14 +214,14 @@ GEM connection_pool (>= 2.3.0) rack (>= 2.2.4) redis-client (>= 0.11.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) spoon (0.0.6) ffi @@ -276,7 +276,7 @@ DEPENDENCIES rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) sidekiq (>= 6.1.2) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/jruby_9.4_rails61_semantic_logger.gemfile b/gemfiles/jruby_9.4_rails61_semantic_logger.gemfile index b8cddcd6532..16525f8f13a 100644 --- a/gemfiles/jruby_9.4_rails61_semantic_logger.gemfile +++ b/gemfiles/jruby_9.4_rails61_semantic_logger.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.4_rails61_semantic_logger.gemfile.lock b/gemfiles/jruby_9.4_rails61_semantic_logger.gemfile.lock index 376068b2799..e23101f8f95 100644 --- a/gemfiles/jruby_9.4_rails61_semantic_logger.gemfile.lock +++ b/gemfiles/jruby_9.4_rails61_semantic_logger.gemfile.lock @@ -88,7 +88,7 @@ GEM datadog-ruby_core_source (3.3.7) date (3.3.3-java) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.5.0) erubi (1.12.0) ffi (1.17.1-java) @@ -199,14 +199,14 @@ GEM ruby-debug-base (0.11.0-java) semantic_logger (4.12.0) concurrent-ruby (~> 1.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) spoon (0.0.6) ffi @@ -259,7 +259,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/jruby_9.4_rails_old_redis.gemfile b/gemfiles/jruby_9.4_rails_old_redis.gemfile index bf5ecdeb8a5..086c30b4798 100644 --- a/gemfiles/jruby_9.4_rails_old_redis.gemfile +++ b/gemfiles/jruby_9.4_rails_old_redis.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.4_redis_3.gemfile b/gemfiles/jruby_9.4_redis_3.gemfile index 994f6ab0975..0ea5060b87c 100644 --- a/gemfiles/jruby_9.4_redis_3.gemfile +++ b/gemfiles/jruby_9.4_redis_3.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.4_redis_3.gemfile.lock b/gemfiles/jruby_9.4_redis_3.gemfile.lock index 1fd865d4d9a..0ae8266ca20 100644 --- a/gemfiles/jruby_9.4_redis_3.gemfile.lock +++ b/gemfiles/jruby_9.4_redis_3.gemfile.lock @@ -21,7 +21,7 @@ GEM rexml datadog-ruby_core_source (3.3.7) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.5.0) ffi (1.17.1-java) hashdiff (1.0.1) @@ -68,14 +68,14 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby-debug-base (0.11.0-java) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) spoon (0.0.6) ffi @@ -110,7 +110,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/jruby_9.4_redis_4.gemfile b/gemfiles/jruby_9.4_redis_4.gemfile index f0cc3cbddec..c3906cb1830 100644 --- a/gemfiles/jruby_9.4_redis_4.gemfile +++ b/gemfiles/jruby_9.4_redis_4.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.4_redis_4.gemfile.lock b/gemfiles/jruby_9.4_redis_4.gemfile.lock index 2bcce7fec1f..9e8b2535ca5 100644 --- a/gemfiles/jruby_9.4_redis_4.gemfile.lock +++ b/gemfiles/jruby_9.4_redis_4.gemfile.lock @@ -21,7 +21,7 @@ GEM rexml datadog-ruby_core_source (3.3.7) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.5.0) ffi (1.17.1-java) hashdiff (1.0.1) @@ -68,14 +68,14 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby-debug-base (0.11.0-java) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) spoon (0.0.6) ffi @@ -110,7 +110,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/jruby_9.4_redis_5.gemfile b/gemfiles/jruby_9.4_redis_5.gemfile index 4e349bcfee7..0a99b943e7b 100644 --- a/gemfiles/jruby_9.4_redis_5.gemfile +++ b/gemfiles/jruby_9.4_redis_5.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.4_redis_5.gemfile.lock b/gemfiles/jruby_9.4_redis_5.gemfile.lock index 57639c34265..8aba4f9329a 100644 --- a/gemfiles/jruby_9.4_redis_5.gemfile.lock +++ b/gemfiles/jruby_9.4_redis_5.gemfile.lock @@ -22,7 +22,7 @@ GEM rexml datadog-ruby_core_source (3.3.7) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.5.0) ffi (1.17.1-java) hashdiff (1.0.1) @@ -72,14 +72,14 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby-debug-base (0.11.0-java) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) spoon (0.0.6) ffi @@ -114,7 +114,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/jruby_9.4_relational_db.gemfile b/gemfiles/jruby_9.4_relational_db.gemfile index 6a06fb950ec..07ced9c8bd7 100644 --- a/gemfiles/jruby_9.4_relational_db.gemfile +++ b/gemfiles/jruby_9.4_relational_db.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.4_relational_db.gemfile.lock b/gemfiles/jruby_9.4_relational_db.gemfile.lock index 6c16f9b61ac..c3426e0ca78 100644 --- a/gemfiles/jruby_9.4_relational_db.gemfile.lock +++ b/gemfiles/jruby_9.4_relational_db.gemfile.lock @@ -48,7 +48,7 @@ GEM activerecord (>= 3.0, < 8.0) delayed_job (>= 3.0, < 5) diff-lcs (1.5.1) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) ffi (1.17.1-java) hashdiff (1.1.0) @@ -105,14 +105,14 @@ GEM ruby-debug-base (0.11.0-java) sequel (5.83.1) bigdecimal - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) spoon (0.0.6) ffi @@ -157,7 +157,7 @@ DEPENDENCIES rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) sequel - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/jruby_9.4_resque2_redis3.gemfile b/gemfiles/jruby_9.4_resque2_redis3.gemfile index 860be6b7468..012f418103b 100644 --- a/gemfiles/jruby_9.4_resque2_redis3.gemfile +++ b/gemfiles/jruby_9.4_resque2_redis3.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.4_resque2_redis3.gemfile.lock b/gemfiles/jruby_9.4_resque2_redis3.gemfile.lock index 7d2bc7f0e82..86323358761 100644 --- a/gemfiles/jruby_9.4_resque2_redis3.gemfile.lock +++ b/gemfiles/jruby_9.4_resque2_redis3.gemfile.lock @@ -21,7 +21,7 @@ GEM rexml datadog-ruby_core_source (3.3.7) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.5.0) ffi (1.17.1-java) hashdiff (1.0.1) @@ -83,14 +83,14 @@ GEM rspec-core (>= 2, < 4, != 2.12.0) ruby-debug-base (0.11.0-java) ruby2_keywords (0.0.5) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sinatra (3.0.5) mustermann (~> 3.0) @@ -132,7 +132,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/jruby_9.4_resque2_redis4.gemfile b/gemfiles/jruby_9.4_resque2_redis4.gemfile index 9e810eb56a3..c5888fe030d 100644 --- a/gemfiles/jruby_9.4_resque2_redis4.gemfile +++ b/gemfiles/jruby_9.4_resque2_redis4.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.4_resque2_redis4.gemfile.lock b/gemfiles/jruby_9.4_resque2_redis4.gemfile.lock index 13ae36c00d1..26da1d4db43 100644 --- a/gemfiles/jruby_9.4_resque2_redis4.gemfile.lock +++ b/gemfiles/jruby_9.4_resque2_redis4.gemfile.lock @@ -22,7 +22,7 @@ GEM rexml datadog-ruby_core_source (3.3.7) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.5.0) ffi (1.17.1-java) hashdiff (1.0.1) @@ -87,14 +87,14 @@ GEM rspec-core (>= 2, < 4, != 2.12.0) ruby-debug-base (0.11.0-java) ruby2_keywords (0.0.5) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sinatra (3.0.5) mustermann (~> 3.0) @@ -136,7 +136,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/jruby_9.4_sinatra_2.gemfile b/gemfiles/jruby_9.4_sinatra_2.gemfile index 4a7127fdf2e..104319142ef 100644 --- a/gemfiles/jruby_9.4_sinatra_2.gemfile +++ b/gemfiles/jruby_9.4_sinatra_2.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.4_sinatra_2.gemfile.lock b/gemfiles/jruby_9.4_sinatra_2.gemfile.lock index 67e0828dbc2..bdedc3d7b52 100644 --- a/gemfiles/jruby_9.4_sinatra_2.gemfile.lock +++ b/gemfiles/jruby_9.4_sinatra_2.gemfile.lock @@ -24,7 +24,7 @@ GEM rexml datadog-ruby_core_source (3.3.7) diff-lcs (1.5.1) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) ffi (1.17.1-java) hashdiff (1.1.0) @@ -81,14 +81,14 @@ GEM rspec-core (>= 2, < 4, != 2.12.0) ruby-debug-base (0.11.0-java) ruby2_keywords (0.0.5) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sinatra (2.2.4) mustermann (~> 2.0) @@ -130,7 +130,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sinatra (~> 2) warning (~> 1) diff --git a/gemfiles/jruby_9.4_sinatra_3.gemfile b/gemfiles/jruby_9.4_sinatra_3.gemfile index b205546e327..de9e81270dc 100644 --- a/gemfiles/jruby_9.4_sinatra_3.gemfile +++ b/gemfiles/jruby_9.4_sinatra_3.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.4_sinatra_3.gemfile.lock b/gemfiles/jruby_9.4_sinatra_3.gemfile.lock index 3af128dd3c4..711dc7c6e48 100644 --- a/gemfiles/jruby_9.4_sinatra_3.gemfile.lock +++ b/gemfiles/jruby_9.4_sinatra_3.gemfile.lock @@ -25,7 +25,7 @@ GEM rexml datadog-ruby_core_source (3.3.7) diff-lcs (1.5.1) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) ffi (1.17.1-java) hashdiff (1.1.0) @@ -83,14 +83,14 @@ GEM rspec-core (>= 2, < 4, != 2.12.0) ruby-debug-base (0.11.0-java) ruby2_keywords (0.0.5) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sinatra (3.2.0) mustermann (~> 3.0) @@ -132,7 +132,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sinatra (~> 3) warning (~> 1) diff --git a/gemfiles/jruby_9.4_sinatra_4.gemfile b/gemfiles/jruby_9.4_sinatra_4.gemfile index 33e9e19653e..b89293705f8 100644 --- a/gemfiles/jruby_9.4_sinatra_4.gemfile +++ b/gemfiles/jruby_9.4_sinatra_4.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.4_sinatra_4.gemfile.lock b/gemfiles/jruby_9.4_sinatra_4.gemfile.lock index e1363e13c52..ec4780c557a 100644 --- a/gemfiles/jruby_9.4_sinatra_4.gemfile.lock +++ b/gemfiles/jruby_9.4_sinatra_4.gemfile.lock @@ -25,7 +25,7 @@ GEM rexml datadog-ruby_core_source (3.3.7) diff-lcs (1.5.1) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) ffi (1.17.1-java) hashdiff (1.1.0) @@ -85,14 +85,14 @@ GEM rspec-core (>= 2, < 4, != 2.12.0) ruby-debug-base (0.11.0-java) ruby2_keywords (0.0.5) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sinatra (4.0.0) mustermann (~> 3.0) @@ -135,7 +135,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sinatra (~> 4) warning (~> 1) diff --git a/gemfiles/jruby_9.4_stripe_10.gemfile b/gemfiles/jruby_9.4_stripe_10.gemfile index b8d4fc3298d..2abe51a04da 100644 --- a/gemfiles/jruby_9.4_stripe_10.gemfile +++ b/gemfiles/jruby_9.4_stripe_10.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.4_stripe_10.gemfile.lock b/gemfiles/jruby_9.4_stripe_10.gemfile.lock index 23f90427a49..f5898f6aba6 100644 --- a/gemfiles/jruby_9.4_stripe_10.gemfile.lock +++ b/gemfiles/jruby_9.4_stripe_10.gemfile.lock @@ -71,14 +71,14 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby-debug-base (0.11.0-java) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) spoon (0.0.6) ffi @@ -113,7 +113,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) stripe (~> 10) warning (~> 1) diff --git a/gemfiles/jruby_9.4_stripe_11.gemfile b/gemfiles/jruby_9.4_stripe_11.gemfile index 5fba798c62c..b95309c0d72 100644 --- a/gemfiles/jruby_9.4_stripe_11.gemfile +++ b/gemfiles/jruby_9.4_stripe_11.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.4_stripe_11.gemfile.lock b/gemfiles/jruby_9.4_stripe_11.gemfile.lock index c6add26ee57..25d971b706b 100644 --- a/gemfiles/jruby_9.4_stripe_11.gemfile.lock +++ b/gemfiles/jruby_9.4_stripe_11.gemfile.lock @@ -71,14 +71,14 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby-debug-base (0.11.0-java) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) spoon (0.0.6) ffi @@ -113,7 +113,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) stripe (~> 11) warning (~> 1) diff --git a/gemfiles/jruby_9.4_stripe_12.gemfile b/gemfiles/jruby_9.4_stripe_12.gemfile index 2fd79b90f65..4c5641d0345 100644 --- a/gemfiles/jruby_9.4_stripe_12.gemfile +++ b/gemfiles/jruby_9.4_stripe_12.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.4_stripe_12.gemfile.lock b/gemfiles/jruby_9.4_stripe_12.gemfile.lock index 0796b1799e0..31eaca0f9e8 100644 --- a/gemfiles/jruby_9.4_stripe_12.gemfile.lock +++ b/gemfiles/jruby_9.4_stripe_12.gemfile.lock @@ -71,14 +71,14 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby-debug-base (0.11.0-java) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) spoon (0.0.6) ffi @@ -113,7 +113,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) stripe (~> 12) warning (~> 1) diff --git a/gemfiles/jruby_9.4_stripe_7.gemfile b/gemfiles/jruby_9.4_stripe_7.gemfile index aa180405431..5a12c876e09 100644 --- a/gemfiles/jruby_9.4_stripe_7.gemfile +++ b/gemfiles/jruby_9.4_stripe_7.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.4_stripe_7.gemfile.lock b/gemfiles/jruby_9.4_stripe_7.gemfile.lock index a8b3a61391e..660b61de247 100644 --- a/gemfiles/jruby_9.4_stripe_7.gemfile.lock +++ b/gemfiles/jruby_9.4_stripe_7.gemfile.lock @@ -71,14 +71,14 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby-debug-base (0.11.0-java) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) spoon (0.0.6) ffi @@ -113,7 +113,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) stripe (~> 7) warning (~> 1) diff --git a/gemfiles/jruby_9.4_stripe_8.gemfile b/gemfiles/jruby_9.4_stripe_8.gemfile index e9693f25f87..5439ba7468d 100644 --- a/gemfiles/jruby_9.4_stripe_8.gemfile +++ b/gemfiles/jruby_9.4_stripe_8.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.4_stripe_8.gemfile.lock b/gemfiles/jruby_9.4_stripe_8.gemfile.lock index bf6c766abb2..d717e5f90c3 100644 --- a/gemfiles/jruby_9.4_stripe_8.gemfile.lock +++ b/gemfiles/jruby_9.4_stripe_8.gemfile.lock @@ -71,14 +71,14 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby-debug-base (0.11.0-java) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) spoon (0.0.6) ffi @@ -113,7 +113,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) stripe (~> 8) warning (~> 1) diff --git a/gemfiles/jruby_9.4_stripe_9.gemfile b/gemfiles/jruby_9.4_stripe_9.gemfile index fa9b3217d0a..6748ee1b1c0 100644 --- a/gemfiles/jruby_9.4_stripe_9.gemfile +++ b/gemfiles/jruby_9.4_stripe_9.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.4_stripe_9.gemfile.lock b/gemfiles/jruby_9.4_stripe_9.gemfile.lock index 3835f102343..22151522898 100644 --- a/gemfiles/jruby_9.4_stripe_9.gemfile.lock +++ b/gemfiles/jruby_9.4_stripe_9.gemfile.lock @@ -71,14 +71,14 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby-debug-base (0.11.0-java) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) spoon (0.0.6) ffi @@ -113,7 +113,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) stripe (~> 9) warning (~> 1) diff --git a/gemfiles/jruby_9.4_stripe_latest.gemfile b/gemfiles/jruby_9.4_stripe_latest.gemfile index 3ed8a404e44..76a3ce8994d 100644 --- a/gemfiles/jruby_9.4_stripe_latest.gemfile +++ b/gemfiles/jruby_9.4_stripe_latest.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.4_stripe_latest.gemfile.lock b/gemfiles/jruby_9.4_stripe_latest.gemfile.lock index b9ee5eb6223..bec8e91a0f3 100644 --- a/gemfiles/jruby_9.4_stripe_latest.gemfile.lock +++ b/gemfiles/jruby_9.4_stripe_latest.gemfile.lock @@ -70,7 +70,7 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby-debug-base (0.11.0-java) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) @@ -111,7 +111,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) stripe warning (~> 1) diff --git a/gemfiles/jruby_9.4_stripe_min.gemfile b/gemfiles/jruby_9.4_stripe_min.gemfile index c44469b901b..fd66cec8481 100644 --- a/gemfiles/jruby_9.4_stripe_min.gemfile +++ b/gemfiles/jruby_9.4_stripe_min.gemfile @@ -19,7 +19,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/jruby_9.4_stripe_min.gemfile.lock b/gemfiles/jruby_9.4_stripe_min.gemfile.lock index d5010e9430e..74359ad8d9a 100644 --- a/gemfiles/jruby_9.4_stripe_min.gemfile.lock +++ b/gemfiles/jruby_9.4_stripe_min.gemfile.lock @@ -70,7 +70,7 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby-debug-base (0.11.0-java) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) @@ -111,7 +111,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) stripe (= 5.15.0) warning (~> 1) diff --git a/gemfiles/ruby_2.5_activesupport.gemfile b/gemfiles/ruby_2.5_activesupport.gemfile index 1e0559a2978..25cb368f1da 100644 --- a/gemfiles/ruby_2.5_activesupport.gemfile +++ b/gemfiles/ruby_2.5_activesupport.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.5_activesupport.gemfile.lock b/gemfiles/ruby_2.5_activesupport.gemfile.lock index e152873aaef..2dbe99cf510 100644 --- a/gemfiles/ruby_2.5_activesupport.gemfile.lock +++ b/gemfiles/ruby_2.5_activesupport.gemfile.lock @@ -55,7 +55,7 @@ GEM diff-lcs (1.5.0) digest-crc (0.6.5) rake (>= 12.0.0, < 14.0.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) dry-configurable (0.12.1) concurrent-ruby (~> 1.0) @@ -187,14 +187,14 @@ GEM ruby-kafka (1.5.0) digest-crc ruby2_keywords (0.0.5) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) strscan (3.1.0) thor (1.2.2) @@ -241,7 +241,7 @@ DEPENDENCIES rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) ruby-kafka (>= 0.7.10) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_2.5_aws.gemfile b/gemfiles/ruby_2.5_aws.gemfile index b7d5c1084bb..734ee65f7ab 100644 --- a/gemfiles/ruby_2.5_aws.gemfile +++ b/gemfiles/ruby_2.5_aws.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.5_aws.gemfile.lock b/gemfiles/ruby_2.5_aws.gemfile.lock index 391dd7c2c7d..ef72ddfdee0 100644 --- a/gemfiles/ruby_2.5_aws.gemfile.lock +++ b/gemfiles/ruby_2.5_aws.gemfile.lock @@ -1445,7 +1445,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.0) extlz4 (0.3.4) ffi (1.17.1-aarch64-linux-gnu) @@ -1503,14 +1503,14 @@ GEM aws-sdk-core (>= 2) concurrent-ruby thor - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) strscan (3.1.0) thor (1.2.2) @@ -1548,7 +1548,7 @@ DEPENDENCIES rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) shoryuken - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_2.5_contrib.gemfile b/gemfiles/ruby_2.5_contrib.gemfile index 3447872cf75..53c9243842c 100644 --- a/gemfiles/ruby_2.5_contrib.gemfile +++ b/gemfiles/ruby_2.5_contrib.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.5_contrib.gemfile.lock b/gemfiles/ruby_2.5_contrib.gemfile.lock index 759d4a25c32..d9bfe6a361f 100644 --- a/gemfiles/ruby_2.5_contrib.gemfile.lock +++ b/gemfiles/ruby_2.5_contrib.gemfile.lock @@ -31,7 +31,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.0) extlz4 (0.3.3) ffi (1.17.1-aarch64-linux-gnu) @@ -126,14 +126,14 @@ GEM rack (~> 2.0) redis (>= 4.5.0, < 5) sigdump (0.2.4) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sinatra (2.2.4) mustermann (~> 2.0) @@ -196,7 +196,7 @@ DEPENDENCIES rspec_junit_formatter (>= 0.5.1) semantic_logger (~> 4.0) sidekiq - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sneakers (>= 2.12.0) sucker_punch diff --git a/gemfiles/ruby_2.5_contrib_old.gemfile b/gemfiles/ruby_2.5_contrib_old.gemfile index 7411037c656..43f3a9136e3 100644 --- a/gemfiles/ruby_2.5_contrib_old.gemfile +++ b/gemfiles/ruby_2.5_contrib_old.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.5_contrib_old.gemfile.lock b/gemfiles/ruby_2.5_contrib_old.gemfile.lock index a0c6b054562..72887c14802 100644 --- a/gemfiles/ruby_2.5_contrib_old.gemfile.lock +++ b/gemfiles/ruby_2.5_contrib_old.gemfile.lock @@ -29,7 +29,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.5.0) eventmachine (1.2.7) extlz4 (0.3.3) @@ -117,14 +117,14 @@ GEM rusage (0.2.0) sentry-raven (0.15.6) faraday (>= 0.7.6) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sinatra (2.0.8.1) mustermann (~> 1.0) @@ -177,7 +177,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_2.5_core_old.gemfile b/gemfiles/ruby_2.5_core_old.gemfile index 75b95cf27c1..b108d6e3b66 100644 --- a/gemfiles/ruby_2.5_core_old.gemfile +++ b/gemfiles/ruby_2.5_core_old.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.5_core_old.gemfile.lock b/gemfiles/ruby_2.5_core_old.gemfile.lock index 4a37eb7a24a..647dfd7007b 100644 --- a/gemfiles/ruby_2.5_core_old.gemfile.lock +++ b/gemfiles/ruby_2.5_core_old.gemfile.lock @@ -24,7 +24,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (4.8.3) extlz4 (0.3.3) ffi (1.17.1-aarch64-linux-gnu) @@ -77,14 +77,14 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) strscan (3.1.0) warning (1.3.0) @@ -119,7 +119,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_2.5_elasticsearch_7.gemfile b/gemfiles/ruby_2.5_elasticsearch_7.gemfile index 747893c0538..0dc3969a7ec 100644 --- a/gemfiles/ruby_2.5_elasticsearch_7.gemfile +++ b/gemfiles/ruby_2.5_elasticsearch_7.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.5_elasticsearch_7.gemfile.lock b/gemfiles/ruby_2.5_elasticsearch_7.gemfile.lock index 1c3d8761652..45db3afcded 100644 --- a/gemfiles/ruby_2.5_elasticsearch_7.gemfile.lock +++ b/gemfiles/ruby_2.5_elasticsearch_7.gemfile.lock @@ -26,7 +26,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) elasticsearch (7.17.11) elasticsearch-api (= 7.17.11) @@ -115,14 +115,14 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby2_keywords (0.0.5) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) strscan (3.1.0) warning (1.3.0) @@ -158,7 +158,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_2.5_elasticsearch_8.gemfile b/gemfiles/ruby_2.5_elasticsearch_8.gemfile index 54c860ca555..387cf5b42f5 100644 --- a/gemfiles/ruby_2.5_elasticsearch_8.gemfile +++ b/gemfiles/ruby_2.5_elasticsearch_8.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.5_elasticsearch_8.gemfile.lock b/gemfiles/ruby_2.5_elasticsearch_8.gemfile.lock index 6061877244f..2b8f00c4baf 100644 --- a/gemfiles/ruby_2.5_elasticsearch_8.gemfile.lock +++ b/gemfiles/ruby_2.5_elasticsearch_8.gemfile.lock @@ -25,7 +25,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) elastic-transport (8.3.5) faraday (< 3) @@ -113,14 +113,14 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby2_keywords (0.0.5) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) strscan (3.1.0) warning (1.3.0) @@ -156,7 +156,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_2.5_elasticsearch_latest.gemfile b/gemfiles/ruby_2.5_elasticsearch_latest.gemfile index cfeb6e3ad18..c1fa9c1ea3c 100644 --- a/gemfiles/ruby_2.5_elasticsearch_latest.gemfile +++ b/gemfiles/ruby_2.5_elasticsearch_latest.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.5_elasticsearch_latest.gemfile.lock b/gemfiles/ruby_2.5_elasticsearch_latest.gemfile.lock index 80af72d2531..97800eb6609 100644 --- a/gemfiles/ruby_2.5_elasticsearch_latest.gemfile.lock +++ b/gemfiles/ruby_2.5_elasticsearch_latest.gemfile.lock @@ -114,7 +114,7 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby2_keywords (0.0.5) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) @@ -156,7 +156,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_2.5_graphql_2.0.gemfile b/gemfiles/ruby_2.5_graphql_2.0.gemfile index 96be9ddea65..eb2d503da29 100644 --- a/gemfiles/ruby_2.5_graphql_2.0.gemfile +++ b/gemfiles/ruby_2.5_graphql_2.0.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.5_graphql_2.0.gemfile.lock b/gemfiles/ruby_2.5_graphql_2.0.gemfile.lock index 71e6f287d59..252e84ceb73 100644 --- a/gemfiles/ruby_2.5_graphql_2.0.gemfile.lock +++ b/gemfiles/ruby_2.5_graphql_2.0.gemfile.lock @@ -88,7 +88,7 @@ GEM debug_inspector (1.2.0) diff-lcs (1.5.0) digest (3.1.1) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) erubi (1.13.0) extlz4 (0.3.4) @@ -218,14 +218,14 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sprockets (3.7.3) base64 @@ -279,7 +279,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_2.5_hanami_1.gemfile b/gemfiles/ruby_2.5_hanami_1.gemfile index a08dc8b2e70..cd0913106e3 100644 --- a/gemfiles/ruby_2.5_hanami_1.gemfile +++ b/gemfiles/ruby_2.5_hanami_1.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.5_hanami_1.gemfile.lock b/gemfiles/ruby_2.5_hanami_1.gemfile.lock index 0f399e712e0..22b9a374f61 100644 --- a/gemfiles/ruby_2.5_hanami_1.gemfile.lock +++ b/gemfiles/ruby_2.5_hanami_1.gemfile.lock @@ -25,7 +25,7 @@ GEM debug_inspector (1.1.0) diff-lcs (1.5.0) digest (3.1.1) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.5.0) dry-cli (0.7.0) dry-configurable (0.12.0) @@ -175,14 +175,14 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) strscan (3.1.0) tilt (2.1.0) @@ -225,7 +225,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_2.5_http.gemfile b/gemfiles/ruby_2.5_http.gemfile index 0f9688c346e..e77fb9abf44 100644 --- a/gemfiles/ruby_2.5_http.gemfile +++ b/gemfiles/ruby_2.5_http.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.5_http.gemfile.lock b/gemfiles/ruby_2.5_http.gemfile.lock index 40849310a95..b79727c71d2 100644 --- a/gemfiles/ruby_2.5_http.gemfile.lock +++ b/gemfiles/ruby_2.5_http.gemfile.lock @@ -24,7 +24,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) domain_name (0.5.20190701) unf (>= 0.0.5, < 1.0.0) @@ -132,14 +132,14 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby2_keywords (0.0.5) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) strscan (3.1.0) typhoeus (1.4.0) @@ -185,7 +185,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) typhoeus warning (~> 1) diff --git a/gemfiles/ruby_2.5_opensearch_2.gemfile b/gemfiles/ruby_2.5_opensearch_2.gemfile index 30b0ea51c79..9044e0d2fe0 100644 --- a/gemfiles/ruby_2.5_opensearch_2.gemfile +++ b/gemfiles/ruby_2.5_opensearch_2.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.5_opensearch_2.gemfile.lock b/gemfiles/ruby_2.5_opensearch_2.gemfile.lock index 05856f676a8..244be5c1c39 100644 --- a/gemfiles/ruby_2.5_opensearch_2.gemfile.lock +++ b/gemfiles/ruby_2.5_opensearch_2.gemfile.lock @@ -25,7 +25,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) faraday (1.10.4) @@ -113,14 +113,14 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby2_keywords (0.0.5) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) strscan (3.1.0) warning (1.3.0) @@ -156,7 +156,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_2.5_opensearch_3.gemfile b/gemfiles/ruby_2.5_opensearch_3.gemfile index 9a0f253fc8b..95d84f61316 100644 --- a/gemfiles/ruby_2.5_opensearch_3.gemfile +++ b/gemfiles/ruby_2.5_opensearch_3.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.5_opensearch_3.gemfile.lock b/gemfiles/ruby_2.5_opensearch_3.gemfile.lock index 3f8d333371c..59a36a476b6 100644 --- a/gemfiles/ruby_2.5_opensearch_3.gemfile.lock +++ b/gemfiles/ruby_2.5_opensearch_3.gemfile.lock @@ -25,7 +25,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) faraday (1.10.4) @@ -108,14 +108,14 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby2_keywords (0.0.5) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) strscan (3.1.0) warning (1.3.0) @@ -151,7 +151,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_2.5_opensearch_latest.gemfile b/gemfiles/ruby_2.5_opensearch_latest.gemfile index 2ad862d8481..d97a0712b72 100644 --- a/gemfiles/ruby_2.5_opensearch_latest.gemfile +++ b/gemfiles/ruby_2.5_opensearch_latest.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.5_opensearch_latest.gemfile.lock b/gemfiles/ruby_2.5_opensearch_latest.gemfile.lock index 46c0bd5e820..56bc18a0b9f 100644 --- a/gemfiles/ruby_2.5_opensearch_latest.gemfile.lock +++ b/gemfiles/ruby_2.5_opensearch_latest.gemfile.lock @@ -109,7 +109,7 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby2_keywords (0.0.5) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) @@ -151,7 +151,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_2.5_rack_1.gemfile b/gemfiles/ruby_2.5_rack_1.gemfile index 353fa0f7cf2..66b9174baa1 100644 --- a/gemfiles/ruby_2.5_rack_1.gemfile +++ b/gemfiles/ruby_2.5_rack_1.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.5_rack_1.gemfile.lock b/gemfiles/ruby_2.5_rack_1.gemfile.lock index c5e4ebfb88e..af1e8bc663b 100644 --- a/gemfiles/ruby_2.5_rack_1.gemfile.lock +++ b/gemfiles/ruby_2.5_rack_1.gemfile.lock @@ -24,7 +24,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) ffi (1.17.1-aarch64-linux-gnu) @@ -82,14 +82,14 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) strscan (3.1.0) warning (1.3.0) @@ -127,7 +127,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_2.5_rack_2.gemfile b/gemfiles/ruby_2.5_rack_2.gemfile index c6c0a3038cb..4787928836c 100644 --- a/gemfiles/ruby_2.5_rack_2.gemfile +++ b/gemfiles/ruby_2.5_rack_2.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.5_rack_2.gemfile.lock b/gemfiles/ruby_2.5_rack_2.gemfile.lock index b03828877c6..5ada7f78dff 100644 --- a/gemfiles/ruby_2.5_rack_2.gemfile.lock +++ b/gemfiles/ruby_2.5_rack_2.gemfile.lock @@ -24,7 +24,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) ffi (1.17.1-aarch64-linux-gnu) @@ -82,14 +82,14 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) strscan (3.1.0) warning (1.3.0) @@ -127,7 +127,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_2.5_rack_3.gemfile b/gemfiles/ruby_2.5_rack_3.gemfile index 9c0a296666a..180b6ad634f 100644 --- a/gemfiles/ruby_2.5_rack_3.gemfile +++ b/gemfiles/ruby_2.5_rack_3.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.5_rack_3.gemfile.lock b/gemfiles/ruby_2.5_rack_3.gemfile.lock index 7f6e863fb92..db1412735b3 100644 --- a/gemfiles/ruby_2.5_rack_3.gemfile.lock +++ b/gemfiles/ruby_2.5_rack_3.gemfile.lock @@ -24,7 +24,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) ffi (1.17.1-aarch64-linux-gnu) @@ -82,14 +82,14 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) strscan (3.1.0) warning (1.3.0) @@ -127,7 +127,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_2.5_rack_latest.gemfile b/gemfiles/ruby_2.5_rack_latest.gemfile index b96d9caf39a..3f34689bc0d 100644 --- a/gemfiles/ruby_2.5_rack_latest.gemfile +++ b/gemfiles/ruby_2.5_rack_latest.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.5_rack_latest.gemfile.lock b/gemfiles/ruby_2.5_rack_latest.gemfile.lock index 8a15909aee9..cba15d806f7 100644 --- a/gemfiles/ruby_2.5_rack_latest.gemfile.lock +++ b/gemfiles/ruby_2.5_rack_latest.gemfile.lock @@ -85,7 +85,7 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) @@ -129,7 +129,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_2.5_rails4_mysql2.gemfile b/gemfiles/ruby_2.5_rails4_mysql2.gemfile index 6948ab5aaab..1fd13686ced 100644 --- a/gemfiles/ruby_2.5_rails4_mysql2.gemfile +++ b/gemfiles/ruby_2.5_rails4_mysql2.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.5_rails4_mysql2.gemfile.lock b/gemfiles/ruby_2.5_rails4_mysql2.gemfile.lock index 2a0b7ee2a0f..32afe3070cb 100644 --- a/gemfiles/ruby_2.5_rails4_mysql2.gemfile.lock +++ b/gemfiles/ruby_2.5_rails4_mysql2.gemfile.lock @@ -85,7 +85,7 @@ GEM debug_inspector (1.2.0) diff-lcs (1.5.0) digest (3.1.1) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) erubis (2.7.0) extlz4 (0.3.4) @@ -194,14 +194,14 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sprockets (3.7.2) concurrent-ruby (~> 1.0) @@ -251,7 +251,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_2.5_rails4_postgres.gemfile b/gemfiles/ruby_2.5_rails4_postgres.gemfile index 645a14c4b7f..3594a8f2793 100644 --- a/gemfiles/ruby_2.5_rails4_postgres.gemfile +++ b/gemfiles/ruby_2.5_rails4_postgres.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.5_rails4_postgres.gemfile.lock b/gemfiles/ruby_2.5_rails4_postgres.gemfile.lock index 92bf123ad3a..7a510609218 100644 --- a/gemfiles/ruby_2.5_rails4_postgres.gemfile.lock +++ b/gemfiles/ruby_2.5_rails4_postgres.gemfile.lock @@ -85,7 +85,7 @@ GEM debug_inspector (1.2.0) diff-lcs (1.5.0) digest (3.1.1) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) erubis (2.7.0) extlz4 (0.3.4) @@ -194,14 +194,14 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sprockets (3.7.2) concurrent-ruby (~> 1.0) @@ -251,7 +251,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_2.5_rails4_postgres_redis.gemfile b/gemfiles/ruby_2.5_rails4_postgres_redis.gemfile index cfa3df1ca31..9248d2493d4 100644 --- a/gemfiles/ruby_2.5_rails4_postgres_redis.gemfile +++ b/gemfiles/ruby_2.5_rails4_postgres_redis.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.5_rails4_postgres_redis.gemfile.lock b/gemfiles/ruby_2.5_rails4_postgres_redis.gemfile.lock index 43ad457e055..0f33147f48f 100644 --- a/gemfiles/ruby_2.5_rails4_postgres_redis.gemfile.lock +++ b/gemfiles/ruby_2.5_rails4_postgres_redis.gemfile.lock @@ -85,7 +85,7 @@ GEM debug_inspector (1.2.0) diff-lcs (1.5.0) digest (3.1.1) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) erubis (2.7.0) extlz4 (0.3.4) @@ -211,14 +211,14 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sprockets (3.7.2) concurrent-ruby (~> 1.0) @@ -270,7 +270,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_2.5_rails4_postgres_sidekiq.gemfile b/gemfiles/ruby_2.5_rails4_postgres_sidekiq.gemfile index 54263f69046..3c58d4cbf6a 100644 --- a/gemfiles/ruby_2.5_rails4_postgres_sidekiq.gemfile +++ b/gemfiles/ruby_2.5_rails4_postgres_sidekiq.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.5_rails4_postgres_sidekiq.gemfile.lock b/gemfiles/ruby_2.5_rails4_postgres_sidekiq.gemfile.lock index 13e57e93040..1f14dfea47b 100644 --- a/gemfiles/ruby_2.5_rails4_postgres_sidekiq.gemfile.lock +++ b/gemfiles/ruby_2.5_rails4_postgres_sidekiq.gemfile.lock @@ -86,7 +86,7 @@ GEM debug_inspector (1.2.0) diff-lcs (1.5.0) digest (3.1.1) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) erubis (2.7.0) extlz4 (0.3.4) @@ -203,14 +203,14 @@ GEM rack (< 2.1.0) rack-protection (>= 1.5.0) redis (>= 3.3.5, < 5) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sprockets (3.7.2) concurrent-ruby (~> 1.0) @@ -262,7 +262,7 @@ DEPENDENCIES rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) sidekiq - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_2.5_rails4_semantic_logger.gemfile b/gemfiles/ruby_2.5_rails4_semantic_logger.gemfile index 6aab58152c0..384d49113ff 100644 --- a/gemfiles/ruby_2.5_rails4_semantic_logger.gemfile +++ b/gemfiles/ruby_2.5_rails4_semantic_logger.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.5_rails4_semantic_logger.gemfile.lock b/gemfiles/ruby_2.5_rails4_semantic_logger.gemfile.lock index b85884431d0..a5bca063608 100644 --- a/gemfiles/ruby_2.5_rails4_semantic_logger.gemfile.lock +++ b/gemfiles/ruby_2.5_rails4_semantic_logger.gemfile.lock @@ -85,7 +85,7 @@ GEM debug_inspector (1.2.0) diff-lcs (1.5.0) digest (3.1.1) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) erubis (2.7.0) extlz4 (0.3.4) @@ -193,14 +193,14 @@ GEM rspec-core (>= 2, < 4, != 2.12.0) semantic_logger (4.15.0) concurrent-ruby (~> 1.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sprockets (3.7.2) concurrent-ruby (~> 1.0) @@ -250,7 +250,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_2.5_rails5_mysql2.gemfile b/gemfiles/ruby_2.5_rails5_mysql2.gemfile index c53c8662f75..02ac02ecf1d 100644 --- a/gemfiles/ruby_2.5_rails5_mysql2.gemfile +++ b/gemfiles/ruby_2.5_rails5_mysql2.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.5_rails5_mysql2.gemfile.lock b/gemfiles/ruby_2.5_rails5_mysql2.gemfile.lock index 420155653c3..9cde2038bd8 100644 --- a/gemfiles/ruby_2.5_rails5_mysql2.gemfile.lock +++ b/gemfiles/ruby_2.5_rails5_mysql2.gemfile.lock @@ -68,7 +68,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.5.0) erubi (1.12.0) extlz4 (0.3.3) @@ -177,14 +177,14 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sprockets (3.7.2) concurrent-ruby (~> 1.0) @@ -237,7 +237,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_2.5_rails5_postgres.gemfile b/gemfiles/ruby_2.5_rails5_postgres.gemfile index 07fc7475b53..4fb10a14960 100644 --- a/gemfiles/ruby_2.5_rails5_postgres.gemfile +++ b/gemfiles/ruby_2.5_rails5_postgres.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.5_rails5_postgres.gemfile.lock b/gemfiles/ruby_2.5_rails5_postgres.gemfile.lock index 597867eb6ee..823a717c4ff 100644 --- a/gemfiles/ruby_2.5_rails5_postgres.gemfile.lock +++ b/gemfiles/ruby_2.5_rails5_postgres.gemfile.lock @@ -69,7 +69,7 @@ GEM debug_inspector (1.1.0) diff-lcs (1.5.0) digest (3.1.1) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.5.0) erubi (1.12.0) extlz4 (0.3.3) @@ -195,14 +195,14 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sprockets (3.7.2) concurrent-ruby (~> 1.0) @@ -255,7 +255,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_2.5_rails5_postgres_redis.gemfile b/gemfiles/ruby_2.5_rails5_postgres_redis.gemfile index 9fe092c3327..493212490d3 100644 --- a/gemfiles/ruby_2.5_rails5_postgres_redis.gemfile +++ b/gemfiles/ruby_2.5_rails5_postgres_redis.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.5_rails5_postgres_redis.gemfile.lock b/gemfiles/ruby_2.5_rails5_postgres_redis.gemfile.lock index 5f0841deb42..590c01459e6 100644 --- a/gemfiles/ruby_2.5_rails5_postgres_redis.gemfile.lock +++ b/gemfiles/ruby_2.5_rails5_postgres_redis.gemfile.lock @@ -70,7 +70,7 @@ GEM debug_inspector (1.1.0) diff-lcs (1.5.0) digest (3.1.1) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.5.0) erubi (1.12.0) extlz4 (0.3.3) @@ -200,14 +200,14 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sprockets (3.7.2) concurrent-ruby (~> 1.0) @@ -261,7 +261,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_2.5_rails5_postgres_redis_activesupport.gemfile b/gemfiles/ruby_2.5_rails5_postgres_redis_activesupport.gemfile index c391635848f..b4941a0628e 100644 --- a/gemfiles/ruby_2.5_rails5_postgres_redis_activesupport.gemfile +++ b/gemfiles/ruby_2.5_rails5_postgres_redis_activesupport.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.5_rails5_postgres_redis_activesupport.gemfile.lock b/gemfiles/ruby_2.5_rails5_postgres_redis_activesupport.gemfile.lock index d7c25fc2231..a7329c10ca2 100644 --- a/gemfiles/ruby_2.5_rails5_postgres_redis_activesupport.gemfile.lock +++ b/gemfiles/ruby_2.5_rails5_postgres_redis_activesupport.gemfile.lock @@ -69,7 +69,7 @@ GEM debug_inspector (1.1.0) diff-lcs (1.5.0) digest (3.1.1) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.5.0) erubi (1.12.0) extlz4 (0.3.3) @@ -212,14 +212,14 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sprockets (3.7.2) concurrent-ruby (~> 1.0) @@ -275,7 +275,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_2.5_rails5_postgres_sidekiq.gemfile b/gemfiles/ruby_2.5_rails5_postgres_sidekiq.gemfile index 7c87878acd7..66a4a51321d 100644 --- a/gemfiles/ruby_2.5_rails5_postgres_sidekiq.gemfile +++ b/gemfiles/ruby_2.5_rails5_postgres_sidekiq.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.5_rails5_postgres_sidekiq.gemfile.lock b/gemfiles/ruby_2.5_rails5_postgres_sidekiq.gemfile.lock index 289c85fa4ba..fd9c3936161 100644 --- a/gemfiles/ruby_2.5_rails5_postgres_sidekiq.gemfile.lock +++ b/gemfiles/ruby_2.5_rails5_postgres_sidekiq.gemfile.lock @@ -70,7 +70,7 @@ GEM debug_inspector (1.1.0) diff-lcs (1.5.0) digest (3.1.1) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.5.0) erubi (1.12.0) extlz4 (0.3.3) @@ -201,14 +201,14 @@ GEM connection_pool (>= 2.2.5, < 3) rack (~> 2.0) redis (>= 4.5.0, < 5) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sprockets (3.7.2) concurrent-ruby (~> 1.0) @@ -263,7 +263,7 @@ DEPENDENCIES rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) sidekiq - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_2.5_rails5_semantic_logger.gemfile b/gemfiles/ruby_2.5_rails5_semantic_logger.gemfile index 6793e3f1cb2..6b86122cab1 100644 --- a/gemfiles/ruby_2.5_rails5_semantic_logger.gemfile +++ b/gemfiles/ruby_2.5_rails5_semantic_logger.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.5_rails5_semantic_logger.gemfile.lock b/gemfiles/ruby_2.5_rails5_semantic_logger.gemfile.lock index ab4fce44e2c..c1ff25d251a 100644 --- a/gemfiles/ruby_2.5_rails5_semantic_logger.gemfile.lock +++ b/gemfiles/ruby_2.5_rails5_semantic_logger.gemfile.lock @@ -69,7 +69,7 @@ GEM debug_inspector (1.1.0) diff-lcs (1.5.0) digest (3.1.1) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.5.0) erubi (1.12.0) extlz4 (0.3.3) @@ -194,14 +194,14 @@ GEM rspec-core (>= 2, < 4, != 2.12.0) semantic_logger (4.12.0) concurrent-ruby (~> 1.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sprockets (3.7.2) concurrent-ruby (~> 1.0) @@ -254,7 +254,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_2.5_rails61_mysql2.gemfile b/gemfiles/ruby_2.5_rails61_mysql2.gemfile index d5c8d28e2ed..3d891209a03 100644 --- a/gemfiles/ruby_2.5_rails61_mysql2.gemfile +++ b/gemfiles/ruby_2.5_rails61_mysql2.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.5_rails61_mysql2.gemfile.lock b/gemfiles/ruby_2.5_rails61_mysql2.gemfile.lock index 6c9280284d1..50c55e376fd 100644 --- a/gemfiles/ruby_2.5_rails61_mysql2.gemfile.lock +++ b/gemfiles/ruby_2.5_rails61_mysql2.gemfile.lock @@ -85,7 +85,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.5.0) erubi (1.12.0) extlz4 (0.3.3) @@ -196,14 +196,14 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sprockets (3.7.2) concurrent-ruby (~> 1.0) @@ -256,7 +256,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_2.5_rails61_postgres.gemfile b/gemfiles/ruby_2.5_rails61_postgres.gemfile index b7ee63b4764..5cb99ad7a46 100644 --- a/gemfiles/ruby_2.5_rails61_postgres.gemfile +++ b/gemfiles/ruby_2.5_rails61_postgres.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.5_rails61_postgres.gemfile.lock b/gemfiles/ruby_2.5_rails61_postgres.gemfile.lock index 2be147be23a..0073a59f467 100644 --- a/gemfiles/ruby_2.5_rails61_postgres.gemfile.lock +++ b/gemfiles/ruby_2.5_rails61_postgres.gemfile.lock @@ -86,7 +86,7 @@ GEM debug_inspector (1.1.0) diff-lcs (1.5.0) digest (3.1.1) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.5.0) erubi (1.12.0) extlz4 (0.3.3) @@ -214,14 +214,14 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sprockets (3.7.2) concurrent-ruby (~> 1.0) @@ -274,7 +274,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_2.5_rails61_postgres_redis.gemfile b/gemfiles/ruby_2.5_rails61_postgres_redis.gemfile index 4444d32022d..3463fe16da6 100644 --- a/gemfiles/ruby_2.5_rails61_postgres_redis.gemfile +++ b/gemfiles/ruby_2.5_rails61_postgres_redis.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.5_rails61_postgres_redis.gemfile.lock b/gemfiles/ruby_2.5_rails61_postgres_redis.gemfile.lock index 3bee20296be..fda3832fab2 100644 --- a/gemfiles/ruby_2.5_rails61_postgres_redis.gemfile.lock +++ b/gemfiles/ruby_2.5_rails61_postgres_redis.gemfile.lock @@ -87,7 +87,7 @@ GEM debug_inspector (1.1.0) diff-lcs (1.5.0) digest (3.1.1) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.5.0) erubi (1.12.0) extlz4 (0.3.3) @@ -219,14 +219,14 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sprockets (3.7.2) concurrent-ruby (~> 1.0) @@ -280,7 +280,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_2.5_rails61_postgres_sidekiq.gemfile b/gemfiles/ruby_2.5_rails61_postgres_sidekiq.gemfile index 490afa6d076..d2ca727adaa 100644 --- a/gemfiles/ruby_2.5_rails61_postgres_sidekiq.gemfile +++ b/gemfiles/ruby_2.5_rails61_postgres_sidekiq.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.5_rails61_postgres_sidekiq.gemfile.lock b/gemfiles/ruby_2.5_rails61_postgres_sidekiq.gemfile.lock index f11ffbba1fa..b3a42f92e5e 100644 --- a/gemfiles/ruby_2.5_rails61_postgres_sidekiq.gemfile.lock +++ b/gemfiles/ruby_2.5_rails61_postgres_sidekiq.gemfile.lock @@ -87,7 +87,7 @@ GEM debug_inspector (1.1.0) diff-lcs (1.5.0) digest (3.1.1) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.5.0) erubi (1.12.0) extlz4 (0.3.3) @@ -220,14 +220,14 @@ GEM connection_pool (>= 2.2.5, < 3) rack (~> 2.0) redis (>= 4.5.0, < 5) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sprockets (3.7.2) concurrent-ruby (~> 1.0) @@ -281,7 +281,7 @@ DEPENDENCIES rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) sidekiq (>= 6.1.2) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_2.5_rails61_semantic_logger.gemfile b/gemfiles/ruby_2.5_rails61_semantic_logger.gemfile index e55c1af9831..656e8727d3a 100644 --- a/gemfiles/ruby_2.5_rails61_semantic_logger.gemfile +++ b/gemfiles/ruby_2.5_rails61_semantic_logger.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.5_rails61_semantic_logger.gemfile.lock b/gemfiles/ruby_2.5_rails61_semantic_logger.gemfile.lock index edb159febbd..e88abeb571e 100644 --- a/gemfiles/ruby_2.5_rails61_semantic_logger.gemfile.lock +++ b/gemfiles/ruby_2.5_rails61_semantic_logger.gemfile.lock @@ -86,7 +86,7 @@ GEM debug_inspector (1.1.0) diff-lcs (1.5.0) digest (3.1.1) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.5.0) erubi (1.12.0) extlz4 (0.3.3) @@ -213,14 +213,14 @@ GEM rspec-core (>= 2, < 4, != 2.12.0) semantic_logger (4.12.0) concurrent-ruby (~> 1.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sprockets (3.7.2) concurrent-ruby (~> 1.0) @@ -273,7 +273,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_2.5_rails6_mysql2.gemfile b/gemfiles/ruby_2.5_rails6_mysql2.gemfile index 9b569307dd3..c8c7cca6364 100644 --- a/gemfiles/ruby_2.5_rails6_mysql2.gemfile +++ b/gemfiles/ruby_2.5_rails6_mysql2.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.5_rails6_mysql2.gemfile.lock b/gemfiles/ruby_2.5_rails6_mysql2.gemfile.lock index 05a6bbc426e..2ffbf902f32 100644 --- a/gemfiles/ruby_2.5_rails6_mysql2.gemfile.lock +++ b/gemfiles/ruby_2.5_rails6_mysql2.gemfile.lock @@ -81,7 +81,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.5.0) erubi (1.12.0) extlz4 (0.3.3) @@ -192,14 +192,14 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sprockets (3.7.2) concurrent-ruby (~> 1.0) @@ -253,7 +253,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_2.5_rails6_postgres.gemfile b/gemfiles/ruby_2.5_rails6_postgres.gemfile index 1ab716a8d05..1734322ff1f 100644 --- a/gemfiles/ruby_2.5_rails6_postgres.gemfile +++ b/gemfiles/ruby_2.5_rails6_postgres.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.5_rails6_postgres.gemfile.lock b/gemfiles/ruby_2.5_rails6_postgres.gemfile.lock index ffb68e5a423..55c12faf46a 100644 --- a/gemfiles/ruby_2.5_rails6_postgres.gemfile.lock +++ b/gemfiles/ruby_2.5_rails6_postgres.gemfile.lock @@ -82,7 +82,7 @@ GEM debug_inspector (1.1.0) diff-lcs (1.5.0) digest (3.1.1) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.5.0) erubi (1.12.0) extlz4 (0.3.3) @@ -210,14 +210,14 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sprockets (3.7.2) concurrent-ruby (~> 1.0) @@ -271,7 +271,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_2.5_rails6_postgres_redis.gemfile b/gemfiles/ruby_2.5_rails6_postgres_redis.gemfile index 2b07daa1087..a7428a3b3ab 100644 --- a/gemfiles/ruby_2.5_rails6_postgres_redis.gemfile +++ b/gemfiles/ruby_2.5_rails6_postgres_redis.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.5_rails6_postgres_redis.gemfile.lock b/gemfiles/ruby_2.5_rails6_postgres_redis.gemfile.lock index 8b3f25301e5..8b7b8bd8165 100644 --- a/gemfiles/ruby_2.5_rails6_postgres_redis.gemfile.lock +++ b/gemfiles/ruby_2.5_rails6_postgres_redis.gemfile.lock @@ -83,7 +83,7 @@ GEM debug_inspector (1.1.0) diff-lcs (1.5.0) digest (3.1.1) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.5.0) erubi (1.12.0) extlz4 (0.3.3) @@ -215,14 +215,14 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sprockets (3.7.2) concurrent-ruby (~> 1.0) @@ -277,7 +277,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_2.5_rails6_postgres_redis_activesupport.gemfile b/gemfiles/ruby_2.5_rails6_postgres_redis_activesupport.gemfile index 32aed6c4b57..62814c5ef40 100644 --- a/gemfiles/ruby_2.5_rails6_postgres_redis_activesupport.gemfile +++ b/gemfiles/ruby_2.5_rails6_postgres_redis_activesupport.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.5_rails6_postgres_redis_activesupport.gemfile.lock b/gemfiles/ruby_2.5_rails6_postgres_redis_activesupport.gemfile.lock index bad22ecf926..f5aebbdeca1 100644 --- a/gemfiles/ruby_2.5_rails6_postgres_redis_activesupport.gemfile.lock +++ b/gemfiles/ruby_2.5_rails6_postgres_redis_activesupport.gemfile.lock @@ -82,7 +82,7 @@ GEM debug_inspector (1.1.0) diff-lcs (1.5.0) digest (3.1.1) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.5.0) erubi (1.12.0) extlz4 (0.3.3) @@ -227,14 +227,14 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sprockets (3.7.2) concurrent-ruby (~> 1.0) @@ -291,7 +291,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_2.5_rails6_postgres_sidekiq.gemfile b/gemfiles/ruby_2.5_rails6_postgres_sidekiq.gemfile index 661799d5dae..6852e8d6df1 100644 --- a/gemfiles/ruby_2.5_rails6_postgres_sidekiq.gemfile +++ b/gemfiles/ruby_2.5_rails6_postgres_sidekiq.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.5_rails6_postgres_sidekiq.gemfile.lock b/gemfiles/ruby_2.5_rails6_postgres_sidekiq.gemfile.lock index 092dafb32d3..4697042b8be 100644 --- a/gemfiles/ruby_2.5_rails6_postgres_sidekiq.gemfile.lock +++ b/gemfiles/ruby_2.5_rails6_postgres_sidekiq.gemfile.lock @@ -83,7 +83,7 @@ GEM debug_inspector (1.1.0) diff-lcs (1.5.0) digest (3.1.1) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.5.0) erubi (1.12.0) extlz4 (0.3.3) @@ -216,14 +216,14 @@ GEM connection_pool (>= 2.2.5, < 3) rack (~> 2.0) redis (>= 4.5.0, < 5) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sprockets (3.7.2) concurrent-ruby (~> 1.0) @@ -279,7 +279,7 @@ DEPENDENCIES rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) sidekiq - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_2.5_rails6_semantic_logger.gemfile b/gemfiles/ruby_2.5_rails6_semantic_logger.gemfile index 9069d5a8ca9..d54cf24a6c1 100644 --- a/gemfiles/ruby_2.5_rails6_semantic_logger.gemfile +++ b/gemfiles/ruby_2.5_rails6_semantic_logger.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.5_rails6_semantic_logger.gemfile.lock b/gemfiles/ruby_2.5_rails6_semantic_logger.gemfile.lock index b108d109258..161b60131b5 100644 --- a/gemfiles/ruby_2.5_rails6_semantic_logger.gemfile.lock +++ b/gemfiles/ruby_2.5_rails6_semantic_logger.gemfile.lock @@ -82,7 +82,7 @@ GEM debug_inspector (1.1.0) diff-lcs (1.5.0) digest (3.1.1) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.5.0) erubi (1.12.0) extlz4 (0.3.3) @@ -209,14 +209,14 @@ GEM rspec-core (>= 2, < 4, != 2.12.0) semantic_logger (4.12.0) concurrent-ruby (~> 1.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sprockets (3.7.2) concurrent-ruby (~> 1.0) @@ -270,7 +270,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_2.5_rails_old_redis.gemfile b/gemfiles/ruby_2.5_rails_old_redis.gemfile index 0f4665b105e..cddb3e9ee36 100644 --- a/gemfiles/ruby_2.5_rails_old_redis.gemfile +++ b/gemfiles/ruby_2.5_rails_old_redis.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.5_redis_3.gemfile b/gemfiles/ruby_2.5_redis_3.gemfile index 7688741a055..8309e212070 100644 --- a/gemfiles/ruby_2.5_redis_3.gemfile +++ b/gemfiles/ruby_2.5_redis_3.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.5_redis_3.gemfile.lock b/gemfiles/ruby_2.5_redis_3.gemfile.lock index f68cfc0289f..135978c8f10 100644 --- a/gemfiles/ruby_2.5_redis_3.gemfile.lock +++ b/gemfiles/ruby_2.5_redis_3.gemfile.lock @@ -24,7 +24,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.5.0) extlz4 (0.3.3) ffi (1.17.1-aarch64-linux-gnu) @@ -78,14 +78,14 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) strscan (3.1.0) warning (1.3.0) @@ -121,7 +121,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_2.5_redis_4.gemfile b/gemfiles/ruby_2.5_redis_4.gemfile index d57c1134902..023802252cd 100644 --- a/gemfiles/ruby_2.5_redis_4.gemfile +++ b/gemfiles/ruby_2.5_redis_4.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.5_redis_4.gemfile.lock b/gemfiles/ruby_2.5_redis_4.gemfile.lock index 55bc3e21140..772d78c840b 100644 --- a/gemfiles/ruby_2.5_redis_4.gemfile.lock +++ b/gemfiles/ruby_2.5_redis_4.gemfile.lock @@ -24,7 +24,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.5.0) extlz4 (0.3.3) ffi (1.17.1-aarch64-linux-gnu) @@ -78,14 +78,14 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) strscan (3.1.0) warning (1.3.0) @@ -121,7 +121,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_2.5_redis_5.gemfile b/gemfiles/ruby_2.5_redis_5.gemfile index 64e815b0871..91bba555c5c 100644 --- a/gemfiles/ruby_2.5_redis_5.gemfile +++ b/gemfiles/ruby_2.5_redis_5.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.5_redis_5.gemfile.lock b/gemfiles/ruby_2.5_redis_5.gemfile.lock index 4f49bbe43fb..a6d9e45e22b 100644 --- a/gemfiles/ruby_2.5_redis_5.gemfile.lock +++ b/gemfiles/ruby_2.5_redis_5.gemfile.lock @@ -25,7 +25,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.5.0) extlz4 (0.3.3) ffi (1.17.1-aarch64-linux-gnu) @@ -82,14 +82,14 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) strscan (3.1.0) warning (1.3.0) @@ -125,7 +125,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_2.5_relational_db.gemfile b/gemfiles/ruby_2.5_relational_db.gemfile index f97c305c37d..a4aa5eaceaf 100644 --- a/gemfiles/ruby_2.5_relational_db.gemfile +++ b/gemfiles/ruby_2.5_relational_db.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.5_relational_db.gemfile.lock b/gemfiles/ruby_2.5_relational_db.gemfile.lock index f70cb825253..e7d4d79f822 100644 --- a/gemfiles/ruby_2.5_relational_db.gemfile.lock +++ b/gemfiles/ruby_2.5_relational_db.gemfile.lock @@ -42,7 +42,7 @@ GEM activerecord (>= 3.0, < 8.0) delayed_job (>= 3.0, < 5) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) ffi (1.17.1-aarch64-linux-gnu) @@ -104,14 +104,14 @@ GEM rspec-core (>= 2, < 4, != 2.12.0) sequel (5.83.1) bigdecimal - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sqlite3 (1.4.4) strscan (3.1.0) @@ -157,7 +157,7 @@ DEPENDENCIES rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) sequel - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sqlite3 (~> 1.4.1) warning (~> 1) diff --git a/gemfiles/ruby_2.5_resque2_redis3.gemfile b/gemfiles/ruby_2.5_resque2_redis3.gemfile index cddc046a26d..ccbc2b75022 100644 --- a/gemfiles/ruby_2.5_resque2_redis3.gemfile +++ b/gemfiles/ruby_2.5_resque2_redis3.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.5_resque2_redis3.gemfile.lock b/gemfiles/ruby_2.5_resque2_redis3.gemfile.lock index 47bc849f00a..19ae20fc5ae 100644 --- a/gemfiles/ruby_2.5_resque2_redis3.gemfile.lock +++ b/gemfiles/ruby_2.5_resque2_redis3.gemfile.lock @@ -24,7 +24,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.5.0) extlz4 (0.3.3) ffi (1.17.1-aarch64-linux-gnu) @@ -93,14 +93,14 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby2_keywords (0.0.5) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sinatra (2.2.4) mustermann (~> 2.0) @@ -143,7 +143,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_2.5_resque2_redis4.gemfile b/gemfiles/ruby_2.5_resque2_redis4.gemfile index b47268352c7..bd2485e4ad1 100644 --- a/gemfiles/ruby_2.5_resque2_redis4.gemfile +++ b/gemfiles/ruby_2.5_resque2_redis4.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.5_resque2_redis4.gemfile.lock b/gemfiles/ruby_2.5_resque2_redis4.gemfile.lock index 9ed5630e690..259e3b08dc8 100644 --- a/gemfiles/ruby_2.5_resque2_redis4.gemfile.lock +++ b/gemfiles/ruby_2.5_resque2_redis4.gemfile.lock @@ -25,7 +25,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.5.0) extlz4 (0.3.3) ffi (1.17.1-aarch64-linux-gnu) @@ -97,14 +97,14 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby2_keywords (0.0.5) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sinatra (2.2.4) mustermann (~> 2.0) @@ -147,7 +147,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_2.5_sinatra_2.gemfile b/gemfiles/ruby_2.5_sinatra_2.gemfile index c968fd51803..a7fa8de5b44 100644 --- a/gemfiles/ruby_2.5_sinatra_2.gemfile +++ b/gemfiles/ruby_2.5_sinatra_2.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.5_sinatra_2.gemfile.lock b/gemfiles/ruby_2.5_sinatra_2.gemfile.lock index cb4d824b37a..945988d41f9 100644 --- a/gemfiles/ruby_2.5_sinatra_2.gemfile.lock +++ b/gemfiles/ruby_2.5_sinatra_2.gemfile.lock @@ -27,7 +27,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) ffi (1.17.1-aarch64-linux-gnu) @@ -91,14 +91,14 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby2_keywords (0.0.5) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sinatra (2.2.4) mustermann (~> 2.0) @@ -141,7 +141,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sinatra (~> 2) warning (~> 1) diff --git a/gemfiles/ruby_2.5_stripe_10.gemfile b/gemfiles/ruby_2.5_stripe_10.gemfile index ee8f64cfe28..0da84e1a208 100644 --- a/gemfiles/ruby_2.5_stripe_10.gemfile +++ b/gemfiles/ruby_2.5_stripe_10.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.5_stripe_10.gemfile.lock b/gemfiles/ruby_2.5_stripe_10.gemfile.lock index a5c183c5918..141f4c64c46 100644 --- a/gemfiles/ruby_2.5_stripe_10.gemfile.lock +++ b/gemfiles/ruby_2.5_stripe_10.gemfile.lock @@ -81,14 +81,14 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) stripe (10.15.0) strscan (3.1.0) @@ -124,7 +124,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) stripe (~> 10) warning (~> 1) diff --git a/gemfiles/ruby_2.5_stripe_11.gemfile b/gemfiles/ruby_2.5_stripe_11.gemfile index 970ad916c47..6cc4744ba98 100644 --- a/gemfiles/ruby_2.5_stripe_11.gemfile +++ b/gemfiles/ruby_2.5_stripe_11.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.5_stripe_11.gemfile.lock b/gemfiles/ruby_2.5_stripe_11.gemfile.lock index af0102edd72..43f42b2dcd2 100644 --- a/gemfiles/ruby_2.5_stripe_11.gemfile.lock +++ b/gemfiles/ruby_2.5_stripe_11.gemfile.lock @@ -81,14 +81,14 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) stripe (11.7.0) strscan (3.1.0) @@ -124,7 +124,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) stripe (~> 11) warning (~> 1) diff --git a/gemfiles/ruby_2.5_stripe_12.gemfile b/gemfiles/ruby_2.5_stripe_12.gemfile index cec8f5c5bcd..2fd62e8fc54 100644 --- a/gemfiles/ruby_2.5_stripe_12.gemfile +++ b/gemfiles/ruby_2.5_stripe_12.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.5_stripe_12.gemfile.lock b/gemfiles/ruby_2.5_stripe_12.gemfile.lock index 574ef8b7173..a5bd9338a7a 100644 --- a/gemfiles/ruby_2.5_stripe_12.gemfile.lock +++ b/gemfiles/ruby_2.5_stripe_12.gemfile.lock @@ -81,14 +81,14 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) stripe (12.6.0) strscan (3.1.0) @@ -124,7 +124,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) stripe (~> 12) warning (~> 1) diff --git a/gemfiles/ruby_2.5_stripe_7.gemfile b/gemfiles/ruby_2.5_stripe_7.gemfile index 580a0293aa1..2d0de7a62ea 100644 --- a/gemfiles/ruby_2.5_stripe_7.gemfile +++ b/gemfiles/ruby_2.5_stripe_7.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.5_stripe_7.gemfile.lock b/gemfiles/ruby_2.5_stripe_7.gemfile.lock index 828c78b9e29..647e7c4c9be 100644 --- a/gemfiles/ruby_2.5_stripe_7.gemfile.lock +++ b/gemfiles/ruby_2.5_stripe_7.gemfile.lock @@ -81,14 +81,14 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) stripe (7.1.0) strscan (3.1.0) @@ -124,7 +124,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) stripe (~> 7) warning (~> 1) diff --git a/gemfiles/ruby_2.5_stripe_8.gemfile b/gemfiles/ruby_2.5_stripe_8.gemfile index dce97367919..b6dd7c541db 100644 --- a/gemfiles/ruby_2.5_stripe_8.gemfile +++ b/gemfiles/ruby_2.5_stripe_8.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.5_stripe_8.gemfile.lock b/gemfiles/ruby_2.5_stripe_8.gemfile.lock index d5499c575d0..729c1d2cd84 100644 --- a/gemfiles/ruby_2.5_stripe_8.gemfile.lock +++ b/gemfiles/ruby_2.5_stripe_8.gemfile.lock @@ -81,14 +81,14 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) stripe (8.7.0) strscan (3.1.0) @@ -124,7 +124,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) stripe (~> 8) warning (~> 1) diff --git a/gemfiles/ruby_2.5_stripe_9.gemfile b/gemfiles/ruby_2.5_stripe_9.gemfile index 196ba6977e3..ca1819b51a6 100644 --- a/gemfiles/ruby_2.5_stripe_9.gemfile +++ b/gemfiles/ruby_2.5_stripe_9.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.5_stripe_9.gemfile.lock b/gemfiles/ruby_2.5_stripe_9.gemfile.lock index 71a29877373..372b9da24d0 100644 --- a/gemfiles/ruby_2.5_stripe_9.gemfile.lock +++ b/gemfiles/ruby_2.5_stripe_9.gemfile.lock @@ -81,14 +81,14 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) stripe (9.4.0) strscan (3.1.0) @@ -124,7 +124,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) stripe (~> 9) warning (~> 1) diff --git a/gemfiles/ruby_2.5_stripe_latest.gemfile b/gemfiles/ruby_2.5_stripe_latest.gemfile index 5867634b528..77b759b0ca2 100644 --- a/gemfiles/ruby_2.5_stripe_latest.gemfile +++ b/gemfiles/ruby_2.5_stripe_latest.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.5_stripe_latest.gemfile.lock b/gemfiles/ruby_2.5_stripe_latest.gemfile.lock index 5aee1529417..2e909d48ff2 100644 --- a/gemfiles/ruby_2.5_stripe_latest.gemfile.lock +++ b/gemfiles/ruby_2.5_stripe_latest.gemfile.lock @@ -80,7 +80,7 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) @@ -122,7 +122,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) stripe warning (~> 1) diff --git a/gemfiles/ruby_2.5_stripe_min.gemfile b/gemfiles/ruby_2.5_stripe_min.gemfile index b796d9edd1c..b7c4d2b0478 100644 --- a/gemfiles/ruby_2.5_stripe_min.gemfile +++ b/gemfiles/ruby_2.5_stripe_min.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.5_stripe_min.gemfile.lock b/gemfiles/ruby_2.5_stripe_min.gemfile.lock index b720cdabde4..bdee3823289 100644 --- a/gemfiles/ruby_2.5_stripe_min.gemfile.lock +++ b/gemfiles/ruby_2.5_stripe_min.gemfile.lock @@ -80,7 +80,7 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) @@ -122,7 +122,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) stripe (= 5.15.0) warning (~> 1) diff --git a/gemfiles/ruby_2.6_activesupport.gemfile b/gemfiles/ruby_2.6_activesupport.gemfile index fe40adc5570..be891957a7f 100644 --- a/gemfiles/ruby_2.6_activesupport.gemfile +++ b/gemfiles/ruby_2.6_activesupport.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.6_activesupport.gemfile.lock b/gemfiles/ruby_2.6_activesupport.gemfile.lock index 25e4b5a3160..c0eea04171e 100644 --- a/gemfiles/ruby_2.6_activesupport.gemfile.lock +++ b/gemfiles/ruby_2.6_activesupport.gemfile.lock @@ -57,7 +57,7 @@ GEM diff-lcs (1.5.0) digest-crc (0.6.5) rake (>= 12.0.0, < 14.0.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) dry-configurable (0.13.0) concurrent-ruby (~> 1.0) @@ -189,14 +189,14 @@ GEM ruby-kafka (1.5.0) digest-crc ruby2_keywords (0.0.5) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) strscan (3.1.0) thor (1.2.2) @@ -244,7 +244,7 @@ DEPENDENCIES rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) ruby-kafka (>= 0.7.10) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_2.6_aws.gemfile b/gemfiles/ruby_2.6_aws.gemfile index bedf1f3624f..005d18a759e 100644 --- a/gemfiles/ruby_2.6_aws.gemfile +++ b/gemfiles/ruby_2.6_aws.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.6_aws.gemfile.lock b/gemfiles/ruby_2.6_aws.gemfile.lock index 1e561b6e77e..70e0c1950d9 100644 --- a/gemfiles/ruby_2.6_aws.gemfile.lock +++ b/gemfiles/ruby_2.6_aws.gemfile.lock @@ -1446,7 +1446,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.0) extlz4 (0.3.4) ffi (1.17.1-aarch64-linux-gnu) @@ -1505,14 +1505,14 @@ GEM aws-sdk-core (>= 2) concurrent-ruby thor - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) strscan (3.1.0) thor (1.2.2) @@ -1550,7 +1550,7 @@ DEPENDENCIES rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) shoryuken - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_2.6_contrib.gemfile b/gemfiles/ruby_2.6_contrib.gemfile index 3247649acdd..3c41b71f509 100644 --- a/gemfiles/ruby_2.6_contrib.gemfile +++ b/gemfiles/ruby_2.6_contrib.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.6_contrib.gemfile.lock b/gemfiles/ruby_2.6_contrib.gemfile.lock index a3f9fd77094..f15a6d5fa41 100644 --- a/gemfiles/ruby_2.6_contrib.gemfile.lock +++ b/gemfiles/ruby_2.6_contrib.gemfile.lock @@ -32,7 +32,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.0) extlz4 (0.3.3) ffi (1.17.1-aarch64-linux-gnu) @@ -128,14 +128,14 @@ GEM rack (~> 2.0) redis (>= 4.5.0, < 5) sigdump (0.2.4) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sinatra (3.0.5) mustermann (~> 3.0) @@ -198,7 +198,7 @@ DEPENDENCIES rspec_junit_formatter (>= 0.5.1) semantic_logger (~> 4.0) sidekiq (~> 6.5) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sneakers (>= 2.12.0) sucker_punch diff --git a/gemfiles/ruby_2.6_contrib_old.gemfile b/gemfiles/ruby_2.6_contrib_old.gemfile index ec8047f9b61..cb0e5dace5b 100644 --- a/gemfiles/ruby_2.6_contrib_old.gemfile +++ b/gemfiles/ruby_2.6_contrib_old.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.6_contrib_old.gemfile.lock b/gemfiles/ruby_2.6_contrib_old.gemfile.lock index 4b308c55543..cd906666efd 100644 --- a/gemfiles/ruby_2.6_contrib_old.gemfile.lock +++ b/gemfiles/ruby_2.6_contrib_old.gemfile.lock @@ -30,7 +30,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.5.0) eventmachine (1.2.7) extlz4 (0.3.3) @@ -119,14 +119,14 @@ GEM rusage (0.2.0) sentry-raven (0.15.6) faraday (>= 0.7.6) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sinatra (2.0.8.1) mustermann (~> 1.0) @@ -179,7 +179,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_2.6_core_old.gemfile b/gemfiles/ruby_2.6_core_old.gemfile index c0ec3654d5e..6332756a3fd 100644 --- a/gemfiles/ruby_2.6_core_old.gemfile +++ b/gemfiles/ruby_2.6_core_old.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.6_core_old.gemfile.lock b/gemfiles/ruby_2.6_core_old.gemfile.lock index a7586d77091..ef765ce66b1 100644 --- a/gemfiles/ruby_2.6_core_old.gemfile.lock +++ b/gemfiles/ruby_2.6_core_old.gemfile.lock @@ -25,7 +25,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (4.8.3) extlz4 (0.3.3) ffi (1.17.1-aarch64-linux-gnu) @@ -79,14 +79,14 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) strscan (3.1.0) warning (1.3.0) @@ -121,7 +121,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_2.6_elasticsearch_7.gemfile b/gemfiles/ruby_2.6_elasticsearch_7.gemfile index 43f0be184dd..ab8badf7574 100644 --- a/gemfiles/ruby_2.6_elasticsearch_7.gemfile +++ b/gemfiles/ruby_2.6_elasticsearch_7.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.6_elasticsearch_7.gemfile.lock b/gemfiles/ruby_2.6_elasticsearch_7.gemfile.lock index 5aa268617b2..a9dfa52043f 100644 --- a/gemfiles/ruby_2.6_elasticsearch_7.gemfile.lock +++ b/gemfiles/ruby_2.6_elasticsearch_7.gemfile.lock @@ -27,7 +27,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) elasticsearch (7.17.11) elasticsearch-api (= 7.17.11) @@ -98,14 +98,14 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby2_keywords (0.0.5) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) strscan (3.1.0) warning (1.3.0) @@ -141,7 +141,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_2.6_elasticsearch_8.gemfile b/gemfiles/ruby_2.6_elasticsearch_8.gemfile index c805952d263..709370ed14f 100644 --- a/gemfiles/ruby_2.6_elasticsearch_8.gemfile +++ b/gemfiles/ruby_2.6_elasticsearch_8.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.6_elasticsearch_8.gemfile.lock b/gemfiles/ruby_2.6_elasticsearch_8.gemfile.lock index d58752294c9..bc00f6cebbe 100644 --- a/gemfiles/ruby_2.6_elasticsearch_8.gemfile.lock +++ b/gemfiles/ruby_2.6_elasticsearch_8.gemfile.lock @@ -27,7 +27,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) elastic-transport (8.3.5) faraday (< 3) @@ -97,14 +97,14 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby2_keywords (0.0.5) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) strscan (3.1.0) warning (1.3.0) @@ -140,7 +140,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_2.6_elasticsearch_latest.gemfile b/gemfiles/ruby_2.6_elasticsearch_latest.gemfile index e3ba378c37a..20b5a97282d 100644 --- a/gemfiles/ruby_2.6_elasticsearch_latest.gemfile +++ b/gemfiles/ruby_2.6_elasticsearch_latest.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.6_elasticsearch_latest.gemfile.lock b/gemfiles/ruby_2.6_elasticsearch_latest.gemfile.lock index ea9b73d4ad3..7f6121f0408 100644 --- a/gemfiles/ruby_2.6_elasticsearch_latest.gemfile.lock +++ b/gemfiles/ruby_2.6_elasticsearch_latest.gemfile.lock @@ -98,7 +98,7 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby2_keywords (0.0.5) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) @@ -140,7 +140,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_2.6_graphql_1.13.gemfile b/gemfiles/ruby_2.6_graphql_1.13.gemfile index 41f4fc73b09..edcb26be057 100644 --- a/gemfiles/ruby_2.6_graphql_1.13.gemfile +++ b/gemfiles/ruby_2.6_graphql_1.13.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.6_graphql_1.13.gemfile.lock b/gemfiles/ruby_2.6_graphql_1.13.gemfile.lock index 0376db20a83..1c6addb07b2 100644 --- a/gemfiles/ruby_2.6_graphql_1.13.gemfile.lock +++ b/gemfiles/ruby_2.6_graphql_1.13.gemfile.lock @@ -89,7 +89,7 @@ GEM date (3.3.4) debug_inspector (1.2.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) erubi (1.13.0) extlz4 (0.3.4) @@ -213,14 +213,14 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sprockets (3.7.3) base64 @@ -274,7 +274,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_2.6_graphql_2.0.gemfile b/gemfiles/ruby_2.6_graphql_2.0.gemfile index 3ed526dbbcb..7af428abcb0 100644 --- a/gemfiles/ruby_2.6_graphql_2.0.gemfile +++ b/gemfiles/ruby_2.6_graphql_2.0.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.6_graphql_2.0.gemfile.lock b/gemfiles/ruby_2.6_graphql_2.0.gemfile.lock index 5bd8885c295..96a9f0727ce 100644 --- a/gemfiles/ruby_2.6_graphql_2.0.gemfile.lock +++ b/gemfiles/ruby_2.6_graphql_2.0.gemfile.lock @@ -89,7 +89,7 @@ GEM date (3.3.4) debug_inspector (1.2.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) erubi (1.13.0) extlz4 (0.3.4) @@ -213,14 +213,14 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sprockets (3.7.3) base64 @@ -274,7 +274,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_2.6_hanami_1.gemfile b/gemfiles/ruby_2.6_hanami_1.gemfile index 25a2f807c72..c0d7574f6d0 100644 --- a/gemfiles/ruby_2.6_hanami_1.gemfile +++ b/gemfiles/ruby_2.6_hanami_1.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.6_hanami_1.gemfile.lock b/gemfiles/ruby_2.6_hanami_1.gemfile.lock index 0e23745ce2c..f90377f47fe 100644 --- a/gemfiles/ruby_2.6_hanami_1.gemfile.lock +++ b/gemfiles/ruby_2.6_hanami_1.gemfile.lock @@ -26,7 +26,7 @@ GEM date (3.3.3) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.5.0) dry-cli (0.7.0) dry-configurable (0.12.0) @@ -172,14 +172,14 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) strscan (3.1.0) tilt (2.1.0) @@ -222,7 +222,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_2.6_http.gemfile b/gemfiles/ruby_2.6_http.gemfile index 875681d2e17..f21f6593c65 100644 --- a/gemfiles/ruby_2.6_http.gemfile +++ b/gemfiles/ruby_2.6_http.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.6_http.gemfile.lock b/gemfiles/ruby_2.6_http.gemfile.lock index 311ef6cf91f..b9cc90ee367 100644 --- a/gemfiles/ruby_2.6_http.gemfile.lock +++ b/gemfiles/ruby_2.6_http.gemfile.lock @@ -25,7 +25,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) domain_name (0.5.20190701) unf (>= 0.0.5, < 1.0.0) @@ -114,14 +114,14 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby2_keywords (0.0.5) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) strscan (3.1.0) typhoeus (1.4.0) @@ -167,7 +167,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) typhoeus warning (~> 1) diff --git a/gemfiles/ruby_2.6_opensearch_2.gemfile b/gemfiles/ruby_2.6_opensearch_2.gemfile index 5305db0aa9f..e09f81c2045 100644 --- a/gemfiles/ruby_2.6_opensearch_2.gemfile +++ b/gemfiles/ruby_2.6_opensearch_2.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.6_opensearch_2.gemfile.lock b/gemfiles/ruby_2.6_opensearch_2.gemfile.lock index c29a270e147..165e38672ee 100644 --- a/gemfiles/ruby_2.6_opensearch_2.gemfile.lock +++ b/gemfiles/ruby_2.6_opensearch_2.gemfile.lock @@ -27,7 +27,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) faraday (2.8.1) @@ -97,14 +97,14 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby2_keywords (0.0.5) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) strscan (3.1.0) warning (1.3.0) @@ -140,7 +140,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_2.6_opensearch_3.gemfile b/gemfiles/ruby_2.6_opensearch_3.gemfile index 5bb495e022e..1ff966ae39a 100644 --- a/gemfiles/ruby_2.6_opensearch_3.gemfile +++ b/gemfiles/ruby_2.6_opensearch_3.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.6_opensearch_3.gemfile.lock b/gemfiles/ruby_2.6_opensearch_3.gemfile.lock index c8d9f81a007..56cc503e2e1 100644 --- a/gemfiles/ruby_2.6_opensearch_3.gemfile.lock +++ b/gemfiles/ruby_2.6_opensearch_3.gemfile.lock @@ -27,7 +27,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) faraday (2.8.1) @@ -92,14 +92,14 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby2_keywords (0.0.5) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) strscan (3.1.0) warning (1.3.0) @@ -135,7 +135,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_2.6_opensearch_latest.gemfile b/gemfiles/ruby_2.6_opensearch_latest.gemfile index b15f5a5355b..2df8366af42 100644 --- a/gemfiles/ruby_2.6_opensearch_latest.gemfile +++ b/gemfiles/ruby_2.6_opensearch_latest.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.6_opensearch_latest.gemfile.lock b/gemfiles/ruby_2.6_opensearch_latest.gemfile.lock index 86958c2b530..b80ae6e0566 100644 --- a/gemfiles/ruby_2.6_opensearch_latest.gemfile.lock +++ b/gemfiles/ruby_2.6_opensearch_latest.gemfile.lock @@ -93,7 +93,7 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby2_keywords (0.0.5) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) @@ -135,7 +135,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_2.6_opentelemetry.gemfile b/gemfiles/ruby_2.6_opentelemetry.gemfile index 5b9bbcab434..d11cc3639d5 100644 --- a/gemfiles/ruby_2.6_opentelemetry.gemfile +++ b/gemfiles/ruby_2.6_opentelemetry.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.6_opentelemetry.gemfile.lock b/gemfiles/ruby_2.6_opentelemetry.gemfile.lock index 2e044dd4f41..6653241e632 100755 --- a/gemfiles/ruby_2.6_opentelemetry.gemfile.lock +++ b/gemfiles/ruby_2.6_opentelemetry.gemfile.lock @@ -25,7 +25,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.5.0) extlz4 (0.3.3) ffi (1.17.1-aarch64-linux-gnu) @@ -91,14 +91,14 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) strscan (3.1.0) warning (1.3.0) @@ -134,7 +134,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_2.6_opentelemetry_otlp.gemfile b/gemfiles/ruby_2.6_opentelemetry_otlp.gemfile index e477603d0c6..798dd6aaf49 100644 --- a/gemfiles/ruby_2.6_opentelemetry_otlp.gemfile +++ b/gemfiles/ruby_2.6_opentelemetry_otlp.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.6_opentelemetry_otlp.gemfile.lock b/gemfiles/ruby_2.6_opentelemetry_otlp.gemfile.lock index c780f7fb906..3e9f2093a0b 100644 --- a/gemfiles/ruby_2.6_opentelemetry_otlp.gemfile.lock +++ b/gemfiles/ruby_2.6_opentelemetry_otlp.gemfile.lock @@ -28,7 +28,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) ffi (1.17.1-aarch64-linux-gnu) @@ -103,14 +103,14 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) warning (1.3.0) webmock (3.23.0) @@ -146,7 +146,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_2.6_rack_1.gemfile b/gemfiles/ruby_2.6_rack_1.gemfile index 63843041604..1e0bd849a9f 100644 --- a/gemfiles/ruby_2.6_rack_1.gemfile +++ b/gemfiles/ruby_2.6_rack_1.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.6_rack_1.gemfile.lock b/gemfiles/ruby_2.6_rack_1.gemfile.lock index 81e691003fc..5f09812f572 100644 --- a/gemfiles/ruby_2.6_rack_1.gemfile.lock +++ b/gemfiles/ruby_2.6_rack_1.gemfile.lock @@ -25,7 +25,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) ffi (1.17.1-aarch64-linux-gnu) @@ -84,14 +84,14 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) strscan (3.1.0) warning (1.3.0) @@ -129,7 +129,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_2.6_rack_2.gemfile b/gemfiles/ruby_2.6_rack_2.gemfile index b078cd5bc1a..c303cb7f623 100644 --- a/gemfiles/ruby_2.6_rack_2.gemfile +++ b/gemfiles/ruby_2.6_rack_2.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.6_rack_2.gemfile.lock b/gemfiles/ruby_2.6_rack_2.gemfile.lock index ed8207eb0f3..aaa6207b1db 100644 --- a/gemfiles/ruby_2.6_rack_2.gemfile.lock +++ b/gemfiles/ruby_2.6_rack_2.gemfile.lock @@ -25,7 +25,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) ffi (1.17.1-aarch64-linux-gnu) @@ -84,14 +84,14 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) strscan (3.1.0) warning (1.3.0) @@ -129,7 +129,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_2.6_rack_3.gemfile b/gemfiles/ruby_2.6_rack_3.gemfile index 9edae54865d..add4ae38fef 100644 --- a/gemfiles/ruby_2.6_rack_3.gemfile +++ b/gemfiles/ruby_2.6_rack_3.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.6_rack_3.gemfile.lock b/gemfiles/ruby_2.6_rack_3.gemfile.lock index 66af0b2e73f..a565b5ad548 100644 --- a/gemfiles/ruby_2.6_rack_3.gemfile.lock +++ b/gemfiles/ruby_2.6_rack_3.gemfile.lock @@ -25,7 +25,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) ffi (1.17.1-aarch64-linux-gnu) @@ -84,14 +84,14 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) strscan (3.1.0) warning (1.3.0) @@ -129,7 +129,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_2.6_rack_latest.gemfile b/gemfiles/ruby_2.6_rack_latest.gemfile index 15f1f9a59d0..a566d66888d 100644 --- a/gemfiles/ruby_2.6_rack_latest.gemfile +++ b/gemfiles/ruby_2.6_rack_latest.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.6_rack_latest.gemfile.lock b/gemfiles/ruby_2.6_rack_latest.gemfile.lock index d06693c1817..6b4cc7fcfdd 100644 --- a/gemfiles/ruby_2.6_rack_latest.gemfile.lock +++ b/gemfiles/ruby_2.6_rack_latest.gemfile.lock @@ -87,7 +87,7 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) @@ -131,7 +131,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_2.6_rails5_mysql2.gemfile b/gemfiles/ruby_2.6_rails5_mysql2.gemfile index 7b8d713056c..53269bd13bc 100644 --- a/gemfiles/ruby_2.6_rails5_mysql2.gemfile +++ b/gemfiles/ruby_2.6_rails5_mysql2.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.6_rails5_mysql2.gemfile.lock b/gemfiles/ruby_2.6_rails5_mysql2.gemfile.lock index af311376764..7f9bb8ee10b 100644 --- a/gemfiles/ruby_2.6_rails5_mysql2.gemfile.lock +++ b/gemfiles/ruby_2.6_rails5_mysql2.gemfile.lock @@ -70,7 +70,7 @@ GEM date (3.3.3) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.5.0) erubi (1.12.0) extlz4 (0.3.3) @@ -190,14 +190,14 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sprockets (3.7.2) concurrent-ruby (~> 1.0) @@ -250,7 +250,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_2.6_rails5_postgres.gemfile b/gemfiles/ruby_2.6_rails5_postgres.gemfile index 7a8523e485d..3af32ff444e 100644 --- a/gemfiles/ruby_2.6_rails5_postgres.gemfile +++ b/gemfiles/ruby_2.6_rails5_postgres.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.6_rails5_postgres.gemfile.lock b/gemfiles/ruby_2.6_rails5_postgres.gemfile.lock index 40a4aee5437..8df9461e2ec 100644 --- a/gemfiles/ruby_2.6_rails5_postgres.gemfile.lock +++ b/gemfiles/ruby_2.6_rails5_postgres.gemfile.lock @@ -70,7 +70,7 @@ GEM date (3.3.3) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.5.0) erubi (1.12.0) extlz4 (0.3.3) @@ -190,14 +190,14 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sprockets (3.7.2) concurrent-ruby (~> 1.0) @@ -250,7 +250,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_2.6_rails5_postgres_redis.gemfile b/gemfiles/ruby_2.6_rails5_postgres_redis.gemfile index cac4785c9ff..8431ca0cf9a 100644 --- a/gemfiles/ruby_2.6_rails5_postgres_redis.gemfile +++ b/gemfiles/ruby_2.6_rails5_postgres_redis.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.6_rails5_postgres_redis.gemfile.lock b/gemfiles/ruby_2.6_rails5_postgres_redis.gemfile.lock index 445e6cdbb2b..8242f7934d6 100644 --- a/gemfiles/ruby_2.6_rails5_postgres_redis.gemfile.lock +++ b/gemfiles/ruby_2.6_rails5_postgres_redis.gemfile.lock @@ -70,7 +70,7 @@ GEM date (3.3.3) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.5.0) erubi (1.12.0) extlz4 (0.3.3) @@ -191,14 +191,14 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sprockets (3.7.2) concurrent-ruby (~> 1.0) @@ -252,7 +252,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_2.6_rails5_postgres_redis_activesupport.gemfile b/gemfiles/ruby_2.6_rails5_postgres_redis_activesupport.gemfile index 673743a7b1a..06782385b33 100644 --- a/gemfiles/ruby_2.6_rails5_postgres_redis_activesupport.gemfile +++ b/gemfiles/ruby_2.6_rails5_postgres_redis_activesupport.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.6_rails5_postgres_redis_activesupport.gemfile.lock b/gemfiles/ruby_2.6_rails5_postgres_redis_activesupport.gemfile.lock index 0bb5b3f46f9..0c67b14181b 100644 --- a/gemfiles/ruby_2.6_rails5_postgres_redis_activesupport.gemfile.lock +++ b/gemfiles/ruby_2.6_rails5_postgres_redis_activesupport.gemfile.lock @@ -70,7 +70,7 @@ GEM date (3.3.3) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.5.0) erubi (1.12.0) extlz4 (0.3.3) @@ -207,14 +207,14 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sprockets (3.7.2) concurrent-ruby (~> 1.0) @@ -270,7 +270,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_2.6_rails5_postgres_sidekiq.gemfile b/gemfiles/ruby_2.6_rails5_postgres_sidekiq.gemfile index e29d796b734..0eed5f4bee6 100644 --- a/gemfiles/ruby_2.6_rails5_postgres_sidekiq.gemfile +++ b/gemfiles/ruby_2.6_rails5_postgres_sidekiq.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.6_rails5_postgres_sidekiq.gemfile.lock b/gemfiles/ruby_2.6_rails5_postgres_sidekiq.gemfile.lock index f1aa754d1da..85affccf881 100644 --- a/gemfiles/ruby_2.6_rails5_postgres_sidekiq.gemfile.lock +++ b/gemfiles/ruby_2.6_rails5_postgres_sidekiq.gemfile.lock @@ -71,7 +71,7 @@ GEM date (3.3.3) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.5.0) erubi (1.12.0) extlz4 (0.3.3) @@ -196,14 +196,14 @@ GEM connection_pool (>= 2.2.5, < 3) rack (~> 2.0) redis (>= 4.5.0, < 5) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sprockets (3.7.2) concurrent-ruby (~> 1.0) @@ -258,7 +258,7 @@ DEPENDENCIES rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) sidekiq - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_2.6_rails5_semantic_logger.gemfile b/gemfiles/ruby_2.6_rails5_semantic_logger.gemfile index aacd897f156..5079278715a 100644 --- a/gemfiles/ruby_2.6_rails5_semantic_logger.gemfile +++ b/gemfiles/ruby_2.6_rails5_semantic_logger.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.6_rails5_semantic_logger.gemfile.lock b/gemfiles/ruby_2.6_rails5_semantic_logger.gemfile.lock index 19073e1ab2f..1a50adbd991 100644 --- a/gemfiles/ruby_2.6_rails5_semantic_logger.gemfile.lock +++ b/gemfiles/ruby_2.6_rails5_semantic_logger.gemfile.lock @@ -70,7 +70,7 @@ GEM date (3.3.3) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.5.0) erubi (1.12.0) extlz4 (0.3.3) @@ -189,14 +189,14 @@ GEM rspec-core (>= 2, < 4, != 2.12.0) semantic_logger (4.12.0) concurrent-ruby (~> 1.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sprockets (3.7.2) concurrent-ruby (~> 1.0) @@ -249,7 +249,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_2.6_rails61_mysql2.gemfile b/gemfiles/ruby_2.6_rails61_mysql2.gemfile index aaddcb06690..3ab11dc5b11 100644 --- a/gemfiles/ruby_2.6_rails61_mysql2.gemfile +++ b/gemfiles/ruby_2.6_rails61_mysql2.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.6_rails61_mysql2.gemfile.lock b/gemfiles/ruby_2.6_rails61_mysql2.gemfile.lock index daabbdced97..fe8d87ea2d0 100644 --- a/gemfiles/ruby_2.6_rails61_mysql2.gemfile.lock +++ b/gemfiles/ruby_2.6_rails61_mysql2.gemfile.lock @@ -87,7 +87,7 @@ GEM date (3.3.3) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.5.0) erubi (1.12.0) extlz4 (0.3.3) @@ -209,14 +209,14 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sprockets (3.7.2) concurrent-ruby (~> 1.0) @@ -269,7 +269,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_2.6_rails61_postgres.gemfile b/gemfiles/ruby_2.6_rails61_postgres.gemfile index e292f2e2c42..ca9e55bd282 100644 --- a/gemfiles/ruby_2.6_rails61_postgres.gemfile +++ b/gemfiles/ruby_2.6_rails61_postgres.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.6_rails61_postgres.gemfile.lock b/gemfiles/ruby_2.6_rails61_postgres.gemfile.lock index 8df7c2bd567..cb8afc6510d 100644 --- a/gemfiles/ruby_2.6_rails61_postgres.gemfile.lock +++ b/gemfiles/ruby_2.6_rails61_postgres.gemfile.lock @@ -87,7 +87,7 @@ GEM date (3.3.3) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.5.0) erubi (1.12.0) extlz4 (0.3.3) @@ -209,14 +209,14 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sprockets (3.7.2) concurrent-ruby (~> 1.0) @@ -269,7 +269,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_2.6_rails61_postgres_redis.gemfile b/gemfiles/ruby_2.6_rails61_postgres_redis.gemfile index 864965a8ef1..d898b1a0862 100644 --- a/gemfiles/ruby_2.6_rails61_postgres_redis.gemfile +++ b/gemfiles/ruby_2.6_rails61_postgres_redis.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.6_rails61_postgres_redis.gemfile.lock b/gemfiles/ruby_2.6_rails61_postgres_redis.gemfile.lock index 57fdb2bda9d..5f3b6d309c7 100644 --- a/gemfiles/ruby_2.6_rails61_postgres_redis.gemfile.lock +++ b/gemfiles/ruby_2.6_rails61_postgres_redis.gemfile.lock @@ -87,7 +87,7 @@ GEM date (3.3.3) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.5.0) erubi (1.12.0) extlz4 (0.3.3) @@ -210,14 +210,14 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sprockets (3.7.2) concurrent-ruby (~> 1.0) @@ -271,7 +271,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_2.6_rails61_postgres_sidekiq.gemfile b/gemfiles/ruby_2.6_rails61_postgres_sidekiq.gemfile index e8e6afe2cc6..aedf57034b5 100644 --- a/gemfiles/ruby_2.6_rails61_postgres_sidekiq.gemfile +++ b/gemfiles/ruby_2.6_rails61_postgres_sidekiq.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.6_rails61_postgres_sidekiq.gemfile.lock b/gemfiles/ruby_2.6_rails61_postgres_sidekiq.gemfile.lock index 9689f28a0c6..2608e5558e7 100644 --- a/gemfiles/ruby_2.6_rails61_postgres_sidekiq.gemfile.lock +++ b/gemfiles/ruby_2.6_rails61_postgres_sidekiq.gemfile.lock @@ -88,7 +88,7 @@ GEM date (3.3.3) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.5.0) erubi (1.12.0) extlz4 (0.3.3) @@ -215,14 +215,14 @@ GEM connection_pool (>= 2.2.5, < 3) rack (~> 2.0) redis (>= 4.5.0, < 5) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sprockets (3.7.2) concurrent-ruby (~> 1.0) @@ -276,7 +276,7 @@ DEPENDENCIES rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) sidekiq (>= 6.1.2) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_2.6_rails61_semantic_logger.gemfile b/gemfiles/ruby_2.6_rails61_semantic_logger.gemfile index d59528e31b7..488f5bebfde 100644 --- a/gemfiles/ruby_2.6_rails61_semantic_logger.gemfile +++ b/gemfiles/ruby_2.6_rails61_semantic_logger.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.6_rails61_semantic_logger.gemfile.lock b/gemfiles/ruby_2.6_rails61_semantic_logger.gemfile.lock index a86102b016b..faa42c37fbc 100644 --- a/gemfiles/ruby_2.6_rails61_semantic_logger.gemfile.lock +++ b/gemfiles/ruby_2.6_rails61_semantic_logger.gemfile.lock @@ -87,7 +87,7 @@ GEM date (3.3.3) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.5.0) erubi (1.12.0) extlz4 (0.3.3) @@ -208,14 +208,14 @@ GEM rspec-core (>= 2, < 4, != 2.12.0) semantic_logger (4.12.0) concurrent-ruby (~> 1.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sprockets (3.7.2) concurrent-ruby (~> 1.0) @@ -268,7 +268,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_2.6_rails6_mysql2.gemfile b/gemfiles/ruby_2.6_rails6_mysql2.gemfile index 22a6fd29e52..ca22adff177 100644 --- a/gemfiles/ruby_2.6_rails6_mysql2.gemfile +++ b/gemfiles/ruby_2.6_rails6_mysql2.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.6_rails6_mysql2.gemfile.lock b/gemfiles/ruby_2.6_rails6_mysql2.gemfile.lock index 5bd2c931b3b..15b05e29a96 100644 --- a/gemfiles/ruby_2.6_rails6_mysql2.gemfile.lock +++ b/gemfiles/ruby_2.6_rails6_mysql2.gemfile.lock @@ -83,7 +83,7 @@ GEM date (3.3.3) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.5.0) erubi (1.12.0) extlz4 (0.3.3) @@ -205,14 +205,14 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sprockets (3.7.2) concurrent-ruby (~> 1.0) @@ -266,7 +266,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_2.6_rails6_postgres.gemfile b/gemfiles/ruby_2.6_rails6_postgres.gemfile index 35843cd37ec..abed4f9b7c2 100644 --- a/gemfiles/ruby_2.6_rails6_postgres.gemfile +++ b/gemfiles/ruby_2.6_rails6_postgres.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.6_rails6_postgres.gemfile.lock b/gemfiles/ruby_2.6_rails6_postgres.gemfile.lock index 9ce6e7e7b1f..c5d61bf91c4 100644 --- a/gemfiles/ruby_2.6_rails6_postgres.gemfile.lock +++ b/gemfiles/ruby_2.6_rails6_postgres.gemfile.lock @@ -83,7 +83,7 @@ GEM date (3.3.3) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.5.0) erubi (1.12.0) extlz4 (0.3.3) @@ -205,14 +205,14 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sprockets (3.7.2) concurrent-ruby (~> 1.0) @@ -266,7 +266,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_2.6_rails6_postgres_redis.gemfile b/gemfiles/ruby_2.6_rails6_postgres_redis.gemfile index 659fa2eb5d9..aa963353f15 100644 --- a/gemfiles/ruby_2.6_rails6_postgres_redis.gemfile +++ b/gemfiles/ruby_2.6_rails6_postgres_redis.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.6_rails6_postgres_redis.gemfile.lock b/gemfiles/ruby_2.6_rails6_postgres_redis.gemfile.lock index 846e5857910..41f7daee501 100644 --- a/gemfiles/ruby_2.6_rails6_postgres_redis.gemfile.lock +++ b/gemfiles/ruby_2.6_rails6_postgres_redis.gemfile.lock @@ -83,7 +83,7 @@ GEM date (3.3.3) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.5.0) erubi (1.12.0) extlz4 (0.3.3) @@ -206,14 +206,14 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sprockets (3.7.2) concurrent-ruby (~> 1.0) @@ -268,7 +268,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_2.6_rails6_postgres_redis_activesupport.gemfile b/gemfiles/ruby_2.6_rails6_postgres_redis_activesupport.gemfile index b17d742e88b..68da7c18b82 100644 --- a/gemfiles/ruby_2.6_rails6_postgres_redis_activesupport.gemfile +++ b/gemfiles/ruby_2.6_rails6_postgres_redis_activesupport.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.6_rails6_postgres_redis_activesupport.gemfile.lock b/gemfiles/ruby_2.6_rails6_postgres_redis_activesupport.gemfile.lock index 712ae43853d..5b208f709cb 100644 --- a/gemfiles/ruby_2.6_rails6_postgres_redis_activesupport.gemfile.lock +++ b/gemfiles/ruby_2.6_rails6_postgres_redis_activesupport.gemfile.lock @@ -83,7 +83,7 @@ GEM date (3.3.3) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.5.0) erubi (1.12.0) extlz4 (0.3.3) @@ -222,14 +222,14 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sprockets (3.7.2) concurrent-ruby (~> 1.0) @@ -286,7 +286,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_2.6_rails6_postgres_sidekiq.gemfile b/gemfiles/ruby_2.6_rails6_postgres_sidekiq.gemfile index 5e6cb3a7c16..86d39f35557 100644 --- a/gemfiles/ruby_2.6_rails6_postgres_sidekiq.gemfile +++ b/gemfiles/ruby_2.6_rails6_postgres_sidekiq.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.6_rails6_postgres_sidekiq.gemfile.lock b/gemfiles/ruby_2.6_rails6_postgres_sidekiq.gemfile.lock index 6181e92d1a8..e98e222d8f5 100644 --- a/gemfiles/ruby_2.6_rails6_postgres_sidekiq.gemfile.lock +++ b/gemfiles/ruby_2.6_rails6_postgres_sidekiq.gemfile.lock @@ -84,7 +84,7 @@ GEM date (3.3.3) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.5.0) erubi (1.12.0) extlz4 (0.3.3) @@ -211,14 +211,14 @@ GEM connection_pool (>= 2.2.5, < 3) rack (~> 2.0) redis (>= 4.5.0, < 5) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sprockets (3.7.2) concurrent-ruby (~> 1.0) @@ -274,7 +274,7 @@ DEPENDENCIES rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) sidekiq - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_2.6_rails6_semantic_logger.gemfile b/gemfiles/ruby_2.6_rails6_semantic_logger.gemfile index 9a6afa8fbae..94ab871a19a 100644 --- a/gemfiles/ruby_2.6_rails6_semantic_logger.gemfile +++ b/gemfiles/ruby_2.6_rails6_semantic_logger.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.6_rails6_semantic_logger.gemfile.lock b/gemfiles/ruby_2.6_rails6_semantic_logger.gemfile.lock index 66991e1bfac..28cbaf80b8c 100644 --- a/gemfiles/ruby_2.6_rails6_semantic_logger.gemfile.lock +++ b/gemfiles/ruby_2.6_rails6_semantic_logger.gemfile.lock @@ -83,7 +83,7 @@ GEM date (3.3.3) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.5.0) erubi (1.12.0) extlz4 (0.3.3) @@ -204,14 +204,14 @@ GEM rspec-core (>= 2, < 4, != 2.12.0) semantic_logger (4.12.0) concurrent-ruby (~> 1.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sprockets (3.7.2) concurrent-ruby (~> 1.0) @@ -265,7 +265,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_2.6_rails_old_redis.gemfile b/gemfiles/ruby_2.6_rails_old_redis.gemfile index f5ce43214f8..117013be723 100644 --- a/gemfiles/ruby_2.6_rails_old_redis.gemfile +++ b/gemfiles/ruby_2.6_rails_old_redis.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.6_redis_3.gemfile b/gemfiles/ruby_2.6_redis_3.gemfile index 8933632963f..5ae5f847cc2 100644 --- a/gemfiles/ruby_2.6_redis_3.gemfile +++ b/gemfiles/ruby_2.6_redis_3.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.6_redis_3.gemfile.lock b/gemfiles/ruby_2.6_redis_3.gemfile.lock index d7c2f96b065..00ffe04c7c4 100644 --- a/gemfiles/ruby_2.6_redis_3.gemfile.lock +++ b/gemfiles/ruby_2.6_redis_3.gemfile.lock @@ -25,7 +25,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.5.0) extlz4 (0.3.3) ffi (1.17.1-aarch64-linux-gnu) @@ -80,14 +80,14 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) strscan (3.1.0) warning (1.3.0) @@ -123,7 +123,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_2.6_redis_4.gemfile b/gemfiles/ruby_2.6_redis_4.gemfile index 41b903cdacb..758e45069e4 100644 --- a/gemfiles/ruby_2.6_redis_4.gemfile +++ b/gemfiles/ruby_2.6_redis_4.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.6_redis_4.gemfile.lock b/gemfiles/ruby_2.6_redis_4.gemfile.lock index e2e32cb29c7..8aef482c143 100644 --- a/gemfiles/ruby_2.6_redis_4.gemfile.lock +++ b/gemfiles/ruby_2.6_redis_4.gemfile.lock @@ -25,7 +25,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.5.0) extlz4 (0.3.3) ffi (1.17.1-aarch64-linux-gnu) @@ -80,14 +80,14 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) strscan (3.1.0) warning (1.3.0) @@ -123,7 +123,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_2.6_redis_5.gemfile b/gemfiles/ruby_2.6_redis_5.gemfile index 67fbcef7901..0485762d1c7 100644 --- a/gemfiles/ruby_2.6_redis_5.gemfile +++ b/gemfiles/ruby_2.6_redis_5.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.6_redis_5.gemfile.lock b/gemfiles/ruby_2.6_redis_5.gemfile.lock index d70da47b0c7..b70ea9b37e1 100644 --- a/gemfiles/ruby_2.6_redis_5.gemfile.lock +++ b/gemfiles/ruby_2.6_redis_5.gemfile.lock @@ -26,7 +26,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.5.0) extlz4 (0.3.3) ffi (1.17.1-aarch64-linux-gnu) @@ -84,14 +84,14 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) strscan (3.1.0) warning (1.3.0) @@ -127,7 +127,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_2.6_relational_db.gemfile b/gemfiles/ruby_2.6_relational_db.gemfile index 529bb878854..6757f057ba8 100644 --- a/gemfiles/ruby_2.6_relational_db.gemfile +++ b/gemfiles/ruby_2.6_relational_db.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.6_relational_db.gemfile.lock b/gemfiles/ruby_2.6_relational_db.gemfile.lock index 1e36ad194e0..9eeeffb7e00 100644 --- a/gemfiles/ruby_2.6_relational_db.gemfile.lock +++ b/gemfiles/ruby_2.6_relational_db.gemfile.lock @@ -42,7 +42,7 @@ GEM activerecord (>= 3.0, < 8.0) delayed_job (>= 3.0, < 5) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) ffi (1.17.1-aarch64-linux-gnu) @@ -105,14 +105,14 @@ GEM rspec-core (>= 2, < 4, != 2.12.0) sequel (5.83.1) bigdecimal - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sqlite3 (1.4.4) strscan (3.1.0) @@ -159,7 +159,7 @@ DEPENDENCIES rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) sequel - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sqlite3 (~> 1.4.1) warning (~> 1) diff --git a/gemfiles/ruby_2.6_resque2_redis3.gemfile b/gemfiles/ruby_2.6_resque2_redis3.gemfile index b5b43b5fdae..0d9fd30ed91 100644 --- a/gemfiles/ruby_2.6_resque2_redis3.gemfile +++ b/gemfiles/ruby_2.6_resque2_redis3.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.6_resque2_redis3.gemfile.lock b/gemfiles/ruby_2.6_resque2_redis3.gemfile.lock index f60f3fab171..007ba653faa 100644 --- a/gemfiles/ruby_2.6_resque2_redis3.gemfile.lock +++ b/gemfiles/ruby_2.6_resque2_redis3.gemfile.lock @@ -25,7 +25,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.5.0) extlz4 (0.3.3) ffi (1.17.1-aarch64-linux-gnu) @@ -95,14 +95,14 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby2_keywords (0.0.5) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sinatra (3.0.5) mustermann (~> 3.0) @@ -145,7 +145,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_2.6_resque2_redis4.gemfile b/gemfiles/ruby_2.6_resque2_redis4.gemfile index 6d806835bb0..55bd36a5194 100644 --- a/gemfiles/ruby_2.6_resque2_redis4.gemfile +++ b/gemfiles/ruby_2.6_resque2_redis4.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.6_resque2_redis4.gemfile.lock b/gemfiles/ruby_2.6_resque2_redis4.gemfile.lock index c0997d0517e..b37161333ef 100644 --- a/gemfiles/ruby_2.6_resque2_redis4.gemfile.lock +++ b/gemfiles/ruby_2.6_resque2_redis4.gemfile.lock @@ -25,7 +25,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.5.0) extlz4 (0.3.3) ffi (1.17.1-aarch64-linux-gnu) @@ -95,14 +95,14 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby2_keywords (0.0.5) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sinatra (3.0.5) mustermann (~> 3.0) @@ -145,7 +145,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_2.6_sinatra_2.gemfile b/gemfiles/ruby_2.6_sinatra_2.gemfile index 621ff093714..4fb74c1da68 100644 --- a/gemfiles/ruby_2.6_sinatra_2.gemfile +++ b/gemfiles/ruby_2.6_sinatra_2.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.6_sinatra_2.gemfile.lock b/gemfiles/ruby_2.6_sinatra_2.gemfile.lock index 3ac7985604a..0f0ad81d1ce 100644 --- a/gemfiles/ruby_2.6_sinatra_2.gemfile.lock +++ b/gemfiles/ruby_2.6_sinatra_2.gemfile.lock @@ -28,7 +28,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) ffi (1.17.1-aarch64-linux-gnu) @@ -93,14 +93,14 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby2_keywords (0.0.5) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sinatra (2.2.4) mustermann (~> 2.0) @@ -143,7 +143,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sinatra (~> 2) warning (~> 1) diff --git a/gemfiles/ruby_2.6_sinatra_3.gemfile b/gemfiles/ruby_2.6_sinatra_3.gemfile index 15a4d64e95f..45558e01ed3 100644 --- a/gemfiles/ruby_2.6_sinatra_3.gemfile +++ b/gemfiles/ruby_2.6_sinatra_3.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.6_sinatra_3.gemfile.lock b/gemfiles/ruby_2.6_sinatra_3.gemfile.lock index a2228005aca..4bcea2a599c 100644 --- a/gemfiles/ruby_2.6_sinatra_3.gemfile.lock +++ b/gemfiles/ruby_2.6_sinatra_3.gemfile.lock @@ -29,7 +29,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) ffi (1.17.1-aarch64-linux-gnu) @@ -95,14 +95,14 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby2_keywords (0.0.5) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sinatra (3.2.0) mustermann (~> 3.0) @@ -145,7 +145,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sinatra (~> 3) warning (~> 1) diff --git a/gemfiles/ruby_2.6_stripe_10.gemfile b/gemfiles/ruby_2.6_stripe_10.gemfile index 9f057403bf5..bb15b017598 100644 --- a/gemfiles/ruby_2.6_stripe_10.gemfile +++ b/gemfiles/ruby_2.6_stripe_10.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.6_stripe_10.gemfile.lock b/gemfiles/ruby_2.6_stripe_10.gemfile.lock index cde2efeb27c..59a33cb1fa6 100644 --- a/gemfiles/ruby_2.6_stripe_10.gemfile.lock +++ b/gemfiles/ruby_2.6_stripe_10.gemfile.lock @@ -83,14 +83,14 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) stripe (10.15.0) strscan (3.1.0) @@ -126,7 +126,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) stripe (~> 10) warning (~> 1) diff --git a/gemfiles/ruby_2.6_stripe_11.gemfile b/gemfiles/ruby_2.6_stripe_11.gemfile index 1436623888c..2478e376b38 100644 --- a/gemfiles/ruby_2.6_stripe_11.gemfile +++ b/gemfiles/ruby_2.6_stripe_11.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.6_stripe_11.gemfile.lock b/gemfiles/ruby_2.6_stripe_11.gemfile.lock index 7f88df5a034..27950f2f0ac 100644 --- a/gemfiles/ruby_2.6_stripe_11.gemfile.lock +++ b/gemfiles/ruby_2.6_stripe_11.gemfile.lock @@ -83,14 +83,14 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) stripe (11.7.0) strscan (3.1.0) @@ -126,7 +126,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) stripe (~> 11) warning (~> 1) diff --git a/gemfiles/ruby_2.6_stripe_12.gemfile b/gemfiles/ruby_2.6_stripe_12.gemfile index fa6df5ee62d..5a21bce4213 100644 --- a/gemfiles/ruby_2.6_stripe_12.gemfile +++ b/gemfiles/ruby_2.6_stripe_12.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.6_stripe_12.gemfile.lock b/gemfiles/ruby_2.6_stripe_12.gemfile.lock index cf6d21e6c0f..b9970c6f60b 100644 --- a/gemfiles/ruby_2.6_stripe_12.gemfile.lock +++ b/gemfiles/ruby_2.6_stripe_12.gemfile.lock @@ -83,14 +83,14 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) stripe (12.6.0) strscan (3.1.0) @@ -126,7 +126,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) stripe (~> 12) warning (~> 1) diff --git a/gemfiles/ruby_2.6_stripe_7.gemfile b/gemfiles/ruby_2.6_stripe_7.gemfile index 402d284d148..1649c8a84b6 100644 --- a/gemfiles/ruby_2.6_stripe_7.gemfile +++ b/gemfiles/ruby_2.6_stripe_7.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.6_stripe_7.gemfile.lock b/gemfiles/ruby_2.6_stripe_7.gemfile.lock index 09aee3f41bf..d60f56c841a 100644 --- a/gemfiles/ruby_2.6_stripe_7.gemfile.lock +++ b/gemfiles/ruby_2.6_stripe_7.gemfile.lock @@ -83,14 +83,14 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) stripe (7.1.0) strscan (3.1.0) @@ -126,7 +126,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) stripe (~> 7) warning (~> 1) diff --git a/gemfiles/ruby_2.6_stripe_8.gemfile b/gemfiles/ruby_2.6_stripe_8.gemfile index 1e639e2beb6..8fa9e5ba7b6 100644 --- a/gemfiles/ruby_2.6_stripe_8.gemfile +++ b/gemfiles/ruby_2.6_stripe_8.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.6_stripe_8.gemfile.lock b/gemfiles/ruby_2.6_stripe_8.gemfile.lock index 689bec535a3..c9158dfd417 100644 --- a/gemfiles/ruby_2.6_stripe_8.gemfile.lock +++ b/gemfiles/ruby_2.6_stripe_8.gemfile.lock @@ -83,14 +83,14 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) stripe (8.7.0) strscan (3.1.0) @@ -126,7 +126,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) stripe (~> 8) warning (~> 1) diff --git a/gemfiles/ruby_2.6_stripe_9.gemfile b/gemfiles/ruby_2.6_stripe_9.gemfile index 14e6c67e1f0..de8eeecb0e5 100644 --- a/gemfiles/ruby_2.6_stripe_9.gemfile +++ b/gemfiles/ruby_2.6_stripe_9.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.6_stripe_9.gemfile.lock b/gemfiles/ruby_2.6_stripe_9.gemfile.lock index e6666fa5ad0..dffcb37d2b4 100644 --- a/gemfiles/ruby_2.6_stripe_9.gemfile.lock +++ b/gemfiles/ruby_2.6_stripe_9.gemfile.lock @@ -83,14 +83,14 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) stripe (9.4.0) strscan (3.1.0) @@ -126,7 +126,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) stripe (~> 9) warning (~> 1) diff --git a/gemfiles/ruby_2.6_stripe_latest.gemfile b/gemfiles/ruby_2.6_stripe_latest.gemfile index e67023efc98..cc070db03ec 100644 --- a/gemfiles/ruby_2.6_stripe_latest.gemfile +++ b/gemfiles/ruby_2.6_stripe_latest.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.6_stripe_latest.gemfile.lock b/gemfiles/ruby_2.6_stripe_latest.gemfile.lock index dd9d7bfa776..1e6ba03ae8e 100644 --- a/gemfiles/ruby_2.6_stripe_latest.gemfile.lock +++ b/gemfiles/ruby_2.6_stripe_latest.gemfile.lock @@ -82,7 +82,7 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) @@ -124,7 +124,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) stripe warning (~> 1) diff --git a/gemfiles/ruby_2.6_stripe_min.gemfile b/gemfiles/ruby_2.6_stripe_min.gemfile index 96e42d51921..8c4c885dfb3 100644 --- a/gemfiles/ruby_2.6_stripe_min.gemfile +++ b/gemfiles/ruby_2.6_stripe_min.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.6_stripe_min.gemfile.lock b/gemfiles/ruby_2.6_stripe_min.gemfile.lock index 61082055c1a..74975f07f8e 100644 --- a/gemfiles/ruby_2.6_stripe_min.gemfile.lock +++ b/gemfiles/ruby_2.6_stripe_min.gemfile.lock @@ -82,7 +82,7 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) @@ -124,7 +124,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) stripe (= 5.15.0) warning (~> 1) diff --git a/gemfiles/ruby_2.7_activesupport.gemfile b/gemfiles/ruby_2.7_activesupport.gemfile index a9d50f158f2..a0567954cdf 100644 --- a/gemfiles/ruby_2.7_activesupport.gemfile +++ b/gemfiles/ruby_2.7_activesupport.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.7_activesupport.gemfile.lock b/gemfiles/ruby_2.7_activesupport.gemfile.lock index c948d7c63a6..6d9e66d0917 100644 --- a/gemfiles/ruby_2.7_activesupport.gemfile.lock +++ b/gemfiles/ruby_2.7_activesupport.gemfile.lock @@ -57,7 +57,7 @@ GEM diff-lcs (1.5.0) digest-crc (0.6.5) rake (>= 12.0.0, < 14.0.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) dry-core (1.0.0) concurrent-ruby (~> 1.0) @@ -186,14 +186,14 @@ GEM ruby-kafka (1.5.0) digest-crc ruby2_keywords (0.0.5) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) strscan (3.1.0) thor (1.2.2) @@ -240,7 +240,7 @@ DEPENDENCIES rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) ruby-kafka (>= 0.7.10) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_2.7_aws.gemfile b/gemfiles/ruby_2.7_aws.gemfile index 17e02fefc18..c41c2871b3d 100644 --- a/gemfiles/ruby_2.7_aws.gemfile +++ b/gemfiles/ruby_2.7_aws.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.7_aws.gemfile.lock b/gemfiles/ruby_2.7_aws.gemfile.lock index 7dbe70f88c3..7576be7ae16 100644 --- a/gemfiles/ruby_2.7_aws.gemfile.lock +++ b/gemfiles/ruby_2.7_aws.gemfile.lock @@ -1446,7 +1446,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.0) extlz4 (0.3.4) ffi (1.17.1-aarch64-linux-gnu) @@ -1505,14 +1505,14 @@ GEM aws-sdk-core (>= 2) concurrent-ruby thor - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) strscan (3.1.0) thor (1.2.2) @@ -1550,7 +1550,7 @@ DEPENDENCIES rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) shoryuken - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_2.7_contrib.gemfile b/gemfiles/ruby_2.7_contrib.gemfile index eedda585e3a..77bb0665a10 100644 --- a/gemfiles/ruby_2.7_contrib.gemfile +++ b/gemfiles/ruby_2.7_contrib.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.7_contrib.gemfile.lock b/gemfiles/ruby_2.7_contrib.gemfile.lock index e23b2ef319e..29b2b968c13 100644 --- a/gemfiles/ruby_2.7_contrib.gemfile.lock +++ b/gemfiles/ruby_2.7_contrib.gemfile.lock @@ -32,7 +32,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.5.0) extlz4 (0.3.3) ffi (1.17.1-aarch64-linux-gnu) @@ -128,14 +128,14 @@ GEM rack (~> 2.0) redis (>= 4.5.0, < 5) sigdump (0.2.4) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sinatra (3.0.5) mustermann (~> 3.0) @@ -197,7 +197,7 @@ DEPENDENCIES rspec_junit_formatter (>= 0.5.1) semantic_logger (~> 4.0) sidekiq (~> 6) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sneakers (>= 2.12.0) sucker_punch diff --git a/gemfiles/ruby_2.7_contrib_old.gemfile b/gemfiles/ruby_2.7_contrib_old.gemfile index 354e97e39a4..2fe267beaab 100644 --- a/gemfiles/ruby_2.7_contrib_old.gemfile +++ b/gemfiles/ruby_2.7_contrib_old.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.7_contrib_old.gemfile.lock b/gemfiles/ruby_2.7_contrib_old.gemfile.lock index 8bbf070cb69..cc9964e4335 100644 --- a/gemfiles/ruby_2.7_contrib_old.gemfile.lock +++ b/gemfiles/ruby_2.7_contrib_old.gemfile.lock @@ -30,7 +30,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.5.0) eventmachine (1.2.7) extlz4 (0.3.3) @@ -119,14 +119,14 @@ GEM rusage (0.2.0) sentry-raven (0.15.6) faraday (>= 0.7.6) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sinatra (2.0.8.1) mustermann (~> 1.0) @@ -179,7 +179,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_2.7_core_old.gemfile b/gemfiles/ruby_2.7_core_old.gemfile index 4fb04799c63..1fbd97d1df0 100644 --- a/gemfiles/ruby_2.7_core_old.gemfile +++ b/gemfiles/ruby_2.7_core_old.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.7_core_old.gemfile.lock b/gemfiles/ruby_2.7_core_old.gemfile.lock index 7fde72fcc35..2b1b3faf0ab 100644 --- a/gemfiles/ruby_2.7_core_old.gemfile.lock +++ b/gemfiles/ruby_2.7_core_old.gemfile.lock @@ -25,7 +25,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (4.8.3) extlz4 (0.3.3) ffi (1.17.1-aarch64-linux-gnu) @@ -79,14 +79,14 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) strscan (3.1.0) warning (1.3.0) @@ -121,7 +121,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_2.7_elasticsearch_7.gemfile b/gemfiles/ruby_2.7_elasticsearch_7.gemfile index 96c606fa8d3..928d474c0da 100644 --- a/gemfiles/ruby_2.7_elasticsearch_7.gemfile +++ b/gemfiles/ruby_2.7_elasticsearch_7.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.7_elasticsearch_7.gemfile.lock b/gemfiles/ruby_2.7_elasticsearch_7.gemfile.lock index 99a30411942..6634f0bc934 100644 --- a/gemfiles/ruby_2.7_elasticsearch_7.gemfile.lock +++ b/gemfiles/ruby_2.7_elasticsearch_7.gemfile.lock @@ -27,7 +27,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) elasticsearch (7.17.11) elasticsearch-api (= 7.17.11) @@ -98,14 +98,14 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby2_keywords (0.0.5) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) strscan (3.1.0) warning (1.3.0) @@ -141,7 +141,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_2.7_elasticsearch_8.gemfile b/gemfiles/ruby_2.7_elasticsearch_8.gemfile index 93abbf31b41..e0517cb1568 100644 --- a/gemfiles/ruby_2.7_elasticsearch_8.gemfile +++ b/gemfiles/ruby_2.7_elasticsearch_8.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.7_elasticsearch_8.gemfile.lock b/gemfiles/ruby_2.7_elasticsearch_8.gemfile.lock index 3264d85b448..2e65b26eb88 100644 --- a/gemfiles/ruby_2.7_elasticsearch_8.gemfile.lock +++ b/gemfiles/ruby_2.7_elasticsearch_8.gemfile.lock @@ -27,7 +27,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) elastic-transport (8.3.5) faraday (< 3) @@ -97,14 +97,14 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby2_keywords (0.0.5) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) strscan (3.1.0) warning (1.3.0) @@ -140,7 +140,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_2.7_elasticsearch_latest.gemfile b/gemfiles/ruby_2.7_elasticsearch_latest.gemfile index f8a253836a2..5744de62cda 100644 --- a/gemfiles/ruby_2.7_elasticsearch_latest.gemfile +++ b/gemfiles/ruby_2.7_elasticsearch_latest.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.7_elasticsearch_latest.gemfile.lock b/gemfiles/ruby_2.7_elasticsearch_latest.gemfile.lock index d67034b519a..c62b315bf78 100644 --- a/gemfiles/ruby_2.7_elasticsearch_latest.gemfile.lock +++ b/gemfiles/ruby_2.7_elasticsearch_latest.gemfile.lock @@ -97,7 +97,7 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby2_keywords (0.0.5) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) @@ -139,7 +139,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_2.7_graphql_1.13.gemfile b/gemfiles/ruby_2.7_graphql_1.13.gemfile index 5f1da96a46c..cf2d7d2b5bb 100644 --- a/gemfiles/ruby_2.7_graphql_1.13.gemfile +++ b/gemfiles/ruby_2.7_graphql_1.13.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.7_graphql_1.13.gemfile.lock b/gemfiles/ruby_2.7_graphql_1.13.gemfile.lock index e2fa2703014..443bf8ffb8d 100644 --- a/gemfiles/ruby_2.7_graphql_1.13.gemfile.lock +++ b/gemfiles/ruby_2.7_graphql_1.13.gemfile.lock @@ -89,7 +89,7 @@ GEM date (3.3.4) debug_inspector (1.2.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) erubi (1.13.0) extlz4 (0.3.4) @@ -214,14 +214,14 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sprockets (3.7.3) base64 @@ -275,7 +275,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_2.7_graphql_2.0.gemfile b/gemfiles/ruby_2.7_graphql_2.0.gemfile index 00a0ddcdc1c..4bde87f8f79 100644 --- a/gemfiles/ruby_2.7_graphql_2.0.gemfile +++ b/gemfiles/ruby_2.7_graphql_2.0.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.7_graphql_2.0.gemfile.lock b/gemfiles/ruby_2.7_graphql_2.0.gemfile.lock index 1f88198c0a0..ae90858b251 100644 --- a/gemfiles/ruby_2.7_graphql_2.0.gemfile.lock +++ b/gemfiles/ruby_2.7_graphql_2.0.gemfile.lock @@ -89,7 +89,7 @@ GEM date (3.3.4) debug_inspector (1.2.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) erubi (1.13.0) extlz4 (0.3.4) @@ -214,14 +214,14 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sprockets (3.7.3) base64 @@ -275,7 +275,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_2.7_graphql_2.1.gemfile b/gemfiles/ruby_2.7_graphql_2.1.gemfile index 3c79c693e5f..2bc4d11c21a 100644 --- a/gemfiles/ruby_2.7_graphql_2.1.gemfile +++ b/gemfiles/ruby_2.7_graphql_2.1.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.7_graphql_2.1.gemfile.lock b/gemfiles/ruby_2.7_graphql_2.1.gemfile.lock index a0678483399..ec2471546ca 100644 --- a/gemfiles/ruby_2.7_graphql_2.1.gemfile.lock +++ b/gemfiles/ruby_2.7_graphql_2.1.gemfile.lock @@ -89,7 +89,7 @@ GEM date (3.3.4) debug_inspector (1.2.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) erubi (1.13.0) extlz4 (0.3.4) @@ -215,14 +215,14 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sprockets (3.7.3) base64 @@ -276,7 +276,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_2.7_graphql_2.2.gemfile b/gemfiles/ruby_2.7_graphql_2.2.gemfile index 887884938d4..b4eacfb0514 100644 --- a/gemfiles/ruby_2.7_graphql_2.2.gemfile +++ b/gemfiles/ruby_2.7_graphql_2.2.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.7_graphql_2.2.gemfile.lock b/gemfiles/ruby_2.7_graphql_2.2.gemfile.lock index 421118831c7..1e911cb1a54 100644 --- a/gemfiles/ruby_2.7_graphql_2.2.gemfile.lock +++ b/gemfiles/ruby_2.7_graphql_2.2.gemfile.lock @@ -89,7 +89,7 @@ GEM date (3.3.4) debug_inspector (1.2.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) erubi (1.13.0) extlz4 (0.3.4) @@ -215,14 +215,14 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sprockets (3.7.3) base64 @@ -276,7 +276,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_2.7_graphql_2.3.gemfile b/gemfiles/ruby_2.7_graphql_2.3.gemfile index ce135f24733..9d91a601428 100644 --- a/gemfiles/ruby_2.7_graphql_2.3.gemfile +++ b/gemfiles/ruby_2.7_graphql_2.3.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.7_graphql_2.3.gemfile.lock b/gemfiles/ruby_2.7_graphql_2.3.gemfile.lock index a49739ef2d3..ff76c886baf 100644 --- a/gemfiles/ruby_2.7_graphql_2.3.gemfile.lock +++ b/gemfiles/ruby_2.7_graphql_2.3.gemfile.lock @@ -91,7 +91,7 @@ GEM date (3.3.4) debug_inspector (1.2.0) diff-lcs (1.5.1) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) erubi (1.13.0) extlz4 (0.3.4) @@ -216,14 +216,14 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sprockets (3.7.3) base64 @@ -277,7 +277,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_2.7_hanami_1.gemfile b/gemfiles/ruby_2.7_hanami_1.gemfile index 63c066cb67d..5ac7a08669f 100644 --- a/gemfiles/ruby_2.7_hanami_1.gemfile +++ b/gemfiles/ruby_2.7_hanami_1.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.7_hanami_1.gemfile.lock b/gemfiles/ruby_2.7_hanami_1.gemfile.lock index 6d6cf387423..910a0c19613 100644 --- a/gemfiles/ruby_2.7_hanami_1.gemfile.lock +++ b/gemfiles/ruby_2.7_hanami_1.gemfile.lock @@ -26,7 +26,7 @@ GEM date (3.3.3) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.5.0) dry-cli (0.7.0) dry-configurable (0.12.0) @@ -173,14 +173,14 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) strscan (3.1.0) tilt (2.1.0) @@ -224,7 +224,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_2.7_http.gemfile b/gemfiles/ruby_2.7_http.gemfile index 15f7b84977f..158e2c62447 100644 --- a/gemfiles/ruby_2.7_http.gemfile +++ b/gemfiles/ruby_2.7_http.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.7_http.gemfile.lock b/gemfiles/ruby_2.7_http.gemfile.lock index 755d6912d55..262f3bf7f6f 100644 --- a/gemfiles/ruby_2.7_http.gemfile.lock +++ b/gemfiles/ruby_2.7_http.gemfile.lock @@ -25,7 +25,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) domain_name (0.5.20190701) unf (>= 0.0.5, < 1.0.0) @@ -114,14 +114,14 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby2_keywords (0.0.5) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) strscan (3.1.0) typhoeus (1.4.0) @@ -167,7 +167,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) typhoeus warning (~> 1) diff --git a/gemfiles/ruby_2.7_opensearch_2.gemfile b/gemfiles/ruby_2.7_opensearch_2.gemfile index 219492f7b2b..b8ce7b49172 100644 --- a/gemfiles/ruby_2.7_opensearch_2.gemfile +++ b/gemfiles/ruby_2.7_opensearch_2.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.7_opensearch_2.gemfile.lock b/gemfiles/ruby_2.7_opensearch_2.gemfile.lock index 1e9fb19e23e..1368735f035 100644 --- a/gemfiles/ruby_2.7_opensearch_2.gemfile.lock +++ b/gemfiles/ruby_2.7_opensearch_2.gemfile.lock @@ -27,7 +27,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) faraday (2.8.1) @@ -97,14 +97,14 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby2_keywords (0.0.5) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) strscan (3.1.0) warning (1.3.0) @@ -140,7 +140,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_2.7_opensearch_3.gemfile b/gemfiles/ruby_2.7_opensearch_3.gemfile index cb3dc7b3e74..3a8d91197f9 100644 --- a/gemfiles/ruby_2.7_opensearch_3.gemfile +++ b/gemfiles/ruby_2.7_opensearch_3.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.7_opensearch_3.gemfile.lock b/gemfiles/ruby_2.7_opensearch_3.gemfile.lock index ee9bac1fa97..d83371e0c06 100644 --- a/gemfiles/ruby_2.7_opensearch_3.gemfile.lock +++ b/gemfiles/ruby_2.7_opensearch_3.gemfile.lock @@ -27,7 +27,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) faraday (2.8.1) @@ -92,14 +92,14 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby2_keywords (0.0.5) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) strscan (3.1.0) warning (1.3.0) @@ -135,7 +135,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_2.7_opensearch_latest.gemfile b/gemfiles/ruby_2.7_opensearch_latest.gemfile index 8750f1886dd..6d042645fbf 100644 --- a/gemfiles/ruby_2.7_opensearch_latest.gemfile +++ b/gemfiles/ruby_2.7_opensearch_latest.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.7_opensearch_latest.gemfile.lock b/gemfiles/ruby_2.7_opensearch_latest.gemfile.lock index fece29c451c..426ebd206a8 100644 --- a/gemfiles/ruby_2.7_opensearch_latest.gemfile.lock +++ b/gemfiles/ruby_2.7_opensearch_latest.gemfile.lock @@ -92,7 +92,7 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby2_keywords (0.0.5) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) @@ -134,7 +134,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_2.7_opentelemetry.gemfile b/gemfiles/ruby_2.7_opentelemetry.gemfile index 4f0a6416f7f..eca7f5aa9cb 100644 --- a/gemfiles/ruby_2.7_opentelemetry.gemfile +++ b/gemfiles/ruby_2.7_opentelemetry.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.7_opentelemetry.gemfile.lock b/gemfiles/ruby_2.7_opentelemetry.gemfile.lock index b34b6e0bfd8..087234d7005 100755 --- a/gemfiles/ruby_2.7_opentelemetry.gemfile.lock +++ b/gemfiles/ruby_2.7_opentelemetry.gemfile.lock @@ -25,7 +25,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.5.0) extlz4 (0.3.3) ffi (1.17.1-aarch64-linux-gnu) @@ -91,14 +91,14 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) strscan (3.1.0) warning (1.3.0) @@ -134,7 +134,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_2.7_opentelemetry_otlp.gemfile b/gemfiles/ruby_2.7_opentelemetry_otlp.gemfile index ffabf3314e9..7a4bddb459c 100644 --- a/gemfiles/ruby_2.7_opentelemetry_otlp.gemfile +++ b/gemfiles/ruby_2.7_opentelemetry_otlp.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.7_opentelemetry_otlp.gemfile.lock b/gemfiles/ruby_2.7_opentelemetry_otlp.gemfile.lock index 75506046c27..fd74911bdc7 100644 --- a/gemfiles/ruby_2.7_opentelemetry_otlp.gemfile.lock +++ b/gemfiles/ruby_2.7_opentelemetry_otlp.gemfile.lock @@ -28,7 +28,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) ffi (1.17.1-aarch64-linux-gnu) @@ -103,14 +103,14 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) warning (1.3.0) webmock (3.23.0) @@ -146,7 +146,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_2.7_rack_1.gemfile b/gemfiles/ruby_2.7_rack_1.gemfile index 7921d2328c7..4ce18451d1c 100644 --- a/gemfiles/ruby_2.7_rack_1.gemfile +++ b/gemfiles/ruby_2.7_rack_1.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.7_rack_1.gemfile.lock b/gemfiles/ruby_2.7_rack_1.gemfile.lock index d2d3d109669..fd75ce099a8 100644 --- a/gemfiles/ruby_2.7_rack_1.gemfile.lock +++ b/gemfiles/ruby_2.7_rack_1.gemfile.lock @@ -25,7 +25,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) ffi (1.17.1-aarch64-linux-gnu) @@ -84,14 +84,14 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) strscan (3.1.0) warning (1.3.0) @@ -129,7 +129,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_2.7_rack_2.gemfile b/gemfiles/ruby_2.7_rack_2.gemfile index aad5aee47d2..c202d5f4a78 100644 --- a/gemfiles/ruby_2.7_rack_2.gemfile +++ b/gemfiles/ruby_2.7_rack_2.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.7_rack_2.gemfile.lock b/gemfiles/ruby_2.7_rack_2.gemfile.lock index d426605c5f8..d2ceb5fb3a1 100644 --- a/gemfiles/ruby_2.7_rack_2.gemfile.lock +++ b/gemfiles/ruby_2.7_rack_2.gemfile.lock @@ -25,7 +25,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) ffi (1.17.1-aarch64-linux-gnu) @@ -84,14 +84,14 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) strscan (3.1.0) warning (1.3.0) @@ -129,7 +129,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_2.7_rack_3.gemfile b/gemfiles/ruby_2.7_rack_3.gemfile index 989d876c619..91c79e2cdd2 100644 --- a/gemfiles/ruby_2.7_rack_3.gemfile +++ b/gemfiles/ruby_2.7_rack_3.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.7_rack_3.gemfile.lock b/gemfiles/ruby_2.7_rack_3.gemfile.lock index b59371f9534..36f8fdfb8ae 100644 --- a/gemfiles/ruby_2.7_rack_3.gemfile.lock +++ b/gemfiles/ruby_2.7_rack_3.gemfile.lock @@ -25,7 +25,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) ffi (1.17.1-aarch64-linux-gnu) @@ -84,14 +84,14 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) strscan (3.1.0) warning (1.3.0) @@ -129,7 +129,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_2.7_rack_latest.gemfile b/gemfiles/ruby_2.7_rack_latest.gemfile index 007a780f6e3..ba939d510ab 100644 --- a/gemfiles/ruby_2.7_rack_latest.gemfile +++ b/gemfiles/ruby_2.7_rack_latest.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.7_rack_latest.gemfile.lock b/gemfiles/ruby_2.7_rack_latest.gemfile.lock index 3bf4b0ca73a..5e89e311536 100644 --- a/gemfiles/ruby_2.7_rack_latest.gemfile.lock +++ b/gemfiles/ruby_2.7_rack_latest.gemfile.lock @@ -87,7 +87,7 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) @@ -131,7 +131,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_2.7_rails5_mysql2.gemfile b/gemfiles/ruby_2.7_rails5_mysql2.gemfile index 7d163834702..00635363347 100644 --- a/gemfiles/ruby_2.7_rails5_mysql2.gemfile +++ b/gemfiles/ruby_2.7_rails5_mysql2.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.7_rails5_mysql2.gemfile.lock b/gemfiles/ruby_2.7_rails5_mysql2.gemfile.lock index 424d090d00e..853aa165be8 100644 --- a/gemfiles/ruby_2.7_rails5_mysql2.gemfile.lock +++ b/gemfiles/ruby_2.7_rails5_mysql2.gemfile.lock @@ -70,7 +70,7 @@ GEM date (3.3.3) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.5.0) erubi (1.12.0) extlz4 (0.3.3) @@ -190,14 +190,14 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sprockets (3.7.2) concurrent-ruby (~> 1.0) @@ -250,7 +250,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_2.7_rails5_postgres.gemfile b/gemfiles/ruby_2.7_rails5_postgres.gemfile index 1bda962ad26..247ff21e8fd 100644 --- a/gemfiles/ruby_2.7_rails5_postgres.gemfile +++ b/gemfiles/ruby_2.7_rails5_postgres.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.7_rails5_postgres.gemfile.lock b/gemfiles/ruby_2.7_rails5_postgres.gemfile.lock index 866c91a7f58..7be589e7ccd 100644 --- a/gemfiles/ruby_2.7_rails5_postgres.gemfile.lock +++ b/gemfiles/ruby_2.7_rails5_postgres.gemfile.lock @@ -70,7 +70,7 @@ GEM date (3.3.3) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.5.0) erubi (1.12.0) extlz4 (0.3.3) @@ -190,14 +190,14 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sprockets (3.7.2) concurrent-ruby (~> 1.0) @@ -250,7 +250,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_2.7_rails5_postgres_redis.gemfile b/gemfiles/ruby_2.7_rails5_postgres_redis.gemfile index 8c78cdad294..601aacfe8d1 100644 --- a/gemfiles/ruby_2.7_rails5_postgres_redis.gemfile +++ b/gemfiles/ruby_2.7_rails5_postgres_redis.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.7_rails5_postgres_redis.gemfile.lock b/gemfiles/ruby_2.7_rails5_postgres_redis.gemfile.lock index 1dce5094937..f6e7732925b 100644 --- a/gemfiles/ruby_2.7_rails5_postgres_redis.gemfile.lock +++ b/gemfiles/ruby_2.7_rails5_postgres_redis.gemfile.lock @@ -70,7 +70,7 @@ GEM date (3.3.3) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.5.0) erubi (1.12.0) extlz4 (0.3.3) @@ -191,14 +191,14 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sprockets (3.7.2) concurrent-ruby (~> 1.0) @@ -252,7 +252,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_2.7_rails5_postgres_redis_activesupport.gemfile b/gemfiles/ruby_2.7_rails5_postgres_redis_activesupport.gemfile index 293a1e0f638..1aca42e2924 100644 --- a/gemfiles/ruby_2.7_rails5_postgres_redis_activesupport.gemfile +++ b/gemfiles/ruby_2.7_rails5_postgres_redis_activesupport.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.7_rails5_postgres_redis_activesupport.gemfile.lock b/gemfiles/ruby_2.7_rails5_postgres_redis_activesupport.gemfile.lock index 920afd58914..65968e35cd9 100644 --- a/gemfiles/ruby_2.7_rails5_postgres_redis_activesupport.gemfile.lock +++ b/gemfiles/ruby_2.7_rails5_postgres_redis_activesupport.gemfile.lock @@ -70,7 +70,7 @@ GEM date (3.3.3) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.5.0) erubi (1.12.0) extlz4 (0.3.3) @@ -207,14 +207,14 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sprockets (3.7.2) concurrent-ruby (~> 1.0) @@ -270,7 +270,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_2.7_rails5_postgres_sidekiq.gemfile b/gemfiles/ruby_2.7_rails5_postgres_sidekiq.gemfile index 523a5466cff..b2076165550 100644 --- a/gemfiles/ruby_2.7_rails5_postgres_sidekiq.gemfile +++ b/gemfiles/ruby_2.7_rails5_postgres_sidekiq.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.7_rails5_postgres_sidekiq.gemfile.lock b/gemfiles/ruby_2.7_rails5_postgres_sidekiq.gemfile.lock index 15b9379b1cd..ebf7ac2ba96 100644 --- a/gemfiles/ruby_2.7_rails5_postgres_sidekiq.gemfile.lock +++ b/gemfiles/ruby_2.7_rails5_postgres_sidekiq.gemfile.lock @@ -71,7 +71,7 @@ GEM date (3.3.3) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.5.0) erubi (1.12.0) extlz4 (0.3.3) @@ -196,14 +196,14 @@ GEM connection_pool (>= 2.2.5, < 3) rack (~> 2.0) redis (>= 4.5.0, < 5) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sprockets (3.7.2) concurrent-ruby (~> 1.0) @@ -258,7 +258,7 @@ DEPENDENCIES rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) sidekiq (~> 6) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_2.7_rails5_semantic_logger.gemfile b/gemfiles/ruby_2.7_rails5_semantic_logger.gemfile index 60ec8aa5050..5362ea6aa0c 100644 --- a/gemfiles/ruby_2.7_rails5_semantic_logger.gemfile +++ b/gemfiles/ruby_2.7_rails5_semantic_logger.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.7_rails5_semantic_logger.gemfile.lock b/gemfiles/ruby_2.7_rails5_semantic_logger.gemfile.lock index 236f3e092d6..4dc6fc01867 100644 --- a/gemfiles/ruby_2.7_rails5_semantic_logger.gemfile.lock +++ b/gemfiles/ruby_2.7_rails5_semantic_logger.gemfile.lock @@ -70,7 +70,7 @@ GEM date (3.3.3) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.5.0) erubi (1.12.0) extlz4 (0.3.3) @@ -189,14 +189,14 @@ GEM rspec-core (>= 2, < 4, != 2.12.0) semantic_logger (4.12.0) concurrent-ruby (~> 1.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sprockets (3.7.2) concurrent-ruby (~> 1.0) @@ -249,7 +249,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_2.7_rails61_mysql2.gemfile b/gemfiles/ruby_2.7_rails61_mysql2.gemfile index e4fd2aef5c5..e9998b20f35 100644 --- a/gemfiles/ruby_2.7_rails61_mysql2.gemfile +++ b/gemfiles/ruby_2.7_rails61_mysql2.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.7_rails61_mysql2.gemfile.lock b/gemfiles/ruby_2.7_rails61_mysql2.gemfile.lock index f4ef59b90c9..2e01d5e20c2 100644 --- a/gemfiles/ruby_2.7_rails61_mysql2.gemfile.lock +++ b/gemfiles/ruby_2.7_rails61_mysql2.gemfile.lock @@ -87,7 +87,7 @@ GEM date (3.3.3) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.5.0) erubi (1.12.0) extlz4 (0.3.3) @@ -209,14 +209,14 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sprockets (3.7.2) concurrent-ruby (~> 1.0) @@ -269,7 +269,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_2.7_rails61_postgres.gemfile b/gemfiles/ruby_2.7_rails61_postgres.gemfile index c1117623e53..5ffee7e143b 100644 --- a/gemfiles/ruby_2.7_rails61_postgres.gemfile +++ b/gemfiles/ruby_2.7_rails61_postgres.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.7_rails61_postgres.gemfile.lock b/gemfiles/ruby_2.7_rails61_postgres.gemfile.lock index 2d510daa38c..f0a47a871fe 100644 --- a/gemfiles/ruby_2.7_rails61_postgres.gemfile.lock +++ b/gemfiles/ruby_2.7_rails61_postgres.gemfile.lock @@ -87,7 +87,7 @@ GEM date (3.3.3) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.5.0) erubi (1.12.0) extlz4 (0.3.3) @@ -209,14 +209,14 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sprockets (3.7.2) concurrent-ruby (~> 1.0) @@ -269,7 +269,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_2.7_rails61_postgres_redis.gemfile b/gemfiles/ruby_2.7_rails61_postgres_redis.gemfile index c6228e2f081..13ddc8f9ff6 100644 --- a/gemfiles/ruby_2.7_rails61_postgres_redis.gemfile +++ b/gemfiles/ruby_2.7_rails61_postgres_redis.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.7_rails61_postgres_redis.gemfile.lock b/gemfiles/ruby_2.7_rails61_postgres_redis.gemfile.lock index 6d5a71141eb..2d7c4040bc2 100644 --- a/gemfiles/ruby_2.7_rails61_postgres_redis.gemfile.lock +++ b/gemfiles/ruby_2.7_rails61_postgres_redis.gemfile.lock @@ -87,7 +87,7 @@ GEM date (3.3.3) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.5.0) erubi (1.12.0) extlz4 (0.3.3) @@ -210,14 +210,14 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sprockets (3.7.2) concurrent-ruby (~> 1.0) @@ -271,7 +271,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_2.7_rails61_postgres_sidekiq.gemfile b/gemfiles/ruby_2.7_rails61_postgres_sidekiq.gemfile index 227afd93ffd..1a5da33ca02 100644 --- a/gemfiles/ruby_2.7_rails61_postgres_sidekiq.gemfile +++ b/gemfiles/ruby_2.7_rails61_postgres_sidekiq.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.7_rails61_postgres_sidekiq.gemfile.lock b/gemfiles/ruby_2.7_rails61_postgres_sidekiq.gemfile.lock index acdd39e7843..a131d0998c6 100644 --- a/gemfiles/ruby_2.7_rails61_postgres_sidekiq.gemfile.lock +++ b/gemfiles/ruby_2.7_rails61_postgres_sidekiq.gemfile.lock @@ -88,7 +88,7 @@ GEM date (3.3.3) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.5.0) erubi (1.12.0) extlz4 (0.3.3) @@ -217,14 +217,14 @@ GEM connection_pool (>= 2.3.0) rack (>= 2.2.4) redis-client (>= 0.11.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sprockets (3.7.2) concurrent-ruby (~> 1.0) @@ -278,7 +278,7 @@ DEPENDENCIES rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) sidekiq (>= 6.1.2) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_2.7_rails61_semantic_logger.gemfile b/gemfiles/ruby_2.7_rails61_semantic_logger.gemfile index d52a1837f8d..cb8c912305b 100644 --- a/gemfiles/ruby_2.7_rails61_semantic_logger.gemfile +++ b/gemfiles/ruby_2.7_rails61_semantic_logger.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.7_rails61_semantic_logger.gemfile.lock b/gemfiles/ruby_2.7_rails61_semantic_logger.gemfile.lock index 2de66475556..c6ea9f187ec 100644 --- a/gemfiles/ruby_2.7_rails61_semantic_logger.gemfile.lock +++ b/gemfiles/ruby_2.7_rails61_semantic_logger.gemfile.lock @@ -87,7 +87,7 @@ GEM date (3.3.3) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.5.0) erubi (1.12.0) extlz4 (0.3.3) @@ -208,14 +208,14 @@ GEM rspec-core (>= 2, < 4, != 2.12.0) semantic_logger (4.12.0) concurrent-ruby (~> 1.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sprockets (3.7.2) concurrent-ruby (~> 1.0) @@ -268,7 +268,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_2.7_rails6_mysql2.gemfile b/gemfiles/ruby_2.7_rails6_mysql2.gemfile index 95c453457dc..cd61f363f1a 100644 --- a/gemfiles/ruby_2.7_rails6_mysql2.gemfile +++ b/gemfiles/ruby_2.7_rails6_mysql2.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.7_rails6_mysql2.gemfile.lock b/gemfiles/ruby_2.7_rails6_mysql2.gemfile.lock index 1a276292e0d..49c8af872fb 100644 --- a/gemfiles/ruby_2.7_rails6_mysql2.gemfile.lock +++ b/gemfiles/ruby_2.7_rails6_mysql2.gemfile.lock @@ -83,7 +83,7 @@ GEM date (3.3.3) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.5.0) erubi (1.12.0) extlz4 (0.3.3) @@ -205,14 +205,14 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sprockets (3.7.2) concurrent-ruby (~> 1.0) @@ -266,7 +266,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_2.7_rails6_postgres.gemfile b/gemfiles/ruby_2.7_rails6_postgres.gemfile index 747e43290ed..0b2039a50fa 100644 --- a/gemfiles/ruby_2.7_rails6_postgres.gemfile +++ b/gemfiles/ruby_2.7_rails6_postgres.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.7_rails6_postgres.gemfile.lock b/gemfiles/ruby_2.7_rails6_postgres.gemfile.lock index f5e984a884b..4f13761d127 100644 --- a/gemfiles/ruby_2.7_rails6_postgres.gemfile.lock +++ b/gemfiles/ruby_2.7_rails6_postgres.gemfile.lock @@ -83,7 +83,7 @@ GEM date (3.3.3) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.5.0) erubi (1.12.0) extlz4 (0.3.3) @@ -205,14 +205,14 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sprockets (3.7.2) concurrent-ruby (~> 1.0) @@ -266,7 +266,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_2.7_rails6_postgres_redis.gemfile b/gemfiles/ruby_2.7_rails6_postgres_redis.gemfile index edf1bd0be3a..396d7ce7ae8 100644 --- a/gemfiles/ruby_2.7_rails6_postgres_redis.gemfile +++ b/gemfiles/ruby_2.7_rails6_postgres_redis.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.7_rails6_postgres_redis.gemfile.lock b/gemfiles/ruby_2.7_rails6_postgres_redis.gemfile.lock index 5f8056da84e..2fd8ff20020 100644 --- a/gemfiles/ruby_2.7_rails6_postgres_redis.gemfile.lock +++ b/gemfiles/ruby_2.7_rails6_postgres_redis.gemfile.lock @@ -83,7 +83,7 @@ GEM date (3.3.3) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.5.0) erubi (1.12.0) extlz4 (0.3.3) @@ -206,14 +206,14 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sprockets (3.7.2) concurrent-ruby (~> 1.0) @@ -268,7 +268,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_2.7_rails6_postgres_redis_activesupport.gemfile b/gemfiles/ruby_2.7_rails6_postgres_redis_activesupport.gemfile index 9a2604b64b5..c30229086dd 100644 --- a/gemfiles/ruby_2.7_rails6_postgres_redis_activesupport.gemfile +++ b/gemfiles/ruby_2.7_rails6_postgres_redis_activesupport.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.7_rails6_postgres_redis_activesupport.gemfile.lock b/gemfiles/ruby_2.7_rails6_postgres_redis_activesupport.gemfile.lock index 8d6092aad53..4c548a02970 100644 --- a/gemfiles/ruby_2.7_rails6_postgres_redis_activesupport.gemfile.lock +++ b/gemfiles/ruby_2.7_rails6_postgres_redis_activesupport.gemfile.lock @@ -83,7 +83,7 @@ GEM date (3.3.3) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.5.0) erubi (1.12.0) extlz4 (0.3.3) @@ -222,14 +222,14 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sprockets (3.7.2) concurrent-ruby (~> 1.0) @@ -286,7 +286,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_2.7_rails6_postgres_sidekiq.gemfile b/gemfiles/ruby_2.7_rails6_postgres_sidekiq.gemfile index 355ea79888f..c20a06260b2 100644 --- a/gemfiles/ruby_2.7_rails6_postgres_sidekiq.gemfile +++ b/gemfiles/ruby_2.7_rails6_postgres_sidekiq.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.7_rails6_postgres_sidekiq.gemfile.lock b/gemfiles/ruby_2.7_rails6_postgres_sidekiq.gemfile.lock index a513a7bddf2..6789563ab58 100644 --- a/gemfiles/ruby_2.7_rails6_postgres_sidekiq.gemfile.lock +++ b/gemfiles/ruby_2.7_rails6_postgres_sidekiq.gemfile.lock @@ -84,7 +84,7 @@ GEM date (3.3.3) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.5.0) erubi (1.12.0) extlz4 (0.3.3) @@ -211,14 +211,14 @@ GEM connection_pool (>= 2.2.5, < 3) rack (~> 2.0) redis (>= 4.5.0, < 5) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sprockets (3.7.2) concurrent-ruby (~> 1.0) @@ -274,7 +274,7 @@ DEPENDENCIES rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) sidekiq (~> 6) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_2.7_rails6_semantic_logger.gemfile b/gemfiles/ruby_2.7_rails6_semantic_logger.gemfile index 384c5282522..81188fc11c6 100644 --- a/gemfiles/ruby_2.7_rails6_semantic_logger.gemfile +++ b/gemfiles/ruby_2.7_rails6_semantic_logger.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.7_rails6_semantic_logger.gemfile.lock b/gemfiles/ruby_2.7_rails6_semantic_logger.gemfile.lock index 11dbc2b3b4d..a76bb5e8d49 100644 --- a/gemfiles/ruby_2.7_rails6_semantic_logger.gemfile.lock +++ b/gemfiles/ruby_2.7_rails6_semantic_logger.gemfile.lock @@ -83,7 +83,7 @@ GEM date (3.3.3) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.5.0) erubi (1.12.0) extlz4 (0.3.3) @@ -204,14 +204,14 @@ GEM rspec-core (>= 2, < 4, != 2.12.0) semantic_logger (4.12.0) concurrent-ruby (~> 1.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sprockets (3.7.2) concurrent-ruby (~> 1.0) @@ -265,7 +265,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_2.7_rails_old_redis.gemfile b/gemfiles/ruby_2.7_rails_old_redis.gemfile index 5393fac75a5..c094af8b7d4 100644 --- a/gemfiles/ruby_2.7_rails_old_redis.gemfile +++ b/gemfiles/ruby_2.7_rails_old_redis.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.7_redis_3.gemfile b/gemfiles/ruby_2.7_redis_3.gemfile index 3b1520ee71c..b19bfd82388 100644 --- a/gemfiles/ruby_2.7_redis_3.gemfile +++ b/gemfiles/ruby_2.7_redis_3.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.7_redis_3.gemfile.lock b/gemfiles/ruby_2.7_redis_3.gemfile.lock index 02fb05b5365..b6b2bf8616a 100644 --- a/gemfiles/ruby_2.7_redis_3.gemfile.lock +++ b/gemfiles/ruby_2.7_redis_3.gemfile.lock @@ -25,7 +25,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.5.0) extlz4 (0.3.3) ffi (1.17.1-aarch64-linux-gnu) @@ -80,14 +80,14 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) strscan (3.1.0) warning (1.3.0) @@ -123,7 +123,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_2.7_redis_4.gemfile b/gemfiles/ruby_2.7_redis_4.gemfile index 5423f07db2d..b021c0fdca4 100644 --- a/gemfiles/ruby_2.7_redis_4.gemfile +++ b/gemfiles/ruby_2.7_redis_4.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.7_redis_4.gemfile.lock b/gemfiles/ruby_2.7_redis_4.gemfile.lock index 6772d2c56b1..f9ce05e9ce7 100644 --- a/gemfiles/ruby_2.7_redis_4.gemfile.lock +++ b/gemfiles/ruby_2.7_redis_4.gemfile.lock @@ -25,7 +25,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.5.0) extlz4 (0.3.3) ffi (1.17.1-aarch64-linux-gnu) @@ -80,14 +80,14 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) strscan (3.1.0) warning (1.3.0) @@ -123,7 +123,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_2.7_redis_5.gemfile b/gemfiles/ruby_2.7_redis_5.gemfile index 519e59b5a40..b6d54671d57 100644 --- a/gemfiles/ruby_2.7_redis_5.gemfile +++ b/gemfiles/ruby_2.7_redis_5.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.7_redis_5.gemfile.lock b/gemfiles/ruby_2.7_redis_5.gemfile.lock index f2ebdc39569..51009ca99b4 100644 --- a/gemfiles/ruby_2.7_redis_5.gemfile.lock +++ b/gemfiles/ruby_2.7_redis_5.gemfile.lock @@ -26,7 +26,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.5.0) extlz4 (0.3.3) ffi (1.17.1-aarch64-linux-gnu) @@ -84,14 +84,14 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) strscan (3.1.0) warning (1.3.0) @@ -127,7 +127,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_2.7_relational_db.gemfile b/gemfiles/ruby_2.7_relational_db.gemfile index e175f478d32..0597a058ba0 100644 --- a/gemfiles/ruby_2.7_relational_db.gemfile +++ b/gemfiles/ruby_2.7_relational_db.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.7_relational_db.gemfile.lock b/gemfiles/ruby_2.7_relational_db.gemfile.lock index 5072a17bdcf..3a7305f7290 100644 --- a/gemfiles/ruby_2.7_relational_db.gemfile.lock +++ b/gemfiles/ruby_2.7_relational_db.gemfile.lock @@ -42,7 +42,7 @@ GEM activerecord (>= 3.0, < 8.0) delayed_job (>= 3.0, < 5) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) ffi (1.17.1-aarch64-linux-gnu) @@ -105,14 +105,14 @@ GEM rspec-core (>= 2, < 4, != 2.12.0) sequel (5.83.1) bigdecimal - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sqlite3 (1.4.4) strscan (3.1.0) @@ -158,7 +158,7 @@ DEPENDENCIES rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) sequel - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sqlite3 (~> 1.4.1) warning (~> 1) diff --git a/gemfiles/ruby_2.7_resque2_redis3.gemfile b/gemfiles/ruby_2.7_resque2_redis3.gemfile index 3fcbe383b22..959dbeed09f 100644 --- a/gemfiles/ruby_2.7_resque2_redis3.gemfile +++ b/gemfiles/ruby_2.7_resque2_redis3.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.7_resque2_redis3.gemfile.lock b/gemfiles/ruby_2.7_resque2_redis3.gemfile.lock index fc30c5ed369..350671a1101 100644 --- a/gemfiles/ruby_2.7_resque2_redis3.gemfile.lock +++ b/gemfiles/ruby_2.7_resque2_redis3.gemfile.lock @@ -25,7 +25,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.5.0) extlz4 (0.3.3) ffi (1.17.1-aarch64-linux-gnu) @@ -95,14 +95,14 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby2_keywords (0.0.5) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sinatra (3.0.5) mustermann (~> 3.0) @@ -145,7 +145,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_2.7_resque2_redis4.gemfile b/gemfiles/ruby_2.7_resque2_redis4.gemfile index 1910132b24f..2d1201a6e03 100644 --- a/gemfiles/ruby_2.7_resque2_redis4.gemfile +++ b/gemfiles/ruby_2.7_resque2_redis4.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.7_resque2_redis4.gemfile.lock b/gemfiles/ruby_2.7_resque2_redis4.gemfile.lock index 995c07400ff..b25399cd20e 100644 --- a/gemfiles/ruby_2.7_resque2_redis4.gemfile.lock +++ b/gemfiles/ruby_2.7_resque2_redis4.gemfile.lock @@ -25,7 +25,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.5.0) extlz4 (0.3.3) ffi (1.17.1-aarch64-linux-gnu) @@ -95,14 +95,14 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby2_keywords (0.0.5) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sinatra (3.0.5) mustermann (~> 3.0) @@ -145,7 +145,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_2.7_sinatra_2.gemfile b/gemfiles/ruby_2.7_sinatra_2.gemfile index cfd803e3a48..557b3c07bb7 100644 --- a/gemfiles/ruby_2.7_sinatra_2.gemfile +++ b/gemfiles/ruby_2.7_sinatra_2.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.7_sinatra_2.gemfile.lock b/gemfiles/ruby_2.7_sinatra_2.gemfile.lock index 3abee95c508..d7376db095a 100644 --- a/gemfiles/ruby_2.7_sinatra_2.gemfile.lock +++ b/gemfiles/ruby_2.7_sinatra_2.gemfile.lock @@ -28,7 +28,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) ffi (1.17.1-aarch64-linux-gnu) @@ -93,14 +93,14 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby2_keywords (0.0.5) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sinatra (2.2.4) mustermann (~> 2.0) @@ -143,7 +143,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sinatra (~> 2) warning (~> 1) diff --git a/gemfiles/ruby_2.7_sinatra_3.gemfile b/gemfiles/ruby_2.7_sinatra_3.gemfile index 44c319cae28..33dafad040f 100644 --- a/gemfiles/ruby_2.7_sinatra_3.gemfile +++ b/gemfiles/ruby_2.7_sinatra_3.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.7_sinatra_3.gemfile.lock b/gemfiles/ruby_2.7_sinatra_3.gemfile.lock index 3c30ec68483..a37d75b6468 100644 --- a/gemfiles/ruby_2.7_sinatra_3.gemfile.lock +++ b/gemfiles/ruby_2.7_sinatra_3.gemfile.lock @@ -29,7 +29,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) ffi (1.17.1-aarch64-linux-gnu) @@ -95,14 +95,14 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby2_keywords (0.0.5) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sinatra (3.2.0) mustermann (~> 3.0) @@ -145,7 +145,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sinatra (~> 3) warning (~> 1) diff --git a/gemfiles/ruby_2.7_stripe_10.gemfile b/gemfiles/ruby_2.7_stripe_10.gemfile index 29d5823c501..9f52770ff6e 100644 --- a/gemfiles/ruby_2.7_stripe_10.gemfile +++ b/gemfiles/ruby_2.7_stripe_10.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.7_stripe_10.gemfile.lock b/gemfiles/ruby_2.7_stripe_10.gemfile.lock index 4657eb8b3b8..334833031de 100644 --- a/gemfiles/ruby_2.7_stripe_10.gemfile.lock +++ b/gemfiles/ruby_2.7_stripe_10.gemfile.lock @@ -82,14 +82,14 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) stripe (10.15.0) strscan (3.1.0) @@ -125,7 +125,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) stripe (~> 10) warning (~> 1) diff --git a/gemfiles/ruby_2.7_stripe_11.gemfile b/gemfiles/ruby_2.7_stripe_11.gemfile index e3a73dd30f5..4a10a13dbc9 100644 --- a/gemfiles/ruby_2.7_stripe_11.gemfile +++ b/gemfiles/ruby_2.7_stripe_11.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.7_stripe_11.gemfile.lock b/gemfiles/ruby_2.7_stripe_11.gemfile.lock index 473a20c4c60..15f4901bcf4 100644 --- a/gemfiles/ruby_2.7_stripe_11.gemfile.lock +++ b/gemfiles/ruby_2.7_stripe_11.gemfile.lock @@ -82,14 +82,14 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) stripe (11.7.0) strscan (3.1.0) @@ -125,7 +125,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) stripe (~> 11) warning (~> 1) diff --git a/gemfiles/ruby_2.7_stripe_12.gemfile b/gemfiles/ruby_2.7_stripe_12.gemfile index 92fdd457283..5ea078b2dfb 100644 --- a/gemfiles/ruby_2.7_stripe_12.gemfile +++ b/gemfiles/ruby_2.7_stripe_12.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.7_stripe_12.gemfile.lock b/gemfiles/ruby_2.7_stripe_12.gemfile.lock index 17c52f31848..3ac2c6495bf 100644 --- a/gemfiles/ruby_2.7_stripe_12.gemfile.lock +++ b/gemfiles/ruby_2.7_stripe_12.gemfile.lock @@ -82,14 +82,14 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) stripe (12.6.0) strscan (3.1.0) @@ -125,7 +125,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) stripe (~> 12) warning (~> 1) diff --git a/gemfiles/ruby_2.7_stripe_7.gemfile b/gemfiles/ruby_2.7_stripe_7.gemfile index 16f544e3334..69c72a2f8b0 100644 --- a/gemfiles/ruby_2.7_stripe_7.gemfile +++ b/gemfiles/ruby_2.7_stripe_7.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.7_stripe_7.gemfile.lock b/gemfiles/ruby_2.7_stripe_7.gemfile.lock index d4936fbc7d4..4340d12bfa3 100644 --- a/gemfiles/ruby_2.7_stripe_7.gemfile.lock +++ b/gemfiles/ruby_2.7_stripe_7.gemfile.lock @@ -82,14 +82,14 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) stripe (7.1.0) strscan (3.1.0) @@ -125,7 +125,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) stripe (~> 7) warning (~> 1) diff --git a/gemfiles/ruby_2.7_stripe_8.gemfile b/gemfiles/ruby_2.7_stripe_8.gemfile index aef615a80da..4b2df98218b 100644 --- a/gemfiles/ruby_2.7_stripe_8.gemfile +++ b/gemfiles/ruby_2.7_stripe_8.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.7_stripe_8.gemfile.lock b/gemfiles/ruby_2.7_stripe_8.gemfile.lock index c67899da9ca..94f71a25f3b 100644 --- a/gemfiles/ruby_2.7_stripe_8.gemfile.lock +++ b/gemfiles/ruby_2.7_stripe_8.gemfile.lock @@ -82,14 +82,14 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) stripe (8.7.0) strscan (3.1.0) @@ -125,7 +125,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) stripe (~> 8) warning (~> 1) diff --git a/gemfiles/ruby_2.7_stripe_9.gemfile b/gemfiles/ruby_2.7_stripe_9.gemfile index e347337b220..d31f59f06fa 100644 --- a/gemfiles/ruby_2.7_stripe_9.gemfile +++ b/gemfiles/ruby_2.7_stripe_9.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.7_stripe_9.gemfile.lock b/gemfiles/ruby_2.7_stripe_9.gemfile.lock index ba15840ee83..a29b6530a3a 100644 --- a/gemfiles/ruby_2.7_stripe_9.gemfile.lock +++ b/gemfiles/ruby_2.7_stripe_9.gemfile.lock @@ -82,14 +82,14 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) stripe (9.4.0) strscan (3.1.0) @@ -125,7 +125,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) stripe (~> 9) warning (~> 1) diff --git a/gemfiles/ruby_2.7_stripe_latest.gemfile b/gemfiles/ruby_2.7_stripe_latest.gemfile index 65ba27eccab..b4a8af28dfe 100644 --- a/gemfiles/ruby_2.7_stripe_latest.gemfile +++ b/gemfiles/ruby_2.7_stripe_latest.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.7_stripe_latest.gemfile.lock b/gemfiles/ruby_2.7_stripe_latest.gemfile.lock index 7b0fc89c076..c6798e47f06 100644 --- a/gemfiles/ruby_2.7_stripe_latest.gemfile.lock +++ b/gemfiles/ruby_2.7_stripe_latest.gemfile.lock @@ -81,7 +81,7 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) @@ -123,7 +123,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) stripe warning (~> 1) diff --git a/gemfiles/ruby_2.7_stripe_min.gemfile b/gemfiles/ruby_2.7_stripe_min.gemfile index d5c43966388..6160f220dba 100644 --- a/gemfiles/ruby_2.7_stripe_min.gemfile +++ b/gemfiles/ruby_2.7_stripe_min.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_2.7_stripe_min.gemfile.lock b/gemfiles/ruby_2.7_stripe_min.gemfile.lock index 8eb59347b08..57f3b91b7d5 100644 --- a/gemfiles/ruby_2.7_stripe_min.gemfile.lock +++ b/gemfiles/ruby_2.7_stripe_min.gemfile.lock @@ -82,7 +82,7 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) @@ -124,7 +124,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) stripe (= 5.15.0) warning (~> 1) diff --git a/gemfiles/ruby_3.0_activesupport.gemfile b/gemfiles/ruby_3.0_activesupport.gemfile index 52e48cdce09..54749f727f6 100644 --- a/gemfiles/ruby_3.0_activesupport.gemfile +++ b/gemfiles/ruby_3.0_activesupport.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.0_activesupport.gemfile.lock b/gemfiles/ruby_3.0_activesupport.gemfile.lock index 0707891813c..df71ee07e13 100644 --- a/gemfiles/ruby_3.0_activesupport.gemfile.lock +++ b/gemfiles/ruby_3.0_activesupport.gemfile.lock @@ -56,7 +56,7 @@ GEM diff-lcs (1.5.0) digest-crc (0.6.5) rake (>= 12.0.0, < 14.0.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) dry-core (1.0.1) concurrent-ruby (~> 1.0) @@ -186,14 +186,14 @@ GEM ruby-kafka (1.5.0) digest-crc ruby2_keywords (0.0.5) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) strscan (3.1.0) thor (1.2.2) @@ -241,7 +241,7 @@ DEPENDENCIES rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) ruby-kafka (>= 0.7.10) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.0_aws.gemfile b/gemfiles/ruby_3.0_aws.gemfile index b550f6d66c8..bcbff87362b 100644 --- a/gemfiles/ruby_3.0_aws.gemfile +++ b/gemfiles/ruby_3.0_aws.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.0_aws.gemfile.lock b/gemfiles/ruby_3.0_aws.gemfile.lock index 66e5937df98..1bdd0c37033 100644 --- a/gemfiles/ruby_3.0_aws.gemfile.lock +++ b/gemfiles/ruby_3.0_aws.gemfile.lock @@ -1446,7 +1446,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.0) extlz4 (0.3.4) ffi (1.17.1-aarch64-linux-gnu) @@ -1505,14 +1505,14 @@ GEM aws-sdk-core (>= 2) concurrent-ruby thor - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) strscan (3.1.0) thor (1.2.2) @@ -1551,7 +1551,7 @@ DEPENDENCIES rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) shoryuken - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.0_contrib.gemfile b/gemfiles/ruby_3.0_contrib.gemfile index 7e772996d4c..63e54d3ef89 100644 --- a/gemfiles/ruby_3.0_contrib.gemfile +++ b/gemfiles/ruby_3.0_contrib.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.0_contrib.gemfile.lock b/gemfiles/ruby_3.0_contrib.gemfile.lock index f71cdf96700..9f98be69469 100644 --- a/gemfiles/ruby_3.0_contrib.gemfile.lock +++ b/gemfiles/ruby_3.0_contrib.gemfile.lock @@ -32,7 +32,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.5.0) extlz4 (0.3.3) ffi (1.17.1-aarch64-linux-gnu) @@ -131,14 +131,14 @@ GEM rack (>= 2.2.4) redis-client (>= 0.11.0) sigdump (0.2.4) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sinatra (3.0.5) mustermann (~> 3.0) @@ -201,7 +201,7 @@ DEPENDENCIES rspec_junit_formatter (>= 0.5.1) semantic_logger (~> 4.0) sidekiq (~> 7) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sneakers (>= 2.12.0) sucker_punch diff --git a/gemfiles/ruby_3.0_contrib_old.gemfile b/gemfiles/ruby_3.0_contrib_old.gemfile index e699baa3624..9586ef0329b 100644 --- a/gemfiles/ruby_3.0_contrib_old.gemfile +++ b/gemfiles/ruby_3.0_contrib_old.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.0_contrib_old.gemfile.lock b/gemfiles/ruby_3.0_contrib_old.gemfile.lock index c14433feb28..18ed8bec27c 100644 --- a/gemfiles/ruby_3.0_contrib_old.gemfile.lock +++ b/gemfiles/ruby_3.0_contrib_old.gemfile.lock @@ -30,7 +30,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.5.0) eventmachine (1.2.7) extlz4 (0.3.3) @@ -119,14 +119,14 @@ GEM rusage (0.2.0) sentry-raven (0.15.6) faraday (>= 0.7.6) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sinatra (2.0.8.1) mustermann (~> 1.0) @@ -179,7 +179,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.0_core_old.gemfile b/gemfiles/ruby_3.0_core_old.gemfile index 93c4fd08e14..5974022b114 100644 --- a/gemfiles/ruby_3.0_core_old.gemfile +++ b/gemfiles/ruby_3.0_core_old.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.0_core_old.gemfile.lock b/gemfiles/ruby_3.0_core_old.gemfile.lock index c5e9855c351..6c20efc2e64 100644 --- a/gemfiles/ruby_3.0_core_old.gemfile.lock +++ b/gemfiles/ruby_3.0_core_old.gemfile.lock @@ -25,7 +25,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (4.8.3) extlz4 (0.3.3) ffi (1.17.1-aarch64-linux-gnu) @@ -79,14 +79,14 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) strscan (3.1.0) warning (1.3.0) @@ -122,7 +122,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.0_elasticsearch_7.gemfile b/gemfiles/ruby_3.0_elasticsearch_7.gemfile index b999b039f27..1a1db3df18f 100644 --- a/gemfiles/ruby_3.0_elasticsearch_7.gemfile +++ b/gemfiles/ruby_3.0_elasticsearch_7.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.0_elasticsearch_7.gemfile.lock b/gemfiles/ruby_3.0_elasticsearch_7.gemfile.lock index 305e9db99ef..6a457392d7e 100644 --- a/gemfiles/ruby_3.0_elasticsearch_7.gemfile.lock +++ b/gemfiles/ruby_3.0_elasticsearch_7.gemfile.lock @@ -27,7 +27,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) elasticsearch (7.17.11) elasticsearch-api (= 7.17.11) @@ -102,14 +102,14 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) strscan (3.1.0) uri (1.0.2) @@ -147,7 +147,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.0_elasticsearch_8.gemfile b/gemfiles/ruby_3.0_elasticsearch_8.gemfile index ffd2a5eb21e..f1399953d89 100644 --- a/gemfiles/ruby_3.0_elasticsearch_8.gemfile +++ b/gemfiles/ruby_3.0_elasticsearch_8.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.0_elasticsearch_8.gemfile.lock b/gemfiles/ruby_3.0_elasticsearch_8.gemfile.lock index 1fab6478d8c..81ab3b2434d 100644 --- a/gemfiles/ruby_3.0_elasticsearch_8.gemfile.lock +++ b/gemfiles/ruby_3.0_elasticsearch_8.gemfile.lock @@ -26,7 +26,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) elastic-transport (8.3.5) faraday (< 3) @@ -100,14 +100,14 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) strscan (3.1.0) uri (1.0.2) @@ -145,7 +145,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.0_elasticsearch_latest.gemfile b/gemfiles/ruby_3.0_elasticsearch_latest.gemfile index 416bb546db6..7f22d5d6d2b 100644 --- a/gemfiles/ruby_3.0_elasticsearch_latest.gemfile +++ b/gemfiles/ruby_3.0_elasticsearch_latest.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.0_elasticsearch_latest.gemfile.lock b/gemfiles/ruby_3.0_elasticsearch_latest.gemfile.lock index e5db40e6313..e40a9c2e215 100644 --- a/gemfiles/ruby_3.0_elasticsearch_latest.gemfile.lock +++ b/gemfiles/ruby_3.0_elasticsearch_latest.gemfile.lock @@ -101,7 +101,7 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) @@ -145,7 +145,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.0_graphql_1.13.gemfile b/gemfiles/ruby_3.0_graphql_1.13.gemfile index af39dc1df59..57abde5ab35 100644 --- a/gemfiles/ruby_3.0_graphql_1.13.gemfile +++ b/gemfiles/ruby_3.0_graphql_1.13.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.0_graphql_1.13.gemfile.lock b/gemfiles/ruby_3.0_graphql_1.13.gemfile.lock index 7712c12ff4a..a1fa17e8c14 100644 --- a/gemfiles/ruby_3.0_graphql_1.13.gemfile.lock +++ b/gemfiles/ruby_3.0_graphql_1.13.gemfile.lock @@ -89,7 +89,7 @@ GEM date (3.3.4) debug_inspector (1.2.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) erubi (1.13.0) extlz4 (0.3.4) @@ -214,14 +214,14 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sprockets (3.7.3) base64 @@ -276,7 +276,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_3.0_graphql_2.0.gemfile b/gemfiles/ruby_3.0_graphql_2.0.gemfile index 6fc8f6a254b..f5978a7eb13 100644 --- a/gemfiles/ruby_3.0_graphql_2.0.gemfile +++ b/gemfiles/ruby_3.0_graphql_2.0.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.0_graphql_2.0.gemfile.lock b/gemfiles/ruby_3.0_graphql_2.0.gemfile.lock index da142c74173..60017e2568a 100644 --- a/gemfiles/ruby_3.0_graphql_2.0.gemfile.lock +++ b/gemfiles/ruby_3.0_graphql_2.0.gemfile.lock @@ -89,7 +89,7 @@ GEM date (3.3.4) debug_inspector (1.2.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) erubi (1.13.0) extlz4 (0.3.4) @@ -214,14 +214,14 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sprockets (3.7.3) base64 @@ -276,7 +276,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_3.0_graphql_2.1.gemfile b/gemfiles/ruby_3.0_graphql_2.1.gemfile index cf85a8a06e4..5fe2ba8c89c 100644 --- a/gemfiles/ruby_3.0_graphql_2.1.gemfile +++ b/gemfiles/ruby_3.0_graphql_2.1.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.0_graphql_2.1.gemfile.lock b/gemfiles/ruby_3.0_graphql_2.1.gemfile.lock index 07799e52d34..0cd0f916a32 100644 --- a/gemfiles/ruby_3.0_graphql_2.1.gemfile.lock +++ b/gemfiles/ruby_3.0_graphql_2.1.gemfile.lock @@ -89,7 +89,7 @@ GEM date (3.3.4) debug_inspector (1.2.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) erubi (1.13.0) extlz4 (0.3.4) @@ -215,14 +215,14 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sprockets (3.7.3) base64 @@ -277,7 +277,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_3.0_graphql_2.2.gemfile b/gemfiles/ruby_3.0_graphql_2.2.gemfile index c3652170170..4afe1c364f2 100644 --- a/gemfiles/ruby_3.0_graphql_2.2.gemfile +++ b/gemfiles/ruby_3.0_graphql_2.2.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.0_graphql_2.2.gemfile.lock b/gemfiles/ruby_3.0_graphql_2.2.gemfile.lock index 2db42687c6e..b894ba501c6 100644 --- a/gemfiles/ruby_3.0_graphql_2.2.gemfile.lock +++ b/gemfiles/ruby_3.0_graphql_2.2.gemfile.lock @@ -89,7 +89,7 @@ GEM date (3.3.4) debug_inspector (1.2.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) erubi (1.13.0) extlz4 (0.3.4) @@ -215,14 +215,14 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sprockets (3.7.3) base64 @@ -277,7 +277,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_3.0_graphql_2.3.gemfile b/gemfiles/ruby_3.0_graphql_2.3.gemfile index 43a44f7ad9b..a30485be645 100644 --- a/gemfiles/ruby_3.0_graphql_2.3.gemfile +++ b/gemfiles/ruby_3.0_graphql_2.3.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.0_graphql_2.3.gemfile.lock b/gemfiles/ruby_3.0_graphql_2.3.gemfile.lock index 22a6ea54083..4c812ec6927 100644 --- a/gemfiles/ruby_3.0_graphql_2.3.gemfile.lock +++ b/gemfiles/ruby_3.0_graphql_2.3.gemfile.lock @@ -91,7 +91,7 @@ GEM date (3.3.4) debug_inspector (1.2.0) diff-lcs (1.5.1) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) erubi (1.13.0) extlz4 (0.3.4) @@ -217,14 +217,14 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sprockets (3.7.3) base64 @@ -279,7 +279,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_3.0_http.gemfile b/gemfiles/ruby_3.0_http.gemfile index 801baf19d2b..d06bc441034 100644 --- a/gemfiles/ruby_3.0_http.gemfile +++ b/gemfiles/ruby_3.0_http.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.0_http.gemfile.lock b/gemfiles/ruby_3.0_http.gemfile.lock index d1ef944344f..96c3c4c248a 100644 --- a/gemfiles/ruby_3.0_http.gemfile.lock +++ b/gemfiles/ruby_3.0_http.gemfile.lock @@ -25,7 +25,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) domain_name (0.5.20190701) unf (>= 0.0.5, < 1.0.0) @@ -114,14 +114,14 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby2_keywords (0.0.5) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) strscan (3.1.0) typhoeus (1.4.0) @@ -168,7 +168,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) typhoeus warning (~> 1) diff --git a/gemfiles/ruby_3.0_opensearch_2.gemfile b/gemfiles/ruby_3.0_opensearch_2.gemfile index 9bc4540cc88..0f56f0e7b1d 100644 --- a/gemfiles/ruby_3.0_opensearch_2.gemfile +++ b/gemfiles/ruby_3.0_opensearch_2.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.0_opensearch_2.gemfile.lock b/gemfiles/ruby_3.0_opensearch_2.gemfile.lock index 51f5d706c18..160b258ba53 100644 --- a/gemfiles/ruby_3.0_opensearch_2.gemfile.lock +++ b/gemfiles/ruby_3.0_opensearch_2.gemfile.lock @@ -26,7 +26,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) faraday (2.12.2) @@ -100,14 +100,14 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) strscan (3.1.0) uri (1.0.2) @@ -145,7 +145,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.0_opensearch_3.gemfile b/gemfiles/ruby_3.0_opensearch_3.gemfile index 048682c6d39..ea18495c490 100644 --- a/gemfiles/ruby_3.0_opensearch_3.gemfile +++ b/gemfiles/ruby_3.0_opensearch_3.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.0_opensearch_3.gemfile.lock b/gemfiles/ruby_3.0_opensearch_3.gemfile.lock index 83f2cc7fc75..c9dfdb90950 100644 --- a/gemfiles/ruby_3.0_opensearch_3.gemfile.lock +++ b/gemfiles/ruby_3.0_opensearch_3.gemfile.lock @@ -26,7 +26,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) faraday (2.12.2) @@ -95,14 +95,14 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) strscan (3.1.0) uri (1.0.2) @@ -140,7 +140,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.0_opensearch_latest.gemfile b/gemfiles/ruby_3.0_opensearch_latest.gemfile index c446e02ce35..86d7aa10c9c 100644 --- a/gemfiles/ruby_3.0_opensearch_latest.gemfile +++ b/gemfiles/ruby_3.0_opensearch_latest.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.0_opensearch_latest.gemfile.lock b/gemfiles/ruby_3.0_opensearch_latest.gemfile.lock index 465311cca9b..195c6d05bcf 100644 --- a/gemfiles/ruby_3.0_opensearch_latest.gemfile.lock +++ b/gemfiles/ruby_3.0_opensearch_latest.gemfile.lock @@ -96,7 +96,7 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) @@ -140,7 +140,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.0_opentelemetry.gemfile b/gemfiles/ruby_3.0_opentelemetry.gemfile index 4df1bd1ac54..e4b3b2a6c90 100644 --- a/gemfiles/ruby_3.0_opentelemetry.gemfile +++ b/gemfiles/ruby_3.0_opentelemetry.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.0_opentelemetry.gemfile.lock b/gemfiles/ruby_3.0_opentelemetry.gemfile.lock index e47f2bce133..db98389ce62 100755 --- a/gemfiles/ruby_3.0_opentelemetry.gemfile.lock +++ b/gemfiles/ruby_3.0_opentelemetry.gemfile.lock @@ -25,7 +25,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.5.0) extlz4 (0.3.3) ffi (1.17.1-aarch64-linux-gnu) @@ -91,14 +91,14 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) strscan (3.1.0) warning (1.3.0) @@ -135,7 +135,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.0_opentelemetry_otlp.gemfile b/gemfiles/ruby_3.0_opentelemetry_otlp.gemfile index 739fffd9e84..c76acd119d6 100644 --- a/gemfiles/ruby_3.0_opentelemetry_otlp.gemfile +++ b/gemfiles/ruby_3.0_opentelemetry_otlp.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.0_opentelemetry_otlp.gemfile.lock b/gemfiles/ruby_3.0_opentelemetry_otlp.gemfile.lock index 77e6712197b..6ac2d022584 100644 --- a/gemfiles/ruby_3.0_opentelemetry_otlp.gemfile.lock +++ b/gemfiles/ruby_3.0_opentelemetry_otlp.gemfile.lock @@ -28,7 +28,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) ffi (1.17.1-aarch64-linux-gnu) @@ -103,14 +103,14 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) warning (1.3.0) webmock (3.23.0) @@ -147,7 +147,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.0_rack_1.gemfile b/gemfiles/ruby_3.0_rack_1.gemfile index baa5a534a4a..e5eb208a622 100644 --- a/gemfiles/ruby_3.0_rack_1.gemfile +++ b/gemfiles/ruby_3.0_rack_1.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.0_rack_1.gemfile.lock b/gemfiles/ruby_3.0_rack_1.gemfile.lock index 4a4610017bb..078b18131e6 100644 --- a/gemfiles/ruby_3.0_rack_1.gemfile.lock +++ b/gemfiles/ruby_3.0_rack_1.gemfile.lock @@ -25,7 +25,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) ffi (1.17.1-aarch64-linux-gnu) @@ -84,14 +84,14 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) strscan (3.1.0) warning (1.3.0) @@ -130,7 +130,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.0_rack_2.gemfile b/gemfiles/ruby_3.0_rack_2.gemfile index 60d6e96d706..f0228a90642 100644 --- a/gemfiles/ruby_3.0_rack_2.gemfile +++ b/gemfiles/ruby_3.0_rack_2.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.0_rack_2.gemfile.lock b/gemfiles/ruby_3.0_rack_2.gemfile.lock index aad48dc0637..74480c804e2 100644 --- a/gemfiles/ruby_3.0_rack_2.gemfile.lock +++ b/gemfiles/ruby_3.0_rack_2.gemfile.lock @@ -25,7 +25,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) ffi (1.17.1-aarch64-linux-gnu) @@ -84,14 +84,14 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) strscan (3.1.0) warning (1.3.0) @@ -130,7 +130,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.0_rack_3.gemfile b/gemfiles/ruby_3.0_rack_3.gemfile index 886cbbbc6f9..721acbcb2db 100644 --- a/gemfiles/ruby_3.0_rack_3.gemfile +++ b/gemfiles/ruby_3.0_rack_3.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.0_rack_3.gemfile.lock b/gemfiles/ruby_3.0_rack_3.gemfile.lock index 54642477f63..385e62182a2 100644 --- a/gemfiles/ruby_3.0_rack_3.gemfile.lock +++ b/gemfiles/ruby_3.0_rack_3.gemfile.lock @@ -25,7 +25,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) ffi (1.17.1-aarch64-linux-gnu) @@ -84,14 +84,14 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) strscan (3.1.0) warning (1.3.0) @@ -130,7 +130,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.0_rack_latest.gemfile b/gemfiles/ruby_3.0_rack_latest.gemfile index f5234a7e2ec..0d1e8059f03 100644 --- a/gemfiles/ruby_3.0_rack_latest.gemfile +++ b/gemfiles/ruby_3.0_rack_latest.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.0_rack_latest.gemfile.lock b/gemfiles/ruby_3.0_rack_latest.gemfile.lock index 0970fc0beea..8d21c903e5a 100644 --- a/gemfiles/ruby_3.0_rack_latest.gemfile.lock +++ b/gemfiles/ruby_3.0_rack_latest.gemfile.lock @@ -87,7 +87,7 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) @@ -132,7 +132,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.0_rails61_mysql2.gemfile b/gemfiles/ruby_3.0_rails61_mysql2.gemfile index 027346d0cf5..1b34d74be43 100644 --- a/gemfiles/ruby_3.0_rails61_mysql2.gemfile +++ b/gemfiles/ruby_3.0_rails61_mysql2.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.0_rails61_mysql2.gemfile.lock b/gemfiles/ruby_3.0_rails61_mysql2.gemfile.lock index ddad83d3cb1..f0bd90eed18 100644 --- a/gemfiles/ruby_3.0_rails61_mysql2.gemfile.lock +++ b/gemfiles/ruby_3.0_rails61_mysql2.gemfile.lock @@ -87,7 +87,7 @@ GEM date (3.3.3) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.5.0) erubi (1.12.0) extlz4 (0.3.3) @@ -209,14 +209,14 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sprockets (3.7.2) concurrent-ruby (~> 1.0) @@ -271,7 +271,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_3.0_rails61_postgres.gemfile b/gemfiles/ruby_3.0_rails61_postgres.gemfile index e0f5aeffa1d..40cadcf5efa 100644 --- a/gemfiles/ruby_3.0_rails61_postgres.gemfile +++ b/gemfiles/ruby_3.0_rails61_postgres.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.0_rails61_postgres.gemfile.lock b/gemfiles/ruby_3.0_rails61_postgres.gemfile.lock index b3a789e6dc9..00fee7feefb 100644 --- a/gemfiles/ruby_3.0_rails61_postgres.gemfile.lock +++ b/gemfiles/ruby_3.0_rails61_postgres.gemfile.lock @@ -87,7 +87,7 @@ GEM date (3.3.3) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.5.0) erubi (1.12.0) extlz4 (0.3.3) @@ -209,14 +209,14 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sprockets (3.7.2) concurrent-ruby (~> 1.0) @@ -271,7 +271,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_3.0_rails61_postgres_redis.gemfile b/gemfiles/ruby_3.0_rails61_postgres_redis.gemfile index 90eee1e65e1..bd9dab940c1 100644 --- a/gemfiles/ruby_3.0_rails61_postgres_redis.gemfile +++ b/gemfiles/ruby_3.0_rails61_postgres_redis.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.0_rails61_postgres_redis.gemfile.lock b/gemfiles/ruby_3.0_rails61_postgres_redis.gemfile.lock index 84f20c67799..d7da96d4115 100644 --- a/gemfiles/ruby_3.0_rails61_postgres_redis.gemfile.lock +++ b/gemfiles/ruby_3.0_rails61_postgres_redis.gemfile.lock @@ -87,7 +87,7 @@ GEM date (3.3.3) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.5.0) erubi (1.12.0) extlz4 (0.3.3) @@ -210,14 +210,14 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sprockets (3.7.2) concurrent-ruby (~> 1.0) @@ -273,7 +273,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_3.0_rails61_postgres_sidekiq.gemfile b/gemfiles/ruby_3.0_rails61_postgres_sidekiq.gemfile index f9065004438..4723e69b84e 100644 --- a/gemfiles/ruby_3.0_rails61_postgres_sidekiq.gemfile +++ b/gemfiles/ruby_3.0_rails61_postgres_sidekiq.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.0_rails61_postgres_sidekiq.gemfile.lock b/gemfiles/ruby_3.0_rails61_postgres_sidekiq.gemfile.lock index 260b24d89e6..c31bc2b0802 100644 --- a/gemfiles/ruby_3.0_rails61_postgres_sidekiq.gemfile.lock +++ b/gemfiles/ruby_3.0_rails61_postgres_sidekiq.gemfile.lock @@ -88,7 +88,7 @@ GEM date (3.3.3) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.5.0) erubi (1.12.0) extlz4 (0.3.3) @@ -223,14 +223,14 @@ GEM connection_pool (>= 2.3.0) rack (>= 2.2.4) redis-client (>= 0.11.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sprockets (3.7.2) concurrent-ruby (~> 1.0) @@ -287,7 +287,7 @@ DEPENDENCIES rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) sidekiq (>= 6.1.2) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_3.0_rails61_semantic_logger.gemfile b/gemfiles/ruby_3.0_rails61_semantic_logger.gemfile index 0bcca5c73f7..ecd0656ab89 100644 --- a/gemfiles/ruby_3.0_rails61_semantic_logger.gemfile +++ b/gemfiles/ruby_3.0_rails61_semantic_logger.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.0_rails61_semantic_logger.gemfile.lock b/gemfiles/ruby_3.0_rails61_semantic_logger.gemfile.lock index 558f1e3e407..9438254b7bf 100644 --- a/gemfiles/ruby_3.0_rails61_semantic_logger.gemfile.lock +++ b/gemfiles/ruby_3.0_rails61_semantic_logger.gemfile.lock @@ -87,7 +87,7 @@ GEM date (3.3.3) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.5.0) erubi (1.12.0) extlz4 (0.3.3) @@ -208,14 +208,14 @@ GEM rspec-core (>= 2, < 4, != 2.12.0) semantic_logger (4.12.0) concurrent-ruby (~> 1.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sprockets (3.7.2) concurrent-ruby (~> 1.0) @@ -270,7 +270,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_3.0_rails61_trilogy.gemfile b/gemfiles/ruby_3.0_rails61_trilogy.gemfile index 51d8d5ca920..817f663f633 100644 --- a/gemfiles/ruby_3.0_rails61_trilogy.gemfile +++ b/gemfiles/ruby_3.0_rails61_trilogy.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.0_rails61_trilogy.gemfile.lock b/gemfiles/ruby_3.0_rails61_trilogy.gemfile.lock index e36f2d8150d..c6156435a4e 100644 --- a/gemfiles/ruby_3.0_rails61_trilogy.gemfile.lock +++ b/gemfiles/ruby_3.0_rails61_trilogy.gemfile.lock @@ -91,7 +91,7 @@ GEM date (3.3.4) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) erubi (1.12.0) extlz4 (0.3.4) @@ -215,14 +215,14 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sprockets (3.7.2) concurrent-ruby (~> 1.0) @@ -278,7 +278,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sprockets (< 4) trilogy diff --git a/gemfiles/ruby_3.0_rails7.gemfile b/gemfiles/ruby_3.0_rails7.gemfile index 9166028a3a0..ac20614b4c2 100644 --- a/gemfiles/ruby_3.0_rails7.gemfile +++ b/gemfiles/ruby_3.0_rails7.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.0_rails7.gemfile.lock b/gemfiles/ruby_3.0_rails7.gemfile.lock index 4315951ff32..fe24b75146e 100644 --- a/gemfiles/ruby_3.0_rails7.gemfile.lock +++ b/gemfiles/ruby_3.0_rails7.gemfile.lock @@ -213,14 +213,14 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) strscan (3.1.0) thor (1.3.1) @@ -265,7 +265,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.0_rails71.gemfile b/gemfiles/ruby_3.0_rails71.gemfile index 6123609d84d..a5fed6dadda 100644 --- a/gemfiles/ruby_3.0_rails71.gemfile +++ b/gemfiles/ruby_3.0_rails71.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.0_rails71.gemfile.lock b/gemfiles/ruby_3.0_rails71.gemfile.lock index d4bb81cbd9b..29b98ac5dbb 100644 --- a/gemfiles/ruby_3.0_rails71.gemfile.lock +++ b/gemfiles/ruby_3.0_rails71.gemfile.lock @@ -242,14 +242,14 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) stringio (3.1.1) strscan (3.1.0) @@ -295,7 +295,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.0_rails_old_redis.gemfile b/gemfiles/ruby_3.0_rails_old_redis.gemfile index 3118c34d603..eaa260b6eda 100644 --- a/gemfiles/ruby_3.0_rails_old_redis.gemfile +++ b/gemfiles/ruby_3.0_rails_old_redis.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.0_redis_3.gemfile b/gemfiles/ruby_3.0_redis_3.gemfile index 193f0fcf9cc..a9bfecb79db 100644 --- a/gemfiles/ruby_3.0_redis_3.gemfile +++ b/gemfiles/ruby_3.0_redis_3.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.0_redis_3.gemfile.lock b/gemfiles/ruby_3.0_redis_3.gemfile.lock index 0167a37015a..3ffed2e10ba 100644 --- a/gemfiles/ruby_3.0_redis_3.gemfile.lock +++ b/gemfiles/ruby_3.0_redis_3.gemfile.lock @@ -25,7 +25,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.5.0) extlz4 (0.3.3) ffi (1.17.1-aarch64-linux-gnu) @@ -80,14 +80,14 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) strscan (3.1.0) warning (1.3.0) @@ -124,7 +124,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.0_redis_4.gemfile b/gemfiles/ruby_3.0_redis_4.gemfile index 15ad6b2febf..83fc35d5212 100644 --- a/gemfiles/ruby_3.0_redis_4.gemfile +++ b/gemfiles/ruby_3.0_redis_4.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.0_redis_4.gemfile.lock b/gemfiles/ruby_3.0_redis_4.gemfile.lock index d5eac0ecbe0..a479357e070 100644 --- a/gemfiles/ruby_3.0_redis_4.gemfile.lock +++ b/gemfiles/ruby_3.0_redis_4.gemfile.lock @@ -25,7 +25,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.5.0) extlz4 (0.3.3) ffi (1.17.1-aarch64-linux-gnu) @@ -80,14 +80,14 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) strscan (3.1.0) warning (1.3.0) @@ -124,7 +124,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.0_redis_5.gemfile b/gemfiles/ruby_3.0_redis_5.gemfile index 5c4ee1a0eb9..1e2da4916d0 100644 --- a/gemfiles/ruby_3.0_redis_5.gemfile +++ b/gemfiles/ruby_3.0_redis_5.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.0_redis_5.gemfile.lock b/gemfiles/ruby_3.0_redis_5.gemfile.lock index f45011d743c..f6c1380262e 100644 --- a/gemfiles/ruby_3.0_redis_5.gemfile.lock +++ b/gemfiles/ruby_3.0_redis_5.gemfile.lock @@ -26,7 +26,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.5.0) extlz4 (0.3.3) ffi (1.17.1-aarch64-linux-gnu) @@ -84,14 +84,14 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) strscan (3.1.0) warning (1.3.0) @@ -128,7 +128,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.0_relational_db.gemfile b/gemfiles/ruby_3.0_relational_db.gemfile index 8a553116e94..b783b9446e8 100644 --- a/gemfiles/ruby_3.0_relational_db.gemfile +++ b/gemfiles/ruby_3.0_relational_db.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.0_relational_db.gemfile.lock b/gemfiles/ruby_3.0_relational_db.gemfile.lock index 966f20e5687..422c4740113 100644 --- a/gemfiles/ruby_3.0_relational_db.gemfile.lock +++ b/gemfiles/ruby_3.0_relational_db.gemfile.lock @@ -41,7 +41,7 @@ GEM activerecord (>= 3.0, < 8.0) delayed_job (>= 3.0, < 5) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) ffi (1.17.1-aarch64-linux-gnu) @@ -104,14 +104,14 @@ GEM rspec-core (>= 2, < 4, != 2.12.0) sequel (5.83.1) bigdecimal - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sqlite3 (1.6.6-aarch64-linux) sqlite3 (1.6.6-x86_64-linux) @@ -159,7 +159,7 @@ DEPENDENCIES rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) sequel - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sqlite3 (>= 1.4.2) trilogy diff --git a/gemfiles/ruby_3.0_resque2_redis3.gemfile b/gemfiles/ruby_3.0_resque2_redis3.gemfile index 26b00162274..6c721902459 100644 --- a/gemfiles/ruby_3.0_resque2_redis3.gemfile +++ b/gemfiles/ruby_3.0_resque2_redis3.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.0_resque2_redis3.gemfile.lock b/gemfiles/ruby_3.0_resque2_redis3.gemfile.lock index d0187dabfbf..0f4098fa738 100644 --- a/gemfiles/ruby_3.0_resque2_redis3.gemfile.lock +++ b/gemfiles/ruby_3.0_resque2_redis3.gemfile.lock @@ -25,7 +25,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.5.0) extlz4 (0.3.3) ffi (1.17.1-aarch64-linux-gnu) @@ -95,14 +95,14 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby2_keywords (0.0.5) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sinatra (3.0.5) mustermann (~> 3.0) @@ -146,7 +146,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.0_resque2_redis4.gemfile b/gemfiles/ruby_3.0_resque2_redis4.gemfile index 09a4784be42..fd2c736a17f 100644 --- a/gemfiles/ruby_3.0_resque2_redis4.gemfile +++ b/gemfiles/ruby_3.0_resque2_redis4.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.0_resque2_redis4.gemfile.lock b/gemfiles/ruby_3.0_resque2_redis4.gemfile.lock index 38181381d14..6769d74e856 100644 --- a/gemfiles/ruby_3.0_resque2_redis4.gemfile.lock +++ b/gemfiles/ruby_3.0_resque2_redis4.gemfile.lock @@ -26,7 +26,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.5.0) extlz4 (0.3.3) ffi (1.17.1-aarch64-linux-gnu) @@ -99,14 +99,14 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby2_keywords (0.0.5) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sinatra (3.0.5) mustermann (~> 3.0) @@ -150,7 +150,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.0_sinatra_2.gemfile b/gemfiles/ruby_3.0_sinatra_2.gemfile index aff98433b32..ad095e77bda 100644 --- a/gemfiles/ruby_3.0_sinatra_2.gemfile +++ b/gemfiles/ruby_3.0_sinatra_2.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.0_sinatra_2.gemfile.lock b/gemfiles/ruby_3.0_sinatra_2.gemfile.lock index db461cf234d..1912501d13c 100644 --- a/gemfiles/ruby_3.0_sinatra_2.gemfile.lock +++ b/gemfiles/ruby_3.0_sinatra_2.gemfile.lock @@ -28,7 +28,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) ffi (1.17.1-aarch64-linux-gnu) @@ -93,14 +93,14 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby2_keywords (0.0.5) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sinatra (2.2.4) mustermann (~> 2.0) @@ -144,7 +144,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sinatra (~> 2) warning (~> 1) diff --git a/gemfiles/ruby_3.0_sinatra_3.gemfile b/gemfiles/ruby_3.0_sinatra_3.gemfile index de04f81dd11..0a0d9882d1a 100644 --- a/gemfiles/ruby_3.0_sinatra_3.gemfile +++ b/gemfiles/ruby_3.0_sinatra_3.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.0_sinatra_3.gemfile.lock b/gemfiles/ruby_3.0_sinatra_3.gemfile.lock index 8333705f46a..4d4386e5040 100644 --- a/gemfiles/ruby_3.0_sinatra_3.gemfile.lock +++ b/gemfiles/ruby_3.0_sinatra_3.gemfile.lock @@ -29,7 +29,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) ffi (1.17.1-aarch64-linux-gnu) @@ -95,14 +95,14 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby2_keywords (0.0.5) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sinatra (3.2.0) mustermann (~> 3.0) @@ -146,7 +146,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sinatra (~> 3) warning (~> 1) diff --git a/gemfiles/ruby_3.0_sinatra_4.gemfile b/gemfiles/ruby_3.0_sinatra_4.gemfile index 4d40235e094..3a6ea247c59 100644 --- a/gemfiles/ruby_3.0_sinatra_4.gemfile +++ b/gemfiles/ruby_3.0_sinatra_4.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.0_sinatra_4.gemfile.lock b/gemfiles/ruby_3.0_sinatra_4.gemfile.lock index 60612bd4b9e..60e097df25f 100644 --- a/gemfiles/ruby_3.0_sinatra_4.gemfile.lock +++ b/gemfiles/ruby_3.0_sinatra_4.gemfile.lock @@ -29,7 +29,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) ffi (1.17.1-aarch64-linux-gnu) @@ -97,14 +97,14 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby2_keywords (0.0.5) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sinatra (4.0.0) mustermann (~> 3.0) @@ -149,7 +149,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sinatra (~> 4) warning (~> 1) diff --git a/gemfiles/ruby_3.0_stripe_10.gemfile b/gemfiles/ruby_3.0_stripe_10.gemfile index f2ffd9efb02..ab7beb47cfe 100644 --- a/gemfiles/ruby_3.0_stripe_10.gemfile +++ b/gemfiles/ruby_3.0_stripe_10.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.0_stripe_10.gemfile.lock b/gemfiles/ruby_3.0_stripe_10.gemfile.lock index d157905130f..e1015b4bbc6 100644 --- a/gemfiles/ruby_3.0_stripe_10.gemfile.lock +++ b/gemfiles/ruby_3.0_stripe_10.gemfile.lock @@ -83,14 +83,14 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) stripe (10.15.0) strscan (3.1.0) @@ -127,7 +127,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) stripe (~> 10) warning (~> 1) diff --git a/gemfiles/ruby_3.0_stripe_11.gemfile b/gemfiles/ruby_3.0_stripe_11.gemfile index 3c650142390..027b34c9905 100644 --- a/gemfiles/ruby_3.0_stripe_11.gemfile +++ b/gemfiles/ruby_3.0_stripe_11.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.0_stripe_11.gemfile.lock b/gemfiles/ruby_3.0_stripe_11.gemfile.lock index 1be39ea683a..0b6ad479210 100644 --- a/gemfiles/ruby_3.0_stripe_11.gemfile.lock +++ b/gemfiles/ruby_3.0_stripe_11.gemfile.lock @@ -83,14 +83,14 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) stripe (11.7.0) strscan (3.1.0) @@ -127,7 +127,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) stripe (~> 11) warning (~> 1) diff --git a/gemfiles/ruby_3.0_stripe_12.gemfile b/gemfiles/ruby_3.0_stripe_12.gemfile index fd88c55b26b..69b67680c16 100644 --- a/gemfiles/ruby_3.0_stripe_12.gemfile +++ b/gemfiles/ruby_3.0_stripe_12.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.0_stripe_12.gemfile.lock b/gemfiles/ruby_3.0_stripe_12.gemfile.lock index a39844a6059..35fcc8aacdc 100644 --- a/gemfiles/ruby_3.0_stripe_12.gemfile.lock +++ b/gemfiles/ruby_3.0_stripe_12.gemfile.lock @@ -83,14 +83,14 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) stripe (12.6.0) strscan (3.1.0) @@ -127,7 +127,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) stripe (~> 12) warning (~> 1) diff --git a/gemfiles/ruby_3.0_stripe_7.gemfile b/gemfiles/ruby_3.0_stripe_7.gemfile index 435abeaae7e..ec97ef62fbe 100644 --- a/gemfiles/ruby_3.0_stripe_7.gemfile +++ b/gemfiles/ruby_3.0_stripe_7.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.0_stripe_7.gemfile.lock b/gemfiles/ruby_3.0_stripe_7.gemfile.lock index b0ccb693ddf..adf3fc92765 100644 --- a/gemfiles/ruby_3.0_stripe_7.gemfile.lock +++ b/gemfiles/ruby_3.0_stripe_7.gemfile.lock @@ -83,14 +83,14 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) stripe (7.1.0) strscan (3.1.0) @@ -127,7 +127,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) stripe (~> 7) warning (~> 1) diff --git a/gemfiles/ruby_3.0_stripe_8.gemfile b/gemfiles/ruby_3.0_stripe_8.gemfile index ce21f3c93e8..31fd9e6a9fc 100644 --- a/gemfiles/ruby_3.0_stripe_8.gemfile +++ b/gemfiles/ruby_3.0_stripe_8.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.0_stripe_8.gemfile.lock b/gemfiles/ruby_3.0_stripe_8.gemfile.lock index 5764c54b7fb..96c62c022f3 100644 --- a/gemfiles/ruby_3.0_stripe_8.gemfile.lock +++ b/gemfiles/ruby_3.0_stripe_8.gemfile.lock @@ -83,14 +83,14 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) stripe (8.7.0) strscan (3.1.0) @@ -127,7 +127,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) stripe (~> 8) warning (~> 1) diff --git a/gemfiles/ruby_3.0_stripe_9.gemfile b/gemfiles/ruby_3.0_stripe_9.gemfile index 4e39d862013..2aa21703d9b 100644 --- a/gemfiles/ruby_3.0_stripe_9.gemfile +++ b/gemfiles/ruby_3.0_stripe_9.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.0_stripe_9.gemfile.lock b/gemfiles/ruby_3.0_stripe_9.gemfile.lock index d2ef1403831..0a4a811fecc 100644 --- a/gemfiles/ruby_3.0_stripe_9.gemfile.lock +++ b/gemfiles/ruby_3.0_stripe_9.gemfile.lock @@ -83,14 +83,14 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) stripe (9.4.0) strscan (3.1.0) @@ -127,7 +127,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) stripe (~> 9) warning (~> 1) diff --git a/gemfiles/ruby_3.0_stripe_latest.gemfile b/gemfiles/ruby_3.0_stripe_latest.gemfile index 98dbcf511ff..f43b7aa5c02 100644 --- a/gemfiles/ruby_3.0_stripe_latest.gemfile +++ b/gemfiles/ruby_3.0_stripe_latest.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.0_stripe_latest.gemfile.lock b/gemfiles/ruby_3.0_stripe_latest.gemfile.lock index 9a1939adeb6..40d7e0acaa8 100644 --- a/gemfiles/ruby_3.0_stripe_latest.gemfile.lock +++ b/gemfiles/ruby_3.0_stripe_latest.gemfile.lock @@ -82,7 +82,7 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) @@ -125,7 +125,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) stripe warning (~> 1) diff --git a/gemfiles/ruby_3.0_stripe_min.gemfile b/gemfiles/ruby_3.0_stripe_min.gemfile index 2e58c1c1a02..b093f0ee344 100644 --- a/gemfiles/ruby_3.0_stripe_min.gemfile +++ b/gemfiles/ruby_3.0_stripe_min.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.0_stripe_min.gemfile.lock b/gemfiles/ruby_3.0_stripe_min.gemfile.lock index 74afdd62805..588e6ba03d4 100644 --- a/gemfiles/ruby_3.0_stripe_min.gemfile.lock +++ b/gemfiles/ruby_3.0_stripe_min.gemfile.lock @@ -82,7 +82,7 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) @@ -125,7 +125,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) stripe (= 5.15.0) warning (~> 1) diff --git a/gemfiles/ruby_3.1_activesupport.gemfile b/gemfiles/ruby_3.1_activesupport.gemfile index 52e48cdce09..54749f727f6 100644 --- a/gemfiles/ruby_3.1_activesupport.gemfile +++ b/gemfiles/ruby_3.1_activesupport.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.1_activesupport.gemfile.lock b/gemfiles/ruby_3.1_activesupport.gemfile.lock index 0707891813c..df71ee07e13 100644 --- a/gemfiles/ruby_3.1_activesupport.gemfile.lock +++ b/gemfiles/ruby_3.1_activesupport.gemfile.lock @@ -56,7 +56,7 @@ GEM diff-lcs (1.5.0) digest-crc (0.6.5) rake (>= 12.0.0, < 14.0.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) dry-core (1.0.1) concurrent-ruby (~> 1.0) @@ -186,14 +186,14 @@ GEM ruby-kafka (1.5.0) digest-crc ruby2_keywords (0.0.5) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) strscan (3.1.0) thor (1.2.2) @@ -241,7 +241,7 @@ DEPENDENCIES rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) ruby-kafka (>= 0.7.10) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.1_aws.gemfile b/gemfiles/ruby_3.1_aws.gemfile index b550f6d66c8..bcbff87362b 100644 --- a/gemfiles/ruby_3.1_aws.gemfile +++ b/gemfiles/ruby_3.1_aws.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.1_aws.gemfile.lock b/gemfiles/ruby_3.1_aws.gemfile.lock index 66e5937df98..1bdd0c37033 100644 --- a/gemfiles/ruby_3.1_aws.gemfile.lock +++ b/gemfiles/ruby_3.1_aws.gemfile.lock @@ -1446,7 +1446,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.0) extlz4 (0.3.4) ffi (1.17.1-aarch64-linux-gnu) @@ -1505,14 +1505,14 @@ GEM aws-sdk-core (>= 2) concurrent-ruby thor - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) strscan (3.1.0) thor (1.2.2) @@ -1551,7 +1551,7 @@ DEPENDENCIES rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) shoryuken - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.1_contrib.gemfile b/gemfiles/ruby_3.1_contrib.gemfile index 7e772996d4c..63e54d3ef89 100644 --- a/gemfiles/ruby_3.1_contrib.gemfile +++ b/gemfiles/ruby_3.1_contrib.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.1_contrib.gemfile.lock b/gemfiles/ruby_3.1_contrib.gemfile.lock index f71cdf96700..9f98be69469 100644 --- a/gemfiles/ruby_3.1_contrib.gemfile.lock +++ b/gemfiles/ruby_3.1_contrib.gemfile.lock @@ -32,7 +32,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.5.0) extlz4 (0.3.3) ffi (1.17.1-aarch64-linux-gnu) @@ -131,14 +131,14 @@ GEM rack (>= 2.2.4) redis-client (>= 0.11.0) sigdump (0.2.4) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sinatra (3.0.5) mustermann (~> 3.0) @@ -201,7 +201,7 @@ DEPENDENCIES rspec_junit_formatter (>= 0.5.1) semantic_logger (~> 4.0) sidekiq (~> 7) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sneakers (>= 2.12.0) sucker_punch diff --git a/gemfiles/ruby_3.1_contrib_old.gemfile b/gemfiles/ruby_3.1_contrib_old.gemfile index e699baa3624..9586ef0329b 100644 --- a/gemfiles/ruby_3.1_contrib_old.gemfile +++ b/gemfiles/ruby_3.1_contrib_old.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.1_contrib_old.gemfile.lock b/gemfiles/ruby_3.1_contrib_old.gemfile.lock index c14433feb28..18ed8bec27c 100644 --- a/gemfiles/ruby_3.1_contrib_old.gemfile.lock +++ b/gemfiles/ruby_3.1_contrib_old.gemfile.lock @@ -30,7 +30,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.5.0) eventmachine (1.2.7) extlz4 (0.3.3) @@ -119,14 +119,14 @@ GEM rusage (0.2.0) sentry-raven (0.15.6) faraday (>= 0.7.6) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sinatra (2.0.8.1) mustermann (~> 1.0) @@ -179,7 +179,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.1_core_old.gemfile b/gemfiles/ruby_3.1_core_old.gemfile index 93c4fd08e14..5974022b114 100644 --- a/gemfiles/ruby_3.1_core_old.gemfile +++ b/gemfiles/ruby_3.1_core_old.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.1_core_old.gemfile.lock b/gemfiles/ruby_3.1_core_old.gemfile.lock index c5e9855c351..6c20efc2e64 100644 --- a/gemfiles/ruby_3.1_core_old.gemfile.lock +++ b/gemfiles/ruby_3.1_core_old.gemfile.lock @@ -25,7 +25,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (4.8.3) extlz4 (0.3.3) ffi (1.17.1-aarch64-linux-gnu) @@ -79,14 +79,14 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) strscan (3.1.0) warning (1.3.0) @@ -122,7 +122,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.1_elasticsearch_7.gemfile b/gemfiles/ruby_3.1_elasticsearch_7.gemfile index b999b039f27..1a1db3df18f 100644 --- a/gemfiles/ruby_3.1_elasticsearch_7.gemfile +++ b/gemfiles/ruby_3.1_elasticsearch_7.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.1_elasticsearch_7.gemfile.lock b/gemfiles/ruby_3.1_elasticsearch_7.gemfile.lock index 305e9db99ef..6a457392d7e 100644 --- a/gemfiles/ruby_3.1_elasticsearch_7.gemfile.lock +++ b/gemfiles/ruby_3.1_elasticsearch_7.gemfile.lock @@ -27,7 +27,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) elasticsearch (7.17.11) elasticsearch-api (= 7.17.11) @@ -102,14 +102,14 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) strscan (3.1.0) uri (1.0.2) @@ -147,7 +147,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.1_elasticsearch_8.gemfile b/gemfiles/ruby_3.1_elasticsearch_8.gemfile index ffd2a5eb21e..f1399953d89 100644 --- a/gemfiles/ruby_3.1_elasticsearch_8.gemfile +++ b/gemfiles/ruby_3.1_elasticsearch_8.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.1_elasticsearch_8.gemfile.lock b/gemfiles/ruby_3.1_elasticsearch_8.gemfile.lock index 1fab6478d8c..81ab3b2434d 100644 --- a/gemfiles/ruby_3.1_elasticsearch_8.gemfile.lock +++ b/gemfiles/ruby_3.1_elasticsearch_8.gemfile.lock @@ -26,7 +26,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) elastic-transport (8.3.5) faraday (< 3) @@ -100,14 +100,14 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) strscan (3.1.0) uri (1.0.2) @@ -145,7 +145,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.1_elasticsearch_latest.gemfile b/gemfiles/ruby_3.1_elasticsearch_latest.gemfile index 416bb546db6..7f22d5d6d2b 100644 --- a/gemfiles/ruby_3.1_elasticsearch_latest.gemfile +++ b/gemfiles/ruby_3.1_elasticsearch_latest.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.1_elasticsearch_latest.gemfile.lock b/gemfiles/ruby_3.1_elasticsearch_latest.gemfile.lock index e5db40e6313..e40a9c2e215 100644 --- a/gemfiles/ruby_3.1_elasticsearch_latest.gemfile.lock +++ b/gemfiles/ruby_3.1_elasticsearch_latest.gemfile.lock @@ -101,7 +101,7 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) @@ -145,7 +145,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.1_graphql_1.13.gemfile b/gemfiles/ruby_3.1_graphql_1.13.gemfile index af39dc1df59..57abde5ab35 100644 --- a/gemfiles/ruby_3.1_graphql_1.13.gemfile +++ b/gemfiles/ruby_3.1_graphql_1.13.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.1_graphql_1.13.gemfile.lock b/gemfiles/ruby_3.1_graphql_1.13.gemfile.lock index 7712c12ff4a..a1fa17e8c14 100644 --- a/gemfiles/ruby_3.1_graphql_1.13.gemfile.lock +++ b/gemfiles/ruby_3.1_graphql_1.13.gemfile.lock @@ -89,7 +89,7 @@ GEM date (3.3.4) debug_inspector (1.2.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) erubi (1.13.0) extlz4 (0.3.4) @@ -214,14 +214,14 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sprockets (3.7.3) base64 @@ -276,7 +276,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_3.1_graphql_2.0.gemfile b/gemfiles/ruby_3.1_graphql_2.0.gemfile index 6fc8f6a254b..f5978a7eb13 100644 --- a/gemfiles/ruby_3.1_graphql_2.0.gemfile +++ b/gemfiles/ruby_3.1_graphql_2.0.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.1_graphql_2.0.gemfile.lock b/gemfiles/ruby_3.1_graphql_2.0.gemfile.lock index da142c74173..60017e2568a 100644 --- a/gemfiles/ruby_3.1_graphql_2.0.gemfile.lock +++ b/gemfiles/ruby_3.1_graphql_2.0.gemfile.lock @@ -89,7 +89,7 @@ GEM date (3.3.4) debug_inspector (1.2.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) erubi (1.13.0) extlz4 (0.3.4) @@ -214,14 +214,14 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sprockets (3.7.3) base64 @@ -276,7 +276,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_3.1_graphql_2.1.gemfile b/gemfiles/ruby_3.1_graphql_2.1.gemfile index cf85a8a06e4..5fe2ba8c89c 100644 --- a/gemfiles/ruby_3.1_graphql_2.1.gemfile +++ b/gemfiles/ruby_3.1_graphql_2.1.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.1_graphql_2.1.gemfile.lock b/gemfiles/ruby_3.1_graphql_2.1.gemfile.lock index 07799e52d34..0cd0f916a32 100644 --- a/gemfiles/ruby_3.1_graphql_2.1.gemfile.lock +++ b/gemfiles/ruby_3.1_graphql_2.1.gemfile.lock @@ -89,7 +89,7 @@ GEM date (3.3.4) debug_inspector (1.2.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) erubi (1.13.0) extlz4 (0.3.4) @@ -215,14 +215,14 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sprockets (3.7.3) base64 @@ -277,7 +277,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_3.1_graphql_2.2.gemfile b/gemfiles/ruby_3.1_graphql_2.2.gemfile index c3652170170..4afe1c364f2 100644 --- a/gemfiles/ruby_3.1_graphql_2.2.gemfile +++ b/gemfiles/ruby_3.1_graphql_2.2.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.1_graphql_2.2.gemfile.lock b/gemfiles/ruby_3.1_graphql_2.2.gemfile.lock index 2db42687c6e..b894ba501c6 100644 --- a/gemfiles/ruby_3.1_graphql_2.2.gemfile.lock +++ b/gemfiles/ruby_3.1_graphql_2.2.gemfile.lock @@ -89,7 +89,7 @@ GEM date (3.3.4) debug_inspector (1.2.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) erubi (1.13.0) extlz4 (0.3.4) @@ -215,14 +215,14 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sprockets (3.7.3) base64 @@ -277,7 +277,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_3.1_graphql_2.3.gemfile b/gemfiles/ruby_3.1_graphql_2.3.gemfile index 43a44f7ad9b..a30485be645 100644 --- a/gemfiles/ruby_3.1_graphql_2.3.gemfile +++ b/gemfiles/ruby_3.1_graphql_2.3.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.1_graphql_2.3.gemfile.lock b/gemfiles/ruby_3.1_graphql_2.3.gemfile.lock index 22a6ea54083..4c812ec6927 100644 --- a/gemfiles/ruby_3.1_graphql_2.3.gemfile.lock +++ b/gemfiles/ruby_3.1_graphql_2.3.gemfile.lock @@ -91,7 +91,7 @@ GEM date (3.3.4) debug_inspector (1.2.0) diff-lcs (1.5.1) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) erubi (1.13.0) extlz4 (0.3.4) @@ -217,14 +217,14 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sprockets (3.7.3) base64 @@ -279,7 +279,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_3.1_http.gemfile b/gemfiles/ruby_3.1_http.gemfile index 801baf19d2b..d06bc441034 100644 --- a/gemfiles/ruby_3.1_http.gemfile +++ b/gemfiles/ruby_3.1_http.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.1_http.gemfile.lock b/gemfiles/ruby_3.1_http.gemfile.lock index d1ef944344f..96c3c4c248a 100644 --- a/gemfiles/ruby_3.1_http.gemfile.lock +++ b/gemfiles/ruby_3.1_http.gemfile.lock @@ -25,7 +25,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) domain_name (0.5.20190701) unf (>= 0.0.5, < 1.0.0) @@ -114,14 +114,14 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby2_keywords (0.0.5) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) strscan (3.1.0) typhoeus (1.4.0) @@ -168,7 +168,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) typhoeus warning (~> 1) diff --git a/gemfiles/ruby_3.1_opensearch_2.gemfile b/gemfiles/ruby_3.1_opensearch_2.gemfile index 9bc4540cc88..0f56f0e7b1d 100644 --- a/gemfiles/ruby_3.1_opensearch_2.gemfile +++ b/gemfiles/ruby_3.1_opensearch_2.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.1_opensearch_2.gemfile.lock b/gemfiles/ruby_3.1_opensearch_2.gemfile.lock index 51f5d706c18..160b258ba53 100644 --- a/gemfiles/ruby_3.1_opensearch_2.gemfile.lock +++ b/gemfiles/ruby_3.1_opensearch_2.gemfile.lock @@ -26,7 +26,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) faraday (2.12.2) @@ -100,14 +100,14 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) strscan (3.1.0) uri (1.0.2) @@ -145,7 +145,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.1_opensearch_3.gemfile b/gemfiles/ruby_3.1_opensearch_3.gemfile index 048682c6d39..ea18495c490 100644 --- a/gemfiles/ruby_3.1_opensearch_3.gemfile +++ b/gemfiles/ruby_3.1_opensearch_3.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.1_opensearch_3.gemfile.lock b/gemfiles/ruby_3.1_opensearch_3.gemfile.lock index 83f2cc7fc75..c9dfdb90950 100644 --- a/gemfiles/ruby_3.1_opensearch_3.gemfile.lock +++ b/gemfiles/ruby_3.1_opensearch_3.gemfile.lock @@ -26,7 +26,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) faraday (2.12.2) @@ -95,14 +95,14 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) strscan (3.1.0) uri (1.0.2) @@ -140,7 +140,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.1_opensearch_latest.gemfile b/gemfiles/ruby_3.1_opensearch_latest.gemfile index c446e02ce35..86d7aa10c9c 100644 --- a/gemfiles/ruby_3.1_opensearch_latest.gemfile +++ b/gemfiles/ruby_3.1_opensearch_latest.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.1_opensearch_latest.gemfile.lock b/gemfiles/ruby_3.1_opensearch_latest.gemfile.lock index 465311cca9b..195c6d05bcf 100644 --- a/gemfiles/ruby_3.1_opensearch_latest.gemfile.lock +++ b/gemfiles/ruby_3.1_opensearch_latest.gemfile.lock @@ -96,7 +96,7 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) @@ -140,7 +140,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.1_opentelemetry.gemfile b/gemfiles/ruby_3.1_opentelemetry.gemfile index 4df1bd1ac54..e4b3b2a6c90 100644 --- a/gemfiles/ruby_3.1_opentelemetry.gemfile +++ b/gemfiles/ruby_3.1_opentelemetry.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.1_opentelemetry.gemfile.lock b/gemfiles/ruby_3.1_opentelemetry.gemfile.lock index 8c8d9d506e7..45774912350 100644 --- a/gemfiles/ruby_3.1_opentelemetry.gemfile.lock +++ b/gemfiles/ruby_3.1_opentelemetry.gemfile.lock @@ -25,7 +25,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.5.0) extlz4 (0.3.3) ffi (1.17.1-aarch64-linux-gnu) @@ -96,14 +96,14 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) strscan (3.1.0) warning (1.3.0) @@ -141,7 +141,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.1_opentelemetry_otlp.gemfile b/gemfiles/ruby_3.1_opentelemetry_otlp.gemfile index 739fffd9e84..c76acd119d6 100644 --- a/gemfiles/ruby_3.1_opentelemetry_otlp.gemfile +++ b/gemfiles/ruby_3.1_opentelemetry_otlp.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.1_opentelemetry_otlp.gemfile.lock b/gemfiles/ruby_3.1_opentelemetry_otlp.gemfile.lock index 77e6712197b..6ac2d022584 100644 --- a/gemfiles/ruby_3.1_opentelemetry_otlp.gemfile.lock +++ b/gemfiles/ruby_3.1_opentelemetry_otlp.gemfile.lock @@ -28,7 +28,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) ffi (1.17.1-aarch64-linux-gnu) @@ -103,14 +103,14 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) warning (1.3.0) webmock (3.23.0) @@ -147,7 +147,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.1_rack_1.gemfile b/gemfiles/ruby_3.1_rack_1.gemfile index baa5a534a4a..e5eb208a622 100644 --- a/gemfiles/ruby_3.1_rack_1.gemfile +++ b/gemfiles/ruby_3.1_rack_1.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.1_rack_1.gemfile.lock b/gemfiles/ruby_3.1_rack_1.gemfile.lock index 4a4610017bb..078b18131e6 100644 --- a/gemfiles/ruby_3.1_rack_1.gemfile.lock +++ b/gemfiles/ruby_3.1_rack_1.gemfile.lock @@ -25,7 +25,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) ffi (1.17.1-aarch64-linux-gnu) @@ -84,14 +84,14 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) strscan (3.1.0) warning (1.3.0) @@ -130,7 +130,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.1_rack_2.gemfile b/gemfiles/ruby_3.1_rack_2.gemfile index 60d6e96d706..f0228a90642 100644 --- a/gemfiles/ruby_3.1_rack_2.gemfile +++ b/gemfiles/ruby_3.1_rack_2.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.1_rack_2.gemfile.lock b/gemfiles/ruby_3.1_rack_2.gemfile.lock index aad48dc0637..74480c804e2 100644 --- a/gemfiles/ruby_3.1_rack_2.gemfile.lock +++ b/gemfiles/ruby_3.1_rack_2.gemfile.lock @@ -25,7 +25,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) ffi (1.17.1-aarch64-linux-gnu) @@ -84,14 +84,14 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) strscan (3.1.0) warning (1.3.0) @@ -130,7 +130,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.1_rack_3.gemfile b/gemfiles/ruby_3.1_rack_3.gemfile index 886cbbbc6f9..721acbcb2db 100644 --- a/gemfiles/ruby_3.1_rack_3.gemfile +++ b/gemfiles/ruby_3.1_rack_3.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.1_rack_3.gemfile.lock b/gemfiles/ruby_3.1_rack_3.gemfile.lock index 54642477f63..385e62182a2 100644 --- a/gemfiles/ruby_3.1_rack_3.gemfile.lock +++ b/gemfiles/ruby_3.1_rack_3.gemfile.lock @@ -25,7 +25,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) ffi (1.17.1-aarch64-linux-gnu) @@ -84,14 +84,14 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) strscan (3.1.0) warning (1.3.0) @@ -130,7 +130,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.1_rack_latest.gemfile b/gemfiles/ruby_3.1_rack_latest.gemfile index f5234a7e2ec..0d1e8059f03 100644 --- a/gemfiles/ruby_3.1_rack_latest.gemfile +++ b/gemfiles/ruby_3.1_rack_latest.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.1_rack_latest.gemfile.lock b/gemfiles/ruby_3.1_rack_latest.gemfile.lock index 0970fc0beea..8d21c903e5a 100644 --- a/gemfiles/ruby_3.1_rack_latest.gemfile.lock +++ b/gemfiles/ruby_3.1_rack_latest.gemfile.lock @@ -87,7 +87,7 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) @@ -132,7 +132,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.1_rails61_mysql2.gemfile b/gemfiles/ruby_3.1_rails61_mysql2.gemfile index 027346d0cf5..1b34d74be43 100644 --- a/gemfiles/ruby_3.1_rails61_mysql2.gemfile +++ b/gemfiles/ruby_3.1_rails61_mysql2.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.1_rails61_mysql2.gemfile.lock b/gemfiles/ruby_3.1_rails61_mysql2.gemfile.lock index ddad83d3cb1..f0bd90eed18 100644 --- a/gemfiles/ruby_3.1_rails61_mysql2.gemfile.lock +++ b/gemfiles/ruby_3.1_rails61_mysql2.gemfile.lock @@ -87,7 +87,7 @@ GEM date (3.3.3) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.5.0) erubi (1.12.0) extlz4 (0.3.3) @@ -209,14 +209,14 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sprockets (3.7.2) concurrent-ruby (~> 1.0) @@ -271,7 +271,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_3.1_rails61_postgres.gemfile b/gemfiles/ruby_3.1_rails61_postgres.gemfile index e0f5aeffa1d..40cadcf5efa 100644 --- a/gemfiles/ruby_3.1_rails61_postgres.gemfile +++ b/gemfiles/ruby_3.1_rails61_postgres.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.1_rails61_postgres.gemfile.lock b/gemfiles/ruby_3.1_rails61_postgres.gemfile.lock index b3a789e6dc9..00fee7feefb 100644 --- a/gemfiles/ruby_3.1_rails61_postgres.gemfile.lock +++ b/gemfiles/ruby_3.1_rails61_postgres.gemfile.lock @@ -87,7 +87,7 @@ GEM date (3.3.3) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.5.0) erubi (1.12.0) extlz4 (0.3.3) @@ -209,14 +209,14 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sprockets (3.7.2) concurrent-ruby (~> 1.0) @@ -271,7 +271,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_3.1_rails61_postgres_redis.gemfile b/gemfiles/ruby_3.1_rails61_postgres_redis.gemfile index 90eee1e65e1..bd9dab940c1 100644 --- a/gemfiles/ruby_3.1_rails61_postgres_redis.gemfile +++ b/gemfiles/ruby_3.1_rails61_postgres_redis.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.1_rails61_postgres_redis.gemfile.lock b/gemfiles/ruby_3.1_rails61_postgres_redis.gemfile.lock index 84f20c67799..d7da96d4115 100644 --- a/gemfiles/ruby_3.1_rails61_postgres_redis.gemfile.lock +++ b/gemfiles/ruby_3.1_rails61_postgres_redis.gemfile.lock @@ -87,7 +87,7 @@ GEM date (3.3.3) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.5.0) erubi (1.12.0) extlz4 (0.3.3) @@ -210,14 +210,14 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sprockets (3.7.2) concurrent-ruby (~> 1.0) @@ -273,7 +273,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_3.1_rails61_postgres_sidekiq.gemfile b/gemfiles/ruby_3.1_rails61_postgres_sidekiq.gemfile index f9065004438..4723e69b84e 100644 --- a/gemfiles/ruby_3.1_rails61_postgres_sidekiq.gemfile +++ b/gemfiles/ruby_3.1_rails61_postgres_sidekiq.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.1_rails61_postgres_sidekiq.gemfile.lock b/gemfiles/ruby_3.1_rails61_postgres_sidekiq.gemfile.lock index 260b24d89e6..c31bc2b0802 100644 --- a/gemfiles/ruby_3.1_rails61_postgres_sidekiq.gemfile.lock +++ b/gemfiles/ruby_3.1_rails61_postgres_sidekiq.gemfile.lock @@ -88,7 +88,7 @@ GEM date (3.3.3) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.5.0) erubi (1.12.0) extlz4 (0.3.3) @@ -223,14 +223,14 @@ GEM connection_pool (>= 2.3.0) rack (>= 2.2.4) redis-client (>= 0.11.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sprockets (3.7.2) concurrent-ruby (~> 1.0) @@ -287,7 +287,7 @@ DEPENDENCIES rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) sidekiq (>= 6.1.2) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_3.1_rails61_semantic_logger.gemfile b/gemfiles/ruby_3.1_rails61_semantic_logger.gemfile index 0bcca5c73f7..ecd0656ab89 100644 --- a/gemfiles/ruby_3.1_rails61_semantic_logger.gemfile +++ b/gemfiles/ruby_3.1_rails61_semantic_logger.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.1_rails61_semantic_logger.gemfile.lock b/gemfiles/ruby_3.1_rails61_semantic_logger.gemfile.lock index 558f1e3e407..9438254b7bf 100644 --- a/gemfiles/ruby_3.1_rails61_semantic_logger.gemfile.lock +++ b/gemfiles/ruby_3.1_rails61_semantic_logger.gemfile.lock @@ -87,7 +87,7 @@ GEM date (3.3.3) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.5.0) erubi (1.12.0) extlz4 (0.3.3) @@ -208,14 +208,14 @@ GEM rspec-core (>= 2, < 4, != 2.12.0) semantic_logger (4.12.0) concurrent-ruby (~> 1.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sprockets (3.7.2) concurrent-ruby (~> 1.0) @@ -270,7 +270,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_3.1_rails61_trilogy.gemfile b/gemfiles/ruby_3.1_rails61_trilogy.gemfile index 51d8d5ca920..817f663f633 100644 --- a/gemfiles/ruby_3.1_rails61_trilogy.gemfile +++ b/gemfiles/ruby_3.1_rails61_trilogy.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.1_rails61_trilogy.gemfile.lock b/gemfiles/ruby_3.1_rails61_trilogy.gemfile.lock index e36f2d8150d..c6156435a4e 100644 --- a/gemfiles/ruby_3.1_rails61_trilogy.gemfile.lock +++ b/gemfiles/ruby_3.1_rails61_trilogy.gemfile.lock @@ -91,7 +91,7 @@ GEM date (3.3.4) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) erubi (1.12.0) extlz4 (0.3.4) @@ -215,14 +215,14 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sprockets (3.7.2) concurrent-ruby (~> 1.0) @@ -278,7 +278,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sprockets (< 4) trilogy diff --git a/gemfiles/ruby_3.1_rails7.gemfile b/gemfiles/ruby_3.1_rails7.gemfile index 9166028a3a0..ac20614b4c2 100644 --- a/gemfiles/ruby_3.1_rails7.gemfile +++ b/gemfiles/ruby_3.1_rails7.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.1_rails7.gemfile.lock b/gemfiles/ruby_3.1_rails7.gemfile.lock index 4315951ff32..fe24b75146e 100644 --- a/gemfiles/ruby_3.1_rails7.gemfile.lock +++ b/gemfiles/ruby_3.1_rails7.gemfile.lock @@ -213,14 +213,14 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) strscan (3.1.0) thor (1.3.1) @@ -265,7 +265,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.1_rails71.gemfile b/gemfiles/ruby_3.1_rails71.gemfile index 6123609d84d..a5fed6dadda 100644 --- a/gemfiles/ruby_3.1_rails71.gemfile +++ b/gemfiles/ruby_3.1_rails71.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.1_rails71.gemfile.lock b/gemfiles/ruby_3.1_rails71.gemfile.lock index d4bb81cbd9b..29b98ac5dbb 100644 --- a/gemfiles/ruby_3.1_rails71.gemfile.lock +++ b/gemfiles/ruby_3.1_rails71.gemfile.lock @@ -242,14 +242,14 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) stringio (3.1.1) strscan (3.1.0) @@ -295,7 +295,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.1_rails_old_redis.gemfile b/gemfiles/ruby_3.1_rails_old_redis.gemfile index 3118c34d603..eaa260b6eda 100644 --- a/gemfiles/ruby_3.1_rails_old_redis.gemfile +++ b/gemfiles/ruby_3.1_rails_old_redis.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.1_redis_3.gemfile b/gemfiles/ruby_3.1_redis_3.gemfile index 193f0fcf9cc..a9bfecb79db 100644 --- a/gemfiles/ruby_3.1_redis_3.gemfile +++ b/gemfiles/ruby_3.1_redis_3.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.1_redis_3.gemfile.lock b/gemfiles/ruby_3.1_redis_3.gemfile.lock index 0167a37015a..3ffed2e10ba 100644 --- a/gemfiles/ruby_3.1_redis_3.gemfile.lock +++ b/gemfiles/ruby_3.1_redis_3.gemfile.lock @@ -25,7 +25,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.5.0) extlz4 (0.3.3) ffi (1.17.1-aarch64-linux-gnu) @@ -80,14 +80,14 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) strscan (3.1.0) warning (1.3.0) @@ -124,7 +124,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.1_redis_4.gemfile b/gemfiles/ruby_3.1_redis_4.gemfile index 15ad6b2febf..83fc35d5212 100644 --- a/gemfiles/ruby_3.1_redis_4.gemfile +++ b/gemfiles/ruby_3.1_redis_4.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.1_redis_4.gemfile.lock b/gemfiles/ruby_3.1_redis_4.gemfile.lock index d5eac0ecbe0..a479357e070 100644 --- a/gemfiles/ruby_3.1_redis_4.gemfile.lock +++ b/gemfiles/ruby_3.1_redis_4.gemfile.lock @@ -25,7 +25,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.5.0) extlz4 (0.3.3) ffi (1.17.1-aarch64-linux-gnu) @@ -80,14 +80,14 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) strscan (3.1.0) warning (1.3.0) @@ -124,7 +124,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.1_redis_5.gemfile b/gemfiles/ruby_3.1_redis_5.gemfile index 5c4ee1a0eb9..1e2da4916d0 100644 --- a/gemfiles/ruby_3.1_redis_5.gemfile +++ b/gemfiles/ruby_3.1_redis_5.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.1_redis_5.gemfile.lock b/gemfiles/ruby_3.1_redis_5.gemfile.lock index f45011d743c..f6c1380262e 100644 --- a/gemfiles/ruby_3.1_redis_5.gemfile.lock +++ b/gemfiles/ruby_3.1_redis_5.gemfile.lock @@ -26,7 +26,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.5.0) extlz4 (0.3.3) ffi (1.17.1-aarch64-linux-gnu) @@ -84,14 +84,14 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) strscan (3.1.0) warning (1.3.0) @@ -128,7 +128,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.1_relational_db.gemfile b/gemfiles/ruby_3.1_relational_db.gemfile index 8a553116e94..b783b9446e8 100644 --- a/gemfiles/ruby_3.1_relational_db.gemfile +++ b/gemfiles/ruby_3.1_relational_db.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.1_relational_db.gemfile.lock b/gemfiles/ruby_3.1_relational_db.gemfile.lock index 966f20e5687..422c4740113 100644 --- a/gemfiles/ruby_3.1_relational_db.gemfile.lock +++ b/gemfiles/ruby_3.1_relational_db.gemfile.lock @@ -41,7 +41,7 @@ GEM activerecord (>= 3.0, < 8.0) delayed_job (>= 3.0, < 5) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) ffi (1.17.1-aarch64-linux-gnu) @@ -104,14 +104,14 @@ GEM rspec-core (>= 2, < 4, != 2.12.0) sequel (5.83.1) bigdecimal - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sqlite3 (1.6.6-aarch64-linux) sqlite3 (1.6.6-x86_64-linux) @@ -159,7 +159,7 @@ DEPENDENCIES rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) sequel - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sqlite3 (>= 1.4.2) trilogy diff --git a/gemfiles/ruby_3.1_resque2_redis3.gemfile b/gemfiles/ruby_3.1_resque2_redis3.gemfile index 26b00162274..6c721902459 100644 --- a/gemfiles/ruby_3.1_resque2_redis3.gemfile +++ b/gemfiles/ruby_3.1_resque2_redis3.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.1_resque2_redis3.gemfile.lock b/gemfiles/ruby_3.1_resque2_redis3.gemfile.lock index d0187dabfbf..0f4098fa738 100644 --- a/gemfiles/ruby_3.1_resque2_redis3.gemfile.lock +++ b/gemfiles/ruby_3.1_resque2_redis3.gemfile.lock @@ -25,7 +25,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.5.0) extlz4 (0.3.3) ffi (1.17.1-aarch64-linux-gnu) @@ -95,14 +95,14 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby2_keywords (0.0.5) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sinatra (3.0.5) mustermann (~> 3.0) @@ -146,7 +146,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.1_resque2_redis4.gemfile b/gemfiles/ruby_3.1_resque2_redis4.gemfile index 09a4784be42..fd2c736a17f 100644 --- a/gemfiles/ruby_3.1_resque2_redis4.gemfile +++ b/gemfiles/ruby_3.1_resque2_redis4.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.1_resque2_redis4.gemfile.lock b/gemfiles/ruby_3.1_resque2_redis4.gemfile.lock index 38181381d14..6769d74e856 100644 --- a/gemfiles/ruby_3.1_resque2_redis4.gemfile.lock +++ b/gemfiles/ruby_3.1_resque2_redis4.gemfile.lock @@ -26,7 +26,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.5.0) extlz4 (0.3.3) ffi (1.17.1-aarch64-linux-gnu) @@ -99,14 +99,14 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby2_keywords (0.0.5) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sinatra (3.0.5) mustermann (~> 3.0) @@ -150,7 +150,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.1_sinatra_2.gemfile b/gemfiles/ruby_3.1_sinatra_2.gemfile index aff98433b32..ad095e77bda 100644 --- a/gemfiles/ruby_3.1_sinatra_2.gemfile +++ b/gemfiles/ruby_3.1_sinatra_2.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.1_sinatra_2.gemfile.lock b/gemfiles/ruby_3.1_sinatra_2.gemfile.lock index db461cf234d..1912501d13c 100644 --- a/gemfiles/ruby_3.1_sinatra_2.gemfile.lock +++ b/gemfiles/ruby_3.1_sinatra_2.gemfile.lock @@ -28,7 +28,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) ffi (1.17.1-aarch64-linux-gnu) @@ -93,14 +93,14 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby2_keywords (0.0.5) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sinatra (2.2.4) mustermann (~> 2.0) @@ -144,7 +144,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sinatra (~> 2) warning (~> 1) diff --git a/gemfiles/ruby_3.1_sinatra_3.gemfile b/gemfiles/ruby_3.1_sinatra_3.gemfile index de04f81dd11..0a0d9882d1a 100644 --- a/gemfiles/ruby_3.1_sinatra_3.gemfile +++ b/gemfiles/ruby_3.1_sinatra_3.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.1_sinatra_3.gemfile.lock b/gemfiles/ruby_3.1_sinatra_3.gemfile.lock index 8333705f46a..4d4386e5040 100644 --- a/gemfiles/ruby_3.1_sinatra_3.gemfile.lock +++ b/gemfiles/ruby_3.1_sinatra_3.gemfile.lock @@ -29,7 +29,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) ffi (1.17.1-aarch64-linux-gnu) @@ -95,14 +95,14 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby2_keywords (0.0.5) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sinatra (3.2.0) mustermann (~> 3.0) @@ -146,7 +146,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sinatra (~> 3) warning (~> 1) diff --git a/gemfiles/ruby_3.1_sinatra_4.gemfile b/gemfiles/ruby_3.1_sinatra_4.gemfile index 4d40235e094..3a6ea247c59 100644 --- a/gemfiles/ruby_3.1_sinatra_4.gemfile +++ b/gemfiles/ruby_3.1_sinatra_4.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.1_sinatra_4.gemfile.lock b/gemfiles/ruby_3.1_sinatra_4.gemfile.lock index 60612bd4b9e..60e097df25f 100644 --- a/gemfiles/ruby_3.1_sinatra_4.gemfile.lock +++ b/gemfiles/ruby_3.1_sinatra_4.gemfile.lock @@ -29,7 +29,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) ffi (1.17.1-aarch64-linux-gnu) @@ -97,14 +97,14 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby2_keywords (0.0.5) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sinatra (4.0.0) mustermann (~> 3.0) @@ -149,7 +149,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sinatra (~> 4) warning (~> 1) diff --git a/gemfiles/ruby_3.1_stripe_10.gemfile b/gemfiles/ruby_3.1_stripe_10.gemfile index f2ffd9efb02..ab7beb47cfe 100644 --- a/gemfiles/ruby_3.1_stripe_10.gemfile +++ b/gemfiles/ruby_3.1_stripe_10.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.1_stripe_10.gemfile.lock b/gemfiles/ruby_3.1_stripe_10.gemfile.lock index d157905130f..e1015b4bbc6 100644 --- a/gemfiles/ruby_3.1_stripe_10.gemfile.lock +++ b/gemfiles/ruby_3.1_stripe_10.gemfile.lock @@ -83,14 +83,14 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) stripe (10.15.0) strscan (3.1.0) @@ -127,7 +127,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) stripe (~> 10) warning (~> 1) diff --git a/gemfiles/ruby_3.1_stripe_11.gemfile b/gemfiles/ruby_3.1_stripe_11.gemfile index 3c650142390..027b34c9905 100644 --- a/gemfiles/ruby_3.1_stripe_11.gemfile +++ b/gemfiles/ruby_3.1_stripe_11.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.1_stripe_11.gemfile.lock b/gemfiles/ruby_3.1_stripe_11.gemfile.lock index 1be39ea683a..0b6ad479210 100644 --- a/gemfiles/ruby_3.1_stripe_11.gemfile.lock +++ b/gemfiles/ruby_3.1_stripe_11.gemfile.lock @@ -83,14 +83,14 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) stripe (11.7.0) strscan (3.1.0) @@ -127,7 +127,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) stripe (~> 11) warning (~> 1) diff --git a/gemfiles/ruby_3.1_stripe_12.gemfile b/gemfiles/ruby_3.1_stripe_12.gemfile index fd88c55b26b..69b67680c16 100644 --- a/gemfiles/ruby_3.1_stripe_12.gemfile +++ b/gemfiles/ruby_3.1_stripe_12.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.1_stripe_12.gemfile.lock b/gemfiles/ruby_3.1_stripe_12.gemfile.lock index a39844a6059..35fcc8aacdc 100644 --- a/gemfiles/ruby_3.1_stripe_12.gemfile.lock +++ b/gemfiles/ruby_3.1_stripe_12.gemfile.lock @@ -83,14 +83,14 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) stripe (12.6.0) strscan (3.1.0) @@ -127,7 +127,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) stripe (~> 12) warning (~> 1) diff --git a/gemfiles/ruby_3.1_stripe_7.gemfile b/gemfiles/ruby_3.1_stripe_7.gemfile index 435abeaae7e..ec97ef62fbe 100644 --- a/gemfiles/ruby_3.1_stripe_7.gemfile +++ b/gemfiles/ruby_3.1_stripe_7.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.1_stripe_7.gemfile.lock b/gemfiles/ruby_3.1_stripe_7.gemfile.lock index b0ccb693ddf..adf3fc92765 100644 --- a/gemfiles/ruby_3.1_stripe_7.gemfile.lock +++ b/gemfiles/ruby_3.1_stripe_7.gemfile.lock @@ -83,14 +83,14 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) stripe (7.1.0) strscan (3.1.0) @@ -127,7 +127,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) stripe (~> 7) warning (~> 1) diff --git a/gemfiles/ruby_3.1_stripe_8.gemfile b/gemfiles/ruby_3.1_stripe_8.gemfile index ce21f3c93e8..31fd9e6a9fc 100644 --- a/gemfiles/ruby_3.1_stripe_8.gemfile +++ b/gemfiles/ruby_3.1_stripe_8.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.1_stripe_8.gemfile.lock b/gemfiles/ruby_3.1_stripe_8.gemfile.lock index 5764c54b7fb..96c62c022f3 100644 --- a/gemfiles/ruby_3.1_stripe_8.gemfile.lock +++ b/gemfiles/ruby_3.1_stripe_8.gemfile.lock @@ -83,14 +83,14 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) stripe (8.7.0) strscan (3.1.0) @@ -127,7 +127,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) stripe (~> 8) warning (~> 1) diff --git a/gemfiles/ruby_3.1_stripe_9.gemfile b/gemfiles/ruby_3.1_stripe_9.gemfile index 4e39d862013..2aa21703d9b 100644 --- a/gemfiles/ruby_3.1_stripe_9.gemfile +++ b/gemfiles/ruby_3.1_stripe_9.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.1_stripe_9.gemfile.lock b/gemfiles/ruby_3.1_stripe_9.gemfile.lock index d2ef1403831..0a4a811fecc 100644 --- a/gemfiles/ruby_3.1_stripe_9.gemfile.lock +++ b/gemfiles/ruby_3.1_stripe_9.gemfile.lock @@ -83,14 +83,14 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) stripe (9.4.0) strscan (3.1.0) @@ -127,7 +127,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) stripe (~> 9) warning (~> 1) diff --git a/gemfiles/ruby_3.1_stripe_latest.gemfile b/gemfiles/ruby_3.1_stripe_latest.gemfile index 98dbcf511ff..f43b7aa5c02 100644 --- a/gemfiles/ruby_3.1_stripe_latest.gemfile +++ b/gemfiles/ruby_3.1_stripe_latest.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.1_stripe_latest.gemfile.lock b/gemfiles/ruby_3.1_stripe_latest.gemfile.lock index 9a1939adeb6..40d7e0acaa8 100644 --- a/gemfiles/ruby_3.1_stripe_latest.gemfile.lock +++ b/gemfiles/ruby_3.1_stripe_latest.gemfile.lock @@ -82,7 +82,7 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) @@ -125,7 +125,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) stripe warning (~> 1) diff --git a/gemfiles/ruby_3.1_stripe_min.gemfile b/gemfiles/ruby_3.1_stripe_min.gemfile index 2e58c1c1a02..b093f0ee344 100644 --- a/gemfiles/ruby_3.1_stripe_min.gemfile +++ b/gemfiles/ruby_3.1_stripe_min.gemfile @@ -22,7 +22,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.1_stripe_min.gemfile.lock b/gemfiles/ruby_3.1_stripe_min.gemfile.lock index 74afdd62805..588e6ba03d4 100644 --- a/gemfiles/ruby_3.1_stripe_min.gemfile.lock +++ b/gemfiles/ruby_3.1_stripe_min.gemfile.lock @@ -82,7 +82,7 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) @@ -125,7 +125,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) stripe (= 5.15.0) warning (~> 1) diff --git a/gemfiles/ruby_3.2_activesupport.gemfile b/gemfiles/ruby_3.2_activesupport.gemfile index 485d3740f23..6cea3b7ed67 100644 --- a/gemfiles/ruby_3.2_activesupport.gemfile +++ b/gemfiles/ruby_3.2_activesupport.gemfile @@ -21,7 +21,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.2_activesupport.gemfile.lock b/gemfiles/ruby_3.2_activesupport.gemfile.lock index a29003e80c0..4bee0a3b88d 100644 --- a/gemfiles/ruby_3.2_activesupport.gemfile.lock +++ b/gemfiles/ruby_3.2_activesupport.gemfile.lock @@ -55,7 +55,7 @@ GEM diff-lcs (1.5.0) digest-crc (0.6.5) rake (>= 12.0.0, < 14.0.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) dry-core (1.0.1) concurrent-ruby (~> 1.0) @@ -182,14 +182,14 @@ GEM ruby-kafka (1.5.0) digest-crc ruby2_keywords (0.0.5) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) strscan (3.1.0) thor (1.2.2) @@ -236,7 +236,7 @@ DEPENDENCIES rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) ruby-kafka (>= 0.7.10) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.2_aws.gemfile b/gemfiles/ruby_3.2_aws.gemfile index be6c26e7a4d..a29e9da9c11 100644 --- a/gemfiles/ruby_3.2_aws.gemfile +++ b/gemfiles/ruby_3.2_aws.gemfile @@ -21,7 +21,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.2_aws.gemfile.lock b/gemfiles/ruby_3.2_aws.gemfile.lock index 18635161389..53a6ca46d27 100644 --- a/gemfiles/ruby_3.2_aws.gemfile.lock +++ b/gemfiles/ruby_3.2_aws.gemfile.lock @@ -1445,7 +1445,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.0) extlz4 (0.3.4) ffi (1.17.1-aarch64-linux-gnu) @@ -1501,14 +1501,14 @@ GEM aws-sdk-core (>= 2) concurrent-ruby thor - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) strscan (3.1.0) thor (1.2.2) @@ -1546,7 +1546,7 @@ DEPENDENCIES rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) shoryuken - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.2_contrib.gemfile b/gemfiles/ruby_3.2_contrib.gemfile index 07d57a70775..b64295cae6a 100644 --- a/gemfiles/ruby_3.2_contrib.gemfile +++ b/gemfiles/ruby_3.2_contrib.gemfile @@ -21,7 +21,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.2_contrib.gemfile.lock b/gemfiles/ruby_3.2_contrib.gemfile.lock index 0f652e9bd8f..1790956cd6c 100644 --- a/gemfiles/ruby_3.2_contrib.gemfile.lock +++ b/gemfiles/ruby_3.2_contrib.gemfile.lock @@ -31,7 +31,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.5.0) extlz4 (0.3.3) ffi (1.17.1-aarch64-linux-gnu) @@ -127,14 +127,14 @@ GEM rack (>= 2.2.4) redis-client (>= 0.11.0) sigdump (0.2.4) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sinatra (3.0.5) mustermann (~> 3.0) @@ -196,7 +196,7 @@ DEPENDENCIES rspec_junit_formatter (>= 0.5.1) semantic_logger (~> 4.0) sidekiq (~> 7) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sneakers (>= 2.12.0) sucker_punch diff --git a/gemfiles/ruby_3.2_contrib_old.gemfile b/gemfiles/ruby_3.2_contrib_old.gemfile index ae3bba41c9e..4e0cc5cf019 100644 --- a/gemfiles/ruby_3.2_contrib_old.gemfile +++ b/gemfiles/ruby_3.2_contrib_old.gemfile @@ -21,7 +21,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.2_contrib_old.gemfile.lock b/gemfiles/ruby_3.2_contrib_old.gemfile.lock index 94365bca049..af88b918a3c 100644 --- a/gemfiles/ruby_3.2_contrib_old.gemfile.lock +++ b/gemfiles/ruby_3.2_contrib_old.gemfile.lock @@ -29,7 +29,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.5.0) eventmachine (1.2.7) extlz4 (0.3.3) @@ -115,14 +115,14 @@ GEM rusage (0.2.0) sentry-raven (0.15.6) faraday (>= 0.7.6) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sinatra (2.0.8.1) mustermann (~> 1.0) @@ -174,7 +174,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.2_core_old.gemfile b/gemfiles/ruby_3.2_core_old.gemfile index 891044671de..fa17de945fa 100644 --- a/gemfiles/ruby_3.2_core_old.gemfile +++ b/gemfiles/ruby_3.2_core_old.gemfile @@ -21,7 +21,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.2_core_old.gemfile.lock b/gemfiles/ruby_3.2_core_old.gemfile.lock index 1ac0a35c98d..16d67b5a7f6 100644 --- a/gemfiles/ruby_3.2_core_old.gemfile.lock +++ b/gemfiles/ruby_3.2_core_old.gemfile.lock @@ -24,7 +24,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (4.8.3) extlz4 (0.3.3) ffi (1.17.1-aarch64-linux-gnu) @@ -75,14 +75,14 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) strscan (3.1.0) warning (1.3.0) @@ -117,7 +117,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.2_elasticsearch_7.gemfile b/gemfiles/ruby_3.2_elasticsearch_7.gemfile index 27b8e6b434b..d84a28f3a3d 100644 --- a/gemfiles/ruby_3.2_elasticsearch_7.gemfile +++ b/gemfiles/ruby_3.2_elasticsearch_7.gemfile @@ -21,7 +21,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.2_elasticsearch_7.gemfile.lock b/gemfiles/ruby_3.2_elasticsearch_7.gemfile.lock index 9d470a966b1..1bc1c25e2a5 100644 --- a/gemfiles/ruby_3.2_elasticsearch_7.gemfile.lock +++ b/gemfiles/ruby_3.2_elasticsearch_7.gemfile.lock @@ -26,7 +26,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) elasticsearch (7.17.11) elasticsearch-api (= 7.17.11) @@ -98,14 +98,14 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) strscan (3.1.0) uri (1.0.2) @@ -142,7 +142,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.2_elasticsearch_8.gemfile b/gemfiles/ruby_3.2_elasticsearch_8.gemfile index aed5ebc4c02..c82cade4c54 100644 --- a/gemfiles/ruby_3.2_elasticsearch_8.gemfile +++ b/gemfiles/ruby_3.2_elasticsearch_8.gemfile @@ -21,7 +21,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.2_elasticsearch_8.gemfile.lock b/gemfiles/ruby_3.2_elasticsearch_8.gemfile.lock index 2d14a3cb734..4f28ef3fbf0 100644 --- a/gemfiles/ruby_3.2_elasticsearch_8.gemfile.lock +++ b/gemfiles/ruby_3.2_elasticsearch_8.gemfile.lock @@ -25,7 +25,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) elastic-transport (8.3.5) faraday (< 3) @@ -96,14 +96,14 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) strscan (3.1.0) uri (1.0.2) @@ -140,7 +140,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.2_elasticsearch_latest.gemfile b/gemfiles/ruby_3.2_elasticsearch_latest.gemfile index badcfc73421..57359ca0898 100644 --- a/gemfiles/ruby_3.2_elasticsearch_latest.gemfile +++ b/gemfiles/ruby_3.2_elasticsearch_latest.gemfile @@ -21,7 +21,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.2_elasticsearch_latest.gemfile.lock b/gemfiles/ruby_3.2_elasticsearch_latest.gemfile.lock index dfdc838555b..e3cf9bdd515 100644 --- a/gemfiles/ruby_3.2_elasticsearch_latest.gemfile.lock +++ b/gemfiles/ruby_3.2_elasticsearch_latest.gemfile.lock @@ -97,7 +97,7 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) @@ -140,7 +140,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.2_graphql_1.13.gemfile b/gemfiles/ruby_3.2_graphql_1.13.gemfile index 9d142953a86..86dcbb240d9 100644 --- a/gemfiles/ruby_3.2_graphql_1.13.gemfile +++ b/gemfiles/ruby_3.2_graphql_1.13.gemfile @@ -21,7 +21,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.2_graphql_1.13.gemfile.lock b/gemfiles/ruby_3.2_graphql_1.13.gemfile.lock index 132e3b1c694..0c433fa3ab5 100644 --- a/gemfiles/ruby_3.2_graphql_1.13.gemfile.lock +++ b/gemfiles/ruby_3.2_graphql_1.13.gemfile.lock @@ -87,7 +87,7 @@ GEM date (3.3.4) debug_inspector (1.2.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) erubi (1.12.0) extlz4 (0.3.4) @@ -209,14 +209,14 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sprockets (3.7.2) concurrent-ruby (~> 1.0) @@ -269,7 +269,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_3.2_graphql_2.0.gemfile b/gemfiles/ruby_3.2_graphql_2.0.gemfile index d066b71b009..574d0685883 100644 --- a/gemfiles/ruby_3.2_graphql_2.0.gemfile +++ b/gemfiles/ruby_3.2_graphql_2.0.gemfile @@ -21,7 +21,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.2_graphql_2.0.gemfile.lock b/gemfiles/ruby_3.2_graphql_2.0.gemfile.lock index ee3d929d020..26c41c7ed98 100644 --- a/gemfiles/ruby_3.2_graphql_2.0.gemfile.lock +++ b/gemfiles/ruby_3.2_graphql_2.0.gemfile.lock @@ -87,7 +87,7 @@ GEM date (3.3.4) debug_inspector (1.2.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) erubi (1.12.0) extlz4 (0.3.4) @@ -209,14 +209,14 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sprockets (3.7.2) concurrent-ruby (~> 1.0) @@ -269,7 +269,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_3.2_graphql_2.1.gemfile b/gemfiles/ruby_3.2_graphql_2.1.gemfile index 0f2e84132b7..8741e32bb0f 100644 --- a/gemfiles/ruby_3.2_graphql_2.1.gemfile +++ b/gemfiles/ruby_3.2_graphql_2.1.gemfile @@ -21,7 +21,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.2_graphql_2.1.gemfile.lock b/gemfiles/ruby_3.2_graphql_2.1.gemfile.lock index d8f7bec7884..1a6263a69f2 100644 --- a/gemfiles/ruby_3.2_graphql_2.1.gemfile.lock +++ b/gemfiles/ruby_3.2_graphql_2.1.gemfile.lock @@ -87,7 +87,7 @@ GEM date (3.3.4) debug_inspector (1.2.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) erubi (1.12.0) extlz4 (0.3.4) @@ -210,14 +210,14 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sprockets (3.7.2) concurrent-ruby (~> 1.0) @@ -270,7 +270,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_3.2_graphql_2.2.gemfile b/gemfiles/ruby_3.2_graphql_2.2.gemfile index 5da99d6a19f..4316de0308c 100644 --- a/gemfiles/ruby_3.2_graphql_2.2.gemfile +++ b/gemfiles/ruby_3.2_graphql_2.2.gemfile @@ -21,7 +21,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.2_graphql_2.2.gemfile.lock b/gemfiles/ruby_3.2_graphql_2.2.gemfile.lock index 9e5067074d3..1472cced52f 100644 --- a/gemfiles/ruby_3.2_graphql_2.2.gemfile.lock +++ b/gemfiles/ruby_3.2_graphql_2.2.gemfile.lock @@ -87,7 +87,7 @@ GEM date (3.3.4) debug_inspector (1.2.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) erubi (1.12.0) extlz4 (0.3.4) @@ -210,14 +210,14 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sprockets (3.7.2) concurrent-ruby (~> 1.0) @@ -270,7 +270,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_3.2_graphql_2.3.gemfile b/gemfiles/ruby_3.2_graphql_2.3.gemfile index b81a2ff54c4..3b9bd160db7 100644 --- a/gemfiles/ruby_3.2_graphql_2.3.gemfile +++ b/gemfiles/ruby_3.2_graphql_2.3.gemfile @@ -21,7 +21,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.2_graphql_2.3.gemfile.lock b/gemfiles/ruby_3.2_graphql_2.3.gemfile.lock index 1e1f8252a2b..4e7fbd3ed89 100644 --- a/gemfiles/ruby_3.2_graphql_2.3.gemfile.lock +++ b/gemfiles/ruby_3.2_graphql_2.3.gemfile.lock @@ -90,7 +90,7 @@ GEM date (3.3.4) debug_inspector (1.2.0) diff-lcs (1.5.1) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) erubi (1.13.0) extlz4 (0.3.4) @@ -213,14 +213,14 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sprockets (3.7.3) base64 @@ -274,7 +274,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_3.2_http.gemfile b/gemfiles/ruby_3.2_http.gemfile index e6b82f3cce1..e27b2fbff80 100644 --- a/gemfiles/ruby_3.2_http.gemfile +++ b/gemfiles/ruby_3.2_http.gemfile @@ -21,7 +21,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.2_http.gemfile.lock b/gemfiles/ruby_3.2_http.gemfile.lock index 8ae54597405..a5dec00348d 100644 --- a/gemfiles/ruby_3.2_http.gemfile.lock +++ b/gemfiles/ruby_3.2_http.gemfile.lock @@ -24,7 +24,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) domain_name (0.5.20190701) unf (>= 0.0.5, < 1.0.0) @@ -110,14 +110,14 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby2_keywords (0.0.5) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) strscan (3.1.0) typhoeus (1.4.0) @@ -163,7 +163,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) typhoeus warning (~> 1) diff --git a/gemfiles/ruby_3.2_opensearch_2.gemfile b/gemfiles/ruby_3.2_opensearch_2.gemfile index c45d76e4e2b..8bf9e398092 100644 --- a/gemfiles/ruby_3.2_opensearch_2.gemfile +++ b/gemfiles/ruby_3.2_opensearch_2.gemfile @@ -21,7 +21,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.2_opensearch_2.gemfile.lock b/gemfiles/ruby_3.2_opensearch_2.gemfile.lock index 95805bef67d..cde8942148e 100644 --- a/gemfiles/ruby_3.2_opensearch_2.gemfile.lock +++ b/gemfiles/ruby_3.2_opensearch_2.gemfile.lock @@ -25,7 +25,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) faraday (2.12.2) @@ -96,14 +96,14 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) strscan (3.1.0) uri (1.0.2) @@ -140,7 +140,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.2_opensearch_3.gemfile b/gemfiles/ruby_3.2_opensearch_3.gemfile index 2185f8aafc9..1b9b6b25a6b 100644 --- a/gemfiles/ruby_3.2_opensearch_3.gemfile +++ b/gemfiles/ruby_3.2_opensearch_3.gemfile @@ -21,7 +21,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.2_opensearch_3.gemfile.lock b/gemfiles/ruby_3.2_opensearch_3.gemfile.lock index 5cbea336efe..2024b9bb118 100644 --- a/gemfiles/ruby_3.2_opensearch_3.gemfile.lock +++ b/gemfiles/ruby_3.2_opensearch_3.gemfile.lock @@ -25,7 +25,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) faraday (2.12.2) @@ -91,14 +91,14 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) strscan (3.1.0) uri (1.0.2) @@ -135,7 +135,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.2_opensearch_latest.gemfile b/gemfiles/ruby_3.2_opensearch_latest.gemfile index f723c9243e7..3bdbf2a73db 100644 --- a/gemfiles/ruby_3.2_opensearch_latest.gemfile +++ b/gemfiles/ruby_3.2_opensearch_latest.gemfile @@ -21,7 +21,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.2_opensearch_latest.gemfile.lock b/gemfiles/ruby_3.2_opensearch_latest.gemfile.lock index 7c38ac74612..097c12503fd 100644 --- a/gemfiles/ruby_3.2_opensearch_latest.gemfile.lock +++ b/gemfiles/ruby_3.2_opensearch_latest.gemfile.lock @@ -92,7 +92,7 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) @@ -135,7 +135,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.2_opentelemetry.gemfile b/gemfiles/ruby_3.2_opentelemetry.gemfile index be1276e89ac..861aafcd280 100644 --- a/gemfiles/ruby_3.2_opentelemetry.gemfile +++ b/gemfiles/ruby_3.2_opentelemetry.gemfile @@ -21,7 +21,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.2_opentelemetry.gemfile.lock b/gemfiles/ruby_3.2_opentelemetry.gemfile.lock index 7faeda4c711..1c5b23e48b0 100644 --- a/gemfiles/ruby_3.2_opentelemetry.gemfile.lock +++ b/gemfiles/ruby_3.2_opentelemetry.gemfile.lock @@ -24,7 +24,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.5.0) extlz4 (0.3.3) ffi (1.17.1-aarch64-linux-gnu) @@ -87,14 +87,14 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) strscan (3.1.0) warning (1.3.0) @@ -130,7 +130,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.2_opentelemetry_otlp.gemfile b/gemfiles/ruby_3.2_opentelemetry_otlp.gemfile index b99812d76bd..11a944f4764 100644 --- a/gemfiles/ruby_3.2_opentelemetry_otlp.gemfile +++ b/gemfiles/ruby_3.2_opentelemetry_otlp.gemfile @@ -21,7 +21,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.2_opentelemetry_otlp.gemfile.lock b/gemfiles/ruby_3.2_opentelemetry_otlp.gemfile.lock index aa2f6a66b22..8acc2160bf0 100644 --- a/gemfiles/ruby_3.2_opentelemetry_otlp.gemfile.lock +++ b/gemfiles/ruby_3.2_opentelemetry_otlp.gemfile.lock @@ -27,7 +27,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) ffi (1.17.1-aarch64-linux-gnu) @@ -99,14 +99,14 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) warning (1.3.0) webmock (3.23.0) @@ -142,7 +142,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.2_rack_1.gemfile b/gemfiles/ruby_3.2_rack_1.gemfile index 94d774655b6..afa6e96b680 100644 --- a/gemfiles/ruby_3.2_rack_1.gemfile +++ b/gemfiles/ruby_3.2_rack_1.gemfile @@ -21,7 +21,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.2_rack_1.gemfile.lock b/gemfiles/ruby_3.2_rack_1.gemfile.lock index 3d534cdfb69..53dfa7b7e7b 100644 --- a/gemfiles/ruby_3.2_rack_1.gemfile.lock +++ b/gemfiles/ruby_3.2_rack_1.gemfile.lock @@ -24,7 +24,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) ffi (1.17.1-aarch64-linux-gnu) @@ -80,14 +80,14 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) strscan (3.1.0) warning (1.3.0) @@ -125,7 +125,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.2_rack_2.gemfile b/gemfiles/ruby_3.2_rack_2.gemfile index 2590776110e..773ee99bd85 100644 --- a/gemfiles/ruby_3.2_rack_2.gemfile +++ b/gemfiles/ruby_3.2_rack_2.gemfile @@ -21,7 +21,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.2_rack_2.gemfile.lock b/gemfiles/ruby_3.2_rack_2.gemfile.lock index 89209a88fc0..3be5868b05b 100644 --- a/gemfiles/ruby_3.2_rack_2.gemfile.lock +++ b/gemfiles/ruby_3.2_rack_2.gemfile.lock @@ -24,7 +24,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) ffi (1.17.1-aarch64-linux-gnu) @@ -80,14 +80,14 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) strscan (3.1.0) warning (1.3.0) @@ -125,7 +125,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.2_rack_3.gemfile b/gemfiles/ruby_3.2_rack_3.gemfile index 6bd7ef3ab7f..c6cd8200c50 100644 --- a/gemfiles/ruby_3.2_rack_3.gemfile +++ b/gemfiles/ruby_3.2_rack_3.gemfile @@ -21,7 +21,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.2_rack_3.gemfile.lock b/gemfiles/ruby_3.2_rack_3.gemfile.lock index 2e28842761d..e7092cf6f09 100644 --- a/gemfiles/ruby_3.2_rack_3.gemfile.lock +++ b/gemfiles/ruby_3.2_rack_3.gemfile.lock @@ -24,7 +24,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) ffi (1.17.1-aarch64-linux-gnu) @@ -80,14 +80,14 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) strscan (3.1.0) warning (1.3.0) @@ -125,7 +125,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.2_rack_latest.gemfile b/gemfiles/ruby_3.2_rack_latest.gemfile index 7f26c518698..90a61a2f648 100644 --- a/gemfiles/ruby_3.2_rack_latest.gemfile +++ b/gemfiles/ruby_3.2_rack_latest.gemfile @@ -21,7 +21,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.2_rack_latest.gemfile.lock b/gemfiles/ruby_3.2_rack_latest.gemfile.lock index 91d2940d5cb..07727f74bdb 100644 --- a/gemfiles/ruby_3.2_rack_latest.gemfile.lock +++ b/gemfiles/ruby_3.2_rack_latest.gemfile.lock @@ -83,7 +83,7 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) @@ -127,7 +127,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.2_rails61_mysql2.gemfile b/gemfiles/ruby_3.2_rails61_mysql2.gemfile index d0a43aab470..93d88367a5c 100644 --- a/gemfiles/ruby_3.2_rails61_mysql2.gemfile +++ b/gemfiles/ruby_3.2_rails61_mysql2.gemfile @@ -21,7 +21,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.2_rails61_mysql2.gemfile.lock b/gemfiles/ruby_3.2_rails61_mysql2.gemfile.lock index d369989042c..a5ae4e640ca 100644 --- a/gemfiles/ruby_3.2_rails61_mysql2.gemfile.lock +++ b/gemfiles/ruby_3.2_rails61_mysql2.gemfile.lock @@ -86,7 +86,7 @@ GEM date (3.3.3) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.5.0) erubi (1.12.0) extlz4 (0.3.3) @@ -205,14 +205,14 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sprockets (3.7.2) concurrent-ruby (~> 1.0) @@ -266,7 +266,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_3.2_rails61_postgres.gemfile b/gemfiles/ruby_3.2_rails61_postgres.gemfile index 17811ef3980..c7a583f344f 100644 --- a/gemfiles/ruby_3.2_rails61_postgres.gemfile +++ b/gemfiles/ruby_3.2_rails61_postgres.gemfile @@ -21,7 +21,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.2_rails61_postgres.gemfile.lock b/gemfiles/ruby_3.2_rails61_postgres.gemfile.lock index 1b87792b1fb..38a5bf457f2 100644 --- a/gemfiles/ruby_3.2_rails61_postgres.gemfile.lock +++ b/gemfiles/ruby_3.2_rails61_postgres.gemfile.lock @@ -86,7 +86,7 @@ GEM date (3.3.3) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.5.0) erubi (1.12.0) extlz4 (0.3.3) @@ -205,14 +205,14 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sprockets (3.7.2) concurrent-ruby (~> 1.0) @@ -266,7 +266,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_3.2_rails61_postgres_redis.gemfile b/gemfiles/ruby_3.2_rails61_postgres_redis.gemfile index 071f6c4d2c7..0fe0bf56724 100644 --- a/gemfiles/ruby_3.2_rails61_postgres_redis.gemfile +++ b/gemfiles/ruby_3.2_rails61_postgres_redis.gemfile @@ -21,7 +21,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.2_rails61_postgres_redis.gemfile.lock b/gemfiles/ruby_3.2_rails61_postgres_redis.gemfile.lock index 1547a6dd32f..ab5f566c66b 100644 --- a/gemfiles/ruby_3.2_rails61_postgres_redis.gemfile.lock +++ b/gemfiles/ruby_3.2_rails61_postgres_redis.gemfile.lock @@ -86,7 +86,7 @@ GEM date (3.3.3) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.5.0) erubi (1.12.0) extlz4 (0.3.3) @@ -206,14 +206,14 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sprockets (3.7.2) concurrent-ruby (~> 1.0) @@ -268,7 +268,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_3.2_rails61_postgres_sidekiq.gemfile b/gemfiles/ruby_3.2_rails61_postgres_sidekiq.gemfile index 98601cf69b3..415a41746d9 100644 --- a/gemfiles/ruby_3.2_rails61_postgres_sidekiq.gemfile +++ b/gemfiles/ruby_3.2_rails61_postgres_sidekiq.gemfile @@ -21,7 +21,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.2_rails61_postgres_sidekiq.gemfile.lock b/gemfiles/ruby_3.2_rails61_postgres_sidekiq.gemfile.lock index 94b4088e603..7a7624bf5ad 100644 --- a/gemfiles/ruby_3.2_rails61_postgres_sidekiq.gemfile.lock +++ b/gemfiles/ruby_3.2_rails61_postgres_sidekiq.gemfile.lock @@ -87,7 +87,7 @@ GEM date (3.3.3) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.5.0) erubi (1.12.0) extlz4 (0.3.3) @@ -219,14 +219,14 @@ GEM connection_pool (>= 2.3.0) rack (>= 2.2.4) redis-client (>= 0.11.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sprockets (3.7.2) concurrent-ruby (~> 1.0) @@ -282,7 +282,7 @@ DEPENDENCIES rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) sidekiq (>= 6.1.2) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_3.2_rails61_semantic_logger.gemfile b/gemfiles/ruby_3.2_rails61_semantic_logger.gemfile index 532d5992925..107d3971c66 100644 --- a/gemfiles/ruby_3.2_rails61_semantic_logger.gemfile +++ b/gemfiles/ruby_3.2_rails61_semantic_logger.gemfile @@ -21,7 +21,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.2_rails61_semantic_logger.gemfile.lock b/gemfiles/ruby_3.2_rails61_semantic_logger.gemfile.lock index b057b5b0988..e91b9690c0c 100644 --- a/gemfiles/ruby_3.2_rails61_semantic_logger.gemfile.lock +++ b/gemfiles/ruby_3.2_rails61_semantic_logger.gemfile.lock @@ -86,7 +86,7 @@ GEM date (3.3.3) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.5.0) erubi (1.12.0) extlz4 (0.3.3) @@ -204,14 +204,14 @@ GEM rspec-core (>= 2, < 4, != 2.12.0) semantic_logger (4.12.0) concurrent-ruby (~> 1.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sprockets (3.7.2) concurrent-ruby (~> 1.0) @@ -265,7 +265,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_3.2_rails61_trilogy.gemfile b/gemfiles/ruby_3.2_rails61_trilogy.gemfile index 483c5c6c05f..996ec3f52ec 100644 --- a/gemfiles/ruby_3.2_rails61_trilogy.gemfile +++ b/gemfiles/ruby_3.2_rails61_trilogy.gemfile @@ -21,7 +21,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.2_rails61_trilogy.gemfile.lock b/gemfiles/ruby_3.2_rails61_trilogy.gemfile.lock index d34a182cfad..552e5d85bac 100644 --- a/gemfiles/ruby_3.2_rails61_trilogy.gemfile.lock +++ b/gemfiles/ruby_3.2_rails61_trilogy.gemfile.lock @@ -90,7 +90,7 @@ GEM date (3.3.4) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) erubi (1.12.0) extlz4 (0.3.4) @@ -211,14 +211,14 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sprockets (3.7.2) concurrent-ruby (~> 1.0) @@ -273,7 +273,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sprockets (< 4) trilogy diff --git a/gemfiles/ruby_3.2_rails7.gemfile b/gemfiles/ruby_3.2_rails7.gemfile index 6d0b2c3573b..94f524b94ca 100644 --- a/gemfiles/ruby_3.2_rails7.gemfile +++ b/gemfiles/ruby_3.2_rails7.gemfile @@ -21,7 +21,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.2_rails7.gemfile.lock b/gemfiles/ruby_3.2_rails7.gemfile.lock index 08cb11a5ab7..ff4711ac4e3 100644 --- a/gemfiles/ruby_3.2_rails7.gemfile.lock +++ b/gemfiles/ruby_3.2_rails7.gemfile.lock @@ -209,14 +209,14 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) strscan (3.1.0) thor (1.3.1) @@ -260,7 +260,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.2_rails71.gemfile b/gemfiles/ruby_3.2_rails71.gemfile index cd45bf1a819..b72b5f1a117 100644 --- a/gemfiles/ruby_3.2_rails71.gemfile +++ b/gemfiles/ruby_3.2_rails71.gemfile @@ -21,7 +21,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.2_rails71.gemfile.lock b/gemfiles/ruby_3.2_rails71.gemfile.lock index f2f457a8ff8..f146bcca9e1 100644 --- a/gemfiles/ruby_3.2_rails71.gemfile.lock +++ b/gemfiles/ruby_3.2_rails71.gemfile.lock @@ -238,14 +238,14 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) stringio (3.1.1) strscan (3.1.0) @@ -290,7 +290,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.2_rails_old_redis.gemfile b/gemfiles/ruby_3.2_rails_old_redis.gemfile index b581376aa12..9119682ae28 100644 --- a/gemfiles/ruby_3.2_rails_old_redis.gemfile +++ b/gemfiles/ruby_3.2_rails_old_redis.gemfile @@ -21,7 +21,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.2_redis_3.gemfile b/gemfiles/ruby_3.2_redis_3.gemfile index 9ca41079749..fc378517b1a 100644 --- a/gemfiles/ruby_3.2_redis_3.gemfile +++ b/gemfiles/ruby_3.2_redis_3.gemfile @@ -21,7 +21,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.2_redis_3.gemfile.lock b/gemfiles/ruby_3.2_redis_3.gemfile.lock index 53480650ad3..1ba6aad4e6d 100644 --- a/gemfiles/ruby_3.2_redis_3.gemfile.lock +++ b/gemfiles/ruby_3.2_redis_3.gemfile.lock @@ -24,7 +24,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.5.0) extlz4 (0.3.3) ffi (1.17.1-aarch64-linux-gnu) @@ -76,14 +76,14 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) strscan (3.1.0) warning (1.3.0) @@ -119,7 +119,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.2_redis_4.gemfile b/gemfiles/ruby_3.2_redis_4.gemfile index 99ce6f43e9b..a017395d9e5 100644 --- a/gemfiles/ruby_3.2_redis_4.gemfile +++ b/gemfiles/ruby_3.2_redis_4.gemfile @@ -21,7 +21,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.2_redis_4.gemfile.lock b/gemfiles/ruby_3.2_redis_4.gemfile.lock index 404d6c81dc2..4b434672ba5 100644 --- a/gemfiles/ruby_3.2_redis_4.gemfile.lock +++ b/gemfiles/ruby_3.2_redis_4.gemfile.lock @@ -24,7 +24,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.5.0) extlz4 (0.3.3) ffi (1.17.1-aarch64-linux-gnu) @@ -76,14 +76,14 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) strscan (3.1.0) warning (1.3.0) @@ -119,7 +119,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.2_redis_5.gemfile b/gemfiles/ruby_3.2_redis_5.gemfile index 85b8db19aed..d7b27f29553 100644 --- a/gemfiles/ruby_3.2_redis_5.gemfile +++ b/gemfiles/ruby_3.2_redis_5.gemfile @@ -21,7 +21,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.2_redis_5.gemfile.lock b/gemfiles/ruby_3.2_redis_5.gemfile.lock index 48fa8fe8083..b9babd46629 100644 --- a/gemfiles/ruby_3.2_redis_5.gemfile.lock +++ b/gemfiles/ruby_3.2_redis_5.gemfile.lock @@ -25,7 +25,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.5.0) extlz4 (0.3.3) ffi (1.17.1-aarch64-linux-gnu) @@ -80,14 +80,14 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) strscan (3.1.0) warning (1.3.0) @@ -123,7 +123,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.2_relational_db.gemfile b/gemfiles/ruby_3.2_relational_db.gemfile index cd8d81351ea..5fc1bbb4c2c 100644 --- a/gemfiles/ruby_3.2_relational_db.gemfile +++ b/gemfiles/ruby_3.2_relational_db.gemfile @@ -21,7 +21,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.2_relational_db.gemfile.lock b/gemfiles/ruby_3.2_relational_db.gemfile.lock index 6f813b75aeb..65098b3321b 100644 --- a/gemfiles/ruby_3.2_relational_db.gemfile.lock +++ b/gemfiles/ruby_3.2_relational_db.gemfile.lock @@ -40,7 +40,7 @@ GEM activerecord (>= 3.0, < 8.0) delayed_job (>= 3.0, < 5) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) ffi (1.17.1-aarch64-linux-gnu) @@ -100,14 +100,14 @@ GEM rspec-core (>= 2, < 4, != 2.12.0) sequel (5.83.1) bigdecimal - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sqlite3 (1.6.6-aarch64-linux) sqlite3 (1.6.6-x86_64-linux) @@ -154,7 +154,7 @@ DEPENDENCIES rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) sequel - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sqlite3 (>= 1.4.2) trilogy diff --git a/gemfiles/ruby_3.2_resque2_redis3.gemfile b/gemfiles/ruby_3.2_resque2_redis3.gemfile index 9fee50f2c56..fc8e1412d30 100644 --- a/gemfiles/ruby_3.2_resque2_redis3.gemfile +++ b/gemfiles/ruby_3.2_resque2_redis3.gemfile @@ -21,7 +21,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.2_resque2_redis3.gemfile.lock b/gemfiles/ruby_3.2_resque2_redis3.gemfile.lock index 66b835df334..be2556893a0 100644 --- a/gemfiles/ruby_3.2_resque2_redis3.gemfile.lock +++ b/gemfiles/ruby_3.2_resque2_redis3.gemfile.lock @@ -24,7 +24,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.5.0) extlz4 (0.3.3) ffi (1.17.1-aarch64-linux-gnu) @@ -91,14 +91,14 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby2_keywords (0.0.5) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sinatra (3.0.5) mustermann (~> 3.0) @@ -141,7 +141,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.2_resque2_redis4.gemfile b/gemfiles/ruby_3.2_resque2_redis4.gemfile index aadef1821e8..9ff4b393bdc 100644 --- a/gemfiles/ruby_3.2_resque2_redis4.gemfile +++ b/gemfiles/ruby_3.2_resque2_redis4.gemfile @@ -21,7 +21,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.2_resque2_redis4.gemfile.lock b/gemfiles/ruby_3.2_resque2_redis4.gemfile.lock index dd948e3704e..53ecd04134f 100644 --- a/gemfiles/ruby_3.2_resque2_redis4.gemfile.lock +++ b/gemfiles/ruby_3.2_resque2_redis4.gemfile.lock @@ -25,7 +25,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.5.0) extlz4 (0.3.3) ffi (1.17.1-aarch64-linux-gnu) @@ -95,14 +95,14 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby2_keywords (0.0.5) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sinatra (3.0.5) mustermann (~> 3.0) @@ -145,7 +145,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.2_sinatra_2.gemfile b/gemfiles/ruby_3.2_sinatra_2.gemfile index 12961d060b1..14208a4a1b2 100644 --- a/gemfiles/ruby_3.2_sinatra_2.gemfile +++ b/gemfiles/ruby_3.2_sinatra_2.gemfile @@ -21,7 +21,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.2_sinatra_2.gemfile.lock b/gemfiles/ruby_3.2_sinatra_2.gemfile.lock index c39cddaee80..04690a4e487 100644 --- a/gemfiles/ruby_3.2_sinatra_2.gemfile.lock +++ b/gemfiles/ruby_3.2_sinatra_2.gemfile.lock @@ -27,7 +27,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) ffi (1.17.1-aarch64-linux-gnu) @@ -89,14 +89,14 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby2_keywords (0.0.5) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sinatra (2.2.4) mustermann (~> 2.0) @@ -139,7 +139,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sinatra (~> 2) warning (~> 1) diff --git a/gemfiles/ruby_3.2_sinatra_3.gemfile b/gemfiles/ruby_3.2_sinatra_3.gemfile index 9465f917f15..ab3bb79dfd4 100644 --- a/gemfiles/ruby_3.2_sinatra_3.gemfile +++ b/gemfiles/ruby_3.2_sinatra_3.gemfile @@ -21,7 +21,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.2_sinatra_3.gemfile.lock b/gemfiles/ruby_3.2_sinatra_3.gemfile.lock index 752832d9958..e002925c020 100644 --- a/gemfiles/ruby_3.2_sinatra_3.gemfile.lock +++ b/gemfiles/ruby_3.2_sinatra_3.gemfile.lock @@ -28,7 +28,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) ffi (1.17.1-aarch64-linux-gnu) @@ -91,14 +91,14 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby2_keywords (0.0.5) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sinatra (3.2.0) mustermann (~> 3.0) @@ -141,7 +141,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sinatra (~> 3) warning (~> 1) diff --git a/gemfiles/ruby_3.2_sinatra_4.gemfile b/gemfiles/ruby_3.2_sinatra_4.gemfile index cbc347d40eb..08634539e07 100644 --- a/gemfiles/ruby_3.2_sinatra_4.gemfile +++ b/gemfiles/ruby_3.2_sinatra_4.gemfile @@ -21,7 +21,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.2_sinatra_4.gemfile.lock b/gemfiles/ruby_3.2_sinatra_4.gemfile.lock index fead993cef1..52e77b90a85 100644 --- a/gemfiles/ruby_3.2_sinatra_4.gemfile.lock +++ b/gemfiles/ruby_3.2_sinatra_4.gemfile.lock @@ -28,7 +28,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) ffi (1.17.1-aarch64-linux-gnu) @@ -93,14 +93,14 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby2_keywords (0.0.5) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sinatra (4.0.0) mustermann (~> 3.0) @@ -144,7 +144,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sinatra (~> 4) warning (~> 1) diff --git a/gemfiles/ruby_3.2_stripe_10.gemfile b/gemfiles/ruby_3.2_stripe_10.gemfile index 87473a10869..954a0455af4 100644 --- a/gemfiles/ruby_3.2_stripe_10.gemfile +++ b/gemfiles/ruby_3.2_stripe_10.gemfile @@ -21,7 +21,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.2_stripe_10.gemfile.lock b/gemfiles/ruby_3.2_stripe_10.gemfile.lock index dad05a9404a..52bfa5ef366 100644 --- a/gemfiles/ruby_3.2_stripe_10.gemfile.lock +++ b/gemfiles/ruby_3.2_stripe_10.gemfile.lock @@ -79,14 +79,14 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) stripe (10.15.0) strscan (3.1.0) @@ -122,7 +122,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) stripe (~> 10) warning (~> 1) diff --git a/gemfiles/ruby_3.2_stripe_11.gemfile b/gemfiles/ruby_3.2_stripe_11.gemfile index 41edeb33001..90f2e9ab4a7 100644 --- a/gemfiles/ruby_3.2_stripe_11.gemfile +++ b/gemfiles/ruby_3.2_stripe_11.gemfile @@ -21,7 +21,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.2_stripe_11.gemfile.lock b/gemfiles/ruby_3.2_stripe_11.gemfile.lock index 6d56d35d6a3..9f8ec8affff 100644 --- a/gemfiles/ruby_3.2_stripe_11.gemfile.lock +++ b/gemfiles/ruby_3.2_stripe_11.gemfile.lock @@ -79,14 +79,14 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) stripe (11.7.0) strscan (3.1.0) @@ -122,7 +122,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) stripe (~> 11) warning (~> 1) diff --git a/gemfiles/ruby_3.2_stripe_12.gemfile b/gemfiles/ruby_3.2_stripe_12.gemfile index 144c7a42adc..9804d49f2cb 100644 --- a/gemfiles/ruby_3.2_stripe_12.gemfile +++ b/gemfiles/ruby_3.2_stripe_12.gemfile @@ -21,7 +21,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.2_stripe_12.gemfile.lock b/gemfiles/ruby_3.2_stripe_12.gemfile.lock index e500be57fd7..4db1f135ed9 100644 --- a/gemfiles/ruby_3.2_stripe_12.gemfile.lock +++ b/gemfiles/ruby_3.2_stripe_12.gemfile.lock @@ -79,14 +79,14 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) stripe (12.6.0) strscan (3.1.0) @@ -122,7 +122,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) stripe (~> 12) warning (~> 1) diff --git a/gemfiles/ruby_3.2_stripe_7.gemfile b/gemfiles/ruby_3.2_stripe_7.gemfile index adb9b336ba4..eaf3c97ca8c 100644 --- a/gemfiles/ruby_3.2_stripe_7.gemfile +++ b/gemfiles/ruby_3.2_stripe_7.gemfile @@ -21,7 +21,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.2_stripe_7.gemfile.lock b/gemfiles/ruby_3.2_stripe_7.gemfile.lock index 139d197810a..45c761382a0 100644 --- a/gemfiles/ruby_3.2_stripe_7.gemfile.lock +++ b/gemfiles/ruby_3.2_stripe_7.gemfile.lock @@ -79,14 +79,14 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) stripe (7.1.0) strscan (3.1.0) @@ -122,7 +122,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) stripe (~> 7) warning (~> 1) diff --git a/gemfiles/ruby_3.2_stripe_8.gemfile b/gemfiles/ruby_3.2_stripe_8.gemfile index 7058ea2e0ee..34b19238739 100644 --- a/gemfiles/ruby_3.2_stripe_8.gemfile +++ b/gemfiles/ruby_3.2_stripe_8.gemfile @@ -21,7 +21,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.2_stripe_8.gemfile.lock b/gemfiles/ruby_3.2_stripe_8.gemfile.lock index 10c3c95fc3f..6ebf4ea78fe 100644 --- a/gemfiles/ruby_3.2_stripe_8.gemfile.lock +++ b/gemfiles/ruby_3.2_stripe_8.gemfile.lock @@ -79,14 +79,14 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) stripe (8.7.0) strscan (3.1.0) @@ -122,7 +122,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) stripe (~> 8) warning (~> 1) diff --git a/gemfiles/ruby_3.2_stripe_9.gemfile b/gemfiles/ruby_3.2_stripe_9.gemfile index d0e06e08f2a..e2ec1cbcf97 100644 --- a/gemfiles/ruby_3.2_stripe_9.gemfile +++ b/gemfiles/ruby_3.2_stripe_9.gemfile @@ -21,7 +21,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.2_stripe_9.gemfile.lock b/gemfiles/ruby_3.2_stripe_9.gemfile.lock index 49aed417129..743b92460df 100644 --- a/gemfiles/ruby_3.2_stripe_9.gemfile.lock +++ b/gemfiles/ruby_3.2_stripe_9.gemfile.lock @@ -79,14 +79,14 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) stripe (9.4.0) strscan (3.1.0) @@ -122,7 +122,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) stripe (~> 9) warning (~> 1) diff --git a/gemfiles/ruby_3.2_stripe_latest.gemfile b/gemfiles/ruby_3.2_stripe_latest.gemfile index 00a02c0e01f..20e7f74829e 100644 --- a/gemfiles/ruby_3.2_stripe_latest.gemfile +++ b/gemfiles/ruby_3.2_stripe_latest.gemfile @@ -21,7 +21,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.2_stripe_latest.gemfile.lock b/gemfiles/ruby_3.2_stripe_latest.gemfile.lock index 5c2cb366a49..a004be5250a 100644 --- a/gemfiles/ruby_3.2_stripe_latest.gemfile.lock +++ b/gemfiles/ruby_3.2_stripe_latest.gemfile.lock @@ -78,7 +78,7 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) @@ -120,7 +120,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) stripe warning (~> 1) diff --git a/gemfiles/ruby_3.2_stripe_min.gemfile b/gemfiles/ruby_3.2_stripe_min.gemfile index 3b331617a10..ecd30900441 100644 --- a/gemfiles/ruby_3.2_stripe_min.gemfile +++ b/gemfiles/ruby_3.2_stripe_min.gemfile @@ -21,7 +21,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.2_stripe_min.gemfile.lock b/gemfiles/ruby_3.2_stripe_min.gemfile.lock index 7450308117c..02b52b9305b 100644 --- a/gemfiles/ruby_3.2_stripe_min.gemfile.lock +++ b/gemfiles/ruby_3.2_stripe_min.gemfile.lock @@ -78,7 +78,7 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) @@ -120,7 +120,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) stripe (= 5.15.0) warning (~> 1) diff --git a/gemfiles/ruby_3.3_activesupport.gemfile b/gemfiles/ruby_3.3_activesupport.gemfile index 485d3740f23..6cea3b7ed67 100644 --- a/gemfiles/ruby_3.3_activesupport.gemfile +++ b/gemfiles/ruby_3.3_activesupport.gemfile @@ -21,7 +21,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.3_activesupport.gemfile.lock b/gemfiles/ruby_3.3_activesupport.gemfile.lock index 5f447d982d0..e06b86fe4dd 100644 --- a/gemfiles/ruby_3.3_activesupport.gemfile.lock +++ b/gemfiles/ruby_3.3_activesupport.gemfile.lock @@ -55,7 +55,7 @@ GEM diff-lcs (1.5.0) digest-crc (0.6.5) rake (>= 12.0.0, < 14.0.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) dry-core (1.0.1) concurrent-ruby (~> 1.0) @@ -181,14 +181,14 @@ GEM ruby-kafka (1.5.0) digest-crc ruby2_keywords (0.0.5) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) strscan (3.1.0) thor (1.2.2) @@ -235,7 +235,7 @@ DEPENDENCIES rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) ruby-kafka (>= 0.7.10) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.3_aws.gemfile b/gemfiles/ruby_3.3_aws.gemfile index be6c26e7a4d..a29e9da9c11 100644 --- a/gemfiles/ruby_3.3_aws.gemfile +++ b/gemfiles/ruby_3.3_aws.gemfile @@ -21,7 +21,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.3_aws.gemfile.lock b/gemfiles/ruby_3.3_aws.gemfile.lock index 18e8d9049b8..a519996483c 100644 --- a/gemfiles/ruby_3.3_aws.gemfile.lock +++ b/gemfiles/ruby_3.3_aws.gemfile.lock @@ -1445,7 +1445,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.0) extlz4 (0.3.4) ffi (1.17.1-aarch64-linux-gnu) @@ -1500,14 +1500,14 @@ GEM aws-sdk-core (>= 2) concurrent-ruby thor - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) strscan (3.1.0) thor (1.2.2) @@ -1545,7 +1545,7 @@ DEPENDENCIES rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) shoryuken - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.3_contrib.gemfile b/gemfiles/ruby_3.3_contrib.gemfile index 07d57a70775..b64295cae6a 100644 --- a/gemfiles/ruby_3.3_contrib.gemfile +++ b/gemfiles/ruby_3.3_contrib.gemfile @@ -21,7 +21,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.3_contrib.gemfile.lock b/gemfiles/ruby_3.3_contrib.gemfile.lock index fa8f0682501..6e196cacd87 100644 --- a/gemfiles/ruby_3.3_contrib.gemfile.lock +++ b/gemfiles/ruby_3.3_contrib.gemfile.lock @@ -31,7 +31,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.5.0) extlz4 (0.3.3) ffi (1.17.1-aarch64-linux-gnu) @@ -128,14 +128,14 @@ GEM rack (>= 2.2.4) redis-client (>= 0.14.0) sigdump (0.2.4) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sinatra (3.0.6) mustermann (~> 3.0) @@ -197,7 +197,7 @@ DEPENDENCIES rspec_junit_formatter (>= 0.5.1) semantic_logger (~> 4.0) sidekiq (~> 7) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sneakers (>= 2.12.0) sucker_punch diff --git a/gemfiles/ruby_3.3_contrib_old.gemfile b/gemfiles/ruby_3.3_contrib_old.gemfile index ae3bba41c9e..4e0cc5cf019 100644 --- a/gemfiles/ruby_3.3_contrib_old.gemfile +++ b/gemfiles/ruby_3.3_contrib_old.gemfile @@ -21,7 +21,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.3_contrib_old.gemfile.lock b/gemfiles/ruby_3.3_contrib_old.gemfile.lock index dc732506453..42b6236ce28 100644 --- a/gemfiles/ruby_3.3_contrib_old.gemfile.lock +++ b/gemfiles/ruby_3.3_contrib_old.gemfile.lock @@ -29,7 +29,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.5.0) eventmachine (1.2.7) extlz4 (0.3.3) @@ -114,14 +114,14 @@ GEM rusage (0.2.0) sentry-raven (0.15.6) faraday (>= 0.7.6) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sinatra (2.0.8.1) mustermann (~> 1.0) @@ -173,7 +173,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.3_core_old.gemfile b/gemfiles/ruby_3.3_core_old.gemfile index 891044671de..fa17de945fa 100644 --- a/gemfiles/ruby_3.3_core_old.gemfile +++ b/gemfiles/ruby_3.3_core_old.gemfile @@ -21,7 +21,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.3_core_old.gemfile.lock b/gemfiles/ruby_3.3_core_old.gemfile.lock index 063b7c70c3d..f263e11b13f 100644 --- a/gemfiles/ruby_3.3_core_old.gemfile.lock +++ b/gemfiles/ruby_3.3_core_old.gemfile.lock @@ -24,7 +24,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (4.8.3) extlz4 (0.3.3) ffi (1.17.1-aarch64-linux-gnu) @@ -74,14 +74,14 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) strscan (3.1.0) warning (1.3.0) @@ -116,7 +116,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.3_elasticsearch_7.gemfile b/gemfiles/ruby_3.3_elasticsearch_7.gemfile index 27b8e6b434b..d84a28f3a3d 100644 --- a/gemfiles/ruby_3.3_elasticsearch_7.gemfile +++ b/gemfiles/ruby_3.3_elasticsearch_7.gemfile @@ -21,7 +21,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.3_elasticsearch_7.gemfile.lock b/gemfiles/ruby_3.3_elasticsearch_7.gemfile.lock index 97e082e6b96..784965d98cd 100644 --- a/gemfiles/ruby_3.3_elasticsearch_7.gemfile.lock +++ b/gemfiles/ruby_3.3_elasticsearch_7.gemfile.lock @@ -26,7 +26,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) elasticsearch (7.17.11) elasticsearch-api (= 7.17.11) @@ -97,14 +97,14 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) strscan (3.1.0) uri (1.0.2) @@ -141,7 +141,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.3_elasticsearch_8.gemfile b/gemfiles/ruby_3.3_elasticsearch_8.gemfile index aed5ebc4c02..c82cade4c54 100644 --- a/gemfiles/ruby_3.3_elasticsearch_8.gemfile +++ b/gemfiles/ruby_3.3_elasticsearch_8.gemfile @@ -21,7 +21,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.3_elasticsearch_8.gemfile.lock b/gemfiles/ruby_3.3_elasticsearch_8.gemfile.lock index c185c27ce11..057d52feb71 100644 --- a/gemfiles/ruby_3.3_elasticsearch_8.gemfile.lock +++ b/gemfiles/ruby_3.3_elasticsearch_8.gemfile.lock @@ -25,7 +25,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) elastic-transport (8.3.5) faraday (< 3) @@ -95,14 +95,14 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) strscan (3.1.0) uri (1.0.2) @@ -139,7 +139,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.3_elasticsearch_latest.gemfile b/gemfiles/ruby_3.3_elasticsearch_latest.gemfile index badcfc73421..57359ca0898 100644 --- a/gemfiles/ruby_3.3_elasticsearch_latest.gemfile +++ b/gemfiles/ruby_3.3_elasticsearch_latest.gemfile @@ -21,7 +21,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.3_elasticsearch_latest.gemfile.lock b/gemfiles/ruby_3.3_elasticsearch_latest.gemfile.lock index dfdc838555b..e3cf9bdd515 100644 --- a/gemfiles/ruby_3.3_elasticsearch_latest.gemfile.lock +++ b/gemfiles/ruby_3.3_elasticsearch_latest.gemfile.lock @@ -97,7 +97,7 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) @@ -140,7 +140,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.3_graphql_1.13.gemfile b/gemfiles/ruby_3.3_graphql_1.13.gemfile index 9d142953a86..86dcbb240d9 100644 --- a/gemfiles/ruby_3.3_graphql_1.13.gemfile +++ b/gemfiles/ruby_3.3_graphql_1.13.gemfile @@ -21,7 +21,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.3_graphql_1.13.gemfile.lock b/gemfiles/ruby_3.3_graphql_1.13.gemfile.lock index d0d782dee56..e0b510792f4 100644 --- a/gemfiles/ruby_3.3_graphql_1.13.gemfile.lock +++ b/gemfiles/ruby_3.3_graphql_1.13.gemfile.lock @@ -88,7 +88,7 @@ GEM date (3.3.4) debug_inspector (1.2.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) erubi (1.13.0) extlz4 (0.3.4) @@ -209,14 +209,14 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sprockets (3.7.3) base64 @@ -270,7 +270,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_3.3_graphql_2.0.gemfile b/gemfiles/ruby_3.3_graphql_2.0.gemfile index d066b71b009..574d0685883 100644 --- a/gemfiles/ruby_3.3_graphql_2.0.gemfile +++ b/gemfiles/ruby_3.3_graphql_2.0.gemfile @@ -21,7 +21,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.3_graphql_2.0.gemfile.lock b/gemfiles/ruby_3.3_graphql_2.0.gemfile.lock index d268e3ca052..0fec4330658 100644 --- a/gemfiles/ruby_3.3_graphql_2.0.gemfile.lock +++ b/gemfiles/ruby_3.3_graphql_2.0.gemfile.lock @@ -88,7 +88,7 @@ GEM date (3.3.4) debug_inspector (1.2.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) erubi (1.13.0) extlz4 (0.3.4) @@ -209,14 +209,14 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sprockets (3.7.3) base64 @@ -270,7 +270,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_3.3_graphql_2.1.gemfile b/gemfiles/ruby_3.3_graphql_2.1.gemfile index 0f2e84132b7..8741e32bb0f 100644 --- a/gemfiles/ruby_3.3_graphql_2.1.gemfile +++ b/gemfiles/ruby_3.3_graphql_2.1.gemfile @@ -21,7 +21,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.3_graphql_2.1.gemfile.lock b/gemfiles/ruby_3.3_graphql_2.1.gemfile.lock index d3365b31b9d..975130fce22 100644 --- a/gemfiles/ruby_3.3_graphql_2.1.gemfile.lock +++ b/gemfiles/ruby_3.3_graphql_2.1.gemfile.lock @@ -88,7 +88,7 @@ GEM date (3.3.4) debug_inspector (1.2.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) erubi (1.13.0) extlz4 (0.3.4) @@ -210,14 +210,14 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sprockets (3.7.3) base64 @@ -271,7 +271,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_3.3_graphql_2.2.gemfile b/gemfiles/ruby_3.3_graphql_2.2.gemfile index 5da99d6a19f..4316de0308c 100644 --- a/gemfiles/ruby_3.3_graphql_2.2.gemfile +++ b/gemfiles/ruby_3.3_graphql_2.2.gemfile @@ -21,7 +21,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.3_graphql_2.2.gemfile.lock b/gemfiles/ruby_3.3_graphql_2.2.gemfile.lock index 97aa445bd07..faff04ad860 100644 --- a/gemfiles/ruby_3.3_graphql_2.2.gemfile.lock +++ b/gemfiles/ruby_3.3_graphql_2.2.gemfile.lock @@ -88,7 +88,7 @@ GEM date (3.3.4) debug_inspector (1.2.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) erubi (1.13.0) extlz4 (0.3.4) @@ -210,14 +210,14 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sprockets (3.7.3) base64 @@ -271,7 +271,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_3.3_graphql_2.3.gemfile b/gemfiles/ruby_3.3_graphql_2.3.gemfile index b81a2ff54c4..3b9bd160db7 100644 --- a/gemfiles/ruby_3.3_graphql_2.3.gemfile +++ b/gemfiles/ruby_3.3_graphql_2.3.gemfile @@ -21,7 +21,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.3_graphql_2.3.gemfile.lock b/gemfiles/ruby_3.3_graphql_2.3.gemfile.lock index 1e1f8252a2b..4e7fbd3ed89 100644 --- a/gemfiles/ruby_3.3_graphql_2.3.gemfile.lock +++ b/gemfiles/ruby_3.3_graphql_2.3.gemfile.lock @@ -90,7 +90,7 @@ GEM date (3.3.4) debug_inspector (1.2.0) diff-lcs (1.5.1) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) erubi (1.13.0) extlz4 (0.3.4) @@ -213,14 +213,14 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sprockets (3.7.3) base64 @@ -274,7 +274,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_3.3_http.gemfile b/gemfiles/ruby_3.3_http.gemfile index e6b82f3cce1..e27b2fbff80 100644 --- a/gemfiles/ruby_3.3_http.gemfile +++ b/gemfiles/ruby_3.3_http.gemfile @@ -21,7 +21,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.3_http.gemfile.lock b/gemfiles/ruby_3.3_http.gemfile.lock index 0f276418bca..4da3b684c8d 100644 --- a/gemfiles/ruby_3.3_http.gemfile.lock +++ b/gemfiles/ruby_3.3_http.gemfile.lock @@ -24,7 +24,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) domain_name (0.5.20190701) unf (>= 0.0.5, < 1.0.0) @@ -109,14 +109,14 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby2_keywords (0.0.5) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) strscan (3.1.0) typhoeus (1.4.0) @@ -162,7 +162,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) typhoeus warning (~> 1) diff --git a/gemfiles/ruby_3.3_opensearch_2.gemfile b/gemfiles/ruby_3.3_opensearch_2.gemfile index c45d76e4e2b..8bf9e398092 100644 --- a/gemfiles/ruby_3.3_opensearch_2.gemfile +++ b/gemfiles/ruby_3.3_opensearch_2.gemfile @@ -21,7 +21,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.3_opensearch_2.gemfile.lock b/gemfiles/ruby_3.3_opensearch_2.gemfile.lock index a103ff95300..7001c410d0d 100644 --- a/gemfiles/ruby_3.3_opensearch_2.gemfile.lock +++ b/gemfiles/ruby_3.3_opensearch_2.gemfile.lock @@ -25,7 +25,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) faraday (2.12.2) @@ -95,14 +95,14 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) strscan (3.1.0) uri (1.0.2) @@ -139,7 +139,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.3_opensearch_3.gemfile b/gemfiles/ruby_3.3_opensearch_3.gemfile index 2185f8aafc9..1b9b6b25a6b 100644 --- a/gemfiles/ruby_3.3_opensearch_3.gemfile +++ b/gemfiles/ruby_3.3_opensearch_3.gemfile @@ -21,7 +21,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.3_opensearch_3.gemfile.lock b/gemfiles/ruby_3.3_opensearch_3.gemfile.lock index ffacf13176c..9ee685db918 100644 --- a/gemfiles/ruby_3.3_opensearch_3.gemfile.lock +++ b/gemfiles/ruby_3.3_opensearch_3.gemfile.lock @@ -25,7 +25,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) faraday (2.12.2) @@ -90,14 +90,14 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) strscan (3.1.0) uri (1.0.2) @@ -134,7 +134,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.3_opensearch_latest.gemfile b/gemfiles/ruby_3.3_opensearch_latest.gemfile index f723c9243e7..3bdbf2a73db 100644 --- a/gemfiles/ruby_3.3_opensearch_latest.gemfile +++ b/gemfiles/ruby_3.3_opensearch_latest.gemfile @@ -21,7 +21,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.3_opensearch_latest.gemfile.lock b/gemfiles/ruby_3.3_opensearch_latest.gemfile.lock index 7c38ac74612..097c12503fd 100644 --- a/gemfiles/ruby_3.3_opensearch_latest.gemfile.lock +++ b/gemfiles/ruby_3.3_opensearch_latest.gemfile.lock @@ -92,7 +92,7 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) @@ -135,7 +135,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.3_opentelemetry.gemfile b/gemfiles/ruby_3.3_opentelemetry.gemfile index be1276e89ac..861aafcd280 100644 --- a/gemfiles/ruby_3.3_opentelemetry.gemfile +++ b/gemfiles/ruby_3.3_opentelemetry.gemfile @@ -21,7 +21,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.3_opentelemetry.gemfile.lock b/gemfiles/ruby_3.3_opentelemetry.gemfile.lock index 53b2696488c..1d0cd78272e 100644 --- a/gemfiles/ruby_3.3_opentelemetry.gemfile.lock +++ b/gemfiles/ruby_3.3_opentelemetry.gemfile.lock @@ -24,7 +24,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.5.0) extlz4 (0.3.3) ffi (1.17.1-aarch64-linux-gnu) @@ -86,14 +86,14 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) strscan (3.1.0) warning (1.3.0) @@ -129,7 +129,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.3_opentelemetry_otlp.gemfile b/gemfiles/ruby_3.3_opentelemetry_otlp.gemfile index b99812d76bd..11a944f4764 100644 --- a/gemfiles/ruby_3.3_opentelemetry_otlp.gemfile +++ b/gemfiles/ruby_3.3_opentelemetry_otlp.gemfile @@ -21,7 +21,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.3_opentelemetry_otlp.gemfile.lock b/gemfiles/ruby_3.3_opentelemetry_otlp.gemfile.lock index aa2f6a66b22..8acc2160bf0 100644 --- a/gemfiles/ruby_3.3_opentelemetry_otlp.gemfile.lock +++ b/gemfiles/ruby_3.3_opentelemetry_otlp.gemfile.lock @@ -27,7 +27,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) ffi (1.17.1-aarch64-linux-gnu) @@ -99,14 +99,14 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) warning (1.3.0) webmock (3.23.0) @@ -142,7 +142,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.3_rack_2.gemfile b/gemfiles/ruby_3.3_rack_2.gemfile index 2590776110e..773ee99bd85 100644 --- a/gemfiles/ruby_3.3_rack_2.gemfile +++ b/gemfiles/ruby_3.3_rack_2.gemfile @@ -21,7 +21,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.3_rack_2.gemfile.lock b/gemfiles/ruby_3.3_rack_2.gemfile.lock index f15d532ca11..b56178621c4 100644 --- a/gemfiles/ruby_3.3_rack_2.gemfile.lock +++ b/gemfiles/ruby_3.3_rack_2.gemfile.lock @@ -24,7 +24,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) ffi (1.17.1-aarch64-linux-gnu) @@ -79,14 +79,14 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) strscan (3.1.0) warning (1.3.0) @@ -124,7 +124,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.3_rack_3.gemfile b/gemfiles/ruby_3.3_rack_3.gemfile index 6bd7ef3ab7f..c6cd8200c50 100644 --- a/gemfiles/ruby_3.3_rack_3.gemfile +++ b/gemfiles/ruby_3.3_rack_3.gemfile @@ -21,7 +21,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.3_rack_3.gemfile.lock b/gemfiles/ruby_3.3_rack_3.gemfile.lock index 513cdc979a8..32079f5dc77 100644 --- a/gemfiles/ruby_3.3_rack_3.gemfile.lock +++ b/gemfiles/ruby_3.3_rack_3.gemfile.lock @@ -24,7 +24,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) ffi (1.17.1-aarch64-linux-gnu) @@ -79,14 +79,14 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) strscan (3.1.0) warning (1.3.0) @@ -124,7 +124,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.3_rack_latest.gemfile b/gemfiles/ruby_3.3_rack_latest.gemfile index 7f26c518698..90a61a2f648 100644 --- a/gemfiles/ruby_3.3_rack_latest.gemfile +++ b/gemfiles/ruby_3.3_rack_latest.gemfile @@ -21,7 +21,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.3_rack_latest.gemfile.lock b/gemfiles/ruby_3.3_rack_latest.gemfile.lock index 91d2940d5cb..07727f74bdb 100644 --- a/gemfiles/ruby_3.3_rack_latest.gemfile.lock +++ b/gemfiles/ruby_3.3_rack_latest.gemfile.lock @@ -83,7 +83,7 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) @@ -127,7 +127,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.3_rails61_mysql2.gemfile b/gemfiles/ruby_3.3_rails61_mysql2.gemfile index d0a43aab470..93d88367a5c 100644 --- a/gemfiles/ruby_3.3_rails61_mysql2.gemfile +++ b/gemfiles/ruby_3.3_rails61_mysql2.gemfile @@ -21,7 +21,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.3_rails61_mysql2.gemfile.lock b/gemfiles/ruby_3.3_rails61_mysql2.gemfile.lock index 17e52e1b6dd..52acc84ce59 100644 --- a/gemfiles/ruby_3.3_rails61_mysql2.gemfile.lock +++ b/gemfiles/ruby_3.3_rails61_mysql2.gemfile.lock @@ -86,7 +86,7 @@ GEM date (3.3.3) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.5.0) erubi (1.12.0) extlz4 (0.3.3) @@ -206,14 +206,14 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sprockets (3.7.2) concurrent-ruby (~> 1.0) @@ -267,7 +267,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_3.3_rails61_postgres.gemfile b/gemfiles/ruby_3.3_rails61_postgres.gemfile index 17811ef3980..c7a583f344f 100644 --- a/gemfiles/ruby_3.3_rails61_postgres.gemfile +++ b/gemfiles/ruby_3.3_rails61_postgres.gemfile @@ -21,7 +21,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.3_rails61_postgres.gemfile.lock b/gemfiles/ruby_3.3_rails61_postgres.gemfile.lock index 00bd7f36f76..c4b1aa312dc 100644 --- a/gemfiles/ruby_3.3_rails61_postgres.gemfile.lock +++ b/gemfiles/ruby_3.3_rails61_postgres.gemfile.lock @@ -86,7 +86,7 @@ GEM date (3.3.3) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.5.0) erubi (1.12.0) extlz4 (0.3.3) @@ -206,14 +206,14 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sprockets (3.7.2) concurrent-ruby (~> 1.0) @@ -267,7 +267,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_3.3_rails61_postgres_redis.gemfile b/gemfiles/ruby_3.3_rails61_postgres_redis.gemfile index 071f6c4d2c7..0fe0bf56724 100644 --- a/gemfiles/ruby_3.3_rails61_postgres_redis.gemfile +++ b/gemfiles/ruby_3.3_rails61_postgres_redis.gemfile @@ -21,7 +21,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.3_rails61_postgres_redis.gemfile.lock b/gemfiles/ruby_3.3_rails61_postgres_redis.gemfile.lock index 478562b2908..a689a09fc60 100644 --- a/gemfiles/ruby_3.3_rails61_postgres_redis.gemfile.lock +++ b/gemfiles/ruby_3.3_rails61_postgres_redis.gemfile.lock @@ -86,7 +86,7 @@ GEM date (3.3.3) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.5.0) erubi (1.12.0) extlz4 (0.3.3) @@ -207,14 +207,14 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sprockets (3.7.2) concurrent-ruby (~> 1.0) @@ -269,7 +269,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_3.3_rails61_postgres_sidekiq.gemfile b/gemfiles/ruby_3.3_rails61_postgres_sidekiq.gemfile index 98601cf69b3..415a41746d9 100644 --- a/gemfiles/ruby_3.3_rails61_postgres_sidekiq.gemfile +++ b/gemfiles/ruby_3.3_rails61_postgres_sidekiq.gemfile @@ -21,7 +21,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.3_rails61_postgres_sidekiq.gemfile.lock b/gemfiles/ruby_3.3_rails61_postgres_sidekiq.gemfile.lock index 17b06582f76..ea6913a70dd 100644 --- a/gemfiles/ruby_3.3_rails61_postgres_sidekiq.gemfile.lock +++ b/gemfiles/ruby_3.3_rails61_postgres_sidekiq.gemfile.lock @@ -87,7 +87,7 @@ GEM date (3.3.3) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.5.0) erubi (1.12.0) extlz4 (0.3.3) @@ -220,14 +220,14 @@ GEM connection_pool (>= 2.3.0) rack (>= 2.2.4) redis-client (>= 0.14.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sprockets (3.7.2) concurrent-ruby (~> 1.0) @@ -283,7 +283,7 @@ DEPENDENCIES rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) sidekiq (>= 6.1.2) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_3.3_rails61_semantic_logger.gemfile b/gemfiles/ruby_3.3_rails61_semantic_logger.gemfile index 532d5992925..107d3971c66 100644 --- a/gemfiles/ruby_3.3_rails61_semantic_logger.gemfile +++ b/gemfiles/ruby_3.3_rails61_semantic_logger.gemfile @@ -21,7 +21,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.3_rails61_semantic_logger.gemfile.lock b/gemfiles/ruby_3.3_rails61_semantic_logger.gemfile.lock index ed7183204d5..eb0ed7a30bc 100644 --- a/gemfiles/ruby_3.3_rails61_semantic_logger.gemfile.lock +++ b/gemfiles/ruby_3.3_rails61_semantic_logger.gemfile.lock @@ -86,7 +86,7 @@ GEM date (3.3.3) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.5.0) erubi (1.12.0) extlz4 (0.3.3) @@ -205,14 +205,14 @@ GEM rspec-core (>= 2, < 4, != 2.12.0) semantic_logger (4.13.0) concurrent-ruby (~> 1.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sprockets (3.7.2) concurrent-ruby (~> 1.0) @@ -266,7 +266,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_3.3_rails61_trilogy.gemfile b/gemfiles/ruby_3.3_rails61_trilogy.gemfile index 483c5c6c05f..996ec3f52ec 100644 --- a/gemfiles/ruby_3.3_rails61_trilogy.gemfile +++ b/gemfiles/ruby_3.3_rails61_trilogy.gemfile @@ -21,7 +21,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.3_rails61_trilogy.gemfile.lock b/gemfiles/ruby_3.3_rails61_trilogy.gemfile.lock index cd820d99d26..f14ef7d43d5 100644 --- a/gemfiles/ruby_3.3_rails61_trilogy.gemfile.lock +++ b/gemfiles/ruby_3.3_rails61_trilogy.gemfile.lock @@ -90,7 +90,7 @@ GEM date (3.3.4) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) erubi (1.12.0) extlz4 (0.3.4) @@ -210,14 +210,14 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sprockets (3.7.2) concurrent-ruby (~> 1.0) @@ -272,7 +272,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sprockets (< 4) trilogy diff --git a/gemfiles/ruby_3.3_rails7.gemfile b/gemfiles/ruby_3.3_rails7.gemfile index 6d0b2c3573b..94f524b94ca 100644 --- a/gemfiles/ruby_3.3_rails7.gemfile +++ b/gemfiles/ruby_3.3_rails7.gemfile @@ -21,7 +21,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.3_rails7.gemfile.lock b/gemfiles/ruby_3.3_rails7.gemfile.lock index 08cb11a5ab7..ff4711ac4e3 100644 --- a/gemfiles/ruby_3.3_rails7.gemfile.lock +++ b/gemfiles/ruby_3.3_rails7.gemfile.lock @@ -209,14 +209,14 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) strscan (3.1.0) thor (1.3.1) @@ -260,7 +260,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.3_rails71.gemfile b/gemfiles/ruby_3.3_rails71.gemfile index cd45bf1a819..b72b5f1a117 100644 --- a/gemfiles/ruby_3.3_rails71.gemfile +++ b/gemfiles/ruby_3.3_rails71.gemfile @@ -21,7 +21,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.3_rails71.gemfile.lock b/gemfiles/ruby_3.3_rails71.gemfile.lock index f2f457a8ff8..f146bcca9e1 100644 --- a/gemfiles/ruby_3.3_rails71.gemfile.lock +++ b/gemfiles/ruby_3.3_rails71.gemfile.lock @@ -238,14 +238,14 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) stringio (3.1.1) strscan (3.1.0) @@ -290,7 +290,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.3_rails_old_redis.gemfile b/gemfiles/ruby_3.3_rails_old_redis.gemfile index b581376aa12..9119682ae28 100644 --- a/gemfiles/ruby_3.3_rails_old_redis.gemfile +++ b/gemfiles/ruby_3.3_rails_old_redis.gemfile @@ -21,7 +21,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.3_redis_3.gemfile b/gemfiles/ruby_3.3_redis_3.gemfile index 9ca41079749..fc378517b1a 100644 --- a/gemfiles/ruby_3.3_redis_3.gemfile +++ b/gemfiles/ruby_3.3_redis_3.gemfile @@ -21,7 +21,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.3_redis_3.gemfile.lock b/gemfiles/ruby_3.3_redis_3.gemfile.lock index 84d40727081..3e4030baf73 100644 --- a/gemfiles/ruby_3.3_redis_3.gemfile.lock +++ b/gemfiles/ruby_3.3_redis_3.gemfile.lock @@ -24,7 +24,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.5.0) extlz4 (0.3.3) ffi (1.17.1-aarch64-linux-gnu) @@ -75,14 +75,14 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) strscan (3.1.0) warning (1.3.0) @@ -118,7 +118,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.3_redis_4.gemfile b/gemfiles/ruby_3.3_redis_4.gemfile index 99ce6f43e9b..a017395d9e5 100644 --- a/gemfiles/ruby_3.3_redis_4.gemfile +++ b/gemfiles/ruby_3.3_redis_4.gemfile @@ -21,7 +21,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.3_redis_4.gemfile.lock b/gemfiles/ruby_3.3_redis_4.gemfile.lock index 3196f10d80a..5c26d395ae4 100644 --- a/gemfiles/ruby_3.3_redis_4.gemfile.lock +++ b/gemfiles/ruby_3.3_redis_4.gemfile.lock @@ -24,7 +24,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.5.0) extlz4 (0.3.3) ffi (1.17.1-aarch64-linux-gnu) @@ -75,14 +75,14 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) strscan (3.1.0) warning (1.3.0) @@ -118,7 +118,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.3_redis_5.gemfile b/gemfiles/ruby_3.3_redis_5.gemfile index 85b8db19aed..d7b27f29553 100644 --- a/gemfiles/ruby_3.3_redis_5.gemfile +++ b/gemfiles/ruby_3.3_redis_5.gemfile @@ -21,7 +21,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.3_redis_5.gemfile.lock b/gemfiles/ruby_3.3_redis_5.gemfile.lock index f211c5de2b6..424113b85ac 100644 --- a/gemfiles/ruby_3.3_redis_5.gemfile.lock +++ b/gemfiles/ruby_3.3_redis_5.gemfile.lock @@ -25,7 +25,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.5.0) extlz4 (0.3.3) ffi (1.17.1-aarch64-linux-gnu) @@ -79,14 +79,14 @@ GEM rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) strscan (3.1.0) warning (1.3.0) @@ -122,7 +122,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.3_relational_db.gemfile b/gemfiles/ruby_3.3_relational_db.gemfile index cd8d81351ea..5fc1bbb4c2c 100644 --- a/gemfiles/ruby_3.3_relational_db.gemfile +++ b/gemfiles/ruby_3.3_relational_db.gemfile @@ -21,7 +21,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.3_relational_db.gemfile.lock b/gemfiles/ruby_3.3_relational_db.gemfile.lock index 7b19b882e76..d30e97cee52 100644 --- a/gemfiles/ruby_3.3_relational_db.gemfile.lock +++ b/gemfiles/ruby_3.3_relational_db.gemfile.lock @@ -40,7 +40,7 @@ GEM activerecord (>= 3.0, < 8.0) delayed_job (>= 3.0, < 5) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) ffi (1.17.1-aarch64-linux-gnu) @@ -100,14 +100,14 @@ GEM rspec-core (>= 2, < 4, != 2.12.0) sequel (5.83.1) bigdecimal - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sqlite3 (1.6.6) mini_portile2 (~> 2.8.0) @@ -154,7 +154,7 @@ DEPENDENCIES rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) sequel - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sqlite3 (>= 1.4.2) trilogy diff --git a/gemfiles/ruby_3.3_resque2_redis3.gemfile b/gemfiles/ruby_3.3_resque2_redis3.gemfile index 9fee50f2c56..fc8e1412d30 100644 --- a/gemfiles/ruby_3.3_resque2_redis3.gemfile +++ b/gemfiles/ruby_3.3_resque2_redis3.gemfile @@ -21,7 +21,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.3_resque2_redis3.gemfile.lock b/gemfiles/ruby_3.3_resque2_redis3.gemfile.lock index b476f932283..f849a24826f 100644 --- a/gemfiles/ruby_3.3_resque2_redis3.gemfile.lock +++ b/gemfiles/ruby_3.3_resque2_redis3.gemfile.lock @@ -24,7 +24,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.5.0) extlz4 (0.3.3) ffi (1.17.1-aarch64-linux-gnu) @@ -90,14 +90,14 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby2_keywords (0.0.5) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sinatra (3.0.6) mustermann (~> 3.0) @@ -140,7 +140,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.3_resque2_redis4.gemfile b/gemfiles/ruby_3.3_resque2_redis4.gemfile index aadef1821e8..9ff4b393bdc 100644 --- a/gemfiles/ruby_3.3_resque2_redis4.gemfile +++ b/gemfiles/ruby_3.3_resque2_redis4.gemfile @@ -21,7 +21,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.3_resque2_redis4.gemfile.lock b/gemfiles/ruby_3.3_resque2_redis4.gemfile.lock index 4ea24523ad2..b40bb069ba1 100644 --- a/gemfiles/ruby_3.3_resque2_redis4.gemfile.lock +++ b/gemfiles/ruby_3.3_resque2_redis4.gemfile.lock @@ -25,7 +25,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.1.0) diff-lcs (1.5.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.5.0) extlz4 (0.3.3) ffi (1.17.1-aarch64-linux-gnu) @@ -94,14 +94,14 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby2_keywords (0.0.5) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sinatra (3.0.6) mustermann (~> 3.0) @@ -144,7 +144,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.3_sinatra_2.gemfile b/gemfiles/ruby_3.3_sinatra_2.gemfile index 12961d060b1..14208a4a1b2 100644 --- a/gemfiles/ruby_3.3_sinatra_2.gemfile +++ b/gemfiles/ruby_3.3_sinatra_2.gemfile @@ -21,7 +21,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.3_sinatra_2.gemfile.lock b/gemfiles/ruby_3.3_sinatra_2.gemfile.lock index c39cddaee80..04690a4e487 100644 --- a/gemfiles/ruby_3.3_sinatra_2.gemfile.lock +++ b/gemfiles/ruby_3.3_sinatra_2.gemfile.lock @@ -27,7 +27,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) ffi (1.17.1-aarch64-linux-gnu) @@ -89,14 +89,14 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby2_keywords (0.0.5) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sinatra (2.2.4) mustermann (~> 2.0) @@ -139,7 +139,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sinatra (~> 2) warning (~> 1) diff --git a/gemfiles/ruby_3.3_sinatra_3.gemfile b/gemfiles/ruby_3.3_sinatra_3.gemfile index 9465f917f15..ab3bb79dfd4 100644 --- a/gemfiles/ruby_3.3_sinatra_3.gemfile +++ b/gemfiles/ruby_3.3_sinatra_3.gemfile @@ -21,7 +21,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.3_sinatra_3.gemfile.lock b/gemfiles/ruby_3.3_sinatra_3.gemfile.lock index 752832d9958..e002925c020 100644 --- a/gemfiles/ruby_3.3_sinatra_3.gemfile.lock +++ b/gemfiles/ruby_3.3_sinatra_3.gemfile.lock @@ -28,7 +28,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) ffi (1.17.1-aarch64-linux-gnu) @@ -91,14 +91,14 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby2_keywords (0.0.5) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sinatra (3.2.0) mustermann (~> 3.0) @@ -141,7 +141,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sinatra (~> 3) warning (~> 1) diff --git a/gemfiles/ruby_3.3_sinatra_4.gemfile b/gemfiles/ruby_3.3_sinatra_4.gemfile index cbc347d40eb..08634539e07 100644 --- a/gemfiles/ruby_3.3_sinatra_4.gemfile +++ b/gemfiles/ruby_3.3_sinatra_4.gemfile @@ -21,7 +21,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.3_sinatra_4.gemfile.lock b/gemfiles/ruby_3.3_sinatra_4.gemfile.lock index fead993cef1..52e77b90a85 100644 --- a/gemfiles/ruby_3.3_sinatra_4.gemfile.lock +++ b/gemfiles/ruby_3.3_sinatra_4.gemfile.lock @@ -28,7 +28,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) ffi (1.17.1-aarch64-linux-gnu) @@ -93,14 +93,14 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby2_keywords (0.0.5) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sinatra (4.0.0) mustermann (~> 3.0) @@ -144,7 +144,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sinatra (~> 4) warning (~> 1) diff --git a/gemfiles/ruby_3.3_stripe_10.gemfile b/gemfiles/ruby_3.3_stripe_10.gemfile index 87473a10869..954a0455af4 100644 --- a/gemfiles/ruby_3.3_stripe_10.gemfile +++ b/gemfiles/ruby_3.3_stripe_10.gemfile @@ -21,7 +21,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.3_stripe_10.gemfile.lock b/gemfiles/ruby_3.3_stripe_10.gemfile.lock index dad05a9404a..52bfa5ef366 100644 --- a/gemfiles/ruby_3.3_stripe_10.gemfile.lock +++ b/gemfiles/ruby_3.3_stripe_10.gemfile.lock @@ -79,14 +79,14 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) stripe (10.15.0) strscan (3.1.0) @@ -122,7 +122,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) stripe (~> 10) warning (~> 1) diff --git a/gemfiles/ruby_3.3_stripe_11.gemfile b/gemfiles/ruby_3.3_stripe_11.gemfile index 41edeb33001..90f2e9ab4a7 100644 --- a/gemfiles/ruby_3.3_stripe_11.gemfile +++ b/gemfiles/ruby_3.3_stripe_11.gemfile @@ -21,7 +21,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.3_stripe_11.gemfile.lock b/gemfiles/ruby_3.3_stripe_11.gemfile.lock index 6d56d35d6a3..9f8ec8affff 100644 --- a/gemfiles/ruby_3.3_stripe_11.gemfile.lock +++ b/gemfiles/ruby_3.3_stripe_11.gemfile.lock @@ -79,14 +79,14 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) stripe (11.7.0) strscan (3.1.0) @@ -122,7 +122,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) stripe (~> 11) warning (~> 1) diff --git a/gemfiles/ruby_3.3_stripe_12.gemfile b/gemfiles/ruby_3.3_stripe_12.gemfile index 144c7a42adc..9804d49f2cb 100644 --- a/gemfiles/ruby_3.3_stripe_12.gemfile +++ b/gemfiles/ruby_3.3_stripe_12.gemfile @@ -21,7 +21,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.3_stripe_12.gemfile.lock b/gemfiles/ruby_3.3_stripe_12.gemfile.lock index e500be57fd7..4db1f135ed9 100644 --- a/gemfiles/ruby_3.3_stripe_12.gemfile.lock +++ b/gemfiles/ruby_3.3_stripe_12.gemfile.lock @@ -79,14 +79,14 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) stripe (12.6.0) strscan (3.1.0) @@ -122,7 +122,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) stripe (~> 12) warning (~> 1) diff --git a/gemfiles/ruby_3.3_stripe_7.gemfile b/gemfiles/ruby_3.3_stripe_7.gemfile index adb9b336ba4..eaf3c97ca8c 100644 --- a/gemfiles/ruby_3.3_stripe_7.gemfile +++ b/gemfiles/ruby_3.3_stripe_7.gemfile @@ -21,7 +21,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.3_stripe_7.gemfile.lock b/gemfiles/ruby_3.3_stripe_7.gemfile.lock index 139d197810a..45c761382a0 100644 --- a/gemfiles/ruby_3.3_stripe_7.gemfile.lock +++ b/gemfiles/ruby_3.3_stripe_7.gemfile.lock @@ -79,14 +79,14 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) stripe (7.1.0) strscan (3.1.0) @@ -122,7 +122,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) stripe (~> 7) warning (~> 1) diff --git a/gemfiles/ruby_3.3_stripe_8.gemfile b/gemfiles/ruby_3.3_stripe_8.gemfile index 7058ea2e0ee..34b19238739 100644 --- a/gemfiles/ruby_3.3_stripe_8.gemfile +++ b/gemfiles/ruby_3.3_stripe_8.gemfile @@ -21,7 +21,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.3_stripe_8.gemfile.lock b/gemfiles/ruby_3.3_stripe_8.gemfile.lock index 10c3c95fc3f..6ebf4ea78fe 100644 --- a/gemfiles/ruby_3.3_stripe_8.gemfile.lock +++ b/gemfiles/ruby_3.3_stripe_8.gemfile.lock @@ -79,14 +79,14 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) stripe (8.7.0) strscan (3.1.0) @@ -122,7 +122,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) stripe (~> 8) warning (~> 1) diff --git a/gemfiles/ruby_3.3_stripe_9.gemfile b/gemfiles/ruby_3.3_stripe_9.gemfile index d0e06e08f2a..e2ec1cbcf97 100644 --- a/gemfiles/ruby_3.3_stripe_9.gemfile +++ b/gemfiles/ruby_3.3_stripe_9.gemfile @@ -21,7 +21,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.3_stripe_9.gemfile.lock b/gemfiles/ruby_3.3_stripe_9.gemfile.lock index 49aed417129..743b92460df 100644 --- a/gemfiles/ruby_3.3_stripe_9.gemfile.lock +++ b/gemfiles/ruby_3.3_stripe_9.gemfile.lock @@ -79,14 +79,14 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) stripe (9.4.0) strscan (3.1.0) @@ -122,7 +122,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) stripe (~> 9) warning (~> 1) diff --git a/gemfiles/ruby_3.3_stripe_latest.gemfile b/gemfiles/ruby_3.3_stripe_latest.gemfile index 00a02c0e01f..20e7f74829e 100644 --- a/gemfiles/ruby_3.3_stripe_latest.gemfile +++ b/gemfiles/ruby_3.3_stripe_latest.gemfile @@ -21,7 +21,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.3_stripe_latest.gemfile.lock b/gemfiles/ruby_3.3_stripe_latest.gemfile.lock index 5c2cb366a49..a004be5250a 100644 --- a/gemfiles/ruby_3.3_stripe_latest.gemfile.lock +++ b/gemfiles/ruby_3.3_stripe_latest.gemfile.lock @@ -78,7 +78,7 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) @@ -120,7 +120,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) stripe warning (~> 1) diff --git a/gemfiles/ruby_3.3_stripe_min.gemfile b/gemfiles/ruby_3.3_stripe_min.gemfile index 3b331617a10..ecd30900441 100644 --- a/gemfiles/ruby_3.3_stripe_min.gemfile +++ b/gemfiles/ruby_3.3_stripe_min.gemfile @@ -21,7 +21,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.3_stripe_min.gemfile.lock b/gemfiles/ruby_3.3_stripe_min.gemfile.lock index 7450308117c..02b52b9305b 100644 --- a/gemfiles/ruby_3.3_stripe_min.gemfile.lock +++ b/gemfiles/ruby_3.3_stripe_min.gemfile.lock @@ -78,7 +78,7 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) @@ -120,7 +120,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) stripe (= 5.15.0) warning (~> 1) diff --git a/gemfiles/ruby_3.4_activesupport.gemfile b/gemfiles/ruby_3.4_activesupport.gemfile index f4f114ba5e3..e6869914765 100644 --- a/gemfiles/ruby_3.4_activesupport.gemfile +++ b/gemfiles/ruby_3.4_activesupport.gemfile @@ -24,7 +24,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.4_activesupport.gemfile.lock b/gemfiles/ruby_3.4_activesupport.gemfile.lock index f97e6f162f0..cca196e50e5 100644 --- a/gemfiles/ruby_3.4_activesupport.gemfile.lock +++ b/gemfiles/ruby_3.4_activesupport.gemfile.lock @@ -68,7 +68,7 @@ GEM diff-lcs (1.5.1) digest-crc (0.6.5) rake (>= 12.0.0, < 14.0.0) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) drb (2.2.1) dry-core (1.0.1) @@ -210,14 +210,14 @@ GEM ruby-kafka (1.5.0) digest-crc ruby2_keywords (0.0.5) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) stringio (3.1.1) strscan (3.1.1) @@ -268,7 +268,7 @@ DEPENDENCIES rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) ruby-kafka (>= 0.7.10) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.4_aws.gemfile b/gemfiles/ruby_3.4_aws.gemfile index 8d0ad0015d8..9d76777ccd0 100644 --- a/gemfiles/ruby_3.4_aws.gemfile +++ b/gemfiles/ruby_3.4_aws.gemfile @@ -24,7 +24,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.4_aws.gemfile.lock b/gemfiles/ruby_3.4_aws.gemfile.lock index 840ad8dcc6b..52a175a5bdc 100644 --- a/gemfiles/ruby_3.4_aws.gemfile.lock +++ b/gemfiles/ruby_3.4_aws.gemfile.lock @@ -1576,7 +1576,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) ffi (1.17.1-aarch64-linux-gnu) @@ -1633,14 +1633,14 @@ GEM aws-sdk-core (>= 2) concurrent-ruby thor - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) strscan (3.1.1) thor (1.3.1) @@ -1681,7 +1681,7 @@ DEPENDENCIES rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) shoryuken - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.4_contrib.gemfile b/gemfiles/ruby_3.4_contrib.gemfile index bfa5f73836d..271b310ab99 100644 --- a/gemfiles/ruby_3.4_contrib.gemfile +++ b/gemfiles/ruby_3.4_contrib.gemfile @@ -24,7 +24,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.4_contrib.gemfile.lock b/gemfiles/ruby_3.4_contrib.gemfile.lock index cf3e93c45cc..d9e9d273706 100644 --- a/gemfiles/ruby_3.4_contrib.gemfile.lock +++ b/gemfiles/ruby_3.4_contrib.gemfile.lock @@ -35,7 +35,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) ffi (1.17.1-aarch64-linux-gnu) @@ -135,14 +135,14 @@ GEM rack (>= 2.2.4) redis-client (>= 0.19.0) sigdump (0.2.5) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sinatra (4.0.0) mustermann (~> 3.0) @@ -209,7 +209,7 @@ DEPENDENCIES rspec_junit_formatter (>= 0.5.1) semantic_logger (~> 4.0) sidekiq (~> 7) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sneakers (>= 2.12.0) sucker_punch diff --git a/gemfiles/ruby_3.4_contrib_old.gemfile b/gemfiles/ruby_3.4_contrib_old.gemfile index 8658fa2d219..c82aa2d4619 100644 --- a/gemfiles/ruby_3.4_contrib_old.gemfile +++ b/gemfiles/ruby_3.4_contrib_old.gemfile @@ -24,7 +24,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.4_contrib_old.gemfile.lock b/gemfiles/ruby_3.4_contrib_old.gemfile.lock index 644612107b7..916270bfdbe 100644 --- a/gemfiles/ruby_3.4_contrib_old.gemfile.lock +++ b/gemfiles/ruby_3.4_contrib_old.gemfile.lock @@ -33,7 +33,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) eventmachine (1.2.7) extlz4 (0.3.4) @@ -120,14 +120,14 @@ GEM rusage (0.2.0) sentry-raven (0.15.6) faraday (>= 0.7.6) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sinatra (2.0.8.1) mustermann (~> 1.0) @@ -182,7 +182,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.4_core_old.gemfile b/gemfiles/ruby_3.4_core_old.gemfile index 49f40b3d879..c224422e032 100644 --- a/gemfiles/ruby_3.4_core_old.gemfile +++ b/gemfiles/ruby_3.4_core_old.gemfile @@ -24,7 +24,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.4_core_old.gemfile.lock b/gemfiles/ruby_3.4_core_old.gemfile.lock index c5f0934af53..0814e47fa76 100644 --- a/gemfiles/ruby_3.4_core_old.gemfile.lock +++ b/gemfiles/ruby_3.4_core_old.gemfile.lock @@ -28,7 +28,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (4.8.3) extlz4 (0.3.4) ffi (1.17.1-aarch64-linux-gnu) @@ -80,14 +80,14 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) strscan (3.1.1) warning (1.4.0) @@ -125,7 +125,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.4_elasticsearch_7.gemfile b/gemfiles/ruby_3.4_elasticsearch_7.gemfile index 1237f4ea150..a40c65a2559 100644 --- a/gemfiles/ruby_3.4_elasticsearch_7.gemfile +++ b/gemfiles/ruby_3.4_elasticsearch_7.gemfile @@ -24,7 +24,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.4_elasticsearch_7.gemfile.lock b/gemfiles/ruby_3.4_elasticsearch_7.gemfile.lock index 4c4e69f7fed..c2244db36ab 100644 --- a/gemfiles/ruby_3.4_elasticsearch_7.gemfile.lock +++ b/gemfiles/ruby_3.4_elasticsearch_7.gemfile.lock @@ -28,7 +28,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) elasticsearch (7.17.11) elasticsearch-api (= 7.17.11) @@ -100,14 +100,14 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) strscan (3.1.1) uri (1.0.2) @@ -147,7 +147,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.4_elasticsearch_8.gemfile b/gemfiles/ruby_3.4_elasticsearch_8.gemfile index 210175d3987..e3f99c12c5e 100644 --- a/gemfiles/ruby_3.4_elasticsearch_8.gemfile +++ b/gemfiles/ruby_3.4_elasticsearch_8.gemfile @@ -24,7 +24,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.4_elasticsearch_8.gemfile.lock b/gemfiles/ruby_3.4_elasticsearch_8.gemfile.lock index 69f83de14bd..bb445b1a9c1 100644 --- a/gemfiles/ruby_3.4_elasticsearch_8.gemfile.lock +++ b/gemfiles/ruby_3.4_elasticsearch_8.gemfile.lock @@ -28,7 +28,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) elastic-transport (8.3.5) faraday (< 3) @@ -99,14 +99,14 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) strscan (3.1.1) uri (1.0.2) @@ -146,7 +146,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.4_elasticsearch_latest.gemfile b/gemfiles/ruby_3.4_elasticsearch_latest.gemfile index f7693bb269d..2673662fd83 100644 --- a/gemfiles/ruby_3.4_elasticsearch_latest.gemfile +++ b/gemfiles/ruby_3.4_elasticsearch_latest.gemfile @@ -24,7 +24,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.4_elasticsearch_latest.gemfile.lock b/gemfiles/ruby_3.4_elasticsearch_latest.gemfile.lock index 6f71d768e91..4974399b46e 100644 --- a/gemfiles/ruby_3.4_elasticsearch_latest.gemfile.lock +++ b/gemfiles/ruby_3.4_elasticsearch_latest.gemfile.lock @@ -98,7 +98,7 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) @@ -144,7 +144,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.4_graphql_1.13.gemfile b/gemfiles/ruby_3.4_graphql_1.13.gemfile index 504df2e2797..e13a9ecc466 100644 --- a/gemfiles/ruby_3.4_graphql_1.13.gemfile +++ b/gemfiles/ruby_3.4_graphql_1.13.gemfile @@ -24,7 +24,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.4_graphql_1.13.gemfile.lock b/gemfiles/ruby_3.4_graphql_1.13.gemfile.lock index 41141b3d79f..10f76162b6d 100644 --- a/gemfiles/ruby_3.4_graphql_1.13.gemfile.lock +++ b/gemfiles/ruby_3.4_graphql_1.13.gemfile.lock @@ -90,7 +90,7 @@ GEM date (3.3.4) debug_inspector (1.2.0) diff-lcs (1.5.1) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) erubi (1.13.0) extlz4 (0.3.4) @@ -212,14 +212,14 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sprockets (3.7.3) base64 @@ -276,7 +276,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_3.4_graphql_2.0.gemfile b/gemfiles/ruby_3.4_graphql_2.0.gemfile index c5c64a26cd2..5ce3bbfaa72 100644 --- a/gemfiles/ruby_3.4_graphql_2.0.gemfile +++ b/gemfiles/ruby_3.4_graphql_2.0.gemfile @@ -24,7 +24,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.4_graphql_2.0.gemfile.lock b/gemfiles/ruby_3.4_graphql_2.0.gemfile.lock index 6a9bd611a3f..bef0f057d4d 100644 --- a/gemfiles/ruby_3.4_graphql_2.0.gemfile.lock +++ b/gemfiles/ruby_3.4_graphql_2.0.gemfile.lock @@ -90,7 +90,7 @@ GEM date (3.3.4) debug_inspector (1.2.0) diff-lcs (1.5.1) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) erubi (1.13.0) extlz4 (0.3.4) @@ -212,14 +212,14 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sprockets (3.7.3) base64 @@ -276,7 +276,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_3.4_graphql_2.1.gemfile b/gemfiles/ruby_3.4_graphql_2.1.gemfile index 947bd92fefb..8089c9dc192 100644 --- a/gemfiles/ruby_3.4_graphql_2.1.gemfile +++ b/gemfiles/ruby_3.4_graphql_2.1.gemfile @@ -24,7 +24,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.4_graphql_2.1.gemfile.lock b/gemfiles/ruby_3.4_graphql_2.1.gemfile.lock index de15e8374d0..555ed8abb74 100644 --- a/gemfiles/ruby_3.4_graphql_2.1.gemfile.lock +++ b/gemfiles/ruby_3.4_graphql_2.1.gemfile.lock @@ -90,7 +90,7 @@ GEM date (3.3.4) debug_inspector (1.2.0) diff-lcs (1.5.1) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) erubi (1.13.0) extlz4 (0.3.4) @@ -212,14 +212,14 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sprockets (3.7.3) base64 @@ -276,7 +276,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_3.4_graphql_2.2.gemfile b/gemfiles/ruby_3.4_graphql_2.2.gemfile index 027450148c4..89cab724b5a 100644 --- a/gemfiles/ruby_3.4_graphql_2.2.gemfile +++ b/gemfiles/ruby_3.4_graphql_2.2.gemfile @@ -24,7 +24,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.4_graphql_2.2.gemfile.lock b/gemfiles/ruby_3.4_graphql_2.2.gemfile.lock index 6a68bdfe0f8..48f5b098604 100644 --- a/gemfiles/ruby_3.4_graphql_2.2.gemfile.lock +++ b/gemfiles/ruby_3.4_graphql_2.2.gemfile.lock @@ -90,7 +90,7 @@ GEM date (3.3.4) debug_inspector (1.2.0) diff-lcs (1.5.1) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) erubi (1.13.0) extlz4 (0.3.4) @@ -212,14 +212,14 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sprockets (3.7.3) base64 @@ -276,7 +276,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_3.4_graphql_2.3.gemfile b/gemfiles/ruby_3.4_graphql_2.3.gemfile index b92d03d0cbe..18143d2363a 100644 --- a/gemfiles/ruby_3.4_graphql_2.3.gemfile +++ b/gemfiles/ruby_3.4_graphql_2.3.gemfile @@ -24,7 +24,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.4_graphql_2.3.gemfile.lock b/gemfiles/ruby_3.4_graphql_2.3.gemfile.lock index 83371169324..f0ae4254780 100644 --- a/gemfiles/ruby_3.4_graphql_2.3.gemfile.lock +++ b/gemfiles/ruby_3.4_graphql_2.3.gemfile.lock @@ -90,7 +90,7 @@ GEM date (3.3.4) debug_inspector (1.2.0) diff-lcs (1.5.1) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) erubi (1.13.0) extlz4 (0.3.4) @@ -212,14 +212,14 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sprockets (3.7.3) base64 @@ -276,7 +276,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_3.4_http.gemfile b/gemfiles/ruby_3.4_http.gemfile index 9d51dfae5fa..afd976c08e5 100644 --- a/gemfiles/ruby_3.4_http.gemfile +++ b/gemfiles/ruby_3.4_http.gemfile @@ -24,7 +24,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.4_http.gemfile.lock b/gemfiles/ruby_3.4_http.gemfile.lock index c0f7d80afa7..604871bef81 100644 --- a/gemfiles/ruby_3.4_http.gemfile.lock +++ b/gemfiles/ruby_3.4_http.gemfile.lock @@ -28,7 +28,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) domain_name (0.6.20240107) ethon (0.16.0) @@ -116,14 +116,14 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) strscan (3.1.1) typhoeus (1.4.1) @@ -170,7 +170,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) typhoeus warning (~> 1) diff --git a/gemfiles/ruby_3.4_opensearch_2.gemfile b/gemfiles/ruby_3.4_opensearch_2.gemfile index da5447fd7cb..ca91e736186 100644 --- a/gemfiles/ruby_3.4_opensearch_2.gemfile +++ b/gemfiles/ruby_3.4_opensearch_2.gemfile @@ -24,7 +24,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.4_opensearch_2.gemfile.lock b/gemfiles/ruby_3.4_opensearch_2.gemfile.lock index 8a6e10be7ed..aa465bb97ed 100644 --- a/gemfiles/ruby_3.4_opensearch_2.gemfile.lock +++ b/gemfiles/ruby_3.4_opensearch_2.gemfile.lock @@ -28,7 +28,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) faraday (2.12.2) @@ -99,14 +99,14 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) strscan (3.1.1) uri (1.0.2) @@ -146,7 +146,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.4_opensearch_3.gemfile b/gemfiles/ruby_3.4_opensearch_3.gemfile index af95c34319e..41d1e942f72 100644 --- a/gemfiles/ruby_3.4_opensearch_3.gemfile +++ b/gemfiles/ruby_3.4_opensearch_3.gemfile @@ -24,7 +24,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.4_opensearch_3.gemfile.lock b/gemfiles/ruby_3.4_opensearch_3.gemfile.lock index 6bd9ff7563a..3fe71f68a37 100644 --- a/gemfiles/ruby_3.4_opensearch_3.gemfile.lock +++ b/gemfiles/ruby_3.4_opensearch_3.gemfile.lock @@ -28,7 +28,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) faraday (2.12.2) @@ -94,14 +94,14 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) strscan (3.1.1) uri (1.0.2) @@ -141,7 +141,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.4_opensearch_latest.gemfile b/gemfiles/ruby_3.4_opensearch_latest.gemfile index 0595d9e54c1..cb1a007e7d0 100644 --- a/gemfiles/ruby_3.4_opensearch_latest.gemfile +++ b/gemfiles/ruby_3.4_opensearch_latest.gemfile @@ -24,7 +24,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.4_opensearch_latest.gemfile.lock b/gemfiles/ruby_3.4_opensearch_latest.gemfile.lock index bf46f755e95..fbe087a3c97 100644 --- a/gemfiles/ruby_3.4_opensearch_latest.gemfile.lock +++ b/gemfiles/ruby_3.4_opensearch_latest.gemfile.lock @@ -93,7 +93,7 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) @@ -139,7 +139,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.4_opentelemetry.gemfile b/gemfiles/ruby_3.4_opentelemetry.gemfile index f1bd46aca09..bdd759bc2c8 100644 --- a/gemfiles/ruby_3.4_opentelemetry.gemfile +++ b/gemfiles/ruby_3.4_opentelemetry.gemfile @@ -24,7 +24,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.4_opentelemetry.gemfile.lock b/gemfiles/ruby_3.4_opentelemetry.gemfile.lock index cc0380332df..a78bdc6ef2e 100644 --- a/gemfiles/ruby_3.4_opentelemetry.gemfile.lock +++ b/gemfiles/ruby_3.4_opentelemetry.gemfile.lock @@ -28,7 +28,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) ffi (1.17.1-aarch64-linux-gnu) @@ -92,14 +92,14 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) strscan (3.1.1) warning (1.4.0) @@ -138,7 +138,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.4_opentelemetry_otlp.gemfile b/gemfiles/ruby_3.4_opentelemetry_otlp.gemfile index e541029d137..e929b2351ed 100644 --- a/gemfiles/ruby_3.4_opentelemetry_otlp.gemfile +++ b/gemfiles/ruby_3.4_opentelemetry_otlp.gemfile @@ -24,7 +24,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.4_opentelemetry_otlp.gemfile.lock b/gemfiles/ruby_3.4_opentelemetry_otlp.gemfile.lock index 41f215fc0f0..8f38e9be75e 100644 --- a/gemfiles/ruby_3.4_opentelemetry_otlp.gemfile.lock +++ b/gemfiles/ruby_3.4_opentelemetry_otlp.gemfile.lock @@ -100,7 +100,7 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) @@ -146,7 +146,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.4_rack_2.gemfile b/gemfiles/ruby_3.4_rack_2.gemfile index 4d37375eb11..fbb1e7a83db 100644 --- a/gemfiles/ruby_3.4_rack_2.gemfile +++ b/gemfiles/ruby_3.4_rack_2.gemfile @@ -24,7 +24,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.4_rack_2.gemfile.lock b/gemfiles/ruby_3.4_rack_2.gemfile.lock index 3c2d882c0cf..1ac4495a143 100644 --- a/gemfiles/ruby_3.4_rack_2.gemfile.lock +++ b/gemfiles/ruby_3.4_rack_2.gemfile.lock @@ -28,7 +28,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) ffi (1.17.1-aarch64-linux-gnu) @@ -85,14 +85,14 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) strscan (3.1.1) warning (1.4.0) @@ -133,7 +133,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.4_rack_3.gemfile b/gemfiles/ruby_3.4_rack_3.gemfile index 6aa6134698d..7be171f51fd 100644 --- a/gemfiles/ruby_3.4_rack_3.gemfile +++ b/gemfiles/ruby_3.4_rack_3.gemfile @@ -24,7 +24,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.4_rack_3.gemfile.lock b/gemfiles/ruby_3.4_rack_3.gemfile.lock index 42be05c7ed0..edc930dc55a 100644 --- a/gemfiles/ruby_3.4_rack_3.gemfile.lock +++ b/gemfiles/ruby_3.4_rack_3.gemfile.lock @@ -28,7 +28,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) ffi (1.17.1-aarch64-linux-gnu) @@ -85,14 +85,14 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) strscan (3.1.1) warning (1.4.0) @@ -133,7 +133,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.4_rack_latest.gemfile b/gemfiles/ruby_3.4_rack_latest.gemfile index d64f02bcb3f..6f73ec85e69 100644 --- a/gemfiles/ruby_3.4_rack_latest.gemfile +++ b/gemfiles/ruby_3.4_rack_latest.gemfile @@ -24,7 +24,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.4_rack_latest.gemfile.lock b/gemfiles/ruby_3.4_rack_latest.gemfile.lock index dfbcd3fbda5..cf1578cac8f 100644 --- a/gemfiles/ruby_3.4_rack_latest.gemfile.lock +++ b/gemfiles/ruby_3.4_rack_latest.gemfile.lock @@ -84,7 +84,7 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) @@ -131,7 +131,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.4_rails61_mysql2.gemfile b/gemfiles/ruby_3.4_rails61_mysql2.gemfile index 8b2103c478b..9b240019d44 100644 --- a/gemfiles/ruby_3.4_rails61_mysql2.gemfile +++ b/gemfiles/ruby_3.4_rails61_mysql2.gemfile @@ -24,7 +24,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.4_rails61_mysql2.gemfile.lock b/gemfiles/ruby_3.4_rails61_mysql2.gemfile.lock index fc15081c378..5070f72c93c 100644 --- a/gemfiles/ruby_3.4_rails61_mysql2.gemfile.lock +++ b/gemfiles/ruby_3.4_rails61_mysql2.gemfile.lock @@ -90,7 +90,7 @@ GEM date (3.3.4) debug_inspector (1.2.0) diff-lcs (1.5.1) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) erubi (1.13.0) extlz4 (0.3.4) @@ -211,14 +211,14 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sprockets (3.7.3) base64 @@ -276,7 +276,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_3.4_rails61_postgres.gemfile b/gemfiles/ruby_3.4_rails61_postgres.gemfile index cf7ce6d49e5..20fa9b62003 100644 --- a/gemfiles/ruby_3.4_rails61_postgres.gemfile +++ b/gemfiles/ruby_3.4_rails61_postgres.gemfile @@ -24,7 +24,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.4_rails61_postgres.gemfile.lock b/gemfiles/ruby_3.4_rails61_postgres.gemfile.lock index ecec4a62040..984db368c89 100644 --- a/gemfiles/ruby_3.4_rails61_postgres.gemfile.lock +++ b/gemfiles/ruby_3.4_rails61_postgres.gemfile.lock @@ -90,7 +90,7 @@ GEM date (3.3.4) debug_inspector (1.2.0) diff-lcs (1.5.1) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) erubi (1.13.0) extlz4 (0.3.4) @@ -211,14 +211,14 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sprockets (3.7.3) base64 @@ -276,7 +276,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_3.4_rails61_postgres_redis.gemfile b/gemfiles/ruby_3.4_rails61_postgres_redis.gemfile index a46d6d80df4..d70af7438e7 100644 --- a/gemfiles/ruby_3.4_rails61_postgres_redis.gemfile +++ b/gemfiles/ruby_3.4_rails61_postgres_redis.gemfile @@ -24,7 +24,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.4_rails61_postgres_redis.gemfile.lock b/gemfiles/ruby_3.4_rails61_postgres_redis.gemfile.lock index e20312bfc67..99cf47661d5 100644 --- a/gemfiles/ruby_3.4_rails61_postgres_redis.gemfile.lock +++ b/gemfiles/ruby_3.4_rails61_postgres_redis.gemfile.lock @@ -90,7 +90,7 @@ GEM date (3.3.4) debug_inspector (1.2.0) diff-lcs (1.5.1) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) erubi (1.13.0) extlz4 (0.3.4) @@ -212,14 +212,14 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sprockets (3.7.3) base64 @@ -278,7 +278,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_3.4_rails61_postgres_sidekiq.gemfile b/gemfiles/ruby_3.4_rails61_postgres_sidekiq.gemfile index b481e14fc45..1321af2a5db 100644 --- a/gemfiles/ruby_3.4_rails61_postgres_sidekiq.gemfile +++ b/gemfiles/ruby_3.4_rails61_postgres_sidekiq.gemfile @@ -24,7 +24,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.4_rails61_postgres_sidekiq.gemfile.lock b/gemfiles/ruby_3.4_rails61_postgres_sidekiq.gemfile.lock index c21d4cb2429..5af12cdc0eb 100644 --- a/gemfiles/ruby_3.4_rails61_postgres_sidekiq.gemfile.lock +++ b/gemfiles/ruby_3.4_rails61_postgres_sidekiq.gemfile.lock @@ -91,7 +91,7 @@ GEM date (3.3.4) debug_inspector (1.2.0) diff-lcs (1.5.1) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) erubi (1.13.0) extlz4 (0.3.4) @@ -225,14 +225,14 @@ GEM connection_pool (>= 2.3.0) rack (>= 2.2.4) redis-client (>= 0.19.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sprockets (3.7.3) base64 @@ -292,7 +292,7 @@ DEPENDENCIES rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) sidekiq (>= 6.1.2) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_3.4_rails61_semantic_logger.gemfile b/gemfiles/ruby_3.4_rails61_semantic_logger.gemfile index d55babb46c4..acfd7aff0c4 100644 --- a/gemfiles/ruby_3.4_rails61_semantic_logger.gemfile +++ b/gemfiles/ruby_3.4_rails61_semantic_logger.gemfile @@ -24,7 +24,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.4_rails61_semantic_logger.gemfile.lock b/gemfiles/ruby_3.4_rails61_semantic_logger.gemfile.lock index 3be10c50b06..7f3c57c47a6 100644 --- a/gemfiles/ruby_3.4_rails61_semantic_logger.gemfile.lock +++ b/gemfiles/ruby_3.4_rails61_semantic_logger.gemfile.lock @@ -90,7 +90,7 @@ GEM date (3.3.4) debug_inspector (1.2.0) diff-lcs (1.5.1) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) erubi (1.13.0) extlz4 (0.3.4) @@ -210,14 +210,14 @@ GEM rspec-core (>= 2, < 4, != 2.12.0) semantic_logger (4.15.0) concurrent-ruby (~> 1.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sprockets (3.7.3) base64 @@ -275,7 +275,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sprockets (< 4) warning (~> 1) diff --git a/gemfiles/ruby_3.4_rails61_trilogy.gemfile b/gemfiles/ruby_3.4_rails61_trilogy.gemfile index c4da7ecbde2..8df22b19ea7 100644 --- a/gemfiles/ruby_3.4_rails61_trilogy.gemfile +++ b/gemfiles/ruby_3.4_rails61_trilogy.gemfile @@ -24,7 +24,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.4_rails61_trilogy.gemfile.lock b/gemfiles/ruby_3.4_rails61_trilogy.gemfile.lock index 354d0f444f9..5fc8c6c502c 100644 --- a/gemfiles/ruby_3.4_rails61_trilogy.gemfile.lock +++ b/gemfiles/ruby_3.4_rails61_trilogy.gemfile.lock @@ -93,7 +93,7 @@ GEM date (3.3.4) debug_inspector (1.2.0) diff-lcs (1.5.1) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) erubi (1.13.0) extlz4 (0.3.4) @@ -213,14 +213,14 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sprockets (3.7.3) base64 @@ -279,7 +279,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sprockets (< 4) trilogy diff --git a/gemfiles/ruby_3.4_rails7.gemfile b/gemfiles/ruby_3.4_rails7.gemfile index 64bb8db6aca..4002c8b9658 100644 --- a/gemfiles/ruby_3.4_rails7.gemfile +++ b/gemfiles/ruby_3.4_rails7.gemfile @@ -24,7 +24,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.4_rails7.gemfile.lock b/gemfiles/ruby_3.4_rails7.gemfile.lock index f2cdd4df253..5c6c2cd4d9a 100644 --- a/gemfiles/ruby_3.4_rails7.gemfile.lock +++ b/gemfiles/ruby_3.4_rails7.gemfile.lock @@ -213,14 +213,14 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) strscan (3.1.1) thor (1.3.1) @@ -268,7 +268,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.4_rails71.gemfile b/gemfiles/ruby_3.4_rails71.gemfile index 07f4a7a98ef..163bbe2f3a2 100644 --- a/gemfiles/ruby_3.4_rails71.gemfile +++ b/gemfiles/ruby_3.4_rails71.gemfile @@ -24,7 +24,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.4_rails71.gemfile.lock b/gemfiles/ruby_3.4_rails71.gemfile.lock index 2ca790ddad6..d941a896de3 100644 --- a/gemfiles/ruby_3.4_rails71.gemfile.lock +++ b/gemfiles/ruby_3.4_rails71.gemfile.lock @@ -240,14 +240,14 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) stringio (3.1.1) strscan (3.1.1) @@ -296,7 +296,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.4_rails_old_redis.gemfile b/gemfiles/ruby_3.4_rails_old_redis.gemfile index 147f45a317b..c9cff7f489f 100644 --- a/gemfiles/ruby_3.4_rails_old_redis.gemfile +++ b/gemfiles/ruby_3.4_rails_old_redis.gemfile @@ -24,7 +24,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.4_redis_3.gemfile b/gemfiles/ruby_3.4_redis_3.gemfile index 31746f661d6..743ffc895de 100644 --- a/gemfiles/ruby_3.4_redis_3.gemfile +++ b/gemfiles/ruby_3.4_redis_3.gemfile @@ -24,7 +24,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.4_redis_3.gemfile.lock b/gemfiles/ruby_3.4_redis_3.gemfile.lock index 3ca823ebab6..7d7a97ffc17 100644 --- a/gemfiles/ruby_3.4_redis_3.gemfile.lock +++ b/gemfiles/ruby_3.4_redis_3.gemfile.lock @@ -28,7 +28,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) ffi (1.17.1-aarch64-linux-gnu) @@ -81,14 +81,14 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) strscan (3.1.1) warning (1.4.0) @@ -127,7 +127,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.4_redis_4.gemfile b/gemfiles/ruby_3.4_redis_4.gemfile index 5bd31e37398..69b09555285 100644 --- a/gemfiles/ruby_3.4_redis_4.gemfile +++ b/gemfiles/ruby_3.4_redis_4.gemfile @@ -24,7 +24,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.4_redis_4.gemfile.lock b/gemfiles/ruby_3.4_redis_4.gemfile.lock index 31b70853fd0..2324eb29482 100644 --- a/gemfiles/ruby_3.4_redis_4.gemfile.lock +++ b/gemfiles/ruby_3.4_redis_4.gemfile.lock @@ -28,7 +28,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) ffi (1.17.1-aarch64-linux-gnu) @@ -81,14 +81,14 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) strscan (3.1.1) warning (1.4.0) @@ -127,7 +127,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.4_redis_5.gemfile b/gemfiles/ruby_3.4_redis_5.gemfile index 78c7941b735..191099a907a 100644 --- a/gemfiles/ruby_3.4_redis_5.gemfile +++ b/gemfiles/ruby_3.4_redis_5.gemfile @@ -24,7 +24,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.4_redis_5.gemfile.lock b/gemfiles/ruby_3.4_redis_5.gemfile.lock index 20ff6350563..d5df5320c7a 100644 --- a/gemfiles/ruby_3.4_redis_5.gemfile.lock +++ b/gemfiles/ruby_3.4_redis_5.gemfile.lock @@ -29,7 +29,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) ffi (1.17.1-aarch64-linux-gnu) @@ -85,14 +85,14 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) strscan (3.1.1) warning (1.4.0) @@ -131,7 +131,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.4_relational_db.gemfile b/gemfiles/ruby_3.4_relational_db.gemfile index 85f8804a529..48605fece62 100644 --- a/gemfiles/ruby_3.4_relational_db.gemfile +++ b/gemfiles/ruby_3.4_relational_db.gemfile @@ -24,7 +24,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.4_relational_db.gemfile.lock b/gemfiles/ruby_3.4_relational_db.gemfile.lock index fed9809081c..64e14ae1044 100644 --- a/gemfiles/ruby_3.4_relational_db.gemfile.lock +++ b/gemfiles/ruby_3.4_relational_db.gemfile.lock @@ -104,7 +104,7 @@ GEM rspec-core (>= 2, < 4, != 2.12.0) sequel (5.86.0) bigdecimal - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) @@ -160,7 +160,7 @@ DEPENDENCIES rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) sequel - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sqlite3 (~> 1.4) trilogy diff --git a/gemfiles/ruby_3.4_resque2_redis3.gemfile b/gemfiles/ruby_3.4_resque2_redis3.gemfile index e2ec06ac0fe..7e01154b09e 100644 --- a/gemfiles/ruby_3.4_resque2_redis3.gemfile +++ b/gemfiles/ruby_3.4_resque2_redis3.gemfile @@ -24,7 +24,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.4_resque2_redis3.gemfile.lock b/gemfiles/ruby_3.4_resque2_redis3.gemfile.lock index a50d6bcb878..01fda47ea33 100644 --- a/gemfiles/ruby_3.4_resque2_redis3.gemfile.lock +++ b/gemfiles/ruby_3.4_resque2_redis3.gemfile.lock @@ -28,7 +28,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) ffi (1.17.1-aarch64-linux-gnu) @@ -99,14 +99,14 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby2_keywords (0.0.5) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sinatra (4.0.0) mustermann (~> 3.0) @@ -153,7 +153,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.4_resque2_redis4.gemfile b/gemfiles/ruby_3.4_resque2_redis4.gemfile index 0485f8c591b..527a496ec87 100644 --- a/gemfiles/ruby_3.4_resque2_redis4.gemfile +++ b/gemfiles/ruby_3.4_resque2_redis4.gemfile @@ -24,7 +24,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.4_resque2_redis4.gemfile.lock b/gemfiles/ruby_3.4_resque2_redis4.gemfile.lock index c4459a75c6f..ca7fe282d51 100644 --- a/gemfiles/ruby_3.4_resque2_redis4.gemfile.lock +++ b/gemfiles/ruby_3.4_resque2_redis4.gemfile.lock @@ -29,7 +29,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) ffi (1.17.1-aarch64-linux-gnu) @@ -103,14 +103,14 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby2_keywords (0.0.5) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sinatra (4.0.0) mustermann (~> 3.0) @@ -157,7 +157,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) warning (~> 1) webmock (>= 3.10.0) diff --git a/gemfiles/ruby_3.4_sinatra_2.gemfile b/gemfiles/ruby_3.4_sinatra_2.gemfile index 71b06b59ebe..737ee48b7d7 100644 --- a/gemfiles/ruby_3.4_sinatra_2.gemfile +++ b/gemfiles/ruby_3.4_sinatra_2.gemfile @@ -24,7 +24,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.4_sinatra_2.gemfile.lock b/gemfiles/ruby_3.4_sinatra_2.gemfile.lock index f98c889030f..d2870a4337e 100644 --- a/gemfiles/ruby_3.4_sinatra_2.gemfile.lock +++ b/gemfiles/ruby_3.4_sinatra_2.gemfile.lock @@ -28,7 +28,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) ffi (1.17.1-aarch64-linux-gnu) @@ -90,14 +90,14 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby2_keywords (0.0.5) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sinatra (2.2.4) mustermann (~> 2.0) @@ -143,7 +143,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sinatra (~> 2) warning (~> 1) diff --git a/gemfiles/ruby_3.4_sinatra_3.gemfile b/gemfiles/ruby_3.4_sinatra_3.gemfile index 4b3618149df..307595f2355 100644 --- a/gemfiles/ruby_3.4_sinatra_3.gemfile +++ b/gemfiles/ruby_3.4_sinatra_3.gemfile @@ -24,7 +24,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.4_sinatra_3.gemfile.lock b/gemfiles/ruby_3.4_sinatra_3.gemfile.lock index 7d11916788c..0b494a55fdd 100644 --- a/gemfiles/ruby_3.4_sinatra_3.gemfile.lock +++ b/gemfiles/ruby_3.4_sinatra_3.gemfile.lock @@ -28,7 +28,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) ffi (1.17.1-aarch64-linux-gnu) @@ -91,14 +91,14 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby2_keywords (0.0.5) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sinatra (3.2.0) mustermann (~> 3.0) @@ -144,7 +144,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sinatra (~> 3) warning (~> 1) diff --git a/gemfiles/ruby_3.4_sinatra_4.gemfile b/gemfiles/ruby_3.4_sinatra_4.gemfile index 333a97ebf5d..95b56dca27a 100644 --- a/gemfiles/ruby_3.4_sinatra_4.gemfile +++ b/gemfiles/ruby_3.4_sinatra_4.gemfile @@ -24,7 +24,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.4_sinatra_4.gemfile.lock b/gemfiles/ruby_3.4_sinatra_4.gemfile.lock index 8f4e54eb64f..23d3a1acf1a 100644 --- a/gemfiles/ruby_3.4_sinatra_4.gemfile.lock +++ b/gemfiles/ruby_3.4_sinatra_4.gemfile.lock @@ -28,7 +28,7 @@ GEM datadog-ruby_core_source (3.3.7) debug_inspector (1.2.0) diff-lcs (1.5.1) - docile (1.4.0) + docile (1.4.1) dogstatsd-ruby (5.6.1) extlz4 (0.3.4) ffi (1.17.1-aarch64-linux-gnu) @@ -93,14 +93,14 @@ GEM rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) ruby2_keywords (0.0.5) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sinatra (4.0.0) mustermann (~> 3.0) @@ -147,7 +147,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) sinatra (~> 4) warning (~> 1) diff --git a/gemfiles/ruby_3.4_stripe_10.gemfile b/gemfiles/ruby_3.4_stripe_10.gemfile index 1953837d69f..39b2db63601 100644 --- a/gemfiles/ruby_3.4_stripe_10.gemfile +++ b/gemfiles/ruby_3.4_stripe_10.gemfile @@ -24,7 +24,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.4_stripe_10.gemfile.lock b/gemfiles/ruby_3.4_stripe_10.gemfile.lock index a4bf97ffa24..4c115714bd9 100644 --- a/gemfiles/ruby_3.4_stripe_10.gemfile.lock +++ b/gemfiles/ruby_3.4_stripe_10.gemfile.lock @@ -80,14 +80,14 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) stripe (10.15.0) strscan (3.1.1) @@ -126,7 +126,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) stripe (~> 10) warning (~> 1) diff --git a/gemfiles/ruby_3.4_stripe_11.gemfile b/gemfiles/ruby_3.4_stripe_11.gemfile index c1cc8ce4efd..13efcba095a 100644 --- a/gemfiles/ruby_3.4_stripe_11.gemfile +++ b/gemfiles/ruby_3.4_stripe_11.gemfile @@ -24,7 +24,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.4_stripe_11.gemfile.lock b/gemfiles/ruby_3.4_stripe_11.gemfile.lock index 5fb68173d0e..3bd9379200a 100644 --- a/gemfiles/ruby_3.4_stripe_11.gemfile.lock +++ b/gemfiles/ruby_3.4_stripe_11.gemfile.lock @@ -80,14 +80,14 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) stripe (11.7.0) strscan (3.1.1) @@ -126,7 +126,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) stripe (~> 11) warning (~> 1) diff --git a/gemfiles/ruby_3.4_stripe_12.gemfile b/gemfiles/ruby_3.4_stripe_12.gemfile index 446b0c9ca51..35003a4a9a7 100644 --- a/gemfiles/ruby_3.4_stripe_12.gemfile +++ b/gemfiles/ruby_3.4_stripe_12.gemfile @@ -24,7 +24,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.4_stripe_12.gemfile.lock b/gemfiles/ruby_3.4_stripe_12.gemfile.lock index 2d7ca5d0223..fa58e6fdaa5 100644 --- a/gemfiles/ruby_3.4_stripe_12.gemfile.lock +++ b/gemfiles/ruby_3.4_stripe_12.gemfile.lock @@ -80,14 +80,14 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) stripe (12.6.0) strscan (3.1.1) @@ -126,7 +126,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) stripe (~> 12) warning (~> 1) diff --git a/gemfiles/ruby_3.4_stripe_7.gemfile b/gemfiles/ruby_3.4_stripe_7.gemfile index 90c9a0923f1..a5bb4fed37e 100644 --- a/gemfiles/ruby_3.4_stripe_7.gemfile +++ b/gemfiles/ruby_3.4_stripe_7.gemfile @@ -24,7 +24,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.4_stripe_7.gemfile.lock b/gemfiles/ruby_3.4_stripe_7.gemfile.lock index d555e1155c9..639104913b1 100644 --- a/gemfiles/ruby_3.4_stripe_7.gemfile.lock +++ b/gemfiles/ruby_3.4_stripe_7.gemfile.lock @@ -80,14 +80,14 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) stripe (7.1.0) strscan (3.1.1) @@ -126,7 +126,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) stripe (~> 7) warning (~> 1) diff --git a/gemfiles/ruby_3.4_stripe_8.gemfile b/gemfiles/ruby_3.4_stripe_8.gemfile index 9f5c085907d..cdf004ab5b2 100644 --- a/gemfiles/ruby_3.4_stripe_8.gemfile +++ b/gemfiles/ruby_3.4_stripe_8.gemfile @@ -24,7 +24,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.4_stripe_8.gemfile.lock b/gemfiles/ruby_3.4_stripe_8.gemfile.lock index 631564d8bfb..6ec99a03c26 100644 --- a/gemfiles/ruby_3.4_stripe_8.gemfile.lock +++ b/gemfiles/ruby_3.4_stripe_8.gemfile.lock @@ -80,14 +80,14 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) stripe (8.7.0) strscan (3.1.1) @@ -126,7 +126,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) stripe (~> 8) warning (~> 1) diff --git a/gemfiles/ruby_3.4_stripe_9.gemfile b/gemfiles/ruby_3.4_stripe_9.gemfile index b24d5808452..57e7afb422c 100644 --- a/gemfiles/ruby_3.4_stripe_9.gemfile +++ b/gemfiles/ruby_3.4_stripe_9.gemfile @@ -24,7 +24,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.4_stripe_9.gemfile.lock b/gemfiles/ruby_3.4_stripe_9.gemfile.lock index d1c96dd6c93..e09d56b63b1 100644 --- a/gemfiles/ruby_3.4_stripe_9.gemfile.lock +++ b/gemfiles/ruby_3.4_stripe_9.gemfile.lock @@ -80,14 +80,14 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (2.1.0) rexml simplecov (~> 0.19) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) stripe (9.4.0) strscan (3.1.1) @@ -126,7 +126,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) stripe (~> 9) warning (~> 1) diff --git a/gemfiles/ruby_3.4_stripe_latest.gemfile b/gemfiles/ruby_3.4_stripe_latest.gemfile index 182c5244d36..d43aeb67d4e 100644 --- a/gemfiles/ruby_3.4_stripe_latest.gemfile +++ b/gemfiles/ruby_3.4_stripe_latest.gemfile @@ -24,7 +24,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.4_stripe_latest.gemfile.lock b/gemfiles/ruby_3.4_stripe_latest.gemfile.lock index 807a87dc8e0..9a1837f92a9 100644 --- a/gemfiles/ruby_3.4_stripe_latest.gemfile.lock +++ b/gemfiles/ruby_3.4_stripe_latest.gemfile.lock @@ -79,7 +79,7 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) @@ -124,7 +124,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) stripe warning (~> 1) diff --git a/gemfiles/ruby_3.4_stripe_min.gemfile b/gemfiles/ruby_3.4_stripe_min.gemfile index 4f70a72af07..47ae250af75 100644 --- a/gemfiles/ruby_3.4_stripe_min.gemfile +++ b/gemfiles/ruby_3.4_stripe_min.gemfile @@ -24,7 +24,7 @@ gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" -gem "simplecov" +gem "simplecov", "~> 0.22.0" gem "simplecov-cobertura", "~> 2.1.0" gem "warning", "~> 1" gem "webmock", ">= 3.10.0" diff --git a/gemfiles/ruby_3.4_stripe_min.gemfile.lock b/gemfiles/ruby_3.4_stripe_min.gemfile.lock index 6a039a2b0d3..2c8e4f5450a 100644 --- a/gemfiles/ruby_3.4_stripe_min.gemfile.lock +++ b/gemfiles/ruby_3.4_stripe_min.gemfile.lock @@ -79,7 +79,7 @@ GEM rspec (>= 3.0) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - simplecov (0.21.2) + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) @@ -124,7 +124,7 @@ DEPENDENCIES rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) - simplecov + simplecov (~> 0.22.0) simplecov-cobertura (~> 2.1.0) stripe (= 5.15.0) warning (~> 1) From c8561454de02807056362375027822a1678af478 Mon Sep 17 00:00:00 2001 From: Oleg Pudeyev <156273877+p-datadog@users.noreply.github.com> Date: Fri, 10 Jan 2025 17:09:49 -0500 Subject: [PATCH 133/161] DEBUG-3249 remove usage of OpenStruct in DI (#4274) --- gemfiles/ruby_3.4_activesupport.gemfile | 4 ++++ gemfiles/ruby_3.4_activesupport.gemfile.lock | 2 ++ gemfiles/ruby_3.4_aws.gemfile | 4 ++++ gemfiles/ruby_3.4_aws.gemfile.lock | 2 ++ gemfiles/ruby_3.4_contrib.gemfile | 4 ++++ gemfiles/ruby_3.4_contrib.gemfile.lock | 2 ++ gemfiles/ruby_3.4_contrib_old.gemfile | 4 ++++ gemfiles/ruby_3.4_contrib_old.gemfile.lock | 2 ++ gemfiles/ruby_3.4_core_old.gemfile | 4 ++++ gemfiles/ruby_3.4_core_old.gemfile.lock | 2 ++ gemfiles/ruby_3.4_elasticsearch_7.gemfile | 4 ++++ gemfiles/ruby_3.4_elasticsearch_7.gemfile.lock | 2 ++ gemfiles/ruby_3.4_elasticsearch_8.gemfile | 4 ++++ gemfiles/ruby_3.4_elasticsearch_8.gemfile.lock | 2 ++ gemfiles/ruby_3.4_elasticsearch_latest.gemfile | 4 ++++ gemfiles/ruby_3.4_elasticsearch_latest.gemfile.lock | 2 ++ gemfiles/ruby_3.4_graphql_1.13.gemfile | 4 ++++ gemfiles/ruby_3.4_graphql_1.13.gemfile.lock | 2 ++ gemfiles/ruby_3.4_graphql_2.0.gemfile | 4 ++++ gemfiles/ruby_3.4_graphql_2.0.gemfile.lock | 2 ++ gemfiles/ruby_3.4_graphql_2.1.gemfile | 4 ++++ gemfiles/ruby_3.4_graphql_2.1.gemfile.lock | 2 ++ gemfiles/ruby_3.4_graphql_2.2.gemfile | 4 ++++ gemfiles/ruby_3.4_graphql_2.2.gemfile.lock | 2 ++ gemfiles/ruby_3.4_graphql_2.3.gemfile | 4 ++++ gemfiles/ruby_3.4_graphql_2.3.gemfile.lock | 2 ++ gemfiles/ruby_3.4_http.gemfile | 4 ++++ gemfiles/ruby_3.4_http.gemfile.lock | 2 ++ gemfiles/ruby_3.4_opensearch_2.gemfile | 4 ++++ gemfiles/ruby_3.4_opensearch_2.gemfile.lock | 2 ++ gemfiles/ruby_3.4_opensearch_3.gemfile | 4 ++++ gemfiles/ruby_3.4_opensearch_3.gemfile.lock | 2 ++ gemfiles/ruby_3.4_opensearch_latest.gemfile | 4 ++++ gemfiles/ruby_3.4_opensearch_latest.gemfile.lock | 2 ++ gemfiles/ruby_3.4_opentelemetry.gemfile | 4 ++++ gemfiles/ruby_3.4_opentelemetry.gemfile.lock | 2 ++ gemfiles/ruby_3.4_opentelemetry_otlp.gemfile | 4 ++++ gemfiles/ruby_3.4_opentelemetry_otlp.gemfile.lock | 2 ++ gemfiles/ruby_3.4_rack_2.gemfile | 4 ++++ gemfiles/ruby_3.4_rack_2.gemfile.lock | 2 ++ gemfiles/ruby_3.4_rack_3.gemfile | 4 ++++ gemfiles/ruby_3.4_rack_3.gemfile.lock | 2 ++ gemfiles/ruby_3.4_rack_latest.gemfile | 4 ++++ gemfiles/ruby_3.4_rack_latest.gemfile.lock | 2 ++ gemfiles/ruby_3.4_rails61_mysql2.gemfile | 4 ++++ gemfiles/ruby_3.4_rails61_mysql2.gemfile.lock | 2 ++ gemfiles/ruby_3.4_rails61_postgres.gemfile | 4 ++++ gemfiles/ruby_3.4_rails61_postgres.gemfile.lock | 2 ++ gemfiles/ruby_3.4_rails61_postgres_redis.gemfile | 4 ++++ gemfiles/ruby_3.4_rails61_postgres_redis.gemfile.lock | 2 ++ gemfiles/ruby_3.4_rails61_postgres_sidekiq.gemfile | 4 ++++ gemfiles/ruby_3.4_rails61_postgres_sidekiq.gemfile.lock | 2 ++ gemfiles/ruby_3.4_rails61_semantic_logger.gemfile | 4 ++++ gemfiles/ruby_3.4_rails61_semantic_logger.gemfile.lock | 2 ++ gemfiles/ruby_3.4_rails61_trilogy.gemfile | 4 ++++ gemfiles/ruby_3.4_rails61_trilogy.gemfile.lock | 2 ++ gemfiles/ruby_3.4_rails7.gemfile | 4 ++++ gemfiles/ruby_3.4_rails7.gemfile.lock | 7 ++----- gemfiles/ruby_3.4_rails71.gemfile | 4 ++++ gemfiles/ruby_3.4_rails71.gemfile.lock | 7 ++----- gemfiles/ruby_3.4_rails_old_redis.gemfile | 4 ++++ gemfiles/ruby_3.4_redis_3.gemfile | 4 ++++ gemfiles/ruby_3.4_redis_3.gemfile.lock | 2 ++ gemfiles/ruby_3.4_redis_4.gemfile | 4 ++++ gemfiles/ruby_3.4_redis_4.gemfile.lock | 2 ++ gemfiles/ruby_3.4_redis_5.gemfile | 4 ++++ gemfiles/ruby_3.4_redis_5.gemfile.lock | 2 ++ gemfiles/ruby_3.4_relational_db.gemfile | 4 ++++ gemfiles/ruby_3.4_relational_db.gemfile.lock | 2 ++ gemfiles/ruby_3.4_resque2_redis3.gemfile | 4 ++++ gemfiles/ruby_3.4_resque2_redis3.gemfile.lock | 2 ++ gemfiles/ruby_3.4_resque2_redis4.gemfile | 4 ++++ gemfiles/ruby_3.4_resque2_redis4.gemfile.lock | 2 ++ gemfiles/ruby_3.4_sinatra_2.gemfile | 4 ++++ gemfiles/ruby_3.4_sinatra_2.gemfile.lock | 2 ++ gemfiles/ruby_3.4_sinatra_3.gemfile | 4 ++++ gemfiles/ruby_3.4_sinatra_3.gemfile.lock | 2 ++ gemfiles/ruby_3.4_sinatra_4.gemfile | 4 ++++ gemfiles/ruby_3.4_sinatra_4.gemfile.lock | 2 ++ gemfiles/ruby_3.4_stripe_10.gemfile | 4 ++++ gemfiles/ruby_3.4_stripe_10.gemfile.lock | 2 ++ gemfiles/ruby_3.4_stripe_11.gemfile | 4 ++++ gemfiles/ruby_3.4_stripe_11.gemfile.lock | 2 ++ gemfiles/ruby_3.4_stripe_12.gemfile | 4 ++++ gemfiles/ruby_3.4_stripe_12.gemfile.lock | 2 ++ gemfiles/ruby_3.4_stripe_7.gemfile | 4 ++++ gemfiles/ruby_3.4_stripe_7.gemfile.lock | 2 ++ gemfiles/ruby_3.4_stripe_8.gemfile | 4 ++++ gemfiles/ruby_3.4_stripe_8.gemfile.lock | 2 ++ gemfiles/ruby_3.4_stripe_9.gemfile | 4 ++++ gemfiles/ruby_3.4_stripe_9.gemfile.lock | 2 ++ gemfiles/ruby_3.4_stripe_latest.gemfile | 4 ++++ gemfiles/ruby_3.4_stripe_latest.gemfile.lock | 2 ++ gemfiles/ruby_3.4_stripe_min.gemfile | 4 ++++ gemfiles/ruby_3.4_stripe_min.gemfile.lock | 2 ++ integration/apps/hanami/Gemfile | 1 + .../apps/hanami/apps/acme/controllers/books/index.rb | 2 ++ lib/datadog/di/transport.rb | 5 +---- ruby-3.4.gemfile | 6 ++++++ ruby-3.5.gemfile | 4 +++- spec/datadog/core/remote/transport/integration_spec.rb | 1 + .../di/integration/everything_from_remote_config_spec.rb | 1 - .../tracing/contrib/graphql/support/application_schema.rb | 1 + .../tracing/contrib/graphql/test_schema_examples.rb | 1 + spec/datadog/tracing/contrib/rails/log_injection_spec.rb | 1 + .../tracing/contrib/rails/support/log_configuration.rb | 1 + 106 files changed, 304 insertions(+), 16 deletions(-) diff --git a/gemfiles/ruby_3.4_activesupport.gemfile b/gemfiles/ruby_3.4_activesupport.gemfile index e6869914765..68bdf1c52f2 100644 --- a/gemfiles/ruby_3.4_activesupport.gemfile +++ b/gemfiles/ruby_3.4_activesupport.gemfile @@ -46,4 +46,8 @@ group :dev do end +group :test do + gem "ostruct" +end + gemspec path: "../" diff --git a/gemfiles/ruby_3.4_activesupport.gemfile.lock b/gemfiles/ruby_3.4_activesupport.gemfile.lock index cca196e50e5..8495339a4ee 100644 --- a/gemfiles/ruby_3.4_activesupport.gemfile.lock +++ b/gemfiles/ruby_3.4_activesupport.gemfile.lock @@ -136,6 +136,7 @@ GEM mini_portile2 (~> 2.8.2) racc (~> 1.4) os (1.1.4) + ostruct (0.6.1) pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -257,6 +258,7 @@ DEPENDENCIES memory_profiler (~> 0.9) mutex_m os (~> 1.1) + ostruct pimpmychangelog (>= 0.1.2) pry pry-stack_explorer diff --git a/gemfiles/ruby_3.4_aws.gemfile b/gemfiles/ruby_3.4_aws.gemfile index 9d76777ccd0..10338fcd002 100644 --- a/gemfiles/ruby_3.4_aws.gemfile +++ b/gemfiles/ruby_3.4_aws.gemfile @@ -40,4 +40,8 @@ group :dev do end +group :test do + gem "ostruct" +end + gemspec path: "../" diff --git a/gemfiles/ruby_3.4_aws.gemfile.lock b/gemfiles/ruby_3.4_aws.gemfile.lock index 52a175a5bdc..b8b7f7fcf8f 100644 --- a/gemfiles/ruby_3.4_aws.gemfile.lock +++ b/gemfiles/ruby_3.4_aws.gemfile.lock @@ -1597,6 +1597,7 @@ GEM msgpack (1.7.5) mutex_m (0.2.0) os (1.1.4) + ostruct (0.6.1) pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -1671,6 +1672,7 @@ DEPENDENCIES memory_profiler (~> 0.9) mutex_m os (~> 1.1) + ostruct pimpmychangelog (>= 0.1.2) pry pry-stack_explorer diff --git a/gemfiles/ruby_3.4_contrib.gemfile b/gemfiles/ruby_3.4_contrib.gemfile index 271b310ab99..06a2e060ca9 100644 --- a/gemfiles/ruby_3.4_contrib.gemfile +++ b/gemfiles/ruby_3.4_contrib.gemfile @@ -50,4 +50,8 @@ group :dev do end +group :test do + gem "ostruct" +end + gemspec path: "../" diff --git a/gemfiles/ruby_3.4_contrib.gemfile.lock b/gemfiles/ruby_3.4_contrib.gemfile.lock index d9e9d273706..aa823a670c0 100644 --- a/gemfiles/ruby_3.4_contrib.gemfile.lock +++ b/gemfiles/ruby_3.4_contrib.gemfile.lock @@ -66,6 +66,7 @@ GEM ruby2_keywords (~> 0.0.1) mutex_m (0.2.0) os (1.1.4) + ostruct (0.6.1) pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -193,6 +194,7 @@ DEPENDENCIES mongo (>= 2.8.0, < 2.15.0) mutex_m os (~> 1.1) + ostruct pimpmychangelog (>= 0.1.2) pry pry-stack_explorer diff --git a/gemfiles/ruby_3.4_contrib_old.gemfile b/gemfiles/ruby_3.4_contrib_old.gemfile index c82aa2d4619..f9c800f79ae 100644 --- a/gemfiles/ruby_3.4_contrib_old.gemfile +++ b/gemfiles/ruby_3.4_contrib_old.gemfile @@ -41,4 +41,8 @@ group :dev do end +group :test do + gem "ostruct" +end + gemspec path: "../" diff --git a/gemfiles/ruby_3.4_contrib_old.gemfile.lock b/gemfiles/ruby_3.4_contrib_old.gemfile.lock index 916270bfdbe..d0dc7bc20dc 100644 --- a/gemfiles/ruby_3.4_contrib_old.gemfile.lock +++ b/gemfiles/ruby_3.4_contrib_old.gemfile.lock @@ -66,6 +66,7 @@ GEM ruby2_keywords (~> 0.0.1) mutex_m (0.2.0) os (1.1.4) + ostruct (0.6.1) pimpmychangelog (0.1.3) presto-client (0.6.6) faraday (~> 0.12) @@ -171,6 +172,7 @@ DEPENDENCIES memory_profiler (~> 0.9) mutex_m os (~> 1.1) + ostruct pimpmychangelog (>= 0.1.2) presto-client (>= 0.5.14) pry diff --git a/gemfiles/ruby_3.4_core_old.gemfile b/gemfiles/ruby_3.4_core_old.gemfile index c224422e032..5c330d3776e 100644 --- a/gemfiles/ruby_3.4_core_old.gemfile +++ b/gemfiles/ruby_3.4_core_old.gemfile @@ -38,4 +38,8 @@ group :dev do end +group :test do + gem "ostruct" +end + gemspec path: "../" diff --git a/gemfiles/ruby_3.4_core_old.gemfile.lock b/gemfiles/ruby_3.4_core_old.gemfile.lock index 0814e47fa76..e05409991e7 100644 --- a/gemfiles/ruby_3.4_core_old.gemfile.lock +++ b/gemfiles/ruby_3.4_core_old.gemfile.lock @@ -48,6 +48,7 @@ GEM msgpack (1.7.5) mutex_m (0.2.0) os (1.1.4) + ostruct (0.6.1) pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -116,6 +117,7 @@ DEPENDENCIES memory_profiler (~> 0.9) mutex_m os (~> 1.1) + ostruct pimpmychangelog (>= 0.1.2) pry pry-stack_explorer diff --git a/gemfiles/ruby_3.4_elasticsearch_7.gemfile b/gemfiles/ruby_3.4_elasticsearch_7.gemfile index a40c65a2559..d5b9edd89cc 100644 --- a/gemfiles/ruby_3.4_elasticsearch_7.gemfile +++ b/gemfiles/ruby_3.4_elasticsearch_7.gemfile @@ -39,4 +39,8 @@ group :dev do end +group :test do + gem "ostruct" +end + gemspec path: "../" diff --git a/gemfiles/ruby_3.4_elasticsearch_7.gemfile.lock b/gemfiles/ruby_3.4_elasticsearch_7.gemfile.lock index c2244db36ab..d663bf5481d 100644 --- a/gemfiles/ruby_3.4_elasticsearch_7.gemfile.lock +++ b/gemfiles/ruby_3.4_elasticsearch_7.gemfile.lock @@ -68,6 +68,7 @@ GEM net-http (0.6.0) uri os (1.1.4) + ostruct (0.6.1) pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -138,6 +139,7 @@ DEPENDENCIES memory_profiler (~> 0.9) mutex_m os (~> 1.1) + ostruct pimpmychangelog (>= 0.1.2) pry pry-stack_explorer diff --git a/gemfiles/ruby_3.4_elasticsearch_8.gemfile b/gemfiles/ruby_3.4_elasticsearch_8.gemfile index e3f99c12c5e..e93cf322d79 100644 --- a/gemfiles/ruby_3.4_elasticsearch_8.gemfile +++ b/gemfiles/ruby_3.4_elasticsearch_8.gemfile @@ -39,4 +39,8 @@ group :dev do end +group :test do + gem "ostruct" +end + gemspec path: "../" diff --git a/gemfiles/ruby_3.4_elasticsearch_8.gemfile.lock b/gemfiles/ruby_3.4_elasticsearch_8.gemfile.lock index bb445b1a9c1..111bc6b766a 100644 --- a/gemfiles/ruby_3.4_elasticsearch_8.gemfile.lock +++ b/gemfiles/ruby_3.4_elasticsearch_8.gemfile.lock @@ -67,6 +67,7 @@ GEM net-http (0.6.0) uri os (1.1.4) + ostruct (0.6.1) pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -137,6 +138,7 @@ DEPENDENCIES memory_profiler (~> 0.9) mutex_m os (~> 1.1) + ostruct pimpmychangelog (>= 0.1.2) pry pry-stack_explorer diff --git a/gemfiles/ruby_3.4_elasticsearch_latest.gemfile b/gemfiles/ruby_3.4_elasticsearch_latest.gemfile index 2673662fd83..f27076bec53 100644 --- a/gemfiles/ruby_3.4_elasticsearch_latest.gemfile +++ b/gemfiles/ruby_3.4_elasticsearch_latest.gemfile @@ -39,4 +39,8 @@ group :dev do end +group :test do + gem "ostruct" +end + gemspec path: "../" diff --git a/gemfiles/ruby_3.4_elasticsearch_latest.gemfile.lock b/gemfiles/ruby_3.4_elasticsearch_latest.gemfile.lock index 4974399b46e..8a21918ef60 100644 --- a/gemfiles/ruby_3.4_elasticsearch_latest.gemfile.lock +++ b/gemfiles/ruby_3.4_elasticsearch_latest.gemfile.lock @@ -67,6 +67,7 @@ GEM net-http (0.6.0) uri os (1.1.4) + ostruct (0.6.1) pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -135,6 +136,7 @@ DEPENDENCIES memory_profiler (~> 0.9) mutex_m os (~> 1.1) + ostruct pimpmychangelog (>= 0.1.2) pry pry-stack_explorer diff --git a/gemfiles/ruby_3.4_graphql_1.13.gemfile b/gemfiles/ruby_3.4_graphql_1.13.gemfile index e13a9ecc466..1b194ade468 100644 --- a/gemfiles/ruby_3.4_graphql_1.13.gemfile +++ b/gemfiles/ruby_3.4_graphql_1.13.gemfile @@ -42,4 +42,8 @@ group :dev do end +group :test do + gem "ostruct" +end + gemspec path: "../" diff --git a/gemfiles/ruby_3.4_graphql_1.13.gemfile.lock b/gemfiles/ruby_3.4_graphql_1.13.gemfile.lock index 10f76162b6d..0ff0371efde 100644 --- a/gemfiles/ruby_3.4_graphql_1.13.gemfile.lock +++ b/gemfiles/ruby_3.4_graphql_1.13.gemfile.lock @@ -146,6 +146,7 @@ GEM mini_portile2 (~> 2.8.2) racc (~> 1.4) os (1.1.4) + ostruct (0.6.1) pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -266,6 +267,7 @@ DEPENDENCIES memory_profiler (~> 0.9) mutex_m (>= 0.1.0) os (~> 1.1) + ostruct pimpmychangelog (>= 0.1.2) pry pry-stack_explorer diff --git a/gemfiles/ruby_3.4_graphql_2.0.gemfile b/gemfiles/ruby_3.4_graphql_2.0.gemfile index 5ce3bbfaa72..6598358272a 100644 --- a/gemfiles/ruby_3.4_graphql_2.0.gemfile +++ b/gemfiles/ruby_3.4_graphql_2.0.gemfile @@ -42,4 +42,8 @@ group :dev do end +group :test do + gem "ostruct" +end + gemspec path: "../" diff --git a/gemfiles/ruby_3.4_graphql_2.0.gemfile.lock b/gemfiles/ruby_3.4_graphql_2.0.gemfile.lock index bef0f057d4d..6807a720a3c 100644 --- a/gemfiles/ruby_3.4_graphql_2.0.gemfile.lock +++ b/gemfiles/ruby_3.4_graphql_2.0.gemfile.lock @@ -146,6 +146,7 @@ GEM mini_portile2 (~> 2.8.2) racc (~> 1.4) os (1.1.4) + ostruct (0.6.1) pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -266,6 +267,7 @@ DEPENDENCIES memory_profiler (~> 0.9) mutex_m (>= 0.1.0) os (~> 1.1) + ostruct pimpmychangelog (>= 0.1.2) pry pry-stack_explorer diff --git a/gemfiles/ruby_3.4_graphql_2.1.gemfile b/gemfiles/ruby_3.4_graphql_2.1.gemfile index 8089c9dc192..a7433a8c8fd 100644 --- a/gemfiles/ruby_3.4_graphql_2.1.gemfile +++ b/gemfiles/ruby_3.4_graphql_2.1.gemfile @@ -42,4 +42,8 @@ group :dev do end +group :test do + gem "ostruct" +end + gemspec path: "../" diff --git a/gemfiles/ruby_3.4_graphql_2.1.gemfile.lock b/gemfiles/ruby_3.4_graphql_2.1.gemfile.lock index 555ed8abb74..fbcb8f2ee09 100644 --- a/gemfiles/ruby_3.4_graphql_2.1.gemfile.lock +++ b/gemfiles/ruby_3.4_graphql_2.1.gemfile.lock @@ -146,6 +146,7 @@ GEM mini_portile2 (~> 2.8.2) racc (~> 1.4) os (1.1.4) + ostruct (0.6.1) pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -266,6 +267,7 @@ DEPENDENCIES memory_profiler (~> 0.9) mutex_m (>= 0.1.0) os (~> 1.1) + ostruct pimpmychangelog (>= 0.1.2) pry pry-stack_explorer diff --git a/gemfiles/ruby_3.4_graphql_2.2.gemfile b/gemfiles/ruby_3.4_graphql_2.2.gemfile index 89cab724b5a..bf4cf5f6dae 100644 --- a/gemfiles/ruby_3.4_graphql_2.2.gemfile +++ b/gemfiles/ruby_3.4_graphql_2.2.gemfile @@ -42,4 +42,8 @@ group :dev do end +group :test do + gem "ostruct" +end + gemspec path: "../" diff --git a/gemfiles/ruby_3.4_graphql_2.2.gemfile.lock b/gemfiles/ruby_3.4_graphql_2.2.gemfile.lock index 48f5b098604..d8c8fb79049 100644 --- a/gemfiles/ruby_3.4_graphql_2.2.gemfile.lock +++ b/gemfiles/ruby_3.4_graphql_2.2.gemfile.lock @@ -146,6 +146,7 @@ GEM mini_portile2 (~> 2.8.2) racc (~> 1.4) os (1.1.4) + ostruct (0.6.1) pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -266,6 +267,7 @@ DEPENDENCIES memory_profiler (~> 0.9) mutex_m (>= 0.1.0) os (~> 1.1) + ostruct pimpmychangelog (>= 0.1.2) pry pry-stack_explorer diff --git a/gemfiles/ruby_3.4_graphql_2.3.gemfile b/gemfiles/ruby_3.4_graphql_2.3.gemfile index 18143d2363a..969bd58f838 100644 --- a/gemfiles/ruby_3.4_graphql_2.3.gemfile +++ b/gemfiles/ruby_3.4_graphql_2.3.gemfile @@ -42,4 +42,8 @@ group :dev do end +group :test do + gem "ostruct" +end + gemspec path: "../" diff --git a/gemfiles/ruby_3.4_graphql_2.3.gemfile.lock b/gemfiles/ruby_3.4_graphql_2.3.gemfile.lock index f0ae4254780..6fa6915b32d 100644 --- a/gemfiles/ruby_3.4_graphql_2.3.gemfile.lock +++ b/gemfiles/ruby_3.4_graphql_2.3.gemfile.lock @@ -146,6 +146,7 @@ GEM mini_portile2 (~> 2.8.2) racc (~> 1.4) os (1.1.4) + ostruct (0.6.1) pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -266,6 +267,7 @@ DEPENDENCIES memory_profiler (~> 0.9) mutex_m (>= 0.1.0) os (~> 1.1) + ostruct pimpmychangelog (>= 0.1.2) pry pry-stack_explorer diff --git a/gemfiles/ruby_3.4_http.gemfile b/gemfiles/ruby_3.4_http.gemfile index afd976c08e5..4de3e618e7a 100644 --- a/gemfiles/ruby_3.4_http.gemfile +++ b/gemfiles/ruby_3.4_http.gemfile @@ -45,4 +45,8 @@ group :dev do end +group :test do + gem "ostruct" +end + gemspec path: "../" diff --git a/gemfiles/ruby_3.4_http.gemfile.lock b/gemfiles/ruby_3.4_http.gemfile.lock index 604871bef81..dbd281963f4 100644 --- a/gemfiles/ruby_3.4_http.gemfile.lock +++ b/gemfiles/ruby_3.4_http.gemfile.lock @@ -79,6 +79,7 @@ GEM uri netrc (0.11.0) os (1.1.4) + ostruct (0.6.1) pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -160,6 +161,7 @@ DEPENDENCIES memory_profiler (~> 0.9) mutex_m os (~> 1.1) + ostruct pimpmychangelog (>= 0.1.2) pry pry-stack_explorer diff --git a/gemfiles/ruby_3.4_opensearch_2.gemfile b/gemfiles/ruby_3.4_opensearch_2.gemfile index ca91e736186..8d2200fb355 100644 --- a/gemfiles/ruby_3.4_opensearch_2.gemfile +++ b/gemfiles/ruby_3.4_opensearch_2.gemfile @@ -39,4 +39,8 @@ group :dev do end +group :test do + gem "ostruct" +end + gemspec path: "../" diff --git a/gemfiles/ruby_3.4_opensearch_2.gemfile.lock b/gemfiles/ruby_3.4_opensearch_2.gemfile.lock index aa465bb97ed..d29307f9bf9 100644 --- a/gemfiles/ruby_3.4_opensearch_2.gemfile.lock +++ b/gemfiles/ruby_3.4_opensearch_2.gemfile.lock @@ -67,6 +67,7 @@ GEM faraday (>= 1.0, < 3) multi_json os (1.1.4) + ostruct (0.6.1) pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -137,6 +138,7 @@ DEPENDENCIES mutex_m opensearch-ruby (~> 2) os (~> 1.1) + ostruct pimpmychangelog (>= 0.1.2) pry pry-stack_explorer diff --git a/gemfiles/ruby_3.4_opensearch_3.gemfile b/gemfiles/ruby_3.4_opensearch_3.gemfile index 41d1e942f72..70b13b8e14f 100644 --- a/gemfiles/ruby_3.4_opensearch_3.gemfile +++ b/gemfiles/ruby_3.4_opensearch_3.gemfile @@ -39,4 +39,8 @@ group :dev do end +group :test do + gem "ostruct" +end + gemspec path: "../" diff --git a/gemfiles/ruby_3.4_opensearch_3.gemfile.lock b/gemfiles/ruby_3.4_opensearch_3.gemfile.lock index 3fe71f68a37..adee5bddfda 100644 --- a/gemfiles/ruby_3.4_opensearch_3.gemfile.lock +++ b/gemfiles/ruby_3.4_opensearch_3.gemfile.lock @@ -62,6 +62,7 @@ GEM faraday (>= 1.0, < 3) multi_json (>= 1.0) os (1.1.4) + ostruct (0.6.1) pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -132,6 +133,7 @@ DEPENDENCIES mutex_m opensearch-ruby (~> 3) os (~> 1.1) + ostruct pimpmychangelog (>= 0.1.2) pry pry-stack_explorer diff --git a/gemfiles/ruby_3.4_opensearch_latest.gemfile b/gemfiles/ruby_3.4_opensearch_latest.gemfile index cb1a007e7d0..5c49013d710 100644 --- a/gemfiles/ruby_3.4_opensearch_latest.gemfile +++ b/gemfiles/ruby_3.4_opensearch_latest.gemfile @@ -39,4 +39,8 @@ group :dev do end +group :test do + gem "ostruct" +end + gemspec path: "../" diff --git a/gemfiles/ruby_3.4_opensearch_latest.gemfile.lock b/gemfiles/ruby_3.4_opensearch_latest.gemfile.lock index fbe087a3c97..978da8aeff3 100644 --- a/gemfiles/ruby_3.4_opensearch_latest.gemfile.lock +++ b/gemfiles/ruby_3.4_opensearch_latest.gemfile.lock @@ -62,6 +62,7 @@ GEM faraday (>= 1.0, < 3) multi_json (>= 1.0) os (1.1.4) + ostruct (0.6.1) pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -130,6 +131,7 @@ DEPENDENCIES mutex_m opensearch-ruby os (~> 1.1) + ostruct pimpmychangelog (>= 0.1.2) pry pry-stack_explorer diff --git a/gemfiles/ruby_3.4_opentelemetry.gemfile b/gemfiles/ruby_3.4_opentelemetry.gemfile index bdd759bc2c8..8a81a4388ab 100644 --- a/gemfiles/ruby_3.4_opentelemetry.gemfile +++ b/gemfiles/ruby_3.4_opentelemetry.gemfile @@ -39,4 +39,8 @@ group :dev do end +group :test do + gem "ostruct" +end + gemspec path: "../" diff --git a/gemfiles/ruby_3.4_opentelemetry.gemfile.lock b/gemfiles/ruby_3.4_opentelemetry.gemfile.lock index a78bdc6ef2e..1e92535d698 100644 --- a/gemfiles/ruby_3.4_opentelemetry.gemfile.lock +++ b/gemfiles/ruby_3.4_opentelemetry.gemfile.lock @@ -60,6 +60,7 @@ GEM opentelemetry-semantic_conventions (1.10.0) opentelemetry-api (~> 1.0) os (1.1.4) + ostruct (0.6.1) pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -129,6 +130,7 @@ DEPENDENCIES mutex_m opentelemetry-sdk (~> 1.1) os (~> 1.1) + ostruct pimpmychangelog (>= 0.1.2) pry pry-stack_explorer diff --git a/gemfiles/ruby_3.4_opentelemetry_otlp.gemfile b/gemfiles/ruby_3.4_opentelemetry_otlp.gemfile index e929b2351ed..7716bc5ebc5 100644 --- a/gemfiles/ruby_3.4_opentelemetry_otlp.gemfile +++ b/gemfiles/ruby_3.4_opentelemetry_otlp.gemfile @@ -40,4 +40,8 @@ group :dev do end +group :test do + gem "ostruct" +end + gemspec path: "../" diff --git a/gemfiles/ruby_3.4_opentelemetry_otlp.gemfile.lock b/gemfiles/ruby_3.4_opentelemetry_otlp.gemfile.lock index 8f38e9be75e..94fc519873d 100644 --- a/gemfiles/ruby_3.4_opentelemetry_otlp.gemfile.lock +++ b/gemfiles/ruby_3.4_opentelemetry_otlp.gemfile.lock @@ -69,6 +69,7 @@ GEM opentelemetry-semantic_conventions (1.10.1) opentelemetry-api (~> 1.0) os (1.1.4) + ostruct (0.6.1) pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -137,6 +138,7 @@ DEPENDENCIES opentelemetry-exporter-otlp opentelemetry-sdk (~> 1.1) os (~> 1.1) + ostruct pimpmychangelog (>= 0.1.2) pry pry-stack_explorer diff --git a/gemfiles/ruby_3.4_rack_2.gemfile b/gemfiles/ruby_3.4_rack_2.gemfile index fbb1e7a83db..ba85307541c 100644 --- a/gemfiles/ruby_3.4_rack_2.gemfile +++ b/gemfiles/ruby_3.4_rack_2.gemfile @@ -41,4 +41,8 @@ group :dev do end +group :test do + gem "ostruct" +end + gemspec path: "../" diff --git a/gemfiles/ruby_3.4_rack_2.gemfile.lock b/gemfiles/ruby_3.4_rack_2.gemfile.lock index 1ac4495a143..70769b5817d 100644 --- a/gemfiles/ruby_3.4_rack_2.gemfile.lock +++ b/gemfiles/ruby_3.4_rack_2.gemfile.lock @@ -48,6 +48,7 @@ GEM msgpack (1.7.5) mutex_m (0.2.0) os (1.1.4) + ostruct (0.6.1) pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -121,6 +122,7 @@ DEPENDENCIES memory_profiler (~> 0.9) mutex_m os (~> 1.1) + ostruct pimpmychangelog (>= 0.1.2) pry pry-stack_explorer diff --git a/gemfiles/ruby_3.4_rack_3.gemfile b/gemfiles/ruby_3.4_rack_3.gemfile index 7be171f51fd..cf2c0e3da60 100644 --- a/gemfiles/ruby_3.4_rack_3.gemfile +++ b/gemfiles/ruby_3.4_rack_3.gemfile @@ -41,4 +41,8 @@ group :dev do end +group :test do + gem "ostruct" +end + gemspec path: "../" diff --git a/gemfiles/ruby_3.4_rack_3.gemfile.lock b/gemfiles/ruby_3.4_rack_3.gemfile.lock index edc930dc55a..02b3c4e7a70 100644 --- a/gemfiles/ruby_3.4_rack_3.gemfile.lock +++ b/gemfiles/ruby_3.4_rack_3.gemfile.lock @@ -48,6 +48,7 @@ GEM msgpack (1.7.5) mutex_m (0.2.0) os (1.1.4) + ostruct (0.6.1) pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -121,6 +122,7 @@ DEPENDENCIES memory_profiler (~> 0.9) mutex_m os (~> 1.1) + ostruct pimpmychangelog (>= 0.1.2) pry pry-stack_explorer diff --git a/gemfiles/ruby_3.4_rack_latest.gemfile b/gemfiles/ruby_3.4_rack_latest.gemfile index 6f73ec85e69..1cc0f3cf0f0 100644 --- a/gemfiles/ruby_3.4_rack_latest.gemfile +++ b/gemfiles/ruby_3.4_rack_latest.gemfile @@ -41,4 +41,8 @@ group :dev do end +group :test do + gem "ostruct" +end + gemspec path: "../" diff --git a/gemfiles/ruby_3.4_rack_latest.gemfile.lock b/gemfiles/ruby_3.4_rack_latest.gemfile.lock index cf1578cac8f..0be2a37f52f 100644 --- a/gemfiles/ruby_3.4_rack_latest.gemfile.lock +++ b/gemfiles/ruby_3.4_rack_latest.gemfile.lock @@ -48,6 +48,7 @@ GEM msgpack (1.7.5) mutex_m (0.2.0) os (1.1.4) + ostruct (0.6.1) pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -119,6 +120,7 @@ DEPENDENCIES memory_profiler (~> 0.9) mutex_m os (~> 1.1) + ostruct pimpmychangelog (>= 0.1.2) pry pry-stack_explorer diff --git a/gemfiles/ruby_3.4_rails61_mysql2.gemfile b/gemfiles/ruby_3.4_rails61_mysql2.gemfile index 9b240019d44..e49dec3b74c 100644 --- a/gemfiles/ruby_3.4_rails61_mysql2.gemfile +++ b/gemfiles/ruby_3.4_rails61_mysql2.gemfile @@ -43,4 +43,8 @@ group :dev do end +group :test do + gem "ostruct" +end + gemspec path: "../" diff --git a/gemfiles/ruby_3.4_rails61_mysql2.gemfile.lock b/gemfiles/ruby_3.4_rails61_mysql2.gemfile.lock index 5070f72c93c..2905feaebf8 100644 --- a/gemfiles/ruby_3.4_rails61_mysql2.gemfile.lock +++ b/gemfiles/ruby_3.4_rails61_mysql2.gemfile.lock @@ -145,6 +145,7 @@ GEM mini_portile2 (~> 2.8.2) racc (~> 1.4) os (1.1.4) + ostruct (0.6.1) pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -266,6 +267,7 @@ DEPENDENCIES mysql2 (~> 0.5) net-smtp os (~> 1.1) + ostruct pimpmychangelog (>= 0.1.2) pry pry-stack_explorer diff --git a/gemfiles/ruby_3.4_rails61_postgres.gemfile b/gemfiles/ruby_3.4_rails61_postgres.gemfile index 20fa9b62003..705828dd4d1 100644 --- a/gemfiles/ruby_3.4_rails61_postgres.gemfile +++ b/gemfiles/ruby_3.4_rails61_postgres.gemfile @@ -43,4 +43,8 @@ group :dev do end +group :test do + gem "ostruct" +end + gemspec path: "../" diff --git a/gemfiles/ruby_3.4_rails61_postgres.gemfile.lock b/gemfiles/ruby_3.4_rails61_postgres.gemfile.lock index 984db368c89..a84e00c9426 100644 --- a/gemfiles/ruby_3.4_rails61_postgres.gemfile.lock +++ b/gemfiles/ruby_3.4_rails61_postgres.gemfile.lock @@ -144,6 +144,7 @@ GEM mini_portile2 (~> 2.8.2) racc (~> 1.4) os (1.1.4) + ostruct (0.6.1) pg (1.5.6) pimpmychangelog (0.1.3) pry (0.14.2) @@ -265,6 +266,7 @@ DEPENDENCIES mutex_m net-smtp os (~> 1.1) + ostruct pg (>= 1.1) pimpmychangelog (>= 0.1.2) pry diff --git a/gemfiles/ruby_3.4_rails61_postgres_redis.gemfile b/gemfiles/ruby_3.4_rails61_postgres_redis.gemfile index d70af7438e7..1ddd1f3d408 100644 --- a/gemfiles/ruby_3.4_rails61_postgres_redis.gemfile +++ b/gemfiles/ruby_3.4_rails61_postgres_redis.gemfile @@ -44,4 +44,8 @@ group :dev do end +group :test do + gem "ostruct" +end + gemspec path: "../" diff --git a/gemfiles/ruby_3.4_rails61_postgres_redis.gemfile.lock b/gemfiles/ruby_3.4_rails61_postgres_redis.gemfile.lock index 99cf47661d5..6048587fb40 100644 --- a/gemfiles/ruby_3.4_rails61_postgres_redis.gemfile.lock +++ b/gemfiles/ruby_3.4_rails61_postgres_redis.gemfile.lock @@ -144,6 +144,7 @@ GEM mini_portile2 (~> 2.8.2) racc (~> 1.4) os (1.1.4) + ostruct (0.6.1) pg (1.5.6) pimpmychangelog (0.1.3) pry (0.14.2) @@ -266,6 +267,7 @@ DEPENDENCIES mutex_m net-smtp os (~> 1.1) + ostruct pg (>= 1.1) pimpmychangelog (>= 0.1.2) pry diff --git a/gemfiles/ruby_3.4_rails61_postgres_sidekiq.gemfile b/gemfiles/ruby_3.4_rails61_postgres_sidekiq.gemfile index 1321af2a5db..1a7ff977568 100644 --- a/gemfiles/ruby_3.4_rails61_postgres_sidekiq.gemfile +++ b/gemfiles/ruby_3.4_rails61_postgres_sidekiq.gemfile @@ -45,4 +45,8 @@ group :dev do end +group :test do + gem "ostruct" +end + gemspec path: "../" diff --git a/gemfiles/ruby_3.4_rails61_postgres_sidekiq.gemfile.lock b/gemfiles/ruby_3.4_rails61_postgres_sidekiq.gemfile.lock index 5af12cdc0eb..e13e3c662f7 100644 --- a/gemfiles/ruby_3.4_rails61_postgres_sidekiq.gemfile.lock +++ b/gemfiles/ruby_3.4_rails61_postgres_sidekiq.gemfile.lock @@ -145,6 +145,7 @@ GEM mini_portile2 (~> 2.8.2) racc (~> 1.4) os (1.1.4) + ostruct (0.6.1) pg (1.5.6) pimpmychangelog (0.1.3) pry (0.14.2) @@ -279,6 +280,7 @@ DEPENDENCIES mutex_m net-smtp os (~> 1.1) + ostruct pg (>= 1.1) pimpmychangelog (>= 0.1.2) pry diff --git a/gemfiles/ruby_3.4_rails61_semantic_logger.gemfile b/gemfiles/ruby_3.4_rails61_semantic_logger.gemfile index acfd7aff0c4..bde9fce926e 100644 --- a/gemfiles/ruby_3.4_rails61_semantic_logger.gemfile +++ b/gemfiles/ruby_3.4_rails61_semantic_logger.gemfile @@ -43,4 +43,8 @@ group :dev do end +group :test do + gem "ostruct" +end + gemspec path: "../" diff --git a/gemfiles/ruby_3.4_rails61_semantic_logger.gemfile.lock b/gemfiles/ruby_3.4_rails61_semantic_logger.gemfile.lock index 7f3c57c47a6..49b20c48bc3 100644 --- a/gemfiles/ruby_3.4_rails61_semantic_logger.gemfile.lock +++ b/gemfiles/ruby_3.4_rails61_semantic_logger.gemfile.lock @@ -139,6 +139,7 @@ GEM mini_portile2 (~> 2.8.2) racc (~> 1.4) os (1.1.4) + ostruct (0.6.1) pg (1.5.6) pimpmychangelog (0.1.3) pry (0.14.2) @@ -263,6 +264,7 @@ DEPENDENCIES mutex_m net-smtp os (~> 1.1) + ostruct pg (>= 1.1) pimpmychangelog (>= 0.1.2) pry diff --git a/gemfiles/ruby_3.4_rails61_trilogy.gemfile b/gemfiles/ruby_3.4_rails61_trilogy.gemfile index 8df22b19ea7..65f172f1e1f 100644 --- a/gemfiles/ruby_3.4_rails61_trilogy.gemfile +++ b/gemfiles/ruby_3.4_rails61_trilogy.gemfile @@ -44,4 +44,8 @@ group :dev do end +group :test do + gem "ostruct" +end + gemspec path: "../" diff --git a/gemfiles/ruby_3.4_rails61_trilogy.gemfile.lock b/gemfiles/ruby_3.4_rails61_trilogy.gemfile.lock index 5fc8c6c502c..ea16d0a53a3 100644 --- a/gemfiles/ruby_3.4_rails61_trilogy.gemfile.lock +++ b/gemfiles/ruby_3.4_rails61_trilogy.gemfile.lock @@ -147,6 +147,7 @@ GEM mini_portile2 (~> 2.8.2) racc (~> 1.4) os (1.1.4) + ostruct (0.6.1) pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -269,6 +270,7 @@ DEPENDENCIES mutex_m net-smtp os (~> 1.1) + ostruct pimpmychangelog (>= 0.1.2) pry pry-stack_explorer diff --git a/gemfiles/ruby_3.4_rails7.gemfile b/gemfiles/ruby_3.4_rails7.gemfile index 4002c8b9658..0c4f76d5bdb 100644 --- a/gemfiles/ruby_3.4_rails7.gemfile +++ b/gemfiles/ruby_3.4_rails7.gemfile @@ -39,4 +39,8 @@ group :dev do end +group :test do + gem "ostruct" +end + gemspec path: "../" diff --git a/gemfiles/ruby_3.4_rails7.gemfile.lock b/gemfiles/ruby_3.4_rails7.gemfile.lock index 5c6c2cd4d9a..bc5df8a9978 100644 --- a/gemfiles/ruby_3.4_rails7.gemfile.lock +++ b/gemfiles/ruby_3.4_rails7.gemfile.lock @@ -100,7 +100,6 @@ GEM dogstatsd-ruby (5.6.1) erubi (1.13.0) extlz4 (0.3.4) - ffi (1.17.1) ffi (1.17.1-aarch64-linux-gnu) ffi (1.17.1-x86_64-linux-gnu) globalid (1.2.1) @@ -111,11 +110,8 @@ GEM concurrent-ruby (~> 1.0) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (14.3.1.1.0) libdatadog (14.3.1.1.0-aarch64-linux) libdatadog (14.3.1.1.0-x86_64-linux) - libddwaf (1.18.0.0.0) - ffi (~> 1.0) libddwaf (1.18.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.18.0.0.0-x86_64-linux) @@ -149,6 +145,7 @@ GEM mini_portile2 (~> 2.8.2) racc (~> 1.4) os (1.1.4) + ostruct (0.6.1) pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -240,7 +237,6 @@ GEM PLATFORMS aarch64-linux - ruby x86_64-linux DEPENDENCIES @@ -258,6 +254,7 @@ DEPENDENCIES memory_profiler (~> 0.9) mutex_m os (~> 1.1) + ostruct pimpmychangelog (>= 0.1.2) pry pry-stack_explorer diff --git a/gemfiles/ruby_3.4_rails71.gemfile b/gemfiles/ruby_3.4_rails71.gemfile index 163bbe2f3a2..00e0cdbc7cb 100644 --- a/gemfiles/ruby_3.4_rails71.gemfile +++ b/gemfiles/ruby_3.4_rails71.gemfile @@ -39,4 +39,8 @@ group :dev do end +group :test do + gem "ostruct" +end + gemspec path: "../" diff --git a/gemfiles/ruby_3.4_rails71.gemfile.lock b/gemfiles/ruby_3.4_rails71.gemfile.lock index d941a896de3..78397938e1e 100644 --- a/gemfiles/ruby_3.4_rails71.gemfile.lock +++ b/gemfiles/ruby_3.4_rails71.gemfile.lock @@ -111,7 +111,6 @@ GEM drb (2.2.1) erubi (1.13.0) extlz4 (0.3.4) - ffi (1.17.1) ffi (1.17.1-aarch64-linux-gnu) ffi (1.17.1-x86_64-linux-gnu) globalid (1.2.1) @@ -126,11 +125,8 @@ GEM reline (>= 0.4.2) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (14.3.1.1.0) libdatadog (14.3.1.1.0-aarch64-linux) libdatadog (14.3.1.1.0-x86_64-linux) - libddwaf (1.18.0.0.0) - ffi (~> 1.0) libddwaf (1.18.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.18.0.0.0-x86_64-linux) @@ -164,6 +160,7 @@ GEM mini_portile2 (~> 2.8.2) racc (~> 1.4) os (1.1.4) + ostruct (0.6.1) pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -268,7 +265,6 @@ GEM PLATFORMS aarch64-linux - ruby x86_64-linux DEPENDENCIES @@ -286,6 +282,7 @@ DEPENDENCIES memory_profiler (~> 0.9) mutex_m os (~> 1.1) + ostruct pimpmychangelog (>= 0.1.2) pry pry-stack_explorer diff --git a/gemfiles/ruby_3.4_rails_old_redis.gemfile b/gemfiles/ruby_3.4_rails_old_redis.gemfile index c9cff7f489f..1a313260685 100644 --- a/gemfiles/ruby_3.4_rails_old_redis.gemfile +++ b/gemfiles/ruby_3.4_rails_old_redis.gemfile @@ -43,4 +43,8 @@ group :dev do end +group :test do + gem "ostruct" +end + gemspec path: "../" diff --git a/gemfiles/ruby_3.4_redis_3.gemfile b/gemfiles/ruby_3.4_redis_3.gemfile index 743ffc895de..5ac63aa3020 100644 --- a/gemfiles/ruby_3.4_redis_3.gemfile +++ b/gemfiles/ruby_3.4_redis_3.gemfile @@ -39,4 +39,8 @@ group :dev do end +group :test do + gem "ostruct" +end + gemspec path: "../" diff --git a/gemfiles/ruby_3.4_redis_3.gemfile.lock b/gemfiles/ruby_3.4_redis_3.gemfile.lock index 7d7a97ffc17..ef8b20491a7 100644 --- a/gemfiles/ruby_3.4_redis_3.gemfile.lock +++ b/gemfiles/ruby_3.4_redis_3.gemfile.lock @@ -48,6 +48,7 @@ GEM msgpack (1.7.5) mutex_m (0.2.0) os (1.1.4) + ostruct (0.6.1) pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -117,6 +118,7 @@ DEPENDENCIES memory_profiler (~> 0.9) mutex_m os (~> 1.1) + ostruct pimpmychangelog (>= 0.1.2) pry pry-stack_explorer diff --git a/gemfiles/ruby_3.4_redis_4.gemfile b/gemfiles/ruby_3.4_redis_4.gemfile index 69b09555285..92d449efbbb 100644 --- a/gemfiles/ruby_3.4_redis_4.gemfile +++ b/gemfiles/ruby_3.4_redis_4.gemfile @@ -39,4 +39,8 @@ group :dev do end +group :test do + gem "ostruct" +end + gemspec path: "../" diff --git a/gemfiles/ruby_3.4_redis_4.gemfile.lock b/gemfiles/ruby_3.4_redis_4.gemfile.lock index 2324eb29482..b718125251a 100644 --- a/gemfiles/ruby_3.4_redis_4.gemfile.lock +++ b/gemfiles/ruby_3.4_redis_4.gemfile.lock @@ -48,6 +48,7 @@ GEM msgpack (1.7.5) mutex_m (0.2.0) os (1.1.4) + ostruct (0.6.1) pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -117,6 +118,7 @@ DEPENDENCIES memory_profiler (~> 0.9) mutex_m os (~> 1.1) + ostruct pimpmychangelog (>= 0.1.2) pry pry-stack_explorer diff --git a/gemfiles/ruby_3.4_redis_5.gemfile b/gemfiles/ruby_3.4_redis_5.gemfile index 191099a907a..460b6505965 100644 --- a/gemfiles/ruby_3.4_redis_5.gemfile +++ b/gemfiles/ruby_3.4_redis_5.gemfile @@ -39,4 +39,8 @@ group :dev do end +group :test do + gem "ostruct" +end + gemspec path: "../" diff --git a/gemfiles/ruby_3.4_redis_5.gemfile.lock b/gemfiles/ruby_3.4_redis_5.gemfile.lock index d5df5320c7a..bf1171faa15 100644 --- a/gemfiles/ruby_3.4_redis_5.gemfile.lock +++ b/gemfiles/ruby_3.4_redis_5.gemfile.lock @@ -49,6 +49,7 @@ GEM msgpack (1.7.5) mutex_m (0.2.0) os (1.1.4) + ostruct (0.6.1) pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -121,6 +122,7 @@ DEPENDENCIES memory_profiler (~> 0.9) mutex_m os (~> 1.1) + ostruct pimpmychangelog (>= 0.1.2) pry pry-stack_explorer diff --git a/gemfiles/ruby_3.4_relational_db.gemfile b/gemfiles/ruby_3.4_relational_db.gemfile index 48605fece62..fcbfab6ff7d 100644 --- a/gemfiles/ruby_3.4_relational_db.gemfile +++ b/gemfiles/ruby_3.4_relational_db.gemfile @@ -47,4 +47,8 @@ group :dev do end +group :test do + gem "ostruct" +end + gemspec path: "../" diff --git a/gemfiles/ruby_3.4_relational_db.gemfile.lock b/gemfiles/ruby_3.4_relational_db.gemfile.lock index 64e14ae1044..5c1df5ccd43 100644 --- a/gemfiles/ruby_3.4_relational_db.gemfile.lock +++ b/gemfiles/ruby_3.4_relational_db.gemfile.lock @@ -70,6 +70,7 @@ GEM mutex_m (0.2.0) mysql2 (0.5.6) os (1.1.4) + ostruct (0.6.1) pg (1.5.9) pimpmychangelog (0.1.3) pry (0.14.2) @@ -149,6 +150,7 @@ DEPENDENCIES mutex_m mysql2 (>= 0.5.3) os (~> 1.1) + ostruct pg pimpmychangelog (>= 0.1.2) pry diff --git a/gemfiles/ruby_3.4_resque2_redis3.gemfile b/gemfiles/ruby_3.4_resque2_redis3.gemfile index 7e01154b09e..415e4ec8cd7 100644 --- a/gemfiles/ruby_3.4_resque2_redis3.gemfile +++ b/gemfiles/ruby_3.4_resque2_redis3.gemfile @@ -40,4 +40,8 @@ group :dev do end +group :test do + gem "ostruct" +end + gemspec path: "../" diff --git a/gemfiles/ruby_3.4_resque2_redis3.gemfile.lock b/gemfiles/ruby_3.4_resque2_redis3.gemfile.lock index 01fda47ea33..ddf2fced593 100644 --- a/gemfiles/ruby_3.4_resque2_redis3.gemfile.lock +++ b/gemfiles/ruby_3.4_resque2_redis3.gemfile.lock @@ -52,6 +52,7 @@ GEM ruby2_keywords (~> 0.0.1) mutex_m (0.2.0) os (1.1.4) + ostruct (0.6.1) pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -142,6 +143,7 @@ DEPENDENCIES memory_profiler (~> 0.9) mutex_m os (~> 1.1) + ostruct pimpmychangelog (>= 0.1.2) pry pry-stack_explorer diff --git a/gemfiles/ruby_3.4_resque2_redis4.gemfile b/gemfiles/ruby_3.4_resque2_redis4.gemfile index 527a496ec87..62208d6e72a 100644 --- a/gemfiles/ruby_3.4_resque2_redis4.gemfile +++ b/gemfiles/ruby_3.4_resque2_redis4.gemfile @@ -40,4 +40,8 @@ group :dev do end +group :test do + gem "ostruct" +end + gemspec path: "../" diff --git a/gemfiles/ruby_3.4_resque2_redis4.gemfile.lock b/gemfiles/ruby_3.4_resque2_redis4.gemfile.lock index ca7fe282d51..0d3c590ac4e 100644 --- a/gemfiles/ruby_3.4_resque2_redis4.gemfile.lock +++ b/gemfiles/ruby_3.4_resque2_redis4.gemfile.lock @@ -53,6 +53,7 @@ GEM ruby2_keywords (~> 0.0.1) mutex_m (0.2.0) os (1.1.4) + ostruct (0.6.1) pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -146,6 +147,7 @@ DEPENDENCIES memory_profiler (~> 0.9) mutex_m os (~> 1.1) + ostruct pimpmychangelog (>= 0.1.2) pry pry-stack_explorer diff --git a/gemfiles/ruby_3.4_sinatra_2.gemfile b/gemfiles/ruby_3.4_sinatra_2.gemfile index 737ee48b7d7..19b3d88dcf7 100644 --- a/gemfiles/ruby_3.4_sinatra_2.gemfile +++ b/gemfiles/ruby_3.4_sinatra_2.gemfile @@ -41,4 +41,8 @@ group :dev do end +group :test do + gem "ostruct" +end + gemspec path: "../" diff --git a/gemfiles/ruby_3.4_sinatra_2.gemfile.lock b/gemfiles/ruby_3.4_sinatra_2.gemfile.lock index d2870a4337e..ecf7735adee 100644 --- a/gemfiles/ruby_3.4_sinatra_2.gemfile.lock +++ b/gemfiles/ruby_3.4_sinatra_2.gemfile.lock @@ -50,6 +50,7 @@ GEM ruby2_keywords (~> 0.0.1) mutex_m (0.2.0) os (1.1.4) + ostruct (0.6.1) pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -132,6 +133,7 @@ DEPENDENCIES memory_profiler (~> 0.9) mutex_m os (~> 1.1) + ostruct pimpmychangelog (>= 0.1.2) pry pry-stack_explorer diff --git a/gemfiles/ruby_3.4_sinatra_3.gemfile b/gemfiles/ruby_3.4_sinatra_3.gemfile index 307595f2355..91045cbbb66 100644 --- a/gemfiles/ruby_3.4_sinatra_3.gemfile +++ b/gemfiles/ruby_3.4_sinatra_3.gemfile @@ -41,4 +41,8 @@ group :dev do end +group :test do + gem "ostruct" +end + gemspec path: "../" diff --git a/gemfiles/ruby_3.4_sinatra_3.gemfile.lock b/gemfiles/ruby_3.4_sinatra_3.gemfile.lock index 0b494a55fdd..91a908b07a0 100644 --- a/gemfiles/ruby_3.4_sinatra_3.gemfile.lock +++ b/gemfiles/ruby_3.4_sinatra_3.gemfile.lock @@ -50,6 +50,7 @@ GEM ruby2_keywords (~> 0.0.1) mutex_m (0.2.0) os (1.1.4) + ostruct (0.6.1) pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -133,6 +134,7 @@ DEPENDENCIES memory_profiler (~> 0.9) mutex_m os (~> 1.1) + ostruct pimpmychangelog (>= 0.1.2) pry pry-stack_explorer diff --git a/gemfiles/ruby_3.4_sinatra_4.gemfile b/gemfiles/ruby_3.4_sinatra_4.gemfile index 95b56dca27a..06d8a30349c 100644 --- a/gemfiles/ruby_3.4_sinatra_4.gemfile +++ b/gemfiles/ruby_3.4_sinatra_4.gemfile @@ -41,4 +41,8 @@ group :dev do end +group :test do + gem "ostruct" +end + gemspec path: "../" diff --git a/gemfiles/ruby_3.4_sinatra_4.gemfile.lock b/gemfiles/ruby_3.4_sinatra_4.gemfile.lock index 23d3a1acf1a..3ff0c855204 100644 --- a/gemfiles/ruby_3.4_sinatra_4.gemfile.lock +++ b/gemfiles/ruby_3.4_sinatra_4.gemfile.lock @@ -50,6 +50,7 @@ GEM ruby2_keywords (~> 0.0.1) mutex_m (0.2.0) os (1.1.4) + ostruct (0.6.1) pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -136,6 +137,7 @@ DEPENDENCIES memory_profiler (~> 0.9) mutex_m os (~> 1.1) + ostruct pimpmychangelog (>= 0.1.2) pry pry-stack_explorer diff --git a/gemfiles/ruby_3.4_stripe_10.gemfile b/gemfiles/ruby_3.4_stripe_10.gemfile index 39b2db63601..816a48c9f2f 100644 --- a/gemfiles/ruby_3.4_stripe_10.gemfile +++ b/gemfiles/ruby_3.4_stripe_10.gemfile @@ -39,4 +39,8 @@ group :dev do end +group :test do + gem "ostruct" +end + gemspec path: "../" diff --git a/gemfiles/ruby_3.4_stripe_10.gemfile.lock b/gemfiles/ruby_3.4_stripe_10.gemfile.lock index 4c115714bd9..8b873d296be 100644 --- a/gemfiles/ruby_3.4_stripe_10.gemfile.lock +++ b/gemfiles/ruby_3.4_stripe_10.gemfile.lock @@ -48,6 +48,7 @@ GEM msgpack (1.7.5) mutex_m (0.2.0) os (1.1.4) + ostruct (0.6.1) pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -117,6 +118,7 @@ DEPENDENCIES memory_profiler (~> 0.9) mutex_m os (~> 1.1) + ostruct pimpmychangelog (>= 0.1.2) pry pry-stack_explorer diff --git a/gemfiles/ruby_3.4_stripe_11.gemfile b/gemfiles/ruby_3.4_stripe_11.gemfile index 13efcba095a..27196615cbe 100644 --- a/gemfiles/ruby_3.4_stripe_11.gemfile +++ b/gemfiles/ruby_3.4_stripe_11.gemfile @@ -39,4 +39,8 @@ group :dev do end +group :test do + gem "ostruct" +end + gemspec path: "../" diff --git a/gemfiles/ruby_3.4_stripe_11.gemfile.lock b/gemfiles/ruby_3.4_stripe_11.gemfile.lock index 3bd9379200a..afbd62067dc 100644 --- a/gemfiles/ruby_3.4_stripe_11.gemfile.lock +++ b/gemfiles/ruby_3.4_stripe_11.gemfile.lock @@ -48,6 +48,7 @@ GEM msgpack (1.7.5) mutex_m (0.2.0) os (1.1.4) + ostruct (0.6.1) pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -117,6 +118,7 @@ DEPENDENCIES memory_profiler (~> 0.9) mutex_m os (~> 1.1) + ostruct pimpmychangelog (>= 0.1.2) pry pry-stack_explorer diff --git a/gemfiles/ruby_3.4_stripe_12.gemfile b/gemfiles/ruby_3.4_stripe_12.gemfile index 35003a4a9a7..c08bdfceb2a 100644 --- a/gemfiles/ruby_3.4_stripe_12.gemfile +++ b/gemfiles/ruby_3.4_stripe_12.gemfile @@ -39,4 +39,8 @@ group :dev do end +group :test do + gem "ostruct" +end + gemspec path: "../" diff --git a/gemfiles/ruby_3.4_stripe_12.gemfile.lock b/gemfiles/ruby_3.4_stripe_12.gemfile.lock index fa58e6fdaa5..56ce3d10635 100644 --- a/gemfiles/ruby_3.4_stripe_12.gemfile.lock +++ b/gemfiles/ruby_3.4_stripe_12.gemfile.lock @@ -48,6 +48,7 @@ GEM msgpack (1.7.5) mutex_m (0.2.0) os (1.1.4) + ostruct (0.6.1) pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -117,6 +118,7 @@ DEPENDENCIES memory_profiler (~> 0.9) mutex_m os (~> 1.1) + ostruct pimpmychangelog (>= 0.1.2) pry pry-stack_explorer diff --git a/gemfiles/ruby_3.4_stripe_7.gemfile b/gemfiles/ruby_3.4_stripe_7.gemfile index a5bb4fed37e..5e9afdcc376 100644 --- a/gemfiles/ruby_3.4_stripe_7.gemfile +++ b/gemfiles/ruby_3.4_stripe_7.gemfile @@ -39,4 +39,8 @@ group :dev do end +group :test do + gem "ostruct" +end + gemspec path: "../" diff --git a/gemfiles/ruby_3.4_stripe_7.gemfile.lock b/gemfiles/ruby_3.4_stripe_7.gemfile.lock index 639104913b1..5364cfcf2a4 100644 --- a/gemfiles/ruby_3.4_stripe_7.gemfile.lock +++ b/gemfiles/ruby_3.4_stripe_7.gemfile.lock @@ -48,6 +48,7 @@ GEM msgpack (1.7.5) mutex_m (0.2.0) os (1.1.4) + ostruct (0.6.1) pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -117,6 +118,7 @@ DEPENDENCIES memory_profiler (~> 0.9) mutex_m os (~> 1.1) + ostruct pimpmychangelog (>= 0.1.2) pry pry-stack_explorer diff --git a/gemfiles/ruby_3.4_stripe_8.gemfile b/gemfiles/ruby_3.4_stripe_8.gemfile index cdf004ab5b2..2d52ed4bfd8 100644 --- a/gemfiles/ruby_3.4_stripe_8.gemfile +++ b/gemfiles/ruby_3.4_stripe_8.gemfile @@ -39,4 +39,8 @@ group :dev do end +group :test do + gem "ostruct" +end + gemspec path: "../" diff --git a/gemfiles/ruby_3.4_stripe_8.gemfile.lock b/gemfiles/ruby_3.4_stripe_8.gemfile.lock index 6ec99a03c26..cf487070b16 100644 --- a/gemfiles/ruby_3.4_stripe_8.gemfile.lock +++ b/gemfiles/ruby_3.4_stripe_8.gemfile.lock @@ -48,6 +48,7 @@ GEM msgpack (1.7.5) mutex_m (0.2.0) os (1.1.4) + ostruct (0.6.1) pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -117,6 +118,7 @@ DEPENDENCIES memory_profiler (~> 0.9) mutex_m os (~> 1.1) + ostruct pimpmychangelog (>= 0.1.2) pry pry-stack_explorer diff --git a/gemfiles/ruby_3.4_stripe_9.gemfile b/gemfiles/ruby_3.4_stripe_9.gemfile index 57e7afb422c..0b6147b6010 100644 --- a/gemfiles/ruby_3.4_stripe_9.gemfile +++ b/gemfiles/ruby_3.4_stripe_9.gemfile @@ -39,4 +39,8 @@ group :dev do end +group :test do + gem "ostruct" +end + gemspec path: "../" diff --git a/gemfiles/ruby_3.4_stripe_9.gemfile.lock b/gemfiles/ruby_3.4_stripe_9.gemfile.lock index e09d56b63b1..01e58d61e61 100644 --- a/gemfiles/ruby_3.4_stripe_9.gemfile.lock +++ b/gemfiles/ruby_3.4_stripe_9.gemfile.lock @@ -48,6 +48,7 @@ GEM msgpack (1.7.5) mutex_m (0.2.0) os (1.1.4) + ostruct (0.6.1) pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -117,6 +118,7 @@ DEPENDENCIES memory_profiler (~> 0.9) mutex_m os (~> 1.1) + ostruct pimpmychangelog (>= 0.1.2) pry pry-stack_explorer diff --git a/gemfiles/ruby_3.4_stripe_latest.gemfile b/gemfiles/ruby_3.4_stripe_latest.gemfile index d43aeb67d4e..fc99a5699fd 100644 --- a/gemfiles/ruby_3.4_stripe_latest.gemfile +++ b/gemfiles/ruby_3.4_stripe_latest.gemfile @@ -39,4 +39,8 @@ group :dev do end +group :test do + gem "ostruct" +end + gemspec path: "../" diff --git a/gemfiles/ruby_3.4_stripe_latest.gemfile.lock b/gemfiles/ruby_3.4_stripe_latest.gemfile.lock index 9a1837f92a9..81ddf6a3234 100644 --- a/gemfiles/ruby_3.4_stripe_latest.gemfile.lock +++ b/gemfiles/ruby_3.4_stripe_latest.gemfile.lock @@ -48,6 +48,7 @@ GEM msgpack (1.7.5) mutex_m (0.2.0) os (1.1.4) + ostruct (0.6.1) pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -115,6 +116,7 @@ DEPENDENCIES memory_profiler (~> 0.9) mutex_m os (~> 1.1) + ostruct pimpmychangelog (>= 0.1.2) pry pry-stack_explorer diff --git a/gemfiles/ruby_3.4_stripe_min.gemfile b/gemfiles/ruby_3.4_stripe_min.gemfile index 47ae250af75..77d56675bb7 100644 --- a/gemfiles/ruby_3.4_stripe_min.gemfile +++ b/gemfiles/ruby_3.4_stripe_min.gemfile @@ -39,4 +39,8 @@ group :dev do end +group :test do + gem "ostruct" +end + gemspec path: "../" diff --git a/gemfiles/ruby_3.4_stripe_min.gemfile.lock b/gemfiles/ruby_3.4_stripe_min.gemfile.lock index 2c8e4f5450a..3b05456bd06 100644 --- a/gemfiles/ruby_3.4_stripe_min.gemfile.lock +++ b/gemfiles/ruby_3.4_stripe_min.gemfile.lock @@ -48,6 +48,7 @@ GEM msgpack (1.7.5) mutex_m (0.2.0) os (1.1.4) + ostruct (0.6.1) pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) @@ -115,6 +116,7 @@ DEPENDENCIES memory_profiler (~> 0.9) mutex_m os (~> 1.1) + ostruct pimpmychangelog (>= 0.1.2) pry pry-stack_explorer diff --git a/integration/apps/hanami/Gemfile b/integration/apps/hanami/Gemfile index 0d4ede525d3..5305085d12a 100644 --- a/integration/apps/hanami/Gemfile +++ b/integration/apps/hanami/Gemfile @@ -2,6 +2,7 @@ require 'datadog/demo_env' source 'https://rubygems.org' +gem 'ostruct' gem 'rake' gem 'hanami', '~> 1.3' gem 'hanami-model', '~> 1.3' diff --git a/integration/apps/hanami/apps/acme/controllers/books/index.rb b/integration/apps/hanami/apps/acme/controllers/books/index.rb index e6901b11177..41e7ee09dd7 100644 --- a/integration/apps/hanami/apps/acme/controllers/books/index.rb +++ b/integration/apps/hanami/apps/acme/controllers/books/index.rb @@ -1,3 +1,5 @@ +require 'ostruct' + module Acme module Controllers module Books diff --git a/lib/datadog/di/transport.rb b/lib/datadog/di/transport.rb index aa8ebce9b75..26d136a290d 100644 --- a/lib/datadog/di/transport.rb +++ b/lib/datadog/di/transport.rb @@ -1,6 +1,5 @@ # frozen_string_literal: true -require 'ostruct' require_relative 'error' require_relative '../core/transport/http/adapters/net' @@ -61,9 +60,7 @@ def send_input(payload) attr_reader :client def send_request(desc, **options) - # steep:ignore:start - env = OpenStruct.new(**options) - # steep:ignore:end + env = Core::Transport::HTTP::Env.new(nil, options) response = client.post(env) unless response.ok? raise Error::AgentCommunicationError, "#{desc} failed: #{response.code}: #{response.payload}" diff --git a/ruby-3.4.gemfile b/ruby-3.4.gemfile index b1d1102e9d5..a1785ee0641 100644 --- a/ruby-3.4.gemfile +++ b/ruby-3.4.gemfile @@ -61,3 +61,9 @@ group :dev do gem 'ruby-lsp', require: false gem 'appraisal', '~> 2.4.0', require: false end + +group :test do + # This silences the warning: + # warning: ostruct was loaded from the standard library, but will no longer be part of the default gems starting from Ruby 3.5.0. + gem 'ostruct' +end diff --git a/ruby-3.5.gemfile b/ruby-3.5.gemfile index 26c393dffcc..6c9ae576e87 100644 --- a/ruby-3.5.gemfile +++ b/ruby-3.5.gemfile @@ -63,4 +63,6 @@ group :dev do gem 'appraisal', '~> 2.4.0', require: false end -gem 'ostruct' +group :test do + gem 'ostruct' +end diff --git a/spec/datadog/core/remote/transport/integration_spec.rb b/spec/datadog/core/remote/transport/integration_spec.rb index 6f24ca1f6b5..f2ea7846ba1 100644 --- a/spec/datadog/core/remote/transport/integration_spec.rb +++ b/spec/datadog/core/remote/transport/integration_spec.rb @@ -2,6 +2,7 @@ require 'spec_helper' +require 'ostruct' require 'datadog/core/utils/base64' require 'datadog/core/remote/transport/http' require 'datadog/core/remote/transport/http/negotiation' diff --git a/spec/datadog/di/integration/everything_from_remote_config_spec.rb b/spec/datadog/di/integration/everything_from_remote_config_spec.rb index 7863c54bfe4..03ebbde471c 100644 --- a/spec/datadog/di/integration/everything_from_remote_config_spec.rb +++ b/spec/datadog/di/integration/everything_from_remote_config_spec.rb @@ -217,7 +217,6 @@ def do_rc # Events can be batched, meaning +post+ could be called once or twice # depending on how threads are scheduled by the VM. expect(component.transport.send(:client)).to receive(:post).at_least(:once) do |env| - expect(env).to be_a(OpenStruct) notify_payload = if env.path == '/debugger/v1/diagnostics' JSON.parse(env.form.fetch('event').io.read, symbolize_names: true) else diff --git a/spec/datadog/tracing/contrib/graphql/support/application_schema.rb b/spec/datadog/tracing/contrib/graphql/support/application_schema.rb index ba297c1f77b..98debbfab87 100644 --- a/spec/datadog/tracing/contrib/graphql/support/application_schema.rb +++ b/spec/datadog/tracing/contrib/graphql/support/application_schema.rb @@ -1,5 +1,6 @@ require 'graphql' require 'json' +require 'ostruct' module TestGraphQL class Case < GraphQL::Schema::Directive diff --git a/spec/datadog/tracing/contrib/graphql/test_schema_examples.rb b/spec/datadog/tracing/contrib/graphql/test_schema_examples.rb index edd63741291..cc95b4765ba 100644 --- a/spec/datadog/tracing/contrib/graphql/test_schema_examples.rb +++ b/spec/datadog/tracing/contrib/graphql/test_schema_examples.rb @@ -1,4 +1,5 @@ require 'graphql' +require 'ostruct' require_relative 'test_helpers' diff --git a/spec/datadog/tracing/contrib/rails/log_injection_spec.rb b/spec/datadog/tracing/contrib/rails/log_injection_spec.rb index 437e611986a..e475ad2fc9f 100644 --- a/spec/datadog/tracing/contrib/rails/log_injection_spec.rb +++ b/spec/datadog/tracing/contrib/rails/log_injection_spec.rb @@ -1,3 +1,4 @@ +require 'ostruct' require 'datadog/tracing/contrib/rails/log_injection' RSpec.describe Datadog::Tracing::Contrib::Rails::LogInjection do diff --git a/spec/datadog/tracing/contrib/rails/support/log_configuration.rb b/spec/datadog/tracing/contrib/rails/support/log_configuration.rb index 1fb5fc53704..f9a77c5b7d6 100644 --- a/spec/datadog/tracing/contrib/rails/support/log_configuration.rb +++ b/spec/datadog/tracing/contrib/rails/support/log_configuration.rb @@ -1,3 +1,4 @@ +require 'ostruct' require_relative 'backport' RSpec.shared_context 'Rails log configuration' do From bb8b24b7f397de3333a2931437229eb3a3b6a7af Mon Sep 17 00:00:00 2001 From: TonyCTHsu <16049123+TonyCTHsu@users.noreply.github.com> Date: Sun, 12 Jan 2025 00:17:05 +0000 Subject: [PATCH 134/161] =?UTF-8?q?[=F0=9F=A4=96]=20Update=20Latest=20Depe?= =?UTF-8?q?ndency:=20https://github.com/DataDog/dd-trace-rb/actions/runs/1?= =?UTF-8?q?2728670944?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- gemfiles/jruby_9.4_elasticsearch_7.gemfile.lock | 2 +- gemfiles/jruby_9.4_elasticsearch_8.gemfile.lock | 2 +- gemfiles/jruby_9.4_elasticsearch_latest.gemfile.lock | 2 +- gemfiles/jruby_9.4_opensearch_2.gemfile.lock | 2 +- gemfiles/jruby_9.4_opensearch_3.gemfile.lock | 2 +- gemfiles/jruby_9.4_opensearch_latest.gemfile.lock | 2 +- gemfiles/ruby_3.0_elasticsearch_7.gemfile.lock | 2 +- gemfiles/ruby_3.0_elasticsearch_8.gemfile.lock | 2 +- gemfiles/ruby_3.0_elasticsearch_latest.gemfile.lock | 2 +- gemfiles/ruby_3.0_opensearch_2.gemfile.lock | 2 +- gemfiles/ruby_3.0_opensearch_3.gemfile.lock | 2 +- gemfiles/ruby_3.0_opensearch_latest.gemfile.lock | 2 +- gemfiles/ruby_3.1_elasticsearch_7.gemfile.lock | 2 +- gemfiles/ruby_3.1_elasticsearch_8.gemfile.lock | 2 +- gemfiles/ruby_3.1_elasticsearch_latest.gemfile.lock | 2 +- gemfiles/ruby_3.1_opensearch_2.gemfile.lock | 2 +- gemfiles/ruby_3.1_opensearch_3.gemfile.lock | 2 +- gemfiles/ruby_3.1_opensearch_latest.gemfile.lock | 2 +- gemfiles/ruby_3.2_elasticsearch_7.gemfile.lock | 2 +- gemfiles/ruby_3.2_elasticsearch_8.gemfile.lock | 2 +- gemfiles/ruby_3.2_elasticsearch_latest.gemfile.lock | 2 +- gemfiles/ruby_3.2_opensearch_2.gemfile.lock | 2 +- gemfiles/ruby_3.2_opensearch_3.gemfile.lock | 2 +- gemfiles/ruby_3.2_opensearch_latest.gemfile.lock | 2 +- gemfiles/ruby_3.3_elasticsearch_7.gemfile.lock | 2 +- gemfiles/ruby_3.3_elasticsearch_8.gemfile.lock | 2 +- gemfiles/ruby_3.3_elasticsearch_latest.gemfile.lock | 2 +- gemfiles/ruby_3.3_opensearch_2.gemfile.lock | 2 +- gemfiles/ruby_3.3_opensearch_3.gemfile.lock | 2 +- gemfiles/ruby_3.3_opensearch_latest.gemfile.lock | 2 +- gemfiles/ruby_3.4_elasticsearch_7.gemfile.lock | 2 +- gemfiles/ruby_3.4_elasticsearch_8.gemfile.lock | 2 +- gemfiles/ruby_3.4_elasticsearch_latest.gemfile.lock | 2 +- gemfiles/ruby_3.4_opensearch_2.gemfile.lock | 2 +- gemfiles/ruby_3.4_opensearch_3.gemfile.lock | 2 +- gemfiles/ruby_3.4_opensearch_latest.gemfile.lock | 2 +- 36 files changed, 36 insertions(+), 36 deletions(-) diff --git a/gemfiles/jruby_9.4_elasticsearch_7.gemfile.lock b/gemfiles/jruby_9.4_elasticsearch_7.gemfile.lock index 3e37729435c..8c298449234 100644 --- a/gemfiles/jruby_9.4_elasticsearch_7.gemfile.lock +++ b/gemfiles/jruby_9.4_elasticsearch_7.gemfile.lock @@ -48,7 +48,7 @@ GEM libdatadog (14.3.1.1.0) libddwaf (1.18.0.0.0-java) ffi (~> 1.0) - logger (1.6.4) + logger (1.6.5) memory_profiler (0.9.14) method_source (1.0.0) msgpack (1.7.5-java) diff --git a/gemfiles/jruby_9.4_elasticsearch_8.gemfile.lock b/gemfiles/jruby_9.4_elasticsearch_8.gemfile.lock index d630ad121cf..4b071aaca01 100644 --- a/gemfiles/jruby_9.4_elasticsearch_8.gemfile.lock +++ b/gemfiles/jruby_9.4_elasticsearch_8.gemfile.lock @@ -46,7 +46,7 @@ GEM libdatadog (14.3.1.1.0) libddwaf (1.18.0.0.0-java) ffi (~> 1.0) - logger (1.6.4) + logger (1.6.5) memory_profiler (0.9.14) method_source (1.0.0) msgpack (1.7.5-java) diff --git a/gemfiles/jruby_9.4_elasticsearch_latest.gemfile.lock b/gemfiles/jruby_9.4_elasticsearch_latest.gemfile.lock index 3dcb1a57ed6..94c76af9316 100644 --- a/gemfiles/jruby_9.4_elasticsearch_latest.gemfile.lock +++ b/gemfiles/jruby_9.4_elasticsearch_latest.gemfile.lock @@ -48,7 +48,7 @@ GEM libdatadog (14.3.1.1.0) libddwaf (1.18.0.0.0-java) ffi (~> 1.0) - logger (1.6.4) + logger (1.6.5) memory_profiler (0.9.14) method_source (1.1.0) msgpack (1.7.5-java) diff --git a/gemfiles/jruby_9.4_opensearch_2.gemfile.lock b/gemfiles/jruby_9.4_opensearch_2.gemfile.lock index 8e04668cc81..ee2a0df41ed 100644 --- a/gemfiles/jruby_9.4_opensearch_2.gemfile.lock +++ b/gemfiles/jruby_9.4_opensearch_2.gemfile.lock @@ -38,7 +38,7 @@ GEM libdatadog (14.3.1.1.0) libddwaf (1.18.0.0.0-java) ffi (~> 1.0) - logger (1.6.4) + logger (1.6.5) memory_profiler (0.9.14) method_source (1.0.0) msgpack (1.7.5-java) diff --git a/gemfiles/jruby_9.4_opensearch_3.gemfile.lock b/gemfiles/jruby_9.4_opensearch_3.gemfile.lock index a50d7be2028..0daf355ccb0 100644 --- a/gemfiles/jruby_9.4_opensearch_3.gemfile.lock +++ b/gemfiles/jruby_9.4_opensearch_3.gemfile.lock @@ -38,7 +38,7 @@ GEM libdatadog (14.3.1.1.0) libddwaf (1.18.0.0.0-java) ffi (~> 1.0) - logger (1.6.4) + logger (1.6.5) memory_profiler (0.9.14) method_source (1.0.0) msgpack (1.7.5-java) diff --git a/gemfiles/jruby_9.4_opensearch_latest.gemfile.lock b/gemfiles/jruby_9.4_opensearch_latest.gemfile.lock index e67af6201cd..2090027ca41 100644 --- a/gemfiles/jruby_9.4_opensearch_latest.gemfile.lock +++ b/gemfiles/jruby_9.4_opensearch_latest.gemfile.lock @@ -40,7 +40,7 @@ GEM libdatadog (14.3.1.1.0) libddwaf (1.18.0.0.0-java) ffi (~> 1.0) - logger (1.6.4) + logger (1.6.5) memory_profiler (0.9.14) method_source (1.1.0) msgpack (1.7.5-java) diff --git a/gemfiles/ruby_3.0_elasticsearch_7.gemfile.lock b/gemfiles/ruby_3.0_elasticsearch_7.gemfile.lock index 6a457392d7e..bf02dae1308 100644 --- a/gemfiles/ruby_3.0_elasticsearch_7.gemfile.lock +++ b/gemfiles/ruby_3.0_elasticsearch_7.gemfile.lock @@ -59,7 +59,7 @@ GEM ffi (~> 1.0) libddwaf (1.18.0.0.0-x86_64-linux) ffi (~> 1.0) - logger (1.6.4) + logger (1.6.5) memory_profiler (0.9.14) method_source (1.0.0) msgpack (1.7.5) diff --git a/gemfiles/ruby_3.0_elasticsearch_8.gemfile.lock b/gemfiles/ruby_3.0_elasticsearch_8.gemfile.lock index 81ab3b2434d..2b78dee573c 100644 --- a/gemfiles/ruby_3.0_elasticsearch_8.gemfile.lock +++ b/gemfiles/ruby_3.0_elasticsearch_8.gemfile.lock @@ -57,7 +57,7 @@ GEM ffi (~> 1.0) libddwaf (1.18.0.0.0-x86_64-linux) ffi (~> 1.0) - logger (1.6.4) + logger (1.6.5) memory_profiler (0.9.14) method_source (1.0.0) msgpack (1.7.5) diff --git a/gemfiles/ruby_3.0_elasticsearch_latest.gemfile.lock b/gemfiles/ruby_3.0_elasticsearch_latest.gemfile.lock index e40a9c2e215..01619ae1d99 100644 --- a/gemfiles/ruby_3.0_elasticsearch_latest.gemfile.lock +++ b/gemfiles/ruby_3.0_elasticsearch_latest.gemfile.lock @@ -59,7 +59,7 @@ GEM ffi (~> 1.0) libddwaf (1.18.0.0.0-x86_64-linux) ffi (~> 1.0) - logger (1.6.4) + logger (1.6.5) memory_profiler (0.9.14) method_source (1.1.0) msgpack (1.7.5) diff --git a/gemfiles/ruby_3.0_opensearch_2.gemfile.lock b/gemfiles/ruby_3.0_opensearch_2.gemfile.lock index 160b258ba53..45aae6d9dfe 100644 --- a/gemfiles/ruby_3.0_opensearch_2.gemfile.lock +++ b/gemfiles/ruby_3.0_opensearch_2.gemfile.lock @@ -49,7 +49,7 @@ GEM ffi (~> 1.0) libddwaf (1.18.0.0.0-x86_64-linux) ffi (~> 1.0) - logger (1.6.4) + logger (1.6.5) memory_profiler (0.9.14) method_source (1.0.0) msgpack (1.7.5) diff --git a/gemfiles/ruby_3.0_opensearch_3.gemfile.lock b/gemfiles/ruby_3.0_opensearch_3.gemfile.lock index c9dfdb90950..5188e90cf63 100644 --- a/gemfiles/ruby_3.0_opensearch_3.gemfile.lock +++ b/gemfiles/ruby_3.0_opensearch_3.gemfile.lock @@ -49,7 +49,7 @@ GEM ffi (~> 1.0) libddwaf (1.18.0.0.0-x86_64-linux) ffi (~> 1.0) - logger (1.6.4) + logger (1.6.5) memory_profiler (0.9.14) method_source (1.0.0) msgpack (1.7.5) diff --git a/gemfiles/ruby_3.0_opensearch_latest.gemfile.lock b/gemfiles/ruby_3.0_opensearch_latest.gemfile.lock index 195c6d05bcf..ab8f8b7dea8 100644 --- a/gemfiles/ruby_3.0_opensearch_latest.gemfile.lock +++ b/gemfiles/ruby_3.0_opensearch_latest.gemfile.lock @@ -51,7 +51,7 @@ GEM ffi (~> 1.0) libddwaf (1.18.0.0.0-x86_64-linux) ffi (~> 1.0) - logger (1.6.4) + logger (1.6.5) memory_profiler (0.9.14) method_source (1.1.0) msgpack (1.7.5) diff --git a/gemfiles/ruby_3.1_elasticsearch_7.gemfile.lock b/gemfiles/ruby_3.1_elasticsearch_7.gemfile.lock index 6a457392d7e..bf02dae1308 100644 --- a/gemfiles/ruby_3.1_elasticsearch_7.gemfile.lock +++ b/gemfiles/ruby_3.1_elasticsearch_7.gemfile.lock @@ -59,7 +59,7 @@ GEM ffi (~> 1.0) libddwaf (1.18.0.0.0-x86_64-linux) ffi (~> 1.0) - logger (1.6.4) + logger (1.6.5) memory_profiler (0.9.14) method_source (1.0.0) msgpack (1.7.5) diff --git a/gemfiles/ruby_3.1_elasticsearch_8.gemfile.lock b/gemfiles/ruby_3.1_elasticsearch_8.gemfile.lock index 81ab3b2434d..2b78dee573c 100644 --- a/gemfiles/ruby_3.1_elasticsearch_8.gemfile.lock +++ b/gemfiles/ruby_3.1_elasticsearch_8.gemfile.lock @@ -57,7 +57,7 @@ GEM ffi (~> 1.0) libddwaf (1.18.0.0.0-x86_64-linux) ffi (~> 1.0) - logger (1.6.4) + logger (1.6.5) memory_profiler (0.9.14) method_source (1.0.0) msgpack (1.7.5) diff --git a/gemfiles/ruby_3.1_elasticsearch_latest.gemfile.lock b/gemfiles/ruby_3.1_elasticsearch_latest.gemfile.lock index e40a9c2e215..01619ae1d99 100644 --- a/gemfiles/ruby_3.1_elasticsearch_latest.gemfile.lock +++ b/gemfiles/ruby_3.1_elasticsearch_latest.gemfile.lock @@ -59,7 +59,7 @@ GEM ffi (~> 1.0) libddwaf (1.18.0.0.0-x86_64-linux) ffi (~> 1.0) - logger (1.6.4) + logger (1.6.5) memory_profiler (0.9.14) method_source (1.1.0) msgpack (1.7.5) diff --git a/gemfiles/ruby_3.1_opensearch_2.gemfile.lock b/gemfiles/ruby_3.1_opensearch_2.gemfile.lock index 160b258ba53..45aae6d9dfe 100644 --- a/gemfiles/ruby_3.1_opensearch_2.gemfile.lock +++ b/gemfiles/ruby_3.1_opensearch_2.gemfile.lock @@ -49,7 +49,7 @@ GEM ffi (~> 1.0) libddwaf (1.18.0.0.0-x86_64-linux) ffi (~> 1.0) - logger (1.6.4) + logger (1.6.5) memory_profiler (0.9.14) method_source (1.0.0) msgpack (1.7.5) diff --git a/gemfiles/ruby_3.1_opensearch_3.gemfile.lock b/gemfiles/ruby_3.1_opensearch_3.gemfile.lock index c9dfdb90950..5188e90cf63 100644 --- a/gemfiles/ruby_3.1_opensearch_3.gemfile.lock +++ b/gemfiles/ruby_3.1_opensearch_3.gemfile.lock @@ -49,7 +49,7 @@ GEM ffi (~> 1.0) libddwaf (1.18.0.0.0-x86_64-linux) ffi (~> 1.0) - logger (1.6.4) + logger (1.6.5) memory_profiler (0.9.14) method_source (1.0.0) msgpack (1.7.5) diff --git a/gemfiles/ruby_3.1_opensearch_latest.gemfile.lock b/gemfiles/ruby_3.1_opensearch_latest.gemfile.lock index 195c6d05bcf..ab8f8b7dea8 100644 --- a/gemfiles/ruby_3.1_opensearch_latest.gemfile.lock +++ b/gemfiles/ruby_3.1_opensearch_latest.gemfile.lock @@ -51,7 +51,7 @@ GEM ffi (~> 1.0) libddwaf (1.18.0.0.0-x86_64-linux) ffi (~> 1.0) - logger (1.6.4) + logger (1.6.5) memory_profiler (0.9.14) method_source (1.1.0) msgpack (1.7.5) diff --git a/gemfiles/ruby_3.2_elasticsearch_7.gemfile.lock b/gemfiles/ruby_3.2_elasticsearch_7.gemfile.lock index 1bc1c25e2a5..e10fa177e0e 100644 --- a/gemfiles/ruby_3.2_elasticsearch_7.gemfile.lock +++ b/gemfiles/ruby_3.2_elasticsearch_7.gemfile.lock @@ -58,7 +58,7 @@ GEM ffi (~> 1.0) libddwaf (1.18.0.0.0-x86_64-linux) ffi (~> 1.0) - logger (1.6.4) + logger (1.6.5) memory_profiler (0.9.14) method_source (1.0.0) msgpack (1.7.5) diff --git a/gemfiles/ruby_3.2_elasticsearch_8.gemfile.lock b/gemfiles/ruby_3.2_elasticsearch_8.gemfile.lock index 4f28ef3fbf0..8008ef3fb87 100644 --- a/gemfiles/ruby_3.2_elasticsearch_8.gemfile.lock +++ b/gemfiles/ruby_3.2_elasticsearch_8.gemfile.lock @@ -56,7 +56,7 @@ GEM ffi (~> 1.0) libddwaf (1.18.0.0.0-x86_64-linux) ffi (~> 1.0) - logger (1.6.4) + logger (1.6.5) memory_profiler (0.9.14) method_source (1.0.0) msgpack (1.7.5) diff --git a/gemfiles/ruby_3.2_elasticsearch_latest.gemfile.lock b/gemfiles/ruby_3.2_elasticsearch_latest.gemfile.lock index e3cf9bdd515..cc58f290683 100644 --- a/gemfiles/ruby_3.2_elasticsearch_latest.gemfile.lock +++ b/gemfiles/ruby_3.2_elasticsearch_latest.gemfile.lock @@ -58,7 +58,7 @@ GEM ffi (~> 1.0) libddwaf (1.18.0.0.0-x86_64-linux) ffi (~> 1.0) - logger (1.6.4) + logger (1.6.5) memory_profiler (0.9.14) method_source (1.1.0) msgpack (1.7.5) diff --git a/gemfiles/ruby_3.2_opensearch_2.gemfile.lock b/gemfiles/ruby_3.2_opensearch_2.gemfile.lock index cde8942148e..c6c8fe3bd7b 100644 --- a/gemfiles/ruby_3.2_opensearch_2.gemfile.lock +++ b/gemfiles/ruby_3.2_opensearch_2.gemfile.lock @@ -48,7 +48,7 @@ GEM ffi (~> 1.0) libddwaf (1.18.0.0.0-x86_64-linux) ffi (~> 1.0) - logger (1.6.4) + logger (1.6.5) memory_profiler (0.9.14) method_source (1.0.0) msgpack (1.7.5) diff --git a/gemfiles/ruby_3.2_opensearch_3.gemfile.lock b/gemfiles/ruby_3.2_opensearch_3.gemfile.lock index 2024b9bb118..144ba96ed80 100644 --- a/gemfiles/ruby_3.2_opensearch_3.gemfile.lock +++ b/gemfiles/ruby_3.2_opensearch_3.gemfile.lock @@ -48,7 +48,7 @@ GEM ffi (~> 1.0) libddwaf (1.18.0.0.0-x86_64-linux) ffi (~> 1.0) - logger (1.6.4) + logger (1.6.5) memory_profiler (0.9.14) method_source (1.0.0) msgpack (1.7.5) diff --git a/gemfiles/ruby_3.2_opensearch_latest.gemfile.lock b/gemfiles/ruby_3.2_opensearch_latest.gemfile.lock index 097c12503fd..3b43e01e4cb 100644 --- a/gemfiles/ruby_3.2_opensearch_latest.gemfile.lock +++ b/gemfiles/ruby_3.2_opensearch_latest.gemfile.lock @@ -50,7 +50,7 @@ GEM ffi (~> 1.0) libddwaf (1.18.0.0.0-x86_64-linux) ffi (~> 1.0) - logger (1.6.4) + logger (1.6.5) memory_profiler (0.9.14) method_source (1.1.0) msgpack (1.7.5) diff --git a/gemfiles/ruby_3.3_elasticsearch_7.gemfile.lock b/gemfiles/ruby_3.3_elasticsearch_7.gemfile.lock index 784965d98cd..5cba7cd654e 100644 --- a/gemfiles/ruby_3.3_elasticsearch_7.gemfile.lock +++ b/gemfiles/ruby_3.3_elasticsearch_7.gemfile.lock @@ -57,7 +57,7 @@ GEM ffi (~> 1.0) libddwaf (1.18.0.0.0-x86_64-linux) ffi (~> 1.0) - logger (1.6.4) + logger (1.6.5) memory_profiler (0.9.14) method_source (1.0.0) msgpack (1.7.5) diff --git a/gemfiles/ruby_3.3_elasticsearch_8.gemfile.lock b/gemfiles/ruby_3.3_elasticsearch_8.gemfile.lock index 057d52feb71..86ac978ee06 100644 --- a/gemfiles/ruby_3.3_elasticsearch_8.gemfile.lock +++ b/gemfiles/ruby_3.3_elasticsearch_8.gemfile.lock @@ -55,7 +55,7 @@ GEM ffi (~> 1.0) libddwaf (1.18.0.0.0-x86_64-linux) ffi (~> 1.0) - logger (1.6.4) + logger (1.6.5) memory_profiler (0.9.14) method_source (1.0.0) msgpack (1.7.5) diff --git a/gemfiles/ruby_3.3_elasticsearch_latest.gemfile.lock b/gemfiles/ruby_3.3_elasticsearch_latest.gemfile.lock index e3cf9bdd515..cc58f290683 100644 --- a/gemfiles/ruby_3.3_elasticsearch_latest.gemfile.lock +++ b/gemfiles/ruby_3.3_elasticsearch_latest.gemfile.lock @@ -58,7 +58,7 @@ GEM ffi (~> 1.0) libddwaf (1.18.0.0.0-x86_64-linux) ffi (~> 1.0) - logger (1.6.4) + logger (1.6.5) memory_profiler (0.9.14) method_source (1.1.0) msgpack (1.7.5) diff --git a/gemfiles/ruby_3.3_opensearch_2.gemfile.lock b/gemfiles/ruby_3.3_opensearch_2.gemfile.lock index 7001c410d0d..e7bb6abae6a 100644 --- a/gemfiles/ruby_3.3_opensearch_2.gemfile.lock +++ b/gemfiles/ruby_3.3_opensearch_2.gemfile.lock @@ -47,7 +47,7 @@ GEM ffi (~> 1.0) libddwaf (1.18.0.0.0-x86_64-linux) ffi (~> 1.0) - logger (1.6.4) + logger (1.6.5) memory_profiler (0.9.14) method_source (1.0.0) msgpack (1.7.5) diff --git a/gemfiles/ruby_3.3_opensearch_3.gemfile.lock b/gemfiles/ruby_3.3_opensearch_3.gemfile.lock index 9ee685db918..0857f683a47 100644 --- a/gemfiles/ruby_3.3_opensearch_3.gemfile.lock +++ b/gemfiles/ruby_3.3_opensearch_3.gemfile.lock @@ -47,7 +47,7 @@ GEM ffi (~> 1.0) libddwaf (1.18.0.0.0-x86_64-linux) ffi (~> 1.0) - logger (1.6.4) + logger (1.6.5) memory_profiler (0.9.14) method_source (1.0.0) msgpack (1.7.5) diff --git a/gemfiles/ruby_3.3_opensearch_latest.gemfile.lock b/gemfiles/ruby_3.3_opensearch_latest.gemfile.lock index 097c12503fd..3b43e01e4cb 100644 --- a/gemfiles/ruby_3.3_opensearch_latest.gemfile.lock +++ b/gemfiles/ruby_3.3_opensearch_latest.gemfile.lock @@ -50,7 +50,7 @@ GEM ffi (~> 1.0) libddwaf (1.18.0.0.0-x86_64-linux) ffi (~> 1.0) - logger (1.6.4) + logger (1.6.5) memory_profiler (0.9.14) method_source (1.1.0) msgpack (1.7.5) diff --git a/gemfiles/ruby_3.4_elasticsearch_7.gemfile.lock b/gemfiles/ruby_3.4_elasticsearch_7.gemfile.lock index d663bf5481d..2564b37a837 100644 --- a/gemfiles/ruby_3.4_elasticsearch_7.gemfile.lock +++ b/gemfiles/ruby_3.4_elasticsearch_7.gemfile.lock @@ -59,7 +59,7 @@ GEM ffi (~> 1.0) libddwaf (1.18.0.0.0-x86_64-linux) ffi (~> 1.0) - logger (1.6.4) + logger (1.6.5) memory_profiler (0.9.14) method_source (1.1.0) msgpack (1.7.5) diff --git a/gemfiles/ruby_3.4_elasticsearch_8.gemfile.lock b/gemfiles/ruby_3.4_elasticsearch_8.gemfile.lock index 111bc6b766a..60d00d80b6b 100644 --- a/gemfiles/ruby_3.4_elasticsearch_8.gemfile.lock +++ b/gemfiles/ruby_3.4_elasticsearch_8.gemfile.lock @@ -58,7 +58,7 @@ GEM ffi (~> 1.0) libddwaf (1.18.0.0.0-x86_64-linux) ffi (~> 1.0) - logger (1.6.4) + logger (1.6.5) memory_profiler (0.9.14) method_source (1.1.0) msgpack (1.7.5) diff --git a/gemfiles/ruby_3.4_elasticsearch_latest.gemfile.lock b/gemfiles/ruby_3.4_elasticsearch_latest.gemfile.lock index 8a21918ef60..7053c88a07d 100644 --- a/gemfiles/ruby_3.4_elasticsearch_latest.gemfile.lock +++ b/gemfiles/ruby_3.4_elasticsearch_latest.gemfile.lock @@ -58,7 +58,7 @@ GEM ffi (~> 1.0) libddwaf (1.18.0.0.0-x86_64-linux) ffi (~> 1.0) - logger (1.6.4) + logger (1.6.5) memory_profiler (0.9.14) method_source (1.1.0) msgpack (1.7.5) diff --git a/gemfiles/ruby_3.4_opensearch_2.gemfile.lock b/gemfiles/ruby_3.4_opensearch_2.gemfile.lock index d29307f9bf9..184c5d32abe 100644 --- a/gemfiles/ruby_3.4_opensearch_2.gemfile.lock +++ b/gemfiles/ruby_3.4_opensearch_2.gemfile.lock @@ -50,7 +50,7 @@ GEM ffi (~> 1.0) libddwaf (1.18.0.0.0-x86_64-linux) ffi (~> 1.0) - logger (1.6.4) + logger (1.6.5) memory_profiler (0.9.14) method_source (1.1.0) msgpack (1.7.5) diff --git a/gemfiles/ruby_3.4_opensearch_3.gemfile.lock b/gemfiles/ruby_3.4_opensearch_3.gemfile.lock index adee5bddfda..63436353469 100644 --- a/gemfiles/ruby_3.4_opensearch_3.gemfile.lock +++ b/gemfiles/ruby_3.4_opensearch_3.gemfile.lock @@ -50,7 +50,7 @@ GEM ffi (~> 1.0) libddwaf (1.18.0.0.0-x86_64-linux) ffi (~> 1.0) - logger (1.6.4) + logger (1.6.5) memory_profiler (0.9.14) method_source (1.1.0) msgpack (1.7.5) diff --git a/gemfiles/ruby_3.4_opensearch_latest.gemfile.lock b/gemfiles/ruby_3.4_opensearch_latest.gemfile.lock index 978da8aeff3..d4dd4d05aa2 100644 --- a/gemfiles/ruby_3.4_opensearch_latest.gemfile.lock +++ b/gemfiles/ruby_3.4_opensearch_latest.gemfile.lock @@ -50,7 +50,7 @@ GEM ffi (~> 1.0) libddwaf (1.18.0.0.0-x86_64-linux) ffi (~> 1.0) - logger (1.6.4) + logger (1.6.5) memory_profiler (0.9.14) method_source (1.1.0) msgpack (1.7.5) From 3eae4aa100adb8d0a63f5599bdbdb325c5ec9b0c Mon Sep 17 00:00:00 2001 From: Sergey Fedorov Date: Thu, 9 Jan 2025 11:46:22 +0100 Subject: [PATCH 135/161] Add AppSec::Context class --- lib/datadog/appsec/context.rb | 58 +++++++++++++++++ spec/datadog/appsec/context_spec.rb | 96 +++++++++++++++++++++++++++++ 2 files changed, 154 insertions(+) create mode 100644 lib/datadog/appsec/context.rb create mode 100644 spec/datadog/appsec/context_spec.rb diff --git a/lib/datadog/appsec/context.rb b/lib/datadog/appsec/context.rb new file mode 100644 index 00000000000..28a8605c427 --- /dev/null +++ b/lib/datadog/appsec/context.rb @@ -0,0 +1,58 @@ +# frozen_string_literal: true + +module Datadog + module AppSec + # Write desciption TODO + class Context + attr_reader :trace, :service_entry_span, :processor_context + + def initialize(trace, service_entry_span, processor_context) + @trace = trace + @service_entry_span = service_entry_span + @processor_context = processor_context + end + + def finalize + @processor_context.finalize + end + + class << self + def activate_scope(trace, service_entry_span, processor) + raise ActiveScopeError, 'another scope is active, nested scopes are not supported' if active_scope + + context = processor.new_context + self.active_scope = new(trace, service_entry_span, context) + end + + def deactivate_scope + raise InactiveScopeError, 'no scope is active, nested scopes are not supported' unless active_scope + + scope = active_scope + + reset_active_scope + + scope.finalize + end + + def active_scope + Thread.current[:datadog_appsec_active_scope] + end + + private + + def active_scope=(scope) + raise ArgumentError, 'not a Datadog::AppSec::Scope' unless scope.instance_of?(Context) + + Thread.current[:datadog_appsec_active_scope] = scope + end + + def reset_active_scope + Thread.current[:datadog_appsec_active_scope] = nil + end + end + + class InactiveScopeError < StandardError; end + class ActiveScopeError < StandardError; end + end + end +end diff --git a/spec/datadog/appsec/context_spec.rb b/spec/datadog/appsec/context_spec.rb new file mode 100644 index 00000000000..0161d0124ea --- /dev/null +++ b/spec/datadog/appsec/context_spec.rb @@ -0,0 +1,96 @@ +# frozen_string_literal: true + +require 'datadog/appsec/spec_helper' +require 'datadog/appsec/context' + +RSpec.describe Datadog::AppSec::Context do + let(:trace) { double } + let(:span) { double } + let(:telemetry) { instance_double(Datadog::Core::Telemetry::Component) } + + let(:ruleset) { Datadog::AppSec::Processor::RuleLoader.load_rules(ruleset: :recommended, telemetry: telemetry) } + let(:processor) { Datadog::AppSec::Processor.new(ruleset: ruleset, telemetry: telemetry) } + + after do + described_class.send(:reset_active_scope) + processor.finalize + end + + describe '.activate_scope' do + context 'with no active scope' do + subject(:activate_scope) { described_class.activate_scope(trace, span, processor) } + + it 'returns a new scope' do + expect(activate_scope).to be_a described_class + end + + it 'sets the active scope' do + expect { activate_scope }.to change { described_class.active_scope }.from(nil).to be_a described_class + end + end + + context 'with an active scope' do + before do + described_class.activate_scope(trace, span, processor) + end + + subject(:activate_scope) { described_class.activate_scope(trace, span, processor) } + + it 'raises ActiveScopeError' do + expect { activate_scope }.to raise_error Datadog::AppSec::Context::ActiveScopeError + end + + it 'does not change the active scope' do + expect { activate_scope rescue nil }.to_not(change { described_class.active_scope }) + end + end + end + + describe '.deactivate_scope' do + context 'with no active scope' do + subject(:deactivate_scope) { described_class.deactivate_scope } + + it 'raises ActiveContextError' do + expect { deactivate_scope }.to raise_error Datadog::AppSec::Context::InactiveScopeError + end + + it 'does not change the active scope' do + expect { deactivate_scope rescue nil }.to_not(change { described_class.active_scope }) + end + end + + context 'with an active scope' do + let(:active_scope) { described_class.active_scope } + + subject(:deactivate_scope) { described_class.deactivate_scope } + + before do + allow(described_class).to receive(:new).and_call_original + + described_class.activate_scope(trace, span, processor) + + expect(active_scope).to receive(:finalize).and_call_original + end + + it 'unsets the active scope' do + expect { deactivate_scope }.to change { described_class.active_scope }.from(active_scope).to nil + end + end + end + + describe '.active_scope' do + subject(:active_scope) { described_class.active_scope } + + context 'with no active scope' do + it { is_expected.to be_nil } + end + + context 'with an active scope' do + before do + described_class.activate_scope(trace, span, processor) + end + + it { is_expected.to be_a described_class } + end + end +end From 57ca8badda072b5811c89d97c79bec698408f30e Mon Sep 17 00:00:00 2001 From: Sergey Fedorov Date: Thu, 9 Jan 2025 11:52:34 +0100 Subject: [PATCH 136/161] Remove AppSec::Scope class and its tests --- lib/datadog/appsec/scope.rb | 58 ------------------- spec/datadog/appsec/scope_spec.rb | 96 ------------------------------- 2 files changed, 154 deletions(-) delete mode 100644 lib/datadog/appsec/scope.rb delete mode 100644 spec/datadog/appsec/scope_spec.rb diff --git a/lib/datadog/appsec/scope.rb b/lib/datadog/appsec/scope.rb deleted file mode 100644 index 5fa27bf78fc..00000000000 --- a/lib/datadog/appsec/scope.rb +++ /dev/null @@ -1,58 +0,0 @@ -# frozen_string_literal: true - -module Datadog - module AppSec - # Capture context essential to consistently call processor and report via traces - class Scope - attr_reader :trace, :service_entry_span, :processor_context - - def initialize(trace, service_entry_span, processor_context) - @trace = trace - @service_entry_span = service_entry_span - @processor_context = processor_context - end - - def finalize - @processor_context.finalize - end - - class << self - def activate_scope(trace, service_entry_span, processor) - raise ActiveScopeError, 'another scope is active, nested scopes are not supported' if active_scope - - context = processor.new_context - self.active_scope = new(trace, service_entry_span, context) - end - - def deactivate_scope - raise InactiveScopeError, 'no scope is active, nested scopes are not supported' unless active_scope - - scope = active_scope - - reset_active_scope - - scope.finalize - end - - def active_scope - Thread.current[:datadog_appsec_active_scope] - end - - private - - def active_scope=(scope) - raise ArgumentError, 'not a Datadog::AppSec::Scope' unless scope.instance_of?(Scope) - - Thread.current[:datadog_appsec_active_scope] = scope - end - - def reset_active_scope - Thread.current[:datadog_appsec_active_scope] = nil - end - end - - class InactiveScopeError < StandardError; end - class ActiveScopeError < StandardError; end - end - end -end diff --git a/spec/datadog/appsec/scope_spec.rb b/spec/datadog/appsec/scope_spec.rb deleted file mode 100644 index 540e7fc3546..00000000000 --- a/spec/datadog/appsec/scope_spec.rb +++ /dev/null @@ -1,96 +0,0 @@ -# frozen_string_literal: true - -require 'datadog/appsec/spec_helper' -require 'datadog/appsec/scope' - -RSpec.describe Datadog::AppSec::Scope do - let(:trace) { double } - let(:span) { double } - let(:telemetry) { instance_double(Datadog::Core::Telemetry::Component) } - - let(:ruleset) { Datadog::AppSec::Processor::RuleLoader.load_rules(ruleset: :recommended, telemetry: telemetry) } - let(:processor) { Datadog::AppSec::Processor.new(ruleset: ruleset, telemetry: telemetry) } - - after do - described_class.send(:reset_active_scope) - processor.finalize - end - - describe '.activate_scope' do - context 'with no active scope' do - subject(:activate_scope) { described_class.activate_scope(trace, span, processor) } - - it 'returns a new scope' do - expect(activate_scope).to be_a described_class - end - - it 'sets the active scope' do - expect { activate_scope }.to change { described_class.active_scope }.from(nil).to be_a described_class - end - end - - context 'with an active scope' do - before do - described_class.activate_scope(trace, span, processor) - end - - subject(:activate_scope) { described_class.activate_scope(trace, span, processor) } - - it 'raises ActiveScopeError' do - expect { activate_scope }.to raise_error Datadog::AppSec::Scope::ActiveScopeError - end - - it 'does not change the active scope' do - expect { activate_scope rescue nil }.to_not(change { described_class.active_scope }) - end - end - end - - describe '.deactivate_scope' do - context 'with no active scope' do - subject(:deactivate_scope) { described_class.deactivate_scope } - - it 'raises ActiveScopeError' do - expect { deactivate_scope }.to raise_error Datadog::AppSec::Scope::InactiveScopeError - end - - it 'does not change the active scope' do - expect { deactivate_scope rescue nil }.to_not(change { described_class.active_scope }) - end - end - - context 'with an active scope' do - let(:active_scope) { described_class.active_scope } - - subject(:deactivate_scope) { described_class.deactivate_scope } - - before do - allow(described_class).to receive(:new).and_call_original - - described_class.activate_scope(trace, span, processor) - - expect(active_scope).to receive(:finalize).and_call_original - end - - it 'unsets the active scope' do - expect { deactivate_scope }.to change { described_class.active_scope }.from(active_scope).to nil - end - end - end - - describe '.active_scope' do - subject(:active_scope) { described_class.active_scope } - - context 'with no active scope' do - it { is_expected.to be_nil } - end - - context 'with an active scope' do - before do - described_class.activate_scope(trace, span, processor) - end - - it { is_expected.to be_a described_class } - end - end -end From e900c0f84064c072f120bdbc8461f0c0e2bd06f3 Mon Sep 17 00:00:00 2001 From: Sergey Fedorov Date: Thu, 9 Jan 2025 12:03:06 +0100 Subject: [PATCH 137/161] Rename scope variables into context --- lib/datadog/appsec.rb | 4 +- .../contrib/active_record/instrumentation.rb | 14 +++--- .../devise/patcher/authenticatable_patch.rb | 12 ++--- .../patcher/registration_controller_patch.rb | 8 +-- .../appsec/contrib/graphql/gateway/watcher.rb | 14 +++--- .../appsec/contrib/rack/gateway/watcher.rb | 42 ++++++++-------- .../appsec/contrib/rack/request_middleware.rb | 46 ++++++++--------- .../appsec/contrib/rails/gateway/watcher.rb | 14 +++--- .../appsec/contrib/sinatra/gateway/watcher.rb | 28 +++++------ lib/datadog/appsec/event.rb | 12 ++--- lib/datadog/appsec/monitor/gateway/watcher.rb | 14 +++--- lib/datadog/kit/appsec/events.rb | 6 +-- lib/datadog/kit/identity.rb | 6 +-- spec/datadog/appsec/context_spec.rb | 9 ++-- .../active_record/mysql2_adapter_spec.rb | 4 +- .../active_record/postgresql_adapter_spec.rb | 4 +- .../active_record/sqlite3_adapter_spec.rb | 4 +- .../patcher/authenticatable_patch_spec.rb | 42 ++++++++-------- .../registration_controller_patch_spec.rb | 40 +++++++-------- .../contrib/rack/gateway/response_spec.rb | 4 +- .../contrib/rack/reactive/response_spec.rb | 6 +-- spec/datadog/appsec/event_spec.rb | 50 +++++++++---------- spec/datadog/kit/appsec/events_spec.rb | 18 +++---- spec/datadog/kit/identity_spec.rb | 10 ++-- 24 files changed, 204 insertions(+), 207 deletions(-) diff --git a/lib/datadog/appsec.rb b/lib/datadog/appsec.rb index 5f96dbdd5fa..3faed0980d0 100644 --- a/lib/datadog/appsec.rb +++ b/lib/datadog/appsec.rb @@ -2,7 +2,7 @@ require_relative 'appsec/configuration' require_relative 'appsec/extensions' -require_relative 'appsec/scope' +require_relative 'appsec/context' require_relative 'appsec/ext' require_relative 'appsec/utils' @@ -15,7 +15,7 @@ def enabled? end def active_scope - Datadog::AppSec::Scope.active_scope + Datadog::AppSec::Context.active_scope end def processor diff --git a/lib/datadog/appsec/contrib/active_record/instrumentation.rb b/lib/datadog/appsec/contrib/active_record/instrumentation.rb index 3b226a9aafb..1969e5df365 100644 --- a/lib/datadog/appsec/contrib/active_record/instrumentation.rb +++ b/lib/datadog/appsec/contrib/active_record/instrumentation.rb @@ -9,8 +9,8 @@ module Instrumentation module_function def detect_sql_injection(sql, adapter_name) - scope = AppSec.active_scope - return unless scope + context = AppSec.active_scope + return unless context # libddwaf expects db system to be lowercase, # in case of sqlite adapter, libddwaf expects 'sqlite' as db system @@ -23,19 +23,19 @@ def detect_sql_injection(sql, adapter_name) } waf_timeout = Datadog.configuration.appsec.waf_timeout - result = scope.processor_context.run({}, ephemeral_data, waf_timeout) + result = context.processor_context.run({}, ephemeral_data, waf_timeout) if result.status == :match - Datadog::AppSec::Event.tag_and_keep!(scope, result) + Datadog::AppSec::Event.tag_and_keep!(context, result) event = { waf_result: result, - trace: scope.trace, - span: scope.service_entry_span, + trace: context.trace, + span: context.service_entry_span, sql: sql, actions: result.actions } - scope.processor_context.events << event + context.processor_context.events << event end end diff --git a/lib/datadog/appsec/contrib/devise/patcher/authenticatable_patch.rb b/lib/datadog/appsec/contrib/devise/patcher/authenticatable_patch.rb index ecd5b186821..401fa44e66d 100644 --- a/lib/datadog/appsec/contrib/devise/patcher/authenticatable_patch.rb +++ b/lib/datadog/appsec/contrib/devise/patcher/authenticatable_patch.rb @@ -23,9 +23,9 @@ def validate(resource, &block) automated_track_user_events_mode = track_user_events_configuration.mode - appsec_scope = Datadog::AppSec.active_scope + appsec_context = Datadog::AppSec.active_scope - return result unless appsec_scope + return result unless appsec_context devise_resource = resource ? Resource.new(resource) : nil @@ -39,8 +39,8 @@ def validate(resource, &block) end Tracking.track_login_success( - appsec_scope.trace, - appsec_scope.service_entry_span, + appsec_context.trace, + appsec_context.service_entry_span, user_id: event_information.user_id, **event_information.to_h ) @@ -59,8 +59,8 @@ def validate(resource, &block) end Tracking.track_login_failure( - appsec_scope.trace, - appsec_scope.service_entry_span, + appsec_context.trace, + appsec_context.service_entry_span, user_id: event_information.user_id, user_exists: user_exists, **event_information.to_h diff --git a/lib/datadog/appsec/contrib/devise/patcher/registration_controller_patch.rb b/lib/datadog/appsec/contrib/devise/patcher/registration_controller_patch.rb index 1b8fae31266..409a7606f71 100644 --- a/lib/datadog/appsec/contrib/devise/patcher/registration_controller_patch.rb +++ b/lib/datadog/appsec/contrib/devise/patcher/registration_controller_patch.rb @@ -20,8 +20,8 @@ def create automated_track_user_events_mode = track_user_events_configuration.mode - appsec_scope = Datadog::AppSec.active_scope - return super unless appsec_scope + appsec_context = Datadog::AppSec.active_scope + return super unless appsec_context super do |resource| if resource.persisted? @@ -36,8 +36,8 @@ def create end Tracking.track_signup( - appsec_scope.trace, - appsec_scope.service_entry_span, + appsec_context.trace, + appsec_context.service_entry_span, user_id: event_information.user_id, **event_information.to_h ) diff --git a/lib/datadog/appsec/contrib/graphql/gateway/watcher.rb b/lib/datadog/appsec/contrib/graphql/gateway/watcher.rb index 7fae08aad72..b98d3de9581 100644 --- a/lib/datadog/appsec/contrib/graphql/gateway/watcher.rb +++ b/lib/datadog/appsec/contrib/graphql/gateway/watcher.rb @@ -24,21 +24,21 @@ def watch_multiplex(gateway = Instrumentation.gateway) gateway.watch('graphql.multiplex', :appsec) do |stack, gateway_multiplex| block = false event = nil - scope = AppSec::Scope.active_scope + context = AppSec::Context.active_scope engine = AppSec::Reactive::Engine.new - if scope - GraphQL::Reactive::Multiplex.subscribe(engine, scope.processor_context) do |result| + if context + GraphQL::Reactive::Multiplex.subscribe(engine, context.processor_context) do |result| event = { waf_result: result, - trace: scope.trace, - span: scope.service_entry_span, + trace: context.trace, + span: context.service_entry_span, multiplex: gateway_multiplex, actions: result.actions } - Datadog::AppSec::Event.tag_and_keep!(scope, result) - scope.processor_context.events << event + Datadog::AppSec::Event.tag_and_keep!(context, result) + context.processor_context.events << event end block = GraphQL::Reactive::Multiplex.publish(engine, gateway_multiplex) diff --git a/lib/datadog/appsec/contrib/rack/gateway/watcher.rb b/lib/datadog/appsec/contrib/rack/gateway/watcher.rb index b5c55a15ac9..30d3444bda4 100644 --- a/lib/datadog/appsec/contrib/rack/gateway/watcher.rb +++ b/lib/datadog/appsec/contrib/rack/gateway/watcher.rb @@ -26,24 +26,24 @@ def watch def watch_request(gateway = Instrumentation.gateway) gateway.watch('rack.request', :appsec) do |stack, gateway_request| event = nil - scope = gateway_request.env[Datadog::AppSec::Ext::SCOPE_KEY] + context = gateway_request.env[Datadog::AppSec::Ext::SCOPE_KEY] engine = AppSec::Reactive::Engine.new - Rack::Reactive::Request.subscribe(engine, scope.processor_context) do |result| + Rack::Reactive::Request.subscribe(engine, context.processor_context) do |result| if result.status == :match # TODO: should this hash be an Event instance instead? event = { waf_result: result, - trace: scope.trace, - span: scope.service_entry_span, + trace: context.trace, + span: context.service_entry_span, request: gateway_request, actions: result.actions } # We want to keep the trace in case of security event - scope.trace.keep! if scope.trace - Datadog::AppSec::Event.tag_and_keep!(scope, result) - scope.processor_context.events << event + context.trace.keep! if context.trace + Datadog::AppSec::Event.tag_and_keep!(context, result) + context.processor_context.events << event end end @@ -57,24 +57,24 @@ def watch_request(gateway = Instrumentation.gateway) def watch_response(gateway = Instrumentation.gateway) gateway.watch('rack.response', :appsec) do |stack, gateway_response| event = nil - scope = gateway_response.scope + context = gateway_response.scope engine = AppSec::Reactive::Engine.new - Rack::Reactive::Response.subscribe(engine, scope.processor_context) do |result| + Rack::Reactive::Response.subscribe(engine, context.processor_context) do |result| if result.status == :match # TODO: should this hash be an Event instance instead? event = { waf_result: result, - trace: scope.trace, - span: scope.service_entry_span, + trace: context.trace, + span: context.service_entry_span, response: gateway_response, actions: result.actions } # We want to keep the trace in case of security event - scope.trace.keep! if scope.trace - Datadog::AppSec::Event.tag_and_keep!(scope, result) - scope.processor_context.events << event + context.trace.keep! if context.trace + Datadog::AppSec::Event.tag_and_keep!(context, result) + context.processor_context.events << event end end @@ -88,24 +88,24 @@ def watch_response(gateway = Instrumentation.gateway) def watch_request_body(gateway = Instrumentation.gateway) gateway.watch('rack.request.body', :appsec) do |stack, gateway_request| event = nil - scope = gateway_request.env[Datadog::AppSec::Ext::SCOPE_KEY] + context = gateway_request.env[Datadog::AppSec::Ext::SCOPE_KEY] engine = AppSec::Reactive::Engine.new - Rack::Reactive::RequestBody.subscribe(engine, scope.processor_context) do |result| + Rack::Reactive::RequestBody.subscribe(engine, context.processor_context) do |result| if result.status == :match # TODO: should this hash be an Event instance instead? event = { waf_result: result, - trace: scope.trace, - span: scope.service_entry_span, + trace: context.trace, + span: context.service_entry_span, request: gateway_request, actions: result.actions } # We want to keep the trace in case of security event - scope.trace.keep! if scope.trace - Datadog::AppSec::Event.tag_and_keep!(scope, result) - scope.processor_context.events << event + context.trace.keep! if context.trace + Datadog::AppSec::Event.tag_and_keep!(context, result) + context.processor_context.events << event end end diff --git a/lib/datadog/appsec/contrib/rack/request_middleware.rb b/lib/datadog/appsec/contrib/rack/request_middleware.rb index cbb232c00e3..7bcbf73c827 100644 --- a/lib/datadog/appsec/contrib/rack/request_middleware.rb +++ b/lib/datadog/appsec/contrib/rack/request_middleware.rb @@ -45,7 +45,7 @@ def call(env) processor = nil ready = false - scope = nil + ctx = nil # For a given request, keep using the first Rack stack scope for # nested apps. Don't set `context` local variable so that on popping @@ -56,8 +56,8 @@ def call(env) processor = Datadog::AppSec.processor if !processor.nil? && processor.ready? - scope = Datadog::AppSec::Scope.activate_scope(active_trace, active_span, processor) - env[Datadog::AppSec::Ext::SCOPE_KEY] = scope + ctx = Datadog::AppSec::Context.activate_scope(active_trace, active_span, processor) + env[Datadog::AppSec::Ext::SCOPE_KEY] = ctx ready = true end end @@ -68,8 +68,8 @@ def call(env) gateway_request = Gateway::Request.new(env) - add_appsec_tags(processor, scope) - add_request_tags(scope, env) + add_appsec_tags(processor, ctx) + add_request_tags(ctx, env) request_return, request_response = catch(::Datadog::AppSec::Ext::INTERRUPT) do Instrumentation.gateway.push('rack.request', gateway_request) do @@ -86,27 +86,27 @@ def call(env) request_return[2], request_return[0], request_return[1], - scope: scope, + scope: ctx, ) _response_return, response_response = Instrumentation.gateway.push('rack.response', gateway_response) - result = scope.processor_context.extract_schema + result = ctx.processor_context.extract_schema if result - scope.processor_context.events << { - trace: scope.trace, - span: scope.service_entry_span, + ctx.processor_context.events << { + trace: ctx.trace, + span: ctx.service_entry_span, waf_result: result, } end - scope.processor_context.events.each do |e| + ctx.processor_context.events.each do |e| e[:response] ||= gateway_response e[:request] ||= gateway_request end - AppSec::Event.record(scope.service_entry_span, *scope.processor_context.events) + AppSec::Event.record(ctx.service_entry_span, *ctx.processor_context.events) if response_response blocked_event = response_response.find { |action, _options| action == :block } @@ -115,9 +115,9 @@ def call(env) request_return ensure - if scope - add_waf_runtime_tags(scope) - Datadog::AppSec::Scope.deactivate_scope + if ctx + add_waf_runtime_tags(ctx) + Datadog::AppSec::Context.deactivate_scope end end # rubocop:enable Metrics/AbcSize,Metrics/PerceivedComplexity,Metrics/CyclomaticComplexity,Metrics/MethodLength @@ -144,9 +144,9 @@ def active_span Datadog::Tracing.active_span end - def add_appsec_tags(processor, scope) - span = scope.service_entry_span - trace = scope.trace + def add_appsec_tags(processor, context) + span = context.service_entry_span + trace = context.trace return unless trace && span @@ -181,8 +181,8 @@ def add_appsec_tags(processor, scope) end end - def add_request_tags(scope, env) - span = scope.service_entry_span + def add_request_tags(context, env) + span = context.service_entry_span return unless span @@ -204,9 +204,9 @@ def add_request_tags(scope, env) end end - def add_waf_runtime_tags(scope) - span = scope.service_entry_span - context = scope.processor_context + def add_waf_runtime_tags(context) + span = context.service_entry_span + context = context.processor_context return unless span && context diff --git a/lib/datadog/appsec/contrib/rails/gateway/watcher.rb b/lib/datadog/appsec/contrib/rails/gateway/watcher.rb index 0a1bd7ea9f5..ba1105fe58a 100644 --- a/lib/datadog/appsec/contrib/rails/gateway/watcher.rb +++ b/lib/datadog/appsec/contrib/rails/gateway/watcher.rb @@ -22,24 +22,24 @@ def watch def watch_request_action(gateway = Instrumentation.gateway) gateway.watch('rails.request.action', :appsec) do |stack, gateway_request| event = nil - scope = gateway_request.env[Datadog::AppSec::Ext::SCOPE_KEY] + context = gateway_request.env[Datadog::AppSec::Ext::SCOPE_KEY] engine = AppSec::Reactive::Engine.new - Rails::Reactive::Action.subscribe(engine, scope.processor_context) do |result| + Rails::Reactive::Action.subscribe(engine, context.processor_context) do |result| if result.status == :match # TODO: should this hash be an Event instance instead? event = { waf_result: result, - trace: scope.trace, - span: scope.service_entry_span, + trace: context.trace, + span: context.service_entry_span, request: gateway_request, actions: result.actions } # We want to keep the trace in case of security event - scope.trace.keep! if scope.trace - Datadog::AppSec::Event.tag_and_keep!(scope, result) - scope.processor_context.events << event + context.trace.keep! if context.trace + Datadog::AppSec::Event.tag_and_keep!(context, result) + context.processor_context.events << event end end diff --git a/lib/datadog/appsec/contrib/sinatra/gateway/watcher.rb b/lib/datadog/appsec/contrib/sinatra/gateway/watcher.rb index 6524fef0ada..5bd14e38792 100644 --- a/lib/datadog/appsec/contrib/sinatra/gateway/watcher.rb +++ b/lib/datadog/appsec/contrib/sinatra/gateway/watcher.rb @@ -24,24 +24,24 @@ def watch def watch_request_dispatch(gateway = Instrumentation.gateway) gateway.watch('sinatra.request.dispatch', :appsec) do |stack, gateway_request| event = nil - scope = gateway_request.env[Datadog::AppSec::Ext::SCOPE_KEY] + context = gateway_request.env[Datadog::AppSec::Ext::SCOPE_KEY] engine = AppSec::Reactive::Engine.new - Rack::Reactive::RequestBody.subscribe(engine, scope.processor_context) do |result| + Rack::Reactive::RequestBody.subscribe(engine, context.processor_context) do |result| if result.status == :match # TODO: should this hash be an Event instance instead? event = { waf_result: result, - trace: scope.trace, - span: scope.service_entry_span, + trace: context.trace, + span: context.service_entry_span, request: gateway_request, actions: result.actions } # We want to keep the trace in case of security event - scope.trace.keep! if scope.trace - Datadog::AppSec::Event.tag_and_keep!(scope, result) - scope.processor_context.events << event + context.trace.keep! if context.trace + Datadog::AppSec::Event.tag_and_keep!(context, result) + context.processor_context.events << event end end @@ -55,24 +55,24 @@ def watch_request_dispatch(gateway = Instrumentation.gateway) def watch_request_routed(gateway = Instrumentation.gateway) gateway.watch('sinatra.request.routed', :appsec) do |stack, (gateway_request, gateway_route_params)| event = nil - scope = gateway_request.env[Datadog::AppSec::Ext::SCOPE_KEY] + context = gateway_request.env[Datadog::AppSec::Ext::SCOPE_KEY] engine = AppSec::Reactive::Engine.new - Sinatra::Reactive::Routed.subscribe(engine, scope.processor_context) do |result| + Sinatra::Reactive::Routed.subscribe(engine, context.processor_context) do |result| if result.status == :match # TODO: should this hash be an Event instance instead? event = { waf_result: result, - trace: scope.trace, - span: scope.service_entry_span, + trace: context.trace, + span: context.service_entry_span, request: gateway_request, actions: result.actions } # We want to keep the trace in case of security event - scope.trace.keep! if scope.trace - Datadog::AppSec::Event.tag_and_keep!(scope, result) - scope.processor_context.events << event + context.trace.keep! if context.trace + Datadog::AppSec::Event.tag_and_keep!(context, result) + context.processor_context.events << event end end diff --git a/lib/datadog/appsec/event.rb b/lib/datadog/appsec/event.rb index d3537f30d8f..37ab9da4e8a 100644 --- a/lib/datadog/appsec/event.rb +++ b/lib/datadog/appsec/event.rb @@ -137,16 +137,16 @@ def build_service_entry_tags(event_group) end # rubocop:enable Metrics/MethodLength - def tag_and_keep!(scope, waf_result) + def tag_and_keep!(context, waf_result) # We want to keep the trace in case of security event - scope.trace.keep! if scope.trace + context.trace.keep! if context.trace - if scope.service_entry_span - scope.service_entry_span.set_tag('appsec.blocked', 'true') if waf_result.actions.key?('block_request') - scope.service_entry_span.set_tag('appsec.event', 'true') + if context.service_entry_span + context.service_entry_span.set_tag('appsec.blocked', 'true') if waf_result.actions.key?('block_request') + context.service_entry_span.set_tag('appsec.event', 'true') end - add_distributed_tags(scope.trace) + add_distributed_tags(context.trace) end private diff --git a/lib/datadog/appsec/monitor/gateway/watcher.rb b/lib/datadog/appsec/monitor/gateway/watcher.rb index 3a17b7dc831..7f31052e1cb 100644 --- a/lib/datadog/appsec/monitor/gateway/watcher.rb +++ b/lib/datadog/appsec/monitor/gateway/watcher.rb @@ -20,24 +20,24 @@ def watch def watch_user_id(gateway = Instrumentation.gateway) gateway.watch('identity.set_user', :appsec) do |stack, user| event = nil - scope = Datadog::AppSec.active_scope + context = Datadog::AppSec.active_scope engine = AppSec::Reactive::Engine.new - Monitor::Reactive::SetUser.subscribe(engine, scope.processor_context) do |result| + Monitor::Reactive::SetUser.subscribe(engine, context.processor_context) do |result| if result.status == :match # TODO: should this hash be an Event instance instead? event = { waf_result: result, - trace: scope.trace, - span: scope.service_entry_span, + trace: context.trace, + span: context.service_entry_span, user: user, actions: result.actions } # We want to keep the trace in case of security event - scope.trace.keep! if scope.trace - Datadog::AppSec::Event.tag_and_keep!(scope, result) - scope.processor_context.events << event + context.trace.keep! if context.trace + Datadog::AppSec::Event.tag_and_keep!(context, result) + context.processor_context.events << event end end diff --git a/lib/datadog/kit/appsec/events.rb b/lib/datadog/kit/appsec/events.rb index be0b0f049c1..1e7ed0406a9 100644 --- a/lib/datadog/kit/appsec/events.rb +++ b/lib/datadog/kit/appsec/events.rb @@ -136,9 +136,9 @@ def track(event, trace = nil, span = nil, **others) private def set_trace_and_span_context(method, trace = nil, span = nil) - if (appsec_scope = Datadog::AppSec.active_scope) - trace = appsec_scope.trace - span = appsec_scope.service_entry_span + if (appsec_context = Datadog::AppSec.active_scope) + trace = appsec_context.trace + span = appsec_context.service_entry_span end trace ||= Datadog::Tracing.active_trace diff --git a/lib/datadog/kit/identity.rb b/lib/datadog/kit/identity.rb index a9b122d80c4..8a9711fe703 100644 --- a/lib/datadog/kit/identity.rb +++ b/lib/datadog/kit/identity.rb @@ -78,9 +78,9 @@ def set_user( private def set_trace_and_span_context(method, trace = nil, span = nil) - if (appsec_scope = Datadog::AppSec.active_scope) - trace = appsec_scope.trace - span = appsec_scope.service_entry_span + if (appsec_context = Datadog::AppSec.active_scope) + trace = appsec_context.trace + span = appsec_context.service_entry_span end trace ||= Datadog::Tracing.active_trace diff --git a/spec/datadog/appsec/context_spec.rb b/spec/datadog/appsec/context_spec.rb index 0161d0124ea..637f63ad2eb 100644 --- a/spec/datadog/appsec/context_spec.rb +++ b/spec/datadog/appsec/context_spec.rb @@ -61,7 +61,6 @@ context 'with an active scope' do let(:active_scope) { described_class.active_scope } - subject(:deactivate_scope) { described_class.deactivate_scope } before do @@ -81,14 +80,12 @@ describe '.active_scope' do subject(:active_scope) { described_class.active_scope } - context 'with no active scope' do + context 'with no active context' do it { is_expected.to be_nil } end - context 'with an active scope' do - before do - described_class.activate_scope(trace, span, processor) - end + context 'with an active context' do + before { described_class.activate_scope(trace, span, processor) } it { is_expected.to be_a described_class } end diff --git a/spec/datadog/appsec/contrib/active_record/mysql2_adapter_spec.rb b/spec/datadog/appsec/contrib/active_record/mysql2_adapter_spec.rb index 6c5777adc1f..60e9138d885 100644 --- a/spec/datadog/appsec/contrib/active_record/mysql2_adapter_spec.rb +++ b/spec/datadog/appsec/contrib/active_record/mysql2_adapter_spec.rb @@ -52,7 +52,7 @@ c.appsec.instrument :active_record end - Datadog::AppSec::Scope.activate_scope(trace, span, processor) + Datadog::AppSec::Context.activate_scope(trace, span, processor) raise_on_rails_deprecation! end @@ -60,7 +60,7 @@ after do Datadog.configuration.reset! - Datadog::AppSec::Scope.deactivate_scope + Datadog::AppSec::Context.deactivate_scope processor.finalize end diff --git a/spec/datadog/appsec/contrib/active_record/postgresql_adapter_spec.rb b/spec/datadog/appsec/contrib/active_record/postgresql_adapter_spec.rb index 5ebd8e0cacb..ee8249c72c6 100644 --- a/spec/datadog/appsec/contrib/active_record/postgresql_adapter_spec.rb +++ b/spec/datadog/appsec/contrib/active_record/postgresql_adapter_spec.rb @@ -53,7 +53,7 @@ c.appsec.instrument :active_record end - Datadog::AppSec::Scope.activate_scope(trace, span, processor) + Datadog::AppSec::Context.activate_scope(trace, span, processor) raise_on_rails_deprecation! end @@ -61,7 +61,7 @@ after do Datadog.configuration.reset! - Datadog::AppSec::Scope.deactivate_scope + Datadog::AppSec::Context.deactivate_scope processor.finalize end diff --git a/spec/datadog/appsec/contrib/active_record/sqlite3_adapter_spec.rb b/spec/datadog/appsec/contrib/active_record/sqlite3_adapter_spec.rb index 778fe952a30..346d18e1e3b 100644 --- a/spec/datadog/appsec/contrib/active_record/sqlite3_adapter_spec.rb +++ b/spec/datadog/appsec/contrib/active_record/sqlite3_adapter_spec.rb @@ -49,7 +49,7 @@ c.appsec.instrument :active_record end - Datadog::AppSec::Scope.activate_scope(trace, span, processor) + Datadog::AppSec::Context.activate_scope(trace, span, processor) raise_on_rails_deprecation! end @@ -57,7 +57,7 @@ after do Datadog.configuration.reset! - Datadog::AppSec::Scope.deactivate_scope + Datadog::AppSec::Context.deactivate_scope processor.finalize end diff --git a/spec/datadog/appsec/contrib/devise/patcher/authenticatable_patch_spec.rb b/spec/datadog/appsec/contrib/devise/patcher/authenticatable_patch_spec.rb index 7985e8dde31..e0efba2c2d8 100644 --- a/spec/datadog/appsec/contrib/devise/patcher/authenticatable_patch_spec.rb +++ b/spec/datadog/appsec/contrib/devise/patcher/authenticatable_patch_spec.rb @@ -43,7 +43,7 @@ def initialize(id, email, username) if appsec_enabled allow(Datadog.configuration.appsec).to receive(:track_user_events).and_return(automated_track_user_events) - allow(Datadog::AppSec).to receive(:active_scope).and_return(appsec_scope) if track_user_events_enabled + allow(Datadog::AppSec).to receive(:active_scope).and_return(appsec_context) if track_user_events_enabled end end @@ -71,7 +71,7 @@ def initialize(id, email, username) let(:appsec_enabled) { true } let(:track_user_events_enabled) { true } let(:mode) { 'safe' } - let(:appsec_scope) { nil } + let(:appsec_context) { nil } it 'do not tracks event' do expect(Datadog::AppSec::Contrib::Devise::Tracking).to_not receive(:track_login_success) @@ -82,7 +82,7 @@ def initialize(id, email, username) context 'when logging in from Rememberable devise strategy' do let(:appsec_enabled) { true } let(:track_user_events_enabled) { true } - let(:appsec_scope) { instance_double(Datadog::AppSec::Scope, trace: double, service_entry_span: double) } + let(:appsec_context) { instance_double(Datadog::AppSec::Context, trace: double, service_entry_span: double) } let(:mock_klass) do Class.new do @@ -109,7 +109,7 @@ def initialize(result) context 'successful login' do let(:appsec_enabled) { true } let(:track_user_events_enabled) { true } - let(:appsec_scope) { instance_double(Datadog::AppSec::Scope, trace: double, service_entry_span: double) } + let(:appsec_context) { instance_double(Datadog::AppSec::Context, trace: double, service_entry_span: double) } context 'with resource ID' do context 'safe mode' do @@ -117,8 +117,8 @@ def initialize(result) it 'tracks event' do expect(Datadog::AppSec::Contrib::Devise::Tracking).to receive(:track_login_success).with( - appsec_scope.trace, - appsec_scope.service_entry_span, + appsec_context.trace, + appsec_context.service_entry_span, user_id: resource.id, **{} ) @@ -131,8 +131,8 @@ def initialize(result) it 'tracks event' do expect(Datadog::AppSec::Contrib::Devise::Tracking).to receive(:track_login_success).with( - appsec_scope.trace, - appsec_scope.service_entry_span, + appsec_context.trace, + appsec_context.service_entry_span, user_id: resource.id, **{ username: 'John', email: 'hello@gmail.com' } ) @@ -149,8 +149,8 @@ def initialize(result) it 'tracks event' do expect(Datadog::AppSec::Contrib::Devise::Tracking).to receive(:track_login_success).with( - appsec_scope.trace, - appsec_scope.service_entry_span, + appsec_context.trace, + appsec_context.service_entry_span, user_id: nil, **{} ) @@ -163,8 +163,8 @@ def initialize(result) it 'tracks event' do expect(Datadog::AppSec::Contrib::Devise::Tracking).to receive(:track_login_success).with( - appsec_scope.trace, - appsec_scope.service_entry_span, + appsec_context.trace, + appsec_context.service_entry_span, user_id: nil, **{ username: 'John', email: 'hello@gmail.com' } ) @@ -177,7 +177,7 @@ def initialize(result) context 'unsuccessful login' do let(:appsec_enabled) { true } let(:track_user_events_enabled) { true } - let(:appsec_scope) { instance_double(Datadog::AppSec::Scope, trace: double, service_entry_span: double) } + let(:appsec_context) { instance_double(Datadog::AppSec::Context, trace: double, service_entry_span: double) } context 'with resource' do context 'safe mode' do @@ -185,8 +185,8 @@ def initialize(result) it 'tracks event' do expect(Datadog::AppSec::Contrib::Devise::Tracking).to receive(:track_login_failure).with( - appsec_scope.trace, - appsec_scope.service_entry_span, + appsec_context.trace, + appsec_context.service_entry_span, user_id: resource.id, user_exists: true, **{} @@ -200,8 +200,8 @@ def initialize(result) it 'tracks event' do expect(Datadog::AppSec::Contrib::Devise::Tracking).to receive(:track_login_failure).with( - appsec_scope.trace, - appsec_scope.service_entry_span, + appsec_context.trace, + appsec_context.service_entry_span, user_id: resource.id, user_exists: true, **{ username: 'John', email: 'hello@gmail.com' } @@ -217,8 +217,8 @@ def initialize(result) it 'tracks event' do expect(Datadog::AppSec::Contrib::Devise::Tracking).to receive(:track_login_failure).with( - appsec_scope.trace, - appsec_scope.service_entry_span, + appsec_context.trace, + appsec_context.service_entry_span, user_id: nil, user_exists: false, **{} @@ -232,8 +232,8 @@ def initialize(result) it 'tracks event' do expect(Datadog::AppSec::Contrib::Devise::Tracking).to receive(:track_login_failure).with( - appsec_scope.trace, - appsec_scope.service_entry_span, + appsec_context.trace, + appsec_context.service_entry_span, user_id: nil, user_exists: false, **{} diff --git a/spec/datadog/appsec/contrib/devise/patcher/registration_controller_patch_spec.rb b/spec/datadog/appsec/contrib/devise/patcher/registration_controller_patch_spec.rb index daeb24569cf..b404fe264c0 100644 --- a/spec/datadog/appsec/contrib/devise/patcher/registration_controller_patch_spec.rb +++ b/spec/datadog/appsec/contrib/devise/patcher/registration_controller_patch_spec.rb @@ -54,7 +54,7 @@ def try(value) if appsec_enabled expect(Datadog.configuration.appsec).to receive(:track_user_events).and_return(automated_track_user_events) - expect(Datadog::AppSec).to receive(:active_scope).and_return(appsec_scope) if track_user_events_enabled + expect(Datadog::AppSec).to receive(:active_scope).and_return(appsec_context) if track_user_events_enabled end end @@ -105,7 +105,7 @@ def try(value) let(:appsec_enabled) { true } let(:track_user_events_enabled) { true } let(:mode) { 'safe' } - let(:appsec_scope) { nil } + let(:appsec_context) { nil } it 'do not tracks event' do expect(Datadog::AppSec::Contrib::Devise::Tracking).to_not receive(:track_signup) @@ -127,7 +127,7 @@ def try(value) context 'with persisted resource' do let(:appsec_enabled) { true } let(:track_user_events_enabled) { true } - let(:appsec_scope) { instance_double(Datadog::AppSec::Scope, trace: double, service_entry_span: double) } + let(:appsec_context) { instance_double(Datadog::AppSec::Context, trace: double, service_entry_span: double) } context 'with resource ID' do let(:resource) { persited_resource } @@ -141,8 +141,8 @@ def try(value) it 'tracks event' do expect(Datadog::AppSec::Contrib::Devise::Tracking).to receive(:track_signup).with( - appsec_scope.trace, - appsec_scope.service_entry_span, + appsec_context.trace, + appsec_context.service_entry_span, user_id: resource.id, **{} ) @@ -156,8 +156,8 @@ def try(value) it 'tracks event' do expect(Datadog::AppSec::Contrib::Devise::Tracking).to receive(:track_signup).with( - appsec_scope.trace, - appsec_scope.service_entry_span, + appsec_context.trace, + appsec_context.service_entry_span, user_id: resource.id, **{ email: 'hello@gmail.com', username: 'John' } ) @@ -172,8 +172,8 @@ def try(value) it 'tracks event' do expect(Datadog::AppSec::Contrib::Devise::Tracking).to receive(:track_signup).with( - appsec_scope.trace, - appsec_scope.service_entry_span, + appsec_context.trace, + appsec_context.service_entry_span, user_id: resource.id, **{} ) @@ -186,8 +186,8 @@ def try(value) it 'tracks event' do expect(Datadog::AppSec::Contrib::Devise::Tracking).to receive(:track_signup).with( - appsec_scope.trace, - appsec_scope.service_entry_span, + appsec_context.trace, + appsec_context.service_entry_span, user_id: resource.id, **{ email: 'hello@gmail.com', username: 'John' } ) @@ -208,8 +208,8 @@ def try(value) it 'tracks event' do expect(Datadog::AppSec::Contrib::Devise::Tracking).to receive(:track_signup).with( - appsec_scope.trace, - appsec_scope.service_entry_span, + appsec_context.trace, + appsec_context.service_entry_span, user_id: nil, **{} ) @@ -223,8 +223,8 @@ def try(value) it 'tracks event' do expect(Datadog::AppSec::Contrib::Devise::Tracking).to receive(:track_signup).with( - appsec_scope.trace, - appsec_scope.service_entry_span, + appsec_context.trace, + appsec_context.service_entry_span, user_id: nil, **{ email: 'hello@gmail.com', username: 'John' } ) @@ -239,8 +239,8 @@ def try(value) it 'tracks event' do expect(Datadog::AppSec::Contrib::Devise::Tracking).to receive(:track_signup).with( - appsec_scope.trace, - appsec_scope.service_entry_span, + appsec_context.trace, + appsec_context.service_entry_span, user_id: nil, **{} ) @@ -253,8 +253,8 @@ def try(value) it 'tracks event' do expect(Datadog::AppSec::Contrib::Devise::Tracking).to receive(:track_signup).with( - appsec_scope.trace, - appsec_scope.service_entry_span, + appsec_context.trace, + appsec_context.service_entry_span, user_id: nil, **{ email: 'hello@gmail.com', username: 'John' } ) @@ -267,7 +267,7 @@ def try(value) context 'with non persisted resource' do let(:appsec_enabled) { true } let(:track_user_events_enabled) { true } - let(:appsec_scope) { instance_double(Datadog::AppSec::Scope, trace: double, service_entry_span: double) } + let(:appsec_context) { instance_double(Datadog::AppSec::Context, trace: double, service_entry_span: double) } let(:resource) { non_persisted_resource } context 'safe mode' do diff --git a/spec/datadog/appsec/contrib/rack/gateway/response_spec.rb b/spec/datadog/appsec/contrib/rack/gateway/response_spec.rb index dc87c31be9d..52455ff8afd 100644 --- a/spec/datadog/appsec/contrib/rack/gateway/response_spec.rb +++ b/spec/datadog/appsec/contrib/rack/gateway/response_spec.rb @@ -2,7 +2,7 @@ require 'datadog/appsec/spec_helper' require 'datadog/appsec/contrib/rack/gateway/response' -require 'datadog/appsec/scope' +require 'datadog/appsec/context' require 'rack' RSpec.describe Datadog::AppSec::Contrib::Rack::Gateway::Response do @@ -15,7 +15,7 @@ body, 200, headers, - scope: instance_double(Datadog::AppSec::Scope) + scope: instance_double(Datadog::AppSec::Context) ) end diff --git a/spec/datadog/appsec/contrib/rack/reactive/response_spec.rb b/spec/datadog/appsec/contrib/rack/reactive/response_spec.rb index ca51117f5e1..84ecc4cf518 100644 --- a/spec/datadog/appsec/contrib/rack/reactive/response_spec.rb +++ b/spec/datadog/appsec/contrib/rack/reactive/response_spec.rb @@ -1,7 +1,7 @@ # frozen_string_literal: true require 'datadog/appsec/spec_helper' -require 'datadog/appsec/scope' +require 'datadog/appsec/context' require 'datadog/appsec/contrib/rack/gateway/response' require 'datadog/appsec/contrib/rack/reactive/response' require 'datadog/appsec/reactive/engine' @@ -10,7 +10,7 @@ RSpec.describe Datadog::AppSec::Contrib::Rack::Reactive::Response do let(:engine) { Datadog::AppSec::Reactive::Engine.new } let(:processor_context) { instance_double(Datadog::AppSec::Processor::Context) } - let(:scope) { instance_double(Datadog::AppSec::Scope, processor_context: processor_context) } + let(:context) { instance_double(Datadog::AppSec::Context, processor_context: processor_context) } let(:body) { ['Ok'] } let(:headers) { { 'content-type' => 'text/html', 'set-cookie' => 'foo' } } @@ -19,7 +19,7 @@ body, 200, headers, - scope: scope, + scope: context, ) end diff --git a/spec/datadog/appsec/event_spec.rb b/spec/datadog/appsec/event_spec.rb index f07415b4063..194381ea4e1 100644 --- a/spec/datadog/appsec/event_spec.rb +++ b/spec/datadog/appsec/event_spec.rb @@ -375,20 +375,20 @@ dbl end - let(:scope) do - scope_trace = nil - scope_span = nil + let(:context) do + context_trace = nil + context_span = nil trace_operation = Datadog::Tracing::TraceOperation.new trace_operation.measure('root') do |span, trace| - scope_trace = trace if with_trace - scope_span = span if with_span + context_trace = trace if with_trace + context_span = span if with_span end dbl = double - allow(dbl).to receive(:trace).and_return(scope_trace) - allow(dbl).to receive(:service_entry_span).and_return(scope_span) + allow(dbl).to receive(:trace).and_return(context_trace) + allow(dbl).to receive(:service_entry_span).and_return(context_span) dbl end @@ -397,15 +397,15 @@ # prevent rate limiter to bias tests Datadog::AppSec::RateLimiter.reset! - described_class.tag_and_keep!(scope, waf_result) + described_class.tag_and_keep!(context, waf_result) end context 'with no actions' do it 'does not add appsec.blocked tag to span' do - expect(scope.service_entry_span.send(:meta)).to_not include('appsec.blocked') - expect(scope.service_entry_span.send(:meta)['appsec.event']).to eq('true') - expect(scope.trace.send(:meta)['_dd.p.dm']).to eq('-5') - expect(scope.trace.send(:meta)['_dd.p.appsec']).to eq('1') + expect(context.service_entry_span.send(:meta)).to_not include('appsec.blocked') + expect(context.service_entry_span.send(:meta)['appsec.event']).to eq('true') + expect(context.trace.send(:meta)['_dd.p.dm']).to eq('-5') + expect(context.trace.send(:meta)['_dd.p.appsec']).to eq('1') end end @@ -415,10 +415,10 @@ end it 'adds appsec.blocked tag to span' do - expect(scope.service_entry_span.send(:meta)['appsec.blocked']).to eq('true') - expect(scope.service_entry_span.send(:meta)['appsec.event']).to eq('true') - expect(scope.trace.send(:meta)['_dd.p.dm']).to eq('-5') - expect(scope.trace.send(:meta)['_dd.p.appsec']).to eq('1') + expect(context.service_entry_span.send(:meta)['appsec.blocked']).to eq('true') + expect(context.service_entry_span.send(:meta)['appsec.event']).to eq('true') + expect(context.trace.send(:meta)['_dd.p.dm']).to eq('-5') + expect(context.trace.send(:meta)['_dd.p.appsec']).to eq('1') end end @@ -426,9 +426,9 @@ let(:with_span) { false } it 'does not add appsec span tags but still add distributed tags' do - expect(scope.service_entry_span).to be nil - expect(scope.trace.send(:meta)['_dd.p.dm']).to eq('-5') - expect(scope.trace.send(:meta)['_dd.p.appsec']).to eq('1') + expect(context.service_entry_span).to be nil + expect(context.trace.send(:meta)['_dd.p.dm']).to eq('-5') + expect(context.trace.send(:meta)['_dd.p.appsec']).to eq('1') end end @@ -437,9 +437,9 @@ context 'with no actions' do it 'does not add distributed tags but still add appsec span tags' do - expect(scope.trace).to be nil - expect(scope.service_entry_span.send(:meta)['appsec.blocked']).to be nil - expect(scope.service_entry_span.send(:meta)['appsec.event']).to eq('true') + expect(context.trace).to be nil + expect(context.service_entry_span.send(:meta)['appsec.blocked']).to be nil + expect(context.service_entry_span.send(:meta)['appsec.event']).to eq('true') end end @@ -449,9 +449,9 @@ end it 'does not add distributed tags but still add appsec span tags' do - expect(scope.trace).to be nil - expect(scope.service_entry_span.send(:meta)['appsec.blocked']).to eq('true') - expect(scope.service_entry_span.send(:meta)['appsec.event']).to eq('true') + expect(context.trace).to be nil + expect(context.service_entry_span.send(:meta)['appsec.blocked']).to eq('true') + expect(context.service_entry_span.send(:meta)['appsec.event']).to eq('true') end end end diff --git a/spec/datadog/kit/appsec/events_spec.rb b/spec/datadog/kit/appsec/events_spec.rb index 5a296104cac..c95276b9d43 100644 --- a/spec/datadog/kit/appsec/events_spec.rb +++ b/spec/datadog/kit/appsec/events_spec.rb @@ -8,15 +8,15 @@ RSpec.describe Datadog::Kit::AppSec::Events do let(:trace_op) { Datadog::Tracing::TraceOperation.new } - shared_context 'uses AppSec scope' do - before { allow(Datadog::AppSec).to receive(:active_scope).and_return(appsec_active_scope) } + shared_context 'uses AppSec context' do + before { allow(Datadog::AppSec).to receive(:active_scope).and_return(appsec_active_context) } let(:appsec_span) { trace_op.build_span('root') } context 'when is present' do - let(:appsec_active_scope) do + let(:appsec_active_context) do processor = instance_double('Datadog::Appsec::Processor') - Datadog::AppSec::Scope.new(trace_op, appsec_span, processor) + Datadog::AppSec::Context.new(trace_op, appsec_span, processor) end it 'sets tags on AppSec scope' do @@ -26,7 +26,7 @@ end context 'when is not present' do - let(:appsec_active_scope) { nil } + let(:appsec_active_context) { nil } it 'sets tags on active_span' do trace_op.measure('root') do |span, _trace| @@ -87,7 +87,7 @@ expect(user_argument).to eql(user_argument_dup) end - it_behaves_like 'uses AppSec scope' do + it_behaves_like 'uses AppSec context' do let(:event_tag) { 'appsec.events.users.login.success.track' } subject(:event) { described_class.track_login_success(trace_op, user: { id: '42' }) } end @@ -143,7 +143,7 @@ end end - it_behaves_like 'uses AppSec scope' do + it_behaves_like 'uses AppSec context' do let(:event_tag) { 'appsec.events.users.login.failure.track' } subject(:event) { described_class.track_login_failure(trace_op, user_id: '42', user_exists: true) } end @@ -193,7 +193,7 @@ expect(user_argument).to eql(user_argument_dup) end - it_behaves_like 'uses AppSec scope' do + it_behaves_like 'uses AppSec context' do let(:event_tag) { 'appsec.events.users.signup.track' } subject(:event) { described_class.track_signup(trace_op, user: { id: '42' }, foo: 'bar') } end @@ -219,7 +219,7 @@ end end - it_behaves_like 'uses AppSec scope' do + it_behaves_like 'uses AppSec context' do let(:event_tag) { 'appsec.events.foo.track' } subject(:event) { described_class.track('foo', trace_op) } end diff --git a/spec/datadog/kit/identity_spec.rb b/spec/datadog/kit/identity_spec.rb index 1f276c30e3c..c3d9fb15858 100644 --- a/spec/datadog/kit/identity_spec.rb +++ b/spec/datadog/kit/identity_spec.rb @@ -5,7 +5,7 @@ require 'datadog/tracing/trace_operation' require 'datadog/kit/identity' -require 'datadog/appsec/scope' +require 'datadog/appsec/context' RSpec.describe Datadog::Kit::Identity do subject(:trace_op) { Datadog::Tracing::TraceOperation.new } @@ -212,16 +212,16 @@ end context 'appsec' do - let(:appsec_active_scope) { nil } - before { allow(Datadog::AppSec).to receive(:active_scope).and_return(appsec_active_scope) } + let(:appsec_active_context) { nil } + before { allow(Datadog::AppSec).to receive(:active_scope).and_return(appsec_active_context) } context 'when is enabled' do - let(:appsec_active_scope) do + let(:appsec_active_context) do processor = instance_double('Datadog::Appsec::Processor') trace = trace_op span = trace.build_span('root') - Datadog::AppSec::Scope.new(trace, span, processor) + Datadog::AppSec::Context.new(trace, span, processor) end before do From 71d8d7779463ecc45a366d93d95653f22cb0a9cd Mon Sep 17 00:00:00 2001 From: Sergey Fedorov Date: Thu, 9 Jan 2025 12:43:03 +0100 Subject: [PATCH 138/161] Rename AppSec::Ext::SCOPE_KEY into CONTEXT_KEY --- lib/datadog/appsec/contrib/rack/gateway/watcher.rb | 4 ++-- lib/datadog/appsec/contrib/rack/request_body_middleware.rb | 2 +- lib/datadog/appsec/contrib/rack/request_middleware.rb | 4 ++-- lib/datadog/appsec/contrib/rails/gateway/watcher.rb | 2 +- lib/datadog/appsec/contrib/rails/patcher.rb | 2 +- lib/datadog/appsec/contrib/sinatra/gateway/watcher.rb | 4 ++-- lib/datadog/appsec/contrib/sinatra/patcher.rb | 4 ++-- lib/datadog/appsec/ext.rb | 2 +- spec/datadog/appsec/contrib/rack/integration_test_spec.rb | 2 +- 9 files changed, 13 insertions(+), 13 deletions(-) diff --git a/lib/datadog/appsec/contrib/rack/gateway/watcher.rb b/lib/datadog/appsec/contrib/rack/gateway/watcher.rb index 30d3444bda4..d9c3ad49b20 100644 --- a/lib/datadog/appsec/contrib/rack/gateway/watcher.rb +++ b/lib/datadog/appsec/contrib/rack/gateway/watcher.rb @@ -26,7 +26,7 @@ def watch def watch_request(gateway = Instrumentation.gateway) gateway.watch('rack.request', :appsec) do |stack, gateway_request| event = nil - context = gateway_request.env[Datadog::AppSec::Ext::SCOPE_KEY] + context = gateway_request.env[Datadog::AppSec::Ext::CONTEXT_KEY] engine = AppSec::Reactive::Engine.new Rack::Reactive::Request.subscribe(engine, context.processor_context) do |result| @@ -88,7 +88,7 @@ def watch_response(gateway = Instrumentation.gateway) def watch_request_body(gateway = Instrumentation.gateway) gateway.watch('rack.request.body', :appsec) do |stack, gateway_request| event = nil - context = gateway_request.env[Datadog::AppSec::Ext::SCOPE_KEY] + context = gateway_request.env[Datadog::AppSec::Ext::CONTEXT_KEY] engine = AppSec::Reactive::Engine.new Rack::Reactive::RequestBody.subscribe(engine, context.processor_context) do |result| diff --git a/lib/datadog/appsec/contrib/rack/request_body_middleware.rb b/lib/datadog/appsec/contrib/rack/request_body_middleware.rb index 01a0b9d1fa3..6ba2f5dfa9a 100644 --- a/lib/datadog/appsec/contrib/rack/request_body_middleware.rb +++ b/lib/datadog/appsec/contrib/rack/request_body_middleware.rb @@ -17,7 +17,7 @@ def initialize(app, opt = {}) end def call(env) - context = env[Datadog::AppSec::Ext::SCOPE_KEY] + context = env[Datadog::AppSec::Ext::CONTEXT_KEY] return @app.call(env) unless context diff --git a/lib/datadog/appsec/contrib/rack/request_middleware.rb b/lib/datadog/appsec/contrib/rack/request_middleware.rb index 7bcbf73c827..15fc50c28e8 100644 --- a/lib/datadog/appsec/contrib/rack/request_middleware.rb +++ b/lib/datadog/appsec/contrib/rack/request_middleware.rb @@ -57,7 +57,7 @@ def call(env) if !processor.nil? && processor.ready? ctx = Datadog::AppSec::Context.activate_scope(active_trace, active_span, processor) - env[Datadog::AppSec::Ext::SCOPE_KEY] = ctx + env[Datadog::AppSec::Ext::CONTEXT_KEY] = ctx ready = true end end @@ -125,7 +125,7 @@ def call(env) private def active_scope(env) - env[Datadog::AppSec::Ext::SCOPE_KEY] + env[Datadog::AppSec::Ext::CONTEXT_KEY] end def active_trace diff --git a/lib/datadog/appsec/contrib/rails/gateway/watcher.rb b/lib/datadog/appsec/contrib/rails/gateway/watcher.rb index ba1105fe58a..87adb30a555 100644 --- a/lib/datadog/appsec/contrib/rails/gateway/watcher.rb +++ b/lib/datadog/appsec/contrib/rails/gateway/watcher.rb @@ -22,7 +22,7 @@ def watch def watch_request_action(gateway = Instrumentation.gateway) gateway.watch('rails.request.action', :appsec) do |stack, gateway_request| event = nil - context = gateway_request.env[Datadog::AppSec::Ext::SCOPE_KEY] + context = gateway_request.env[Datadog::AppSec::Ext::CONTEXT_KEY] engine = AppSec::Reactive::Engine.new Rails::Reactive::Action.subscribe(engine, context.processor_context) do |result| diff --git a/lib/datadog/appsec/contrib/rails/patcher.rb b/lib/datadog/appsec/contrib/rails/patcher.rb index 9b88c9c8862..479f65355d8 100644 --- a/lib/datadog/appsec/contrib/rails/patcher.rb +++ b/lib/datadog/appsec/contrib/rails/patcher.rb @@ -73,7 +73,7 @@ module ProcessActionPatch def process_action(*args) env = request.env - context = env[Datadog::AppSec::Ext::SCOPE_KEY] + context = env[Datadog::AppSec::Ext::CONTEXT_KEY] return super unless context diff --git a/lib/datadog/appsec/contrib/sinatra/gateway/watcher.rb b/lib/datadog/appsec/contrib/sinatra/gateway/watcher.rb index 5bd14e38792..3bf5837e2a2 100644 --- a/lib/datadog/appsec/contrib/sinatra/gateway/watcher.rb +++ b/lib/datadog/appsec/contrib/sinatra/gateway/watcher.rb @@ -24,7 +24,7 @@ def watch def watch_request_dispatch(gateway = Instrumentation.gateway) gateway.watch('sinatra.request.dispatch', :appsec) do |stack, gateway_request| event = nil - context = gateway_request.env[Datadog::AppSec::Ext::SCOPE_KEY] + context = gateway_request.env[Datadog::AppSec::Ext::CONTEXT_KEY] engine = AppSec::Reactive::Engine.new Rack::Reactive::RequestBody.subscribe(engine, context.processor_context) do |result| @@ -55,7 +55,7 @@ def watch_request_dispatch(gateway = Instrumentation.gateway) def watch_request_routed(gateway = Instrumentation.gateway) gateway.watch('sinatra.request.routed', :appsec) do |stack, (gateway_request, gateway_route_params)| event = nil - context = gateway_request.env[Datadog::AppSec::Ext::SCOPE_KEY] + context = gateway_request.env[Datadog::AppSec::Ext::CONTEXT_KEY] engine = AppSec::Reactive::Engine.new Sinatra::Reactive::Routed.subscribe(engine, context.processor_context) do |result| diff --git a/lib/datadog/appsec/contrib/sinatra/patcher.rb b/lib/datadog/appsec/contrib/sinatra/patcher.rb index 33345f30079..be4b4a73107 100644 --- a/lib/datadog/appsec/contrib/sinatra/patcher.rb +++ b/lib/datadog/appsec/contrib/sinatra/patcher.rb @@ -54,7 +54,7 @@ module DispatchPatch def dispatch! env = @request.env - context = env[Datadog::AppSec::Ext::SCOPE_KEY] + context = env[Datadog::AppSec::Ext::CONTEXT_KEY] return super unless context @@ -86,7 +86,7 @@ module RoutePatch def process_route(*) env = @request.env - context = env[Datadog::AppSec::Ext::SCOPE_KEY] + context = env[Datadog::AppSec::Ext::CONTEXT_KEY] return super unless context diff --git a/lib/datadog/appsec/ext.rb b/lib/datadog/appsec/ext.rb index 30c21b7d240..30e83d3fe4b 100644 --- a/lib/datadog/appsec/ext.rb +++ b/lib/datadog/appsec/ext.rb @@ -4,7 +4,7 @@ module Datadog module AppSec module Ext INTERRUPT = :datadog_appsec_interrupt - SCOPE_KEY = 'datadog.appsec.scope' + CONTEXT_KEY = 'datadog.appsec.context' TAG_APPSEC_ENABLED = '_dd.appsec.enabled' TAG_APM_ENABLED = '_dd.apm.enabled' diff --git a/spec/datadog/appsec/contrib/rack/integration_test_spec.rb b/spec/datadog/appsec/contrib/rack/integration_test_spec.rb index 325541ed0b1..207696f23b2 100644 --- a/spec/datadog/appsec/contrib/rack/integration_test_spec.rb +++ b/spec/datadog/appsec/contrib/rack/integration_test_spec.rb @@ -633,7 +633,7 @@ run( proc do |env| # When appsec is enabled we want to force the 404 to trigger a rule match - if env[Datadog::AppSec::Ext::SCOPE_KEY] + if env[Datadog::AppSec::Ext::CONTEXT_KEY] [404, { 'Content-Type' => 'text/html' }, ['NOT FOUND']] else [200, { 'Content-Type' => 'text/html' }, ['OK']] From 39389a236cac92bcd6ef80d174edacd55c87017d Mon Sep 17 00:00:00 2001 From: Sergey Fedorov Date: Thu, 9 Jan 2025 15:34:17 +0100 Subject: [PATCH 139/161] Rename AppSec::Context methods to match the class --- lib/datadog/appsec/context.rb | 36 ++++++++-------- .../contrib/active_record/instrumentation.rb | 2 +- .../devise/patcher/authenticatable_patch.rb | 2 +- .../patcher/registration_controller_patch.rb | 2 +- .../appsec/contrib/graphql/gateway/watcher.rb | 2 +- .../appsec/contrib/rack/request_middleware.rb | 8 ++-- lib/datadog/appsec/ext.rb | 1 + lib/datadog/appsec/monitor/gateway/watcher.rb | 2 +- spec/datadog/appsec/context_spec.rb | 42 +++++++++---------- .../active_record/mysql2_adapter_spec.rb | 12 +++--- .../active_record/postgresql_adapter_spec.rb | 12 +++--- .../active_record/sqlite3_adapter_spec.rb | 12 +++--- .../patcher/authenticatable_patch_spec.rb | 2 +- .../registration_controller_patch_spec.rb | 2 +- 14 files changed, 69 insertions(+), 68 deletions(-) diff --git a/lib/datadog/appsec/context.rb b/lib/datadog/appsec/context.rb index 28a8605c427..4f23cb8326b 100644 --- a/lib/datadog/appsec/context.rb +++ b/lib/datadog/appsec/context.rb @@ -4,6 +4,9 @@ module Datadog module AppSec # Write desciption TODO class Context + InactiveScopeError = Class.new(StandardError) + ActiveScopeError = Class.new(StandardError) + attr_reader :trace, :service_entry_span, :processor_context def initialize(trace, service_entry_span, processor_context) @@ -17,42 +20,39 @@ def finalize end class << self - def activate_scope(trace, service_entry_span, processor) - raise ActiveScopeError, 'another scope is active, nested scopes are not supported' if active_scope + def activate_context(trace, service_entry_span, processor) + raise ActiveScopeError, 'another scope is active, nested scopes are not supported' if active_context context = processor.new_context - self.active_scope = new(trace, service_entry_span, context) + self.active_context = new(trace, service_entry_span, context) end - def deactivate_scope - raise InactiveScopeError, 'no scope is active, nested scopes are not supported' unless active_scope + def deactivate_context + raise InactiveScopeError, 'no context is active, nested contexts are not supported' unless active_context - scope = active_scope + context = active_context - reset_active_scope + reset_active_context - scope.finalize + context.finalize end - def active_scope - Thread.current[:datadog_appsec_active_scope] + def active_context + Thread.current[Ext::ACTIVE_CONTEXT_KEY] end private - def active_scope=(scope) - raise ArgumentError, 'not a Datadog::AppSec::Scope' unless scope.instance_of?(Context) + def active_context=(context) + raise ArgumentError, 'not a Datadog::AppSec::Context' unless context.instance_of?(Context) - Thread.current[:datadog_appsec_active_scope] = scope + Thread.current[Ext::ACTIVE_CONTEXT_KEY] = context end - def reset_active_scope - Thread.current[:datadog_appsec_active_scope] = nil + def reset_active_context + Thread.current[Ext::ACTIVE_CONTEXT_KEY] = nil end end - - class InactiveScopeError < StandardError; end - class ActiveScopeError < StandardError; end end end end diff --git a/lib/datadog/appsec/contrib/active_record/instrumentation.rb b/lib/datadog/appsec/contrib/active_record/instrumentation.rb index 1969e5df365..f8c261bc354 100644 --- a/lib/datadog/appsec/contrib/active_record/instrumentation.rb +++ b/lib/datadog/appsec/contrib/active_record/instrumentation.rb @@ -9,7 +9,7 @@ module Instrumentation module_function def detect_sql_injection(sql, adapter_name) - context = AppSec.active_scope + context = AppSec.active_context return unless context # libddwaf expects db system to be lowercase, diff --git a/lib/datadog/appsec/contrib/devise/patcher/authenticatable_patch.rb b/lib/datadog/appsec/contrib/devise/patcher/authenticatable_patch.rb index 401fa44e66d..b01a59c6e10 100644 --- a/lib/datadog/appsec/contrib/devise/patcher/authenticatable_patch.rb +++ b/lib/datadog/appsec/contrib/devise/patcher/authenticatable_patch.rb @@ -23,7 +23,7 @@ def validate(resource, &block) automated_track_user_events_mode = track_user_events_configuration.mode - appsec_context = Datadog::AppSec.active_scope + appsec_context = Datadog::AppSec.active_context return result unless appsec_context diff --git a/lib/datadog/appsec/contrib/devise/patcher/registration_controller_patch.rb b/lib/datadog/appsec/contrib/devise/patcher/registration_controller_patch.rb index 409a7606f71..35803d3438d 100644 --- a/lib/datadog/appsec/contrib/devise/patcher/registration_controller_patch.rb +++ b/lib/datadog/appsec/contrib/devise/patcher/registration_controller_patch.rb @@ -20,7 +20,7 @@ def create automated_track_user_events_mode = track_user_events_configuration.mode - appsec_context = Datadog::AppSec.active_scope + appsec_context = Datadog::AppSec.active_context return super unless appsec_context super do |resource| diff --git a/lib/datadog/appsec/contrib/graphql/gateway/watcher.rb b/lib/datadog/appsec/contrib/graphql/gateway/watcher.rb index b98d3de9581..aeefe9df4d5 100644 --- a/lib/datadog/appsec/contrib/graphql/gateway/watcher.rb +++ b/lib/datadog/appsec/contrib/graphql/gateway/watcher.rb @@ -24,7 +24,7 @@ def watch_multiplex(gateway = Instrumentation.gateway) gateway.watch('graphql.multiplex', :appsec) do |stack, gateway_multiplex| block = false event = nil - context = AppSec::Context.active_scope + context = AppSec::Context.active_context engine = AppSec::Reactive::Engine.new if context diff --git a/lib/datadog/appsec/contrib/rack/request_middleware.rb b/lib/datadog/appsec/contrib/rack/request_middleware.rb index 15fc50c28e8..f1c11bb2d5f 100644 --- a/lib/datadog/appsec/contrib/rack/request_middleware.rb +++ b/lib/datadog/appsec/contrib/rack/request_middleware.rb @@ -50,13 +50,13 @@ def call(env) # For a given request, keep using the first Rack stack scope for # nested apps. Don't set `context` local variable so that on popping # out of this nested stack we don't finalize the parent's context - return @app.call(env) if active_scope(env) + return @app.call(env) if active_context(env) Datadog::AppSec.reconfigure_lock do processor = Datadog::AppSec.processor if !processor.nil? && processor.ready? - ctx = Datadog::AppSec::Context.activate_scope(active_trace, active_span, processor) + ctx = Datadog::AppSec::Context.activate_context(active_trace, active_span, processor) env[Datadog::AppSec::Ext::CONTEXT_KEY] = ctx ready = true end @@ -117,14 +117,14 @@ def call(env) ensure if ctx add_waf_runtime_tags(ctx) - Datadog::AppSec::Context.deactivate_scope + Datadog::AppSec::Context.deactivate_context end end # rubocop:enable Metrics/AbcSize,Metrics/PerceivedComplexity,Metrics/CyclomaticComplexity,Metrics/MethodLength private - def active_scope(env) + def active_context(env) env[Datadog::AppSec::Ext::CONTEXT_KEY] end diff --git a/lib/datadog/appsec/ext.rb b/lib/datadog/appsec/ext.rb index 30e83d3fe4b..a801a394546 100644 --- a/lib/datadog/appsec/ext.rb +++ b/lib/datadog/appsec/ext.rb @@ -5,6 +5,7 @@ module AppSec module Ext INTERRUPT = :datadog_appsec_interrupt CONTEXT_KEY = 'datadog.appsec.context' + ACTIVE_CONTEXT_KEY = :datadog_appsec_active_context TAG_APPSEC_ENABLED = '_dd.appsec.enabled' TAG_APM_ENABLED = '_dd.apm.enabled' diff --git a/lib/datadog/appsec/monitor/gateway/watcher.rb b/lib/datadog/appsec/monitor/gateway/watcher.rb index 7f31052e1cb..014abcfffb7 100644 --- a/lib/datadog/appsec/monitor/gateway/watcher.rb +++ b/lib/datadog/appsec/monitor/gateway/watcher.rb @@ -20,7 +20,7 @@ def watch def watch_user_id(gateway = Instrumentation.gateway) gateway.watch('identity.set_user', :appsec) do |stack, user| event = nil - context = Datadog::AppSec.active_scope + context = Datadog::AppSec.active_context engine = AppSec::Reactive::Engine.new Monitor::Reactive::SetUser.subscribe(engine, context.processor_context) do |result| diff --git a/spec/datadog/appsec/context_spec.rb b/spec/datadog/appsec/context_spec.rb index 637f63ad2eb..dcf3508cd4d 100644 --- a/spec/datadog/appsec/context_spec.rb +++ b/spec/datadog/appsec/context_spec.rb @@ -12,80 +12,80 @@ let(:processor) { Datadog::AppSec::Processor.new(ruleset: ruleset, telemetry: telemetry) } after do - described_class.send(:reset_active_scope) + described_class.send(:reset_active_context) processor.finalize end - describe '.activate_scope' do + describe '.activate_context' do context 'with no active scope' do - subject(:activate_scope) { described_class.activate_scope(trace, span, processor) } + subject(:activate_context) { described_class.activate_context(trace, span, processor) } it 'returns a new scope' do - expect(activate_scope).to be_a described_class + expect(activate_context).to be_a described_class end it 'sets the active scope' do - expect { activate_scope }.to change { described_class.active_scope }.from(nil).to be_a described_class + expect { activate_context }.to change { described_class.active_context }.from(nil).to be_a described_class end end context 'with an active scope' do before do - described_class.activate_scope(trace, span, processor) + described_class.activate_context(trace, span, processor) end - subject(:activate_scope) { described_class.activate_scope(trace, span, processor) } + subject(:activate_context) { described_class.activate_context(trace, span, processor) } it 'raises ActiveScopeError' do - expect { activate_scope }.to raise_error Datadog::AppSec::Context::ActiveScopeError + expect { activate_context }.to raise_error Datadog::AppSec::Context::ActiveScopeError end it 'does not change the active scope' do - expect { activate_scope rescue nil }.to_not(change { described_class.active_scope }) + expect { activate_context rescue nil }.to_not(change { described_class.active_context }) end end end - describe '.deactivate_scope' do + describe '.deactivate_context' do context 'with no active scope' do - subject(:deactivate_scope) { described_class.deactivate_scope } + subject(:deactivate_context) { described_class.deactivate_context } it 'raises ActiveContextError' do - expect { deactivate_scope }.to raise_error Datadog::AppSec::Context::InactiveScopeError + expect { deactivate_context }.to raise_error Datadog::AppSec::Context::InactiveScopeError end it 'does not change the active scope' do - expect { deactivate_scope rescue nil }.to_not(change { described_class.active_scope }) + expect { deactivate_context rescue nil }.to_not(change { described_class.active_context }) end end context 'with an active scope' do - let(:active_scope) { described_class.active_scope } - subject(:deactivate_scope) { described_class.deactivate_scope } + let(:active_context) { described_class.active_context } + subject(:deactivate_context) { described_class.deactivate_context } before do allow(described_class).to receive(:new).and_call_original - described_class.activate_scope(trace, span, processor) + described_class.activate_context(trace, span, processor) - expect(active_scope).to receive(:finalize).and_call_original + expect(active_context).to receive(:finalize).and_call_original end it 'unsets the active scope' do - expect { deactivate_scope }.to change { described_class.active_scope }.from(active_scope).to nil + expect { deactivate_context }.to change { described_class.active_context }.from(active_context).to nil end end end - describe '.active_scope' do - subject(:active_scope) { described_class.active_scope } + describe '.active_context' do + subject(:active_context) { described_class.active_context } context 'with no active context' do it { is_expected.to be_nil } end context 'with an active context' do - before { described_class.activate_scope(trace, span, processor) } + before { described_class.activate_context(trace, span, processor) } it { is_expected.to be_a described_class } end diff --git a/spec/datadog/appsec/contrib/active_record/mysql2_adapter_spec.rb b/spec/datadog/appsec/contrib/active_record/mysql2_adapter_spec.rb index 60e9138d885..b43f7b15dc0 100644 --- a/spec/datadog/appsec/contrib/active_record/mysql2_adapter_spec.rb +++ b/spec/datadog/appsec/contrib/active_record/mysql2_adapter_spec.rb @@ -52,7 +52,7 @@ c.appsec.instrument :active_record end - Datadog::AppSec::Context.activate_scope(trace, span, processor) + Datadog::AppSec::Context.activate_context(trace, span, processor) raise_on_rails_deprecation! end @@ -60,12 +60,12 @@ after do Datadog.configuration.reset! - Datadog::AppSec::Context.deactivate_scope + Datadog::AppSec::Context.deactivate_context processor.finalize end it 'calls waf with correct arguments when querying using .where' do - expect(Datadog::AppSec.active_scope.processor_context).to( + expect(Datadog::AppSec.active_context.processor_context).to( receive(:run).with( {}, { @@ -80,7 +80,7 @@ end it 'calls waf with correct arguments when querying using .find_by_sql' do - expect(Datadog::AppSec.active_scope.processor_context).to( + expect(Datadog::AppSec.active_context.processor_context).to( receive(:run).with( {}, { @@ -95,11 +95,11 @@ end it 'adds an event to processor context if waf status is :match' do - expect(Datadog::AppSec.active_scope.processor_context).to( + expect(Datadog::AppSec.active_context.processor_context).to( receive(:run).and_return(instance_double(Datadog::AppSec::WAF::Result, status: :match, actions: {})) ) - expect(Datadog::AppSec.active_scope.processor_context.events).to receive(:<<).and_call_original + expect(Datadog::AppSec.active_context.processor_context.events).to receive(:<<).and_call_original User.where(name: 'Bob').to_a end diff --git a/spec/datadog/appsec/contrib/active_record/postgresql_adapter_spec.rb b/spec/datadog/appsec/contrib/active_record/postgresql_adapter_spec.rb index ee8249c72c6..88bf4ed57fa 100644 --- a/spec/datadog/appsec/contrib/active_record/postgresql_adapter_spec.rb +++ b/spec/datadog/appsec/contrib/active_record/postgresql_adapter_spec.rb @@ -53,7 +53,7 @@ c.appsec.instrument :active_record end - Datadog::AppSec::Context.activate_scope(trace, span, processor) + Datadog::AppSec::Context.activate_context(trace, span, processor) raise_on_rails_deprecation! end @@ -61,7 +61,7 @@ after do Datadog.configuration.reset! - Datadog::AppSec::Context.deactivate_scope + Datadog::AppSec::Context.deactivate_context processor.finalize end @@ -72,7 +72,7 @@ 'SELECT "users".* FROM "users" WHERE "users"."name" = $1' end - expect(Datadog::AppSec.active_scope.processor_context).to( + expect(Datadog::AppSec.active_context.processor_context).to( receive(:run).with( {}, { @@ -87,7 +87,7 @@ end it 'calls waf with correct arguments when querying using .find_by_sql' do - expect(Datadog::AppSec.active_scope.processor_context).to( + expect(Datadog::AppSec.active_context.processor_context).to( receive(:run).with( {}, { @@ -102,11 +102,11 @@ end it 'adds an event to processor context if waf status is :match' do - expect(Datadog::AppSec.active_scope.processor_context).to( + expect(Datadog::AppSec.active_context.processor_context).to( receive(:run).and_return(instance_double(Datadog::AppSec::WAF::Result, status: :match, actions: {})) ) - expect(Datadog::AppSec.active_scope.processor_context.events).to receive(:<<).and_call_original + expect(Datadog::AppSec.active_context.processor_context.events).to receive(:<<).and_call_original User.where(name: 'Bob').to_a end diff --git a/spec/datadog/appsec/contrib/active_record/sqlite3_adapter_spec.rb b/spec/datadog/appsec/contrib/active_record/sqlite3_adapter_spec.rb index 346d18e1e3b..9be5d7ebfad 100644 --- a/spec/datadog/appsec/contrib/active_record/sqlite3_adapter_spec.rb +++ b/spec/datadog/appsec/contrib/active_record/sqlite3_adapter_spec.rb @@ -49,7 +49,7 @@ c.appsec.instrument :active_record end - Datadog::AppSec::Context.activate_scope(trace, span, processor) + Datadog::AppSec::Context.activate_context(trace, span, processor) raise_on_rails_deprecation! end @@ -57,12 +57,12 @@ after do Datadog.configuration.reset! - Datadog::AppSec::Context.deactivate_scope + Datadog::AppSec::Context.deactivate_context processor.finalize end it 'calls waf with correct arguments when querying using .where' do - expect(Datadog::AppSec.active_scope.processor_context).to( + expect(Datadog::AppSec.active_context.processor_context).to( receive(:run).with( {}, { @@ -77,7 +77,7 @@ end it 'calls waf with correct arguments when querying using .find_by_sql' do - expect(Datadog::AppSec.active_scope.processor_context).to( + expect(Datadog::AppSec.active_context.processor_context).to( receive(:run).with( {}, { @@ -92,11 +92,11 @@ end it 'adds an event to processor context if waf status is :match' do - expect(Datadog::AppSec.active_scope.processor_context).to( + expect(Datadog::AppSec.active_context.processor_context).to( receive(:run).and_return(instance_double(Datadog::AppSec::WAF::Result, status: :match, actions: {})) ) - expect(Datadog::AppSec.active_scope.processor_context.events).to receive(:<<).and_call_original + expect(Datadog::AppSec.active_context.processor_context.events).to receive(:<<).and_call_original User.where(name: 'Bob').to_a end diff --git a/spec/datadog/appsec/contrib/devise/patcher/authenticatable_patch_spec.rb b/spec/datadog/appsec/contrib/devise/patcher/authenticatable_patch_spec.rb index e0efba2c2d8..113c7570570 100644 --- a/spec/datadog/appsec/contrib/devise/patcher/authenticatable_patch_spec.rb +++ b/spec/datadog/appsec/contrib/devise/patcher/authenticatable_patch_spec.rb @@ -43,7 +43,7 @@ def initialize(id, email, username) if appsec_enabled allow(Datadog.configuration.appsec).to receive(:track_user_events).and_return(automated_track_user_events) - allow(Datadog::AppSec).to receive(:active_scope).and_return(appsec_context) if track_user_events_enabled + allow(Datadog::AppSec).to receive(:active_context).and_return(appsec_context) if track_user_events_enabled end end diff --git a/spec/datadog/appsec/contrib/devise/patcher/registration_controller_patch_spec.rb b/spec/datadog/appsec/contrib/devise/patcher/registration_controller_patch_spec.rb index b404fe264c0..a0bf30aaf17 100644 --- a/spec/datadog/appsec/contrib/devise/patcher/registration_controller_patch_spec.rb +++ b/spec/datadog/appsec/contrib/devise/patcher/registration_controller_patch_spec.rb @@ -54,7 +54,7 @@ def try(value) if appsec_enabled expect(Datadog.configuration.appsec).to receive(:track_user_events).and_return(automated_track_user_events) - expect(Datadog::AppSec).to receive(:active_scope).and_return(appsec_context) if track_user_events_enabled + expect(Datadog::AppSec).to receive(:active_context).and_return(appsec_context) if track_user_events_enabled end end From 2fba794bc5de949dab664a2bce1d5762e3eadbf6 Mon Sep 17 00:00:00 2001 From: Sergey Fedorov Date: Thu, 9 Jan 2025 15:46:23 +0100 Subject: [PATCH 140/161] Rename use of AppSec::Context scope into context --- lib/datadog/appsec.rb | 4 ++-- lib/datadog/appsec/context.rb | 2 +- .../appsec/contrib/rack/gateway/response.rb | 6 +++--- .../appsec/contrib/rack/gateway/watcher.rb | 2 +- .../appsec/contrib/rack/request_middleware.rb | 2 +- lib/datadog/kit/appsec/events.rb | 2 +- lib/datadog/kit/identity.rb | 4 ++-- spec/datadog/appsec/context_spec.rb | 18 +++++++++--------- .../patcher/authenticatable_patch_spec.rb | 2 +- .../registration_controller_patch_spec.rb | 2 +- .../contrib/rack/gateway/response_spec.rb | 2 +- .../contrib/rack/reactive/response_spec.rb | 2 +- spec/datadog/kit/appsec/events_spec.rb | 4 ++-- spec/datadog/kit/identity_spec.rb | 2 +- 14 files changed, 27 insertions(+), 27 deletions(-) diff --git a/lib/datadog/appsec.rb b/lib/datadog/appsec.rb index 3faed0980d0..a95e8e30253 100644 --- a/lib/datadog/appsec.rb +++ b/lib/datadog/appsec.rb @@ -14,8 +14,8 @@ def enabled? Datadog.configuration.appsec.enabled end - def active_scope - Datadog::AppSec::Context.active_scope + def active_context + Datadog::AppSec::Context.active_context end def processor diff --git a/lib/datadog/appsec/context.rb b/lib/datadog/appsec/context.rb index 4f23cb8326b..881bc5f6a99 100644 --- a/lib/datadog/appsec/context.rb +++ b/lib/datadog/appsec/context.rb @@ -21,7 +21,7 @@ def finalize class << self def activate_context(trace, service_entry_span, processor) - raise ActiveScopeError, 'another scope is active, nested scopes are not supported' if active_context + raise ActiveScopeError, 'another context is active, nested contexts are not supported' if active_context context = processor.new_context self.active_context = new(trace, service_entry_span, context) diff --git a/lib/datadog/appsec/contrib/rack/gateway/response.rb b/lib/datadog/appsec/contrib/rack/gateway/response.rb index 32b311bd919..a1969aa7e01 100644 --- a/lib/datadog/appsec/contrib/rack/gateway/response.rb +++ b/lib/datadog/appsec/contrib/rack/gateway/response.rb @@ -9,14 +9,14 @@ module Rack module Gateway # Gateway Response argument. class Response < Instrumentation::Gateway::Argument - attr_reader :body, :status, :headers, :scope + attr_reader :body, :status, :headers, :context - def initialize(body, status, headers, scope:) + def initialize(body, status, headers, context:) super() @body = body @status = status @headers = headers.each_with_object({}) { |(k, v), h| h[k.downcase] = v } - @scope = scope + @context = context end def response diff --git a/lib/datadog/appsec/contrib/rack/gateway/watcher.rb b/lib/datadog/appsec/contrib/rack/gateway/watcher.rb index d9c3ad49b20..d32b13a4fc0 100644 --- a/lib/datadog/appsec/contrib/rack/gateway/watcher.rb +++ b/lib/datadog/appsec/contrib/rack/gateway/watcher.rb @@ -57,7 +57,7 @@ def watch_request(gateway = Instrumentation.gateway) def watch_response(gateway = Instrumentation.gateway) gateway.watch('rack.response', :appsec) do |stack, gateway_response| event = nil - context = gateway_response.scope + context = gateway_response.context engine = AppSec::Reactive::Engine.new Rack::Reactive::Response.subscribe(engine, context.processor_context) do |result| diff --git a/lib/datadog/appsec/contrib/rack/request_middleware.rb b/lib/datadog/appsec/contrib/rack/request_middleware.rb index f1c11bb2d5f..f5763190a92 100644 --- a/lib/datadog/appsec/contrib/rack/request_middleware.rb +++ b/lib/datadog/appsec/contrib/rack/request_middleware.rb @@ -86,7 +86,7 @@ def call(env) request_return[2], request_return[0], request_return[1], - scope: ctx, + context: ctx, ) _response_return, response_response = Instrumentation.gateway.push('rack.response', gateway_response) diff --git a/lib/datadog/kit/appsec/events.rb b/lib/datadog/kit/appsec/events.rb index 1e7ed0406a9..3b5c9717110 100644 --- a/lib/datadog/kit/appsec/events.rb +++ b/lib/datadog/kit/appsec/events.rb @@ -136,7 +136,7 @@ def track(event, trace = nil, span = nil, **others) private def set_trace_and_span_context(method, trace = nil, span = nil) - if (appsec_context = Datadog::AppSec.active_scope) + if (appsec_context = Datadog::AppSec.active_context) trace = appsec_context.trace span = appsec_context.service_entry_span end diff --git a/lib/datadog/kit/identity.rb b/lib/datadog/kit/identity.rb index 8a9711fe703..09de6392ead 100644 --- a/lib/datadog/kit/identity.rb +++ b/lib/datadog/kit/identity.rb @@ -66,7 +66,7 @@ def set_user( active_span.set_tag("usr.#{k}", v) unless v.nil? end - if Datadog::AppSec.active_scope + if Datadog::AppSec.active_context user = ::Datadog::AppSec::Instrumentation::Gateway::User.new(id) ::Datadog::AppSec::Instrumentation.gateway.push('identity.set_user', user) end @@ -78,7 +78,7 @@ def set_user( private def set_trace_and_span_context(method, trace = nil, span = nil) - if (appsec_context = Datadog::AppSec.active_scope) + if (appsec_context = Datadog::AppSec.active_context) trace = appsec_context.trace span = appsec_context.service_entry_span end diff --git a/spec/datadog/appsec/context_spec.rb b/spec/datadog/appsec/context_spec.rb index dcf3508cd4d..2634d6a69dc 100644 --- a/spec/datadog/appsec/context_spec.rb +++ b/spec/datadog/appsec/context_spec.rb @@ -17,19 +17,19 @@ end describe '.activate_context' do - context 'with no active scope' do + context 'with no active context' do subject(:activate_context) { described_class.activate_context(trace, span, processor) } - it 'returns a new scope' do + it 'returns a new context' do expect(activate_context).to be_a described_class end - it 'sets the active scope' do + it 'sets the active context' do expect { activate_context }.to change { described_class.active_context }.from(nil).to be_a described_class end end - context 'with an active scope' do + context 'with an active context' do before do described_class.activate_context(trace, span, processor) end @@ -40,26 +40,26 @@ expect { activate_context }.to raise_error Datadog::AppSec::Context::ActiveScopeError end - it 'does not change the active scope' do + it 'does not change the active context' do expect { activate_context rescue nil }.to_not(change { described_class.active_context }) end end end describe '.deactivate_context' do - context 'with no active scope' do + context 'with no active context' do subject(:deactivate_context) { described_class.deactivate_context } it 'raises ActiveContextError' do expect { deactivate_context }.to raise_error Datadog::AppSec::Context::InactiveScopeError end - it 'does not change the active scope' do + it 'does not change the active context' do expect { deactivate_context rescue nil }.to_not(change { described_class.active_context }) end end - context 'with an active scope' do + context 'with an active context' do let(:active_context) { described_class.active_context } subject(:deactivate_context) { described_class.deactivate_context } @@ -71,7 +71,7 @@ expect(active_context).to receive(:finalize).and_call_original end - it 'unsets the active scope' do + it 'unsets the active context' do expect { deactivate_context }.to change { described_class.active_context }.from(active_context).to nil end end diff --git a/spec/datadog/appsec/contrib/devise/patcher/authenticatable_patch_spec.rb b/spec/datadog/appsec/contrib/devise/patcher/authenticatable_patch_spec.rb index 113c7570570..2f763049475 100644 --- a/spec/datadog/appsec/contrib/devise/patcher/authenticatable_patch_spec.rb +++ b/spec/datadog/appsec/contrib/devise/patcher/authenticatable_patch_spec.rb @@ -67,7 +67,7 @@ def initialize(id, email, username) end end - context 'AppSec scope is nil' do + context 'AppSec context is nil' do let(:appsec_enabled) { true } let(:track_user_events_enabled) { true } let(:mode) { 'safe' } diff --git a/spec/datadog/appsec/contrib/devise/patcher/registration_controller_patch_spec.rb b/spec/datadog/appsec/contrib/devise/patcher/registration_controller_patch_spec.rb index a0bf30aaf17..3660923d1b4 100644 --- a/spec/datadog/appsec/contrib/devise/patcher/registration_controller_patch_spec.rb +++ b/spec/datadog/appsec/contrib/devise/patcher/registration_controller_patch_spec.rb @@ -101,7 +101,7 @@ def try(value) end end - context 'AppSec scope is nil ' do + context 'AppSec context is nil ' do let(:appsec_enabled) { true } let(:track_user_events_enabled) { true } let(:mode) { 'safe' } diff --git a/spec/datadog/appsec/contrib/rack/gateway/response_spec.rb b/spec/datadog/appsec/contrib/rack/gateway/response_spec.rb index 52455ff8afd..65a9cbf2855 100644 --- a/spec/datadog/appsec/contrib/rack/gateway/response_spec.rb +++ b/spec/datadog/appsec/contrib/rack/gateway/response_spec.rb @@ -15,7 +15,7 @@ body, 200, headers, - scope: instance_double(Datadog::AppSec::Context) + context: instance_double(Datadog::AppSec::Context) ) end diff --git a/spec/datadog/appsec/contrib/rack/reactive/response_spec.rb b/spec/datadog/appsec/contrib/rack/reactive/response_spec.rb index 84ecc4cf518..0d53e61464f 100644 --- a/spec/datadog/appsec/contrib/rack/reactive/response_spec.rb +++ b/spec/datadog/appsec/contrib/rack/reactive/response_spec.rb @@ -19,7 +19,7 @@ body, 200, headers, - scope: context, + context: context, ) end diff --git a/spec/datadog/kit/appsec/events_spec.rb b/spec/datadog/kit/appsec/events_spec.rb index c95276b9d43..7f2ff40ab04 100644 --- a/spec/datadog/kit/appsec/events_spec.rb +++ b/spec/datadog/kit/appsec/events_spec.rb @@ -9,7 +9,7 @@ let(:trace_op) { Datadog::Tracing::TraceOperation.new } shared_context 'uses AppSec context' do - before { allow(Datadog::AppSec).to receive(:active_scope).and_return(appsec_active_context) } + before { allow(Datadog::AppSec).to receive(:active_context).and_return(appsec_active_context) } let(:appsec_span) { trace_op.build_span('root') } context 'when is present' do @@ -19,7 +19,7 @@ Datadog::AppSec::Context.new(trace_op, appsec_span, processor) end - it 'sets tags on AppSec scope' do + it 'sets tags on AppSec span' do event expect(appsec_span.has_tag?(event_tag)).to eq true end diff --git a/spec/datadog/kit/identity_spec.rb b/spec/datadog/kit/identity_spec.rb index c3d9fb15858..d888eb437bf 100644 --- a/spec/datadog/kit/identity_spec.rb +++ b/spec/datadog/kit/identity_spec.rb @@ -213,7 +213,7 @@ context 'appsec' do let(:appsec_active_context) { nil } - before { allow(Datadog::AppSec).to receive(:active_scope).and_return(appsec_active_context) } + before { allow(Datadog::AppSec).to receive(:active_context).and_return(appsec_active_context) } context 'when is enabled' do let(:appsec_active_context) do From 7ce4b9e47e2afab6a52a288c108cb9130ea0d9bd Mon Sep 17 00:00:00 2001 From: Sergey Fedorov Date: Fri, 10 Jan 2025 10:14:01 +0100 Subject: [PATCH 141/161] Change AppSec::Context interface --- lib/datadog/appsec.rb | 2 +- lib/datadog/appsec/context.rb | 58 +++++-------- .../appsec/contrib/graphql/gateway/watcher.rb | 2 +- .../appsec/contrib/rack/request_middleware.rb | 7 +- spec/datadog/appsec/context_spec.rb | 84 +++++++++---------- 5 files changed, 69 insertions(+), 84 deletions(-) diff --git a/lib/datadog/appsec.rb b/lib/datadog/appsec.rb index a95e8e30253..968b9c6a1fb 100644 --- a/lib/datadog/appsec.rb +++ b/lib/datadog/appsec.rb @@ -15,7 +15,7 @@ def enabled? end def active_context - Datadog::AppSec::Context.active_context + Datadog::AppSec::Context.active end def processor diff --git a/lib/datadog/appsec/context.rb b/lib/datadog/appsec/context.rb index 881bc5f6a99..de506ec74f7 100644 --- a/lib/datadog/appsec/context.rb +++ b/lib/datadog/appsec/context.rb @@ -2,56 +2,44 @@ module Datadog module AppSec - # Write desciption TODO + # This class accumulates the context over the request life-cycle and exposes + # interface sufficient for instrumentation to perform threat detection. class Context - InactiveScopeError = Class.new(StandardError) - ActiveScopeError = Class.new(StandardError) + ActiveContextError = Class.new(StandardError) attr_reader :trace, :service_entry_span, :processor_context - def initialize(trace, service_entry_span, processor_context) - @trace = trace - @service_entry_span = service_entry_span - @processor_context = processor_context - end - - def finalize - @processor_context.finalize - end - class << self - def activate_context(trace, service_entry_span, processor) - raise ActiveScopeError, 'another context is active, nested contexts are not supported' if active_context + def activate(context) + raise ArgumentError, 'not a Datadog::AppSec::Context' unless context.instance_of?(Context) + raise ActiveContextError, 'another context is active, nested contexts are not supported' if active - context = processor.new_context - self.active_context = new(trace, service_entry_span, context) + Thread.current[Ext::ACTIVE_CONTEXT_KEY] = context end - def deactivate_context - raise InactiveScopeError, 'no context is active, nested contexts are not supported' unless active_context - - context = active_context - - reset_active_context - - context.finalize + def deactivate + active&.finalize + ensure + Thread.current[Ext::ACTIVE_CONTEXT_KEY] = nil end - def active_context + def active Thread.current[Ext::ACTIVE_CONTEXT_KEY] end + end - private - - def active_context=(context) - raise ArgumentError, 'not a Datadog::AppSec::Context' unless context.instance_of?(Context) + def initialize(trace, span, security_engine) + @trace = trace + @span = span + @security_engine = security_engine - Thread.current[Ext::ACTIVE_CONTEXT_KEY] = context - end + # TODO: Rename + @service_entry_span = span + @processor_context = security_engine.new_context + end - def reset_active_context - Thread.current[Ext::ACTIVE_CONTEXT_KEY] = nil - end + def finalize + @processor_context.finalize end end end diff --git a/lib/datadog/appsec/contrib/graphql/gateway/watcher.rb b/lib/datadog/appsec/contrib/graphql/gateway/watcher.rb index aeefe9df4d5..64e0de6fabe 100644 --- a/lib/datadog/appsec/contrib/graphql/gateway/watcher.rb +++ b/lib/datadog/appsec/contrib/graphql/gateway/watcher.rb @@ -24,7 +24,7 @@ def watch_multiplex(gateway = Instrumentation.gateway) gateway.watch('graphql.multiplex', :appsec) do |stack, gateway_multiplex| block = false event = nil - context = AppSec::Context.active_context + context = AppSec::Context.active engine = AppSec::Reactive::Engine.new if context diff --git a/lib/datadog/appsec/contrib/rack/request_middleware.rb b/lib/datadog/appsec/contrib/rack/request_middleware.rb index f5763190a92..29f8fd45e4a 100644 --- a/lib/datadog/appsec/contrib/rack/request_middleware.rb +++ b/lib/datadog/appsec/contrib/rack/request_middleware.rb @@ -56,7 +56,10 @@ def call(env) processor = Datadog::AppSec.processor if !processor.nil? && processor.ready? - ctx = Datadog::AppSec::Context.activate_context(active_trace, active_span, processor) + ctx = Datadog::AppSec::Context.activate( + Datadog::AppSec::Context.new(active_trace, active_span, processor) + ) + env[Datadog::AppSec::Ext::CONTEXT_KEY] = ctx ready = true end @@ -117,7 +120,7 @@ def call(env) ensure if ctx add_waf_runtime_tags(ctx) - Datadog::AppSec::Context.deactivate_context + Datadog::AppSec::Context.deactivate end end # rubocop:enable Metrics/AbcSize,Metrics/PerceivedComplexity,Metrics/CyclomaticComplexity,Metrics/MethodLength diff --git a/spec/datadog/appsec/context_spec.rb b/spec/datadog/appsec/context_spec.rb index 2634d6a69dc..a1f44b070a7 100644 --- a/spec/datadog/appsec/context_spec.rb +++ b/spec/datadog/appsec/context_spec.rb @@ -4,90 +4,84 @@ require 'datadog/appsec/context' RSpec.describe Datadog::AppSec::Context do - let(:trace) { double } - let(:span) { double } + let(:span) { instance_double(Datadog::Tracing::SpanOperation) } + let(:trace) { instance_double(Datadog::Tracing::TraceOperation) } let(:telemetry) { instance_double(Datadog::Core::Telemetry::Component) } let(:ruleset) { Datadog::AppSec::Processor::RuleLoader.load_rules(ruleset: :recommended, telemetry: telemetry) } let(:processor) { Datadog::AppSec::Processor.new(ruleset: ruleset, telemetry: telemetry) } + let(:context) { described_class.new(trace, span, processor) } after do - described_class.send(:reset_active_context) + described_class.deactivate processor.finalize end - describe '.activate_context' do + describe '.active' do context 'with no active context' do - subject(:activate_context) { described_class.activate_context(trace, span, processor) } + it { expect(described_class.active).to be_nil } + end - it 'returns a new context' do - expect(activate_context).to be_a described_class - end + context 'with an active context' do + before { described_class.activate(context) } - it 'sets the active context' do - expect { activate_context }.to change { described_class.active_context }.from(nil).to be_a described_class - end + it { expect(described_class.active).to eq(context) } + end + end + + describe '.activate' do + it { expect { described_class.activate(double) }.to raise_error(ArgumentError) } + + context 'with no active context' do + it { expect { described_class.activate(context) }.to change { described_class.active }.from(nil).to(context) } end context 'with an active context' do - before do - described_class.activate_context(trace, span, processor) - end + before { described_class.activate(context) } - subject(:activate_context) { described_class.activate_context(trace, span, processor) } + subject(:activate_context) { described_class.activate(described_class.new(trace, span, processor)) } - it 'raises ActiveScopeError' do - expect { activate_context }.to raise_error Datadog::AppSec::Context::ActiveScopeError + it 'raises ActiveContextError' do + expect { activate_context }.to raise_error(Datadog::AppSec::Context::ActiveContextError) end it 'does not change the active context' do - expect { activate_context rescue nil }.to_not(change { described_class.active_context }) + expect { activate_context rescue nil }.to_not(change { described_class.active }) end end end - describe '.deactivate_context' do + describe '.deactivate' do context 'with no active context' do - subject(:deactivate_context) { described_class.deactivate_context } - - it 'raises ActiveContextError' do - expect { deactivate_context }.to raise_error Datadog::AppSec::Context::InactiveScopeError - end - it 'does not change the active context' do - expect { deactivate_context rescue nil }.to_not(change { described_class.active_context }) + expect { described_class.deactivate }.to_not(change { described_class.active }) end end context 'with an active context' do - let(:active_context) { described_class.active_context } - subject(:deactivate_context) { described_class.deactivate_context } - before do - allow(described_class).to receive(:new).and_call_original - - described_class.activate_context(trace, span, processor) - - expect(active_context).to receive(:finalize).and_call_original + described_class.activate(context) + expect(context).to receive(:finalize).and_call_original end it 'unsets the active context' do - expect { deactivate_context }.to change { described_class.active_context }.from(active_context).to nil + expect { described_class.deactivate }.to change { described_class.active }.from(context).to(nil) end end - end - - describe '.active_context' do - subject(:active_context) { described_class.active_context } - context 'with no active context' do - it { is_expected.to be_nil } - end + context 'with error during deactivation' do + before do + described_class.activate(context) + expect(context).to receive(:finalize).and_raise(RuntimeError.new('Ooops')) + end - context 'with an active context' do - before { described_class.activate_context(trace, span, processor) } + it 'raises underlying exception' do + expect { described_class.deactivate }.to raise_error(RuntimeError) + end - it { is_expected.to be_a described_class } + it 'unsets the active context' do + expect { described_class.deactivate rescue nil }.to change { described_class.active }.from(context).to(nil) + end end end end From ff493bf487426d0034d5797698c4e203cc84de60 Mon Sep 17 00:00:00 2001 From: Sergey Fedorov Date: Fri, 10 Jan 2025 13:01:44 +0100 Subject: [PATCH 142/161] Change AppSec::Context exposed interface --- lib/datadog/appsec/context.rb | 21 ++++++++++++---- .../contrib/active_record/instrumentation.rb | 2 +- .../devise/patcher/authenticatable_patch.rb | 4 ++-- .../patcher/registration_controller_patch.rb | 2 +- .../appsec/contrib/graphql/gateway/watcher.rb | 2 +- .../appsec/contrib/rack/gateway/watcher.rb | 6 ++--- .../appsec/contrib/rack/request_middleware.rb | 10 ++++---- .../appsec/contrib/rails/gateway/watcher.rb | 2 +- .../appsec/contrib/sinatra/gateway/watcher.rb | 4 ++-- lib/datadog/appsec/event.rb | 6 ++--- lib/datadog/appsec/monitor/gateway/watcher.rb | 2 +- lib/datadog/kit/appsec/events.rb | 2 +- lib/datadog/kit/identity.rb | 2 +- .../patcher/authenticatable_patch_spec.rb | 22 ++++++++--------- .../registration_controller_patch_spec.rb | 20 ++++++++-------- spec/datadog/appsec/event_spec.rb | 24 +++++++++---------- 16 files changed, 71 insertions(+), 60 deletions(-) diff --git a/lib/datadog/appsec/context.rb b/lib/datadog/appsec/context.rb index de506ec74f7..cf63ab4a57a 100644 --- a/lib/datadog/appsec/context.rb +++ b/lib/datadog/appsec/context.rb @@ -7,7 +7,10 @@ module AppSec class Context ActiveContextError = Class.new(StandardError) - attr_reader :trace, :service_entry_span, :processor_context + # XXX: Continue from here: + # 1. Replace naming of processor_context into waf_runner + # 2. Replace calls of waf run + attr_reader :trace, :span, :processor_context class << self def activate(context) @@ -32,14 +35,22 @@ def initialize(trace, span, security_engine) @trace = trace @span = span @security_engine = security_engine + @waf_runner = security_engine.new_context - # TODO: Rename - @service_entry_span = span - @processor_context = security_engine.new_context + # FIXME: Left for compatibility now + @processor_context = @waf_runner + end + + def run_waf(persistent_data, ephemeral_data, timeout = WAF::LibDDWAF::DDWAF_RUN_TIMEOUT) + @waf_runner.run(persistent_data, ephemeral_data, timeout) + end + + def run_rasp(_type, persistent_data, ephemeral_data, timeout = WAF::LibDDWAF::DDWAF_RUN_TIMEOUT) + @waf_runner.run(persistent_data, ephemeral_data, timeout) end def finalize - @processor_context.finalize + @waf_runner.finalize end end end diff --git a/lib/datadog/appsec/contrib/active_record/instrumentation.rb b/lib/datadog/appsec/contrib/active_record/instrumentation.rb index f8c261bc354..57334c93896 100644 --- a/lib/datadog/appsec/contrib/active_record/instrumentation.rb +++ b/lib/datadog/appsec/contrib/active_record/instrumentation.rb @@ -31,7 +31,7 @@ def detect_sql_injection(sql, adapter_name) event = { waf_result: result, trace: context.trace, - span: context.service_entry_span, + span: context.span, sql: sql, actions: result.actions } diff --git a/lib/datadog/appsec/contrib/devise/patcher/authenticatable_patch.rb b/lib/datadog/appsec/contrib/devise/patcher/authenticatable_patch.rb index b01a59c6e10..51d0b06619d 100644 --- a/lib/datadog/appsec/contrib/devise/patcher/authenticatable_patch.rb +++ b/lib/datadog/appsec/contrib/devise/patcher/authenticatable_patch.rb @@ -40,7 +40,7 @@ def validate(resource, &block) Tracking.track_login_success( appsec_context.trace, - appsec_context.service_entry_span, + appsec_context.span, user_id: event_information.user_id, **event_information.to_h ) @@ -60,7 +60,7 @@ def validate(resource, &block) Tracking.track_login_failure( appsec_context.trace, - appsec_context.service_entry_span, + appsec_context.span, user_id: event_information.user_id, user_exists: user_exists, **event_information.to_h diff --git a/lib/datadog/appsec/contrib/devise/patcher/registration_controller_patch.rb b/lib/datadog/appsec/contrib/devise/patcher/registration_controller_patch.rb index 35803d3438d..8db73f60f32 100644 --- a/lib/datadog/appsec/contrib/devise/patcher/registration_controller_patch.rb +++ b/lib/datadog/appsec/contrib/devise/patcher/registration_controller_patch.rb @@ -37,7 +37,7 @@ def create Tracking.track_signup( appsec_context.trace, - appsec_context.service_entry_span, + appsec_context.span, user_id: event_information.user_id, **event_information.to_h ) diff --git a/lib/datadog/appsec/contrib/graphql/gateway/watcher.rb b/lib/datadog/appsec/contrib/graphql/gateway/watcher.rb index 64e0de6fabe..4855a81ce68 100644 --- a/lib/datadog/appsec/contrib/graphql/gateway/watcher.rb +++ b/lib/datadog/appsec/contrib/graphql/gateway/watcher.rb @@ -32,7 +32,7 @@ def watch_multiplex(gateway = Instrumentation.gateway) event = { waf_result: result, trace: context.trace, - span: context.service_entry_span, + span: context.span, multiplex: gateway_multiplex, actions: result.actions } diff --git a/lib/datadog/appsec/contrib/rack/gateway/watcher.rb b/lib/datadog/appsec/contrib/rack/gateway/watcher.rb index d32b13a4fc0..c006fa1e400 100644 --- a/lib/datadog/appsec/contrib/rack/gateway/watcher.rb +++ b/lib/datadog/appsec/contrib/rack/gateway/watcher.rb @@ -35,7 +35,7 @@ def watch_request(gateway = Instrumentation.gateway) event = { waf_result: result, trace: context.trace, - span: context.service_entry_span, + span: context.span, request: gateway_request, actions: result.actions } @@ -66,7 +66,7 @@ def watch_response(gateway = Instrumentation.gateway) event = { waf_result: result, trace: context.trace, - span: context.service_entry_span, + span: context.span, response: gateway_response, actions: result.actions } @@ -97,7 +97,7 @@ def watch_request_body(gateway = Instrumentation.gateway) event = { waf_result: result, trace: context.trace, - span: context.service_entry_span, + span: context.span, request: gateway_request, actions: result.actions } diff --git a/lib/datadog/appsec/contrib/rack/request_middleware.rb b/lib/datadog/appsec/contrib/rack/request_middleware.rb index 29f8fd45e4a..33e1e121bca 100644 --- a/lib/datadog/appsec/contrib/rack/request_middleware.rb +++ b/lib/datadog/appsec/contrib/rack/request_middleware.rb @@ -99,7 +99,7 @@ def call(env) if result ctx.processor_context.events << { trace: ctx.trace, - span: ctx.service_entry_span, + span: ctx.span, waf_result: result, } end @@ -109,7 +109,7 @@ def call(env) e[:request] ||= gateway_request end - AppSec::Event.record(ctx.service_entry_span, *ctx.processor_context.events) + AppSec::Event.record(ctx.span, *ctx.processor_context.events) if response_response blocked_event = response_response.find { |action, _options| action == :block } @@ -148,7 +148,7 @@ def active_span end def add_appsec_tags(processor, context) - span = context.service_entry_span + span = context.span trace = context.trace return unless trace && span @@ -185,7 +185,7 @@ def add_appsec_tags(processor, context) end def add_request_tags(context, env) - span = context.service_entry_span + span = context.span return unless span @@ -208,7 +208,7 @@ def add_request_tags(context, env) end def add_waf_runtime_tags(context) - span = context.service_entry_span + span = context.span context = context.processor_context return unless span && context diff --git a/lib/datadog/appsec/contrib/rails/gateway/watcher.rb b/lib/datadog/appsec/contrib/rails/gateway/watcher.rb index 87adb30a555..84be36bae4f 100644 --- a/lib/datadog/appsec/contrib/rails/gateway/watcher.rb +++ b/lib/datadog/appsec/contrib/rails/gateway/watcher.rb @@ -31,7 +31,7 @@ def watch_request_action(gateway = Instrumentation.gateway) event = { waf_result: result, trace: context.trace, - span: context.service_entry_span, + span: context.span, request: gateway_request, actions: result.actions } diff --git a/lib/datadog/appsec/contrib/sinatra/gateway/watcher.rb b/lib/datadog/appsec/contrib/sinatra/gateway/watcher.rb index 3bf5837e2a2..8c20ca4b3a2 100644 --- a/lib/datadog/appsec/contrib/sinatra/gateway/watcher.rb +++ b/lib/datadog/appsec/contrib/sinatra/gateway/watcher.rb @@ -33,7 +33,7 @@ def watch_request_dispatch(gateway = Instrumentation.gateway) event = { waf_result: result, trace: context.trace, - span: context.service_entry_span, + span: context.span, request: gateway_request, actions: result.actions } @@ -64,7 +64,7 @@ def watch_request_routed(gateway = Instrumentation.gateway) event = { waf_result: result, trace: context.trace, - span: context.service_entry_span, + span: context.span, request: gateway_request, actions: result.actions } diff --git a/lib/datadog/appsec/event.rb b/lib/datadog/appsec/event.rb index 37ab9da4e8a..ad43bc354cb 100644 --- a/lib/datadog/appsec/event.rb +++ b/lib/datadog/appsec/event.rb @@ -141,9 +141,9 @@ def tag_and_keep!(context, waf_result) # We want to keep the trace in case of security event context.trace.keep! if context.trace - if context.service_entry_span - context.service_entry_span.set_tag('appsec.blocked', 'true') if waf_result.actions.key?('block_request') - context.service_entry_span.set_tag('appsec.event', 'true') + if context.span + context.span.set_tag('appsec.blocked', 'true') if waf_result.actions.key?('block_request') + context.span.set_tag('appsec.event', 'true') end add_distributed_tags(context.trace) diff --git a/lib/datadog/appsec/monitor/gateway/watcher.rb b/lib/datadog/appsec/monitor/gateway/watcher.rb index 014abcfffb7..69ebfb0420b 100644 --- a/lib/datadog/appsec/monitor/gateway/watcher.rb +++ b/lib/datadog/appsec/monitor/gateway/watcher.rb @@ -29,7 +29,7 @@ def watch_user_id(gateway = Instrumentation.gateway) event = { waf_result: result, trace: context.trace, - span: context.service_entry_span, + span: context.span, user: user, actions: result.actions } diff --git a/lib/datadog/kit/appsec/events.rb b/lib/datadog/kit/appsec/events.rb index 3b5c9717110..61b6b6bf934 100644 --- a/lib/datadog/kit/appsec/events.rb +++ b/lib/datadog/kit/appsec/events.rb @@ -138,7 +138,7 @@ def track(event, trace = nil, span = nil, **others) def set_trace_and_span_context(method, trace = nil, span = nil) if (appsec_context = Datadog::AppSec.active_context) trace = appsec_context.trace - span = appsec_context.service_entry_span + span = appsec_context.span end trace ||= Datadog::Tracing.active_trace diff --git a/lib/datadog/kit/identity.rb b/lib/datadog/kit/identity.rb index 09de6392ead..a782f1364ae 100644 --- a/lib/datadog/kit/identity.rb +++ b/lib/datadog/kit/identity.rb @@ -80,7 +80,7 @@ def set_user( def set_trace_and_span_context(method, trace = nil, span = nil) if (appsec_context = Datadog::AppSec.active_context) trace = appsec_context.trace - span = appsec_context.service_entry_span + span = appsec_context.span end trace ||= Datadog::Tracing.active_trace diff --git a/spec/datadog/appsec/contrib/devise/patcher/authenticatable_patch_spec.rb b/spec/datadog/appsec/contrib/devise/patcher/authenticatable_patch_spec.rb index 2f763049475..e2741ddb90e 100644 --- a/spec/datadog/appsec/contrib/devise/patcher/authenticatable_patch_spec.rb +++ b/spec/datadog/appsec/contrib/devise/patcher/authenticatable_patch_spec.rb @@ -82,7 +82,7 @@ def initialize(id, email, username) context 'when logging in from Rememberable devise strategy' do let(:appsec_enabled) { true } let(:track_user_events_enabled) { true } - let(:appsec_context) { instance_double(Datadog::AppSec::Context, trace: double, service_entry_span: double) } + let(:appsec_context) { instance_double(Datadog::AppSec::Context, trace: double, span: double) } let(:mock_klass) do Class.new do @@ -109,7 +109,7 @@ def initialize(result) context 'successful login' do let(:appsec_enabled) { true } let(:track_user_events_enabled) { true } - let(:appsec_context) { instance_double(Datadog::AppSec::Context, trace: double, service_entry_span: double) } + let(:appsec_context) { instance_double(Datadog::AppSec::Context, trace: double, span: double) } context 'with resource ID' do context 'safe mode' do @@ -118,7 +118,7 @@ def initialize(result) it 'tracks event' do expect(Datadog::AppSec::Contrib::Devise::Tracking).to receive(:track_login_success).with( appsec_context.trace, - appsec_context.service_entry_span, + appsec_context.span, user_id: resource.id, **{} ) @@ -132,7 +132,7 @@ def initialize(result) it 'tracks event' do expect(Datadog::AppSec::Contrib::Devise::Tracking).to receive(:track_login_success).with( appsec_context.trace, - appsec_context.service_entry_span, + appsec_context.span, user_id: resource.id, **{ username: 'John', email: 'hello@gmail.com' } ) @@ -150,7 +150,7 @@ def initialize(result) it 'tracks event' do expect(Datadog::AppSec::Contrib::Devise::Tracking).to receive(:track_login_success).with( appsec_context.trace, - appsec_context.service_entry_span, + appsec_context.span, user_id: nil, **{} ) @@ -164,7 +164,7 @@ def initialize(result) it 'tracks event' do expect(Datadog::AppSec::Contrib::Devise::Tracking).to receive(:track_login_success).with( appsec_context.trace, - appsec_context.service_entry_span, + appsec_context.span, user_id: nil, **{ username: 'John', email: 'hello@gmail.com' } ) @@ -177,7 +177,7 @@ def initialize(result) context 'unsuccessful login' do let(:appsec_enabled) { true } let(:track_user_events_enabled) { true } - let(:appsec_context) { instance_double(Datadog::AppSec::Context, trace: double, service_entry_span: double) } + let(:appsec_context) { instance_double(Datadog::AppSec::Context, trace: double, span: double) } context 'with resource' do context 'safe mode' do @@ -186,7 +186,7 @@ def initialize(result) it 'tracks event' do expect(Datadog::AppSec::Contrib::Devise::Tracking).to receive(:track_login_failure).with( appsec_context.trace, - appsec_context.service_entry_span, + appsec_context.span, user_id: resource.id, user_exists: true, **{} @@ -201,7 +201,7 @@ def initialize(result) it 'tracks event' do expect(Datadog::AppSec::Contrib::Devise::Tracking).to receive(:track_login_failure).with( appsec_context.trace, - appsec_context.service_entry_span, + appsec_context.span, user_id: resource.id, user_exists: true, **{ username: 'John', email: 'hello@gmail.com' } @@ -218,7 +218,7 @@ def initialize(result) it 'tracks event' do expect(Datadog::AppSec::Contrib::Devise::Tracking).to receive(:track_login_failure).with( appsec_context.trace, - appsec_context.service_entry_span, + appsec_context.span, user_id: nil, user_exists: false, **{} @@ -233,7 +233,7 @@ def initialize(result) it 'tracks event' do expect(Datadog::AppSec::Contrib::Devise::Tracking).to receive(:track_login_failure).with( appsec_context.trace, - appsec_context.service_entry_span, + appsec_context.span, user_id: nil, user_exists: false, **{} diff --git a/spec/datadog/appsec/contrib/devise/patcher/registration_controller_patch_spec.rb b/spec/datadog/appsec/contrib/devise/patcher/registration_controller_patch_spec.rb index 3660923d1b4..d2fb4e3c338 100644 --- a/spec/datadog/appsec/contrib/devise/patcher/registration_controller_patch_spec.rb +++ b/spec/datadog/appsec/contrib/devise/patcher/registration_controller_patch_spec.rb @@ -127,7 +127,7 @@ def try(value) context 'with persisted resource' do let(:appsec_enabled) { true } let(:track_user_events_enabled) { true } - let(:appsec_context) { instance_double(Datadog::AppSec::Context, trace: double, service_entry_span: double) } + let(:appsec_context) { instance_double(Datadog::AppSec::Context, trace: double, span: double) } context 'with resource ID' do let(:resource) { persited_resource } @@ -142,7 +142,7 @@ def try(value) it 'tracks event' do expect(Datadog::AppSec::Contrib::Devise::Tracking).to receive(:track_signup).with( appsec_context.trace, - appsec_context.service_entry_span, + appsec_context.span, user_id: resource.id, **{} ) @@ -157,7 +157,7 @@ def try(value) it 'tracks event' do expect(Datadog::AppSec::Contrib::Devise::Tracking).to receive(:track_signup).with( appsec_context.trace, - appsec_context.service_entry_span, + appsec_context.span, user_id: resource.id, **{ email: 'hello@gmail.com', username: 'John' } ) @@ -173,7 +173,7 @@ def try(value) it 'tracks event' do expect(Datadog::AppSec::Contrib::Devise::Tracking).to receive(:track_signup).with( appsec_context.trace, - appsec_context.service_entry_span, + appsec_context.span, user_id: resource.id, **{} ) @@ -187,7 +187,7 @@ def try(value) it 'tracks event' do expect(Datadog::AppSec::Contrib::Devise::Tracking).to receive(:track_signup).with( appsec_context.trace, - appsec_context.service_entry_span, + appsec_context.span, user_id: resource.id, **{ email: 'hello@gmail.com', username: 'John' } ) @@ -209,7 +209,7 @@ def try(value) it 'tracks event' do expect(Datadog::AppSec::Contrib::Devise::Tracking).to receive(:track_signup).with( appsec_context.trace, - appsec_context.service_entry_span, + appsec_context.span, user_id: nil, **{} ) @@ -224,7 +224,7 @@ def try(value) it 'tracks event' do expect(Datadog::AppSec::Contrib::Devise::Tracking).to receive(:track_signup).with( appsec_context.trace, - appsec_context.service_entry_span, + appsec_context.span, user_id: nil, **{ email: 'hello@gmail.com', username: 'John' } ) @@ -240,7 +240,7 @@ def try(value) it 'tracks event' do expect(Datadog::AppSec::Contrib::Devise::Tracking).to receive(:track_signup).with( appsec_context.trace, - appsec_context.service_entry_span, + appsec_context.span, user_id: nil, **{} ) @@ -254,7 +254,7 @@ def try(value) it 'tracks event' do expect(Datadog::AppSec::Contrib::Devise::Tracking).to receive(:track_signup).with( appsec_context.trace, - appsec_context.service_entry_span, + appsec_context.span, user_id: nil, **{ email: 'hello@gmail.com', username: 'John' } ) @@ -267,7 +267,7 @@ def try(value) context 'with non persisted resource' do let(:appsec_enabled) { true } let(:track_user_events_enabled) { true } - let(:appsec_context) { instance_double(Datadog::AppSec::Context, trace: double, service_entry_span: double) } + let(:appsec_context) { instance_double(Datadog::AppSec::Context, trace: double, span: double) } let(:resource) { non_persisted_resource } context 'safe mode' do diff --git a/spec/datadog/appsec/event_spec.rb b/spec/datadog/appsec/event_spec.rb index 194381ea4e1..f3a0df8195b 100644 --- a/spec/datadog/appsec/event_spec.rb +++ b/spec/datadog/appsec/event_spec.rb @@ -385,10 +385,10 @@ context_span = span if with_span end - dbl = double + dbl = instance_double(Datadog::AppSec::Context) allow(dbl).to receive(:trace).and_return(context_trace) - allow(dbl).to receive(:service_entry_span).and_return(context_span) + allow(dbl).to receive(:span).and_return(context_span) dbl end @@ -402,8 +402,8 @@ context 'with no actions' do it 'does not add appsec.blocked tag to span' do - expect(context.service_entry_span.send(:meta)).to_not include('appsec.blocked') - expect(context.service_entry_span.send(:meta)['appsec.event']).to eq('true') + expect(context.span.send(:meta)).to_not include('appsec.blocked') + expect(context.span.send(:meta)['appsec.event']).to eq('true') expect(context.trace.send(:meta)['_dd.p.dm']).to eq('-5') expect(context.trace.send(:meta)['_dd.p.appsec']).to eq('1') end @@ -415,18 +415,18 @@ end it 'adds appsec.blocked tag to span' do - expect(context.service_entry_span.send(:meta)['appsec.blocked']).to eq('true') - expect(context.service_entry_span.send(:meta)['appsec.event']).to eq('true') + expect(context.span.send(:meta)['appsec.blocked']).to eq('true') + expect(context.span.send(:meta)['appsec.event']).to eq('true') expect(context.trace.send(:meta)['_dd.p.dm']).to eq('-5') expect(context.trace.send(:meta)['_dd.p.appsec']).to eq('1') end end - context 'without service_entry_span' do + context 'without span' do let(:with_span) { false } it 'does not add appsec span tags but still add distributed tags' do - expect(context.service_entry_span).to be nil + expect(context.span).to be nil expect(context.trace.send(:meta)['_dd.p.dm']).to eq('-5') expect(context.trace.send(:meta)['_dd.p.appsec']).to eq('1') end @@ -438,8 +438,8 @@ context 'with no actions' do it 'does not add distributed tags but still add appsec span tags' do expect(context.trace).to be nil - expect(context.service_entry_span.send(:meta)['appsec.blocked']).to be nil - expect(context.service_entry_span.send(:meta)['appsec.event']).to eq('true') + expect(context.span.send(:meta)['appsec.blocked']).to be nil + expect(context.span.send(:meta)['appsec.event']).to eq('true') end end @@ -450,8 +450,8 @@ it 'does not add distributed tags but still add appsec span tags' do expect(context.trace).to be nil - expect(context.service_entry_span.send(:meta)['appsec.blocked']).to eq('true') - expect(context.service_entry_span.send(:meta)['appsec.event']).to eq('true') + expect(context.span.send(:meta)['appsec.blocked']).to eq('true') + expect(context.span.send(:meta)['appsec.event']).to eq('true') end end end From c709dcab24f66fd1467f707463a660eae28fac22 Mon Sep 17 00:00:00 2001 From: Sergey Fedorov Date: Fri, 10 Jan 2025 14:20:25 +0100 Subject: [PATCH 143/161] Replace direct AppSec::Processor::Context calls --- lib/datadog/appsec/context.rb | 11 +++---- .../contrib/active_record/instrumentation.rb | 4 +-- .../appsec/contrib/graphql/gateway/watcher.rb | 4 +-- .../contrib/graphql/reactive/multiplex.rb | 4 +-- .../appsec/contrib/rack/gateway/watcher.rb | 12 +++---- .../appsec/contrib/rack/reactive/request.rb | 4 +-- .../contrib/rack/reactive/request_body.rb | 4 +-- .../appsec/contrib/rack/reactive/response.rb | 4 +-- .../appsec/contrib/rack/request_middleware.rb | 10 +++--- .../appsec/contrib/rails/gateway/watcher.rb | 4 +-- .../appsec/contrib/rails/reactive/action.rb | 4 +-- .../appsec/contrib/sinatra/gateway/watcher.rb | 8 ++--- .../appsec/contrib/sinatra/reactive/routed.rb | 4 +-- lib/datadog/appsec/ext.rb | 1 + lib/datadog/appsec/monitor/gateway/watcher.rb | 4 +-- .../appsec/monitor/reactive/set_user.rb | 4 +-- spec/datadog/appsec/context_spec.rb | 14 +++----- .../active_record/mysql2_adapter_spec.rb | 22 +++++++------ .../active_record/postgresql_adapter_spec.rb | 22 +++++++------ .../active_record/sqlite3_adapter_spec.rb | 27 ++++++++-------- .../graphql/reactive/multiplex_spec.rb | 10 +++--- .../rack/reactive/request_body_spec.rb | 10 +++--- .../contrib/rack/reactive/request_spec.rb | 10 +++--- .../contrib/rack/reactive/response_spec.rb | 20 ++++++------ .../contrib/rails/reactive/action_spec.rb | 10 +++--- .../contrib/sinatra/reactive/routed_spec.rb | 10 +++--- .../appsec/monitor/reactive/set_user_spec.rb | 10 +++--- .../appsec/reactive/shared_examples.rb | 32 +++++++++---------- spec/datadog/kit/appsec/events_spec.rb | 13 ++++---- spec/datadog/kit/identity_spec.rb | 8 +++-- 30 files changed, 151 insertions(+), 153 deletions(-) diff --git a/lib/datadog/appsec/context.rb b/lib/datadog/appsec/context.rb index cf63ab4a57a..393cad27069 100644 --- a/lib/datadog/appsec/context.rb +++ b/lib/datadog/appsec/context.rb @@ -7,10 +7,10 @@ module AppSec class Context ActiveContextError = Class.new(StandardError) - # XXX: Continue from here: - # 1. Replace naming of processor_context into waf_runner - # 2. Replace calls of waf run - attr_reader :trace, :span, :processor_context + attr_reader :trace, :span + + # NOTE: This is an intermediate state and will be changed + attr_reader :waf_runner class << self def activate(context) @@ -36,9 +36,6 @@ def initialize(trace, span, security_engine) @span = span @security_engine = security_engine @waf_runner = security_engine.new_context - - # FIXME: Left for compatibility now - @processor_context = @waf_runner end def run_waf(persistent_data, ephemeral_data, timeout = WAF::LibDDWAF::DDWAF_RUN_TIMEOUT) diff --git a/lib/datadog/appsec/contrib/active_record/instrumentation.rb b/lib/datadog/appsec/contrib/active_record/instrumentation.rb index 57334c93896..41a8e80523c 100644 --- a/lib/datadog/appsec/contrib/active_record/instrumentation.rb +++ b/lib/datadog/appsec/contrib/active_record/instrumentation.rb @@ -23,7 +23,7 @@ def detect_sql_injection(sql, adapter_name) } waf_timeout = Datadog.configuration.appsec.waf_timeout - result = context.processor_context.run({}, ephemeral_data, waf_timeout) + result = context.run_rasp(Ext::RASP_SQLI, {}, ephemeral_data, waf_timeout) if result.status == :match Datadog::AppSec::Event.tag_and_keep!(context, result) @@ -35,7 +35,7 @@ def detect_sql_injection(sql, adapter_name) sql: sql, actions: result.actions } - context.processor_context.events << event + context.waf_runner.events << event end end diff --git a/lib/datadog/appsec/contrib/graphql/gateway/watcher.rb b/lib/datadog/appsec/contrib/graphql/gateway/watcher.rb index 4855a81ce68..025b6e10359 100644 --- a/lib/datadog/appsec/contrib/graphql/gateway/watcher.rb +++ b/lib/datadog/appsec/contrib/graphql/gateway/watcher.rb @@ -28,7 +28,7 @@ def watch_multiplex(gateway = Instrumentation.gateway) engine = AppSec::Reactive::Engine.new if context - GraphQL::Reactive::Multiplex.subscribe(engine, context.processor_context) do |result| + GraphQL::Reactive::Multiplex.subscribe(engine, context) do |result| event = { waf_result: result, trace: context.trace, @@ -38,7 +38,7 @@ def watch_multiplex(gateway = Instrumentation.gateway) } Datadog::AppSec::Event.tag_and_keep!(context, result) - context.processor_context.events << event + context.waf_runner.events << event end block = GraphQL::Reactive::Multiplex.publish(engine, gateway_multiplex) diff --git a/lib/datadog/appsec/contrib/graphql/reactive/multiplex.rb b/lib/datadog/appsec/contrib/graphql/reactive/multiplex.rb index cfbf31dc1b8..ec6380cff52 100644 --- a/lib/datadog/appsec/contrib/graphql/reactive/multiplex.rb +++ b/lib/datadog/appsec/contrib/graphql/reactive/multiplex.rb @@ -20,7 +20,7 @@ def self.publish(engine, gateway_multiplex) end end - def self.subscribe(engine, waf_context) + def self.subscribe(engine, context) engine.subscribe(*ADDRESSES) do |*values| Datadog.logger.debug { "reacted to #{ADDRESSES.inspect}: #{values.inspect}" } arguments = values[0] @@ -30,7 +30,7 @@ def self.subscribe(engine, waf_context) } waf_timeout = Datadog.configuration.appsec.waf_timeout - result = waf_context.run(persistent_data, {}, waf_timeout) + result = context.run_waf(persistent_data, {}, waf_timeout) next if result.status != :match diff --git a/lib/datadog/appsec/contrib/rack/gateway/watcher.rb b/lib/datadog/appsec/contrib/rack/gateway/watcher.rb index c006fa1e400..a655b3fe1d5 100644 --- a/lib/datadog/appsec/contrib/rack/gateway/watcher.rb +++ b/lib/datadog/appsec/contrib/rack/gateway/watcher.rb @@ -29,7 +29,7 @@ def watch_request(gateway = Instrumentation.gateway) context = gateway_request.env[Datadog::AppSec::Ext::CONTEXT_KEY] engine = AppSec::Reactive::Engine.new - Rack::Reactive::Request.subscribe(engine, context.processor_context) do |result| + Rack::Reactive::Request.subscribe(engine, context) do |result| if result.status == :match # TODO: should this hash be an Event instance instead? event = { @@ -43,7 +43,7 @@ def watch_request(gateway = Instrumentation.gateway) # We want to keep the trace in case of security event context.trace.keep! if context.trace Datadog::AppSec::Event.tag_and_keep!(context, result) - context.processor_context.events << event + context.waf_runner.events << event end end @@ -60,7 +60,7 @@ def watch_response(gateway = Instrumentation.gateway) context = gateway_response.context engine = AppSec::Reactive::Engine.new - Rack::Reactive::Response.subscribe(engine, context.processor_context) do |result| + Rack::Reactive::Response.subscribe(engine, context) do |result| if result.status == :match # TODO: should this hash be an Event instance instead? event = { @@ -74,7 +74,7 @@ def watch_response(gateway = Instrumentation.gateway) # We want to keep the trace in case of security event context.trace.keep! if context.trace Datadog::AppSec::Event.tag_and_keep!(context, result) - context.processor_context.events << event + context.waf_runner.events << event end end @@ -91,7 +91,7 @@ def watch_request_body(gateway = Instrumentation.gateway) context = gateway_request.env[Datadog::AppSec::Ext::CONTEXT_KEY] engine = AppSec::Reactive::Engine.new - Rack::Reactive::RequestBody.subscribe(engine, context.processor_context) do |result| + Rack::Reactive::RequestBody.subscribe(engine, context) do |result| if result.status == :match # TODO: should this hash be an Event instance instead? event = { @@ -105,7 +105,7 @@ def watch_request_body(gateway = Instrumentation.gateway) # We want to keep the trace in case of security event context.trace.keep! if context.trace Datadog::AppSec::Event.tag_and_keep!(context, result) - context.processor_context.events << event + context.waf_runner.events << event end end diff --git a/lib/datadog/appsec/contrib/rack/reactive/request.rb b/lib/datadog/appsec/contrib/rack/reactive/request.rb index 78074268af6..31333851412 100644 --- a/lib/datadog/appsec/contrib/rack/reactive/request.rb +++ b/lib/datadog/appsec/contrib/rack/reactive/request.rb @@ -30,7 +30,7 @@ def self.publish(engine, gateway_request) end end - def self.subscribe(engine, waf_context) + def self.subscribe(engine, context) engine.subscribe(*ADDRESSES) do |*values| Datadog.logger.debug { "reacted to #{ADDRESSES.inspect}: #{values.inspect}" } @@ -53,7 +53,7 @@ def self.subscribe(engine, waf_context) } waf_timeout = Datadog.configuration.appsec.waf_timeout - result = waf_context.run(persistent_data, {}, waf_timeout) + result = context.run_waf(persistent_data, {}, waf_timeout) next if result.status != :match diff --git a/lib/datadog/appsec/contrib/rack/reactive/request_body.rb b/lib/datadog/appsec/contrib/rack/reactive/request_body.rb index 57395ac83b8..0cf74aef33f 100644 --- a/lib/datadog/appsec/contrib/rack/reactive/request_body.rb +++ b/lib/datadog/appsec/contrib/rack/reactive/request_body.rb @@ -21,7 +21,7 @@ def self.publish(engine, gateway_request) end end - def self.subscribe(engine, waf_context) + def self.subscribe(engine, context) engine.subscribe(*ADDRESSES) do |*values| Datadog.logger.debug { "reacted to #{ADDRESSES.inspect}: #{values.inspect}" } body = values[0] @@ -31,7 +31,7 @@ def self.subscribe(engine, waf_context) } waf_timeout = Datadog.configuration.appsec.waf_timeout - result = waf_context.run(persistent_data, {}, waf_timeout) + result = context.run_waf(persistent_data, {}, waf_timeout) next if result.status != :match diff --git a/lib/datadog/appsec/contrib/rack/reactive/response.rb b/lib/datadog/appsec/contrib/rack/reactive/response.rb index 8c0cd706d26..9eca3e0157b 100644 --- a/lib/datadog/appsec/contrib/rack/reactive/response.rb +++ b/lib/datadog/appsec/contrib/rack/reactive/response.rb @@ -22,7 +22,7 @@ def self.publish(engine, gateway_response) end end - def self.subscribe(engine, waf_context) + def self.subscribe(engine, context) engine.subscribe(*ADDRESSES) do |*values| Datadog.logger.debug { "reacted to #{ADDRESSES.inspect}: #{values.inspect}" } @@ -37,7 +37,7 @@ def self.subscribe(engine, waf_context) } waf_timeout = Datadog.configuration.appsec.waf_timeout - result = waf_context.run(persistent_data, {}, waf_timeout) + result = context.run_waf(persistent_data, {}, waf_timeout) next if result.status != :match diff --git a/lib/datadog/appsec/contrib/rack/request_middleware.rb b/lib/datadog/appsec/contrib/rack/request_middleware.rb index 33e1e121bca..6aa14798a19 100644 --- a/lib/datadog/appsec/contrib/rack/request_middleware.rb +++ b/lib/datadog/appsec/contrib/rack/request_middleware.rb @@ -94,22 +94,22 @@ def call(env) _response_return, response_response = Instrumentation.gateway.push('rack.response', gateway_response) - result = ctx.processor_context.extract_schema + result = ctx.waf_runner.extract_schema if result - ctx.processor_context.events << { + ctx.waf_runner.events << { trace: ctx.trace, span: ctx.span, waf_result: result, } end - ctx.processor_context.events.each do |e| + ctx.waf_runner.events.each do |e| e[:response] ||= gateway_response e[:request] ||= gateway_request end - AppSec::Event.record(ctx.span, *ctx.processor_context.events) + AppSec::Event.record(ctx.span, *ctx.waf_runner.events) if response_response blocked_event = response_response.find { |action, _options| action == :block } @@ -209,7 +209,7 @@ def add_request_tags(context, env) def add_waf_runtime_tags(context) span = context.span - context = context.processor_context + context = context.waf_runner return unless span && context diff --git a/lib/datadog/appsec/contrib/rails/gateway/watcher.rb b/lib/datadog/appsec/contrib/rails/gateway/watcher.rb index 84be36bae4f..4ae52c73333 100644 --- a/lib/datadog/appsec/contrib/rails/gateway/watcher.rb +++ b/lib/datadog/appsec/contrib/rails/gateway/watcher.rb @@ -25,7 +25,7 @@ def watch_request_action(gateway = Instrumentation.gateway) context = gateway_request.env[Datadog::AppSec::Ext::CONTEXT_KEY] engine = AppSec::Reactive::Engine.new - Rails::Reactive::Action.subscribe(engine, context.processor_context) do |result| + Rails::Reactive::Action.subscribe(engine, context) do |result| if result.status == :match # TODO: should this hash be an Event instance instead? event = { @@ -39,7 +39,7 @@ def watch_request_action(gateway = Instrumentation.gateway) # We want to keep the trace in case of security event context.trace.keep! if context.trace Datadog::AppSec::Event.tag_and_keep!(context, result) - context.processor_context.events << event + context.waf_runner.events << event end end diff --git a/lib/datadog/appsec/contrib/rails/reactive/action.rb b/lib/datadog/appsec/contrib/rails/reactive/action.rb index 9dbe8697e51..b1589b3131e 100644 --- a/lib/datadog/appsec/contrib/rails/reactive/action.rb +++ b/lib/datadog/appsec/contrib/rails/reactive/action.rb @@ -25,7 +25,7 @@ def self.publish(engine, gateway_request) end end - def self.subscribe(engine, waf_context) + def self.subscribe(engine, context) engine.subscribe(*ADDRESSES) do |*values| Datadog.logger.debug { "reacted to #{ADDRESSES.inspect}: #{values.inspect}" } body = values[0] @@ -37,7 +37,7 @@ def self.subscribe(engine, waf_context) } waf_timeout = Datadog.configuration.appsec.waf_timeout - result = waf_context.run(persistent_data, {}, waf_timeout) + result = context.run_waf(persistent_data, {}, waf_timeout) next if result.status != :match diff --git a/lib/datadog/appsec/contrib/sinatra/gateway/watcher.rb b/lib/datadog/appsec/contrib/sinatra/gateway/watcher.rb index 8c20ca4b3a2..a9ca382b904 100644 --- a/lib/datadog/appsec/contrib/sinatra/gateway/watcher.rb +++ b/lib/datadog/appsec/contrib/sinatra/gateway/watcher.rb @@ -27,7 +27,7 @@ def watch_request_dispatch(gateway = Instrumentation.gateway) context = gateway_request.env[Datadog::AppSec::Ext::CONTEXT_KEY] engine = AppSec::Reactive::Engine.new - Rack::Reactive::RequestBody.subscribe(engine, context.processor_context) do |result| + Rack::Reactive::RequestBody.subscribe(engine, context) do |result| if result.status == :match # TODO: should this hash be an Event instance instead? event = { @@ -41,7 +41,7 @@ def watch_request_dispatch(gateway = Instrumentation.gateway) # We want to keep the trace in case of security event context.trace.keep! if context.trace Datadog::AppSec::Event.tag_and_keep!(context, result) - context.processor_context.events << event + context.waf_runner.events << event end end @@ -58,7 +58,7 @@ def watch_request_routed(gateway = Instrumentation.gateway) context = gateway_request.env[Datadog::AppSec::Ext::CONTEXT_KEY] engine = AppSec::Reactive::Engine.new - Sinatra::Reactive::Routed.subscribe(engine, context.processor_context) do |result| + Sinatra::Reactive::Routed.subscribe(engine, context) do |result| if result.status == :match # TODO: should this hash be an Event instance instead? event = { @@ -72,7 +72,7 @@ def watch_request_routed(gateway = Instrumentation.gateway) # We want to keep the trace in case of security event context.trace.keep! if context.trace Datadog::AppSec::Event.tag_and_keep!(context, result) - context.processor_context.events << event + context.waf_runner.events << event end end diff --git a/lib/datadog/appsec/contrib/sinatra/reactive/routed.rb b/lib/datadog/appsec/contrib/sinatra/reactive/routed.rb index e34dfb4ccb3..7227d0539d6 100644 --- a/lib/datadog/appsec/contrib/sinatra/reactive/routed.rb +++ b/lib/datadog/appsec/contrib/sinatra/reactive/routed.rb @@ -22,7 +22,7 @@ def self.publish(engine, data) end end - def self.subscribe(engine, waf_context) + def self.subscribe(engine, context) engine.subscribe(*ADDRESSES) do |*values| Datadog.logger.debug { "reacted to #{ADDRESSES.inspect}: #{values.inspect}" } path_params = values[0] @@ -32,7 +32,7 @@ def self.subscribe(engine, waf_context) } waf_timeout = Datadog.configuration.appsec.waf_timeout - result = waf_context.run(persistent_data, {}, waf_timeout) + result = context.run_waf(persistent_data, {}, waf_timeout) next if result.status != :match diff --git a/lib/datadog/appsec/ext.rb b/lib/datadog/appsec/ext.rb index a801a394546..2c6e6f5fae3 100644 --- a/lib/datadog/appsec/ext.rb +++ b/lib/datadog/appsec/ext.rb @@ -3,6 +3,7 @@ module Datadog module AppSec module Ext + RASP_SQLI = :sql_injection INTERRUPT = :datadog_appsec_interrupt CONTEXT_KEY = 'datadog.appsec.context' ACTIVE_CONTEXT_KEY = :datadog_appsec_active_context diff --git a/lib/datadog/appsec/monitor/gateway/watcher.rb b/lib/datadog/appsec/monitor/gateway/watcher.rb index 69ebfb0420b..4d0194f9c7a 100644 --- a/lib/datadog/appsec/monitor/gateway/watcher.rb +++ b/lib/datadog/appsec/monitor/gateway/watcher.rb @@ -23,7 +23,7 @@ def watch_user_id(gateway = Instrumentation.gateway) context = Datadog::AppSec.active_context engine = AppSec::Reactive::Engine.new - Monitor::Reactive::SetUser.subscribe(engine, context.processor_context) do |result| + Monitor::Reactive::SetUser.subscribe(engine, context) do |result| if result.status == :match # TODO: should this hash be an Event instance instead? event = { @@ -37,7 +37,7 @@ def watch_user_id(gateway = Instrumentation.gateway) # We want to keep the trace in case of security event context.trace.keep! if context.trace Datadog::AppSec::Event.tag_and_keep!(context, result) - context.processor_context.events << event + context.waf_runner.events << event end end diff --git a/lib/datadog/appsec/monitor/reactive/set_user.rb b/lib/datadog/appsec/monitor/reactive/set_user.rb index ea3128c6031..64df8931f30 100644 --- a/lib/datadog/appsec/monitor/reactive/set_user.rb +++ b/lib/datadog/appsec/monitor/reactive/set_user.rb @@ -19,7 +19,7 @@ def self.publish(engine, user) end end - def self.subscribe(engine, waf_context) + def self.subscribe(engine, context) engine.subscribe(*ADDRESSES) do |*values| Datadog.logger.debug { "reacted to #{ADDRESSES.inspect}: #{values.inspect}" } @@ -30,7 +30,7 @@ def self.subscribe(engine, waf_context) } waf_timeout = Datadog.configuration.appsec.waf_timeout - result = waf_context.run(persistent_data, {}, waf_timeout) + result = context.run_waf(persistent_data, {}, waf_timeout) next if result.status != :match diff --git a/spec/datadog/appsec/context_spec.rb b/spec/datadog/appsec/context_spec.rb index a1f44b070a7..e490cd6aaf3 100644 --- a/spec/datadog/appsec/context_spec.rb +++ b/spec/datadog/appsec/context_spec.rb @@ -41,12 +41,9 @@ subject(:activate_context) { described_class.activate(described_class.new(trace, span, processor)) } - it 'raises ActiveContextError' do + it 'raises ActiveContextError and does not change the active context' do expect { activate_context }.to raise_error(Datadog::AppSec::Context::ActiveContextError) - end - - it 'does not change the active context' do - expect { activate_context rescue nil }.to_not(change { described_class.active }) + .and(not_change { described_class.active }) end end end @@ -75,12 +72,9 @@ expect(context).to receive(:finalize).and_raise(RuntimeError.new('Ooops')) end - it 'raises underlying exception' do + it 'raises underlying exception and unsets the active context' do expect { described_class.deactivate }.to raise_error(RuntimeError) - end - - it 'unsets the active context' do - expect { described_class.deactivate rescue nil }.to change { described_class.active }.from(context).to(nil) + .and(change { described_class.active }.from(context).to(nil)) end end end diff --git a/spec/datadog/appsec/contrib/active_record/mysql2_adapter_spec.rb b/spec/datadog/appsec/contrib/active_record/mysql2_adapter_spec.rb index b43f7b15dc0..59306b5a7ba 100644 --- a/spec/datadog/appsec/contrib/active_record/mysql2_adapter_spec.rb +++ b/spec/datadog/appsec/contrib/active_record/mysql2_adapter_spec.rb @@ -15,7 +15,7 @@ let(:telemetry) { instance_double(Datadog::Core::Telemetry::Component) } let(:ruleset) { Datadog::AppSec::Processor::RuleLoader.load_rules(ruleset: :recommended, telemetry: telemetry) } let(:processor) { Datadog::AppSec::Processor.new(ruleset: ruleset, telemetry: telemetry) } - let(:context) { processor.new_context } + let(:context) { Datadog::AppSec::Context.new(trace, span, processor) } let(:span) { Datadog::Tracing::SpanOperation.new('root') } let(:trace) { Datadog::Tracing::TraceOperation.new } @@ -52,7 +52,7 @@ c.appsec.instrument :active_record end - Datadog::AppSec::Context.activate_context(trace, span, processor) + Datadog::AppSec::Context.activate(context) raise_on_rails_deprecation! end @@ -60,13 +60,14 @@ after do Datadog.configuration.reset! - Datadog::AppSec::Context.deactivate_context + Datadog::AppSec::Context.deactivate processor.finalize end it 'calls waf with correct arguments when querying using .where' do - expect(Datadog::AppSec.active_context.processor_context).to( - receive(:run).with( + expect(Datadog::AppSec.active_context).to( + receive(:run_rasp).with( + Datadog::AppSec::Ext::RASP_SQLI, {}, { 'server.db.statement' => "SELECT `users`.* FROM `users` WHERE `users`.`name` = 'Bob'", @@ -80,8 +81,9 @@ end it 'calls waf with correct arguments when querying using .find_by_sql' do - expect(Datadog::AppSec.active_context.processor_context).to( - receive(:run).with( + expect(Datadog::AppSec.active_context).to( + receive(:run_rasp).with( + Datadog::AppSec::Ext::RASP_SQLI, {}, { 'server.db.statement' => "SELECT * FROM users WHERE name = 'Bob'", @@ -95,11 +97,11 @@ end it 'adds an event to processor context if waf status is :match' do - expect(Datadog::AppSec.active_context.processor_context).to( - receive(:run).and_return(instance_double(Datadog::AppSec::WAF::Result, status: :match, actions: {})) + expect(Datadog::AppSec.active_context).to( + receive(:run_rasp).and_return(instance_double(Datadog::AppSec::WAF::Result, status: :match, actions: {})) ) - expect(Datadog::AppSec.active_context.processor_context.events).to receive(:<<).and_call_original + expect(Datadog::AppSec.active_context.waf_runner.events).to receive(:<<).and_call_original User.where(name: 'Bob').to_a end diff --git a/spec/datadog/appsec/contrib/active_record/postgresql_adapter_spec.rb b/spec/datadog/appsec/contrib/active_record/postgresql_adapter_spec.rb index 88bf4ed57fa..1a718855f00 100644 --- a/spec/datadog/appsec/contrib/active_record/postgresql_adapter_spec.rb +++ b/spec/datadog/appsec/contrib/active_record/postgresql_adapter_spec.rb @@ -15,7 +15,7 @@ let(:telemetry) { instance_double(Datadog::Core::Telemetry::Component) } let(:ruleset) { Datadog::AppSec::Processor::RuleLoader.load_rules(ruleset: :recommended, telemetry: telemetry) } let(:processor) { Datadog::AppSec::Processor.new(ruleset: ruleset, telemetry: telemetry) } - let(:context) { processor.new_context } + let(:context) { Datadog::AppSec::Context.new(trace, span, processor) } let(:span) { Datadog::Tracing::SpanOperation.new('root') } let(:trace) { Datadog::Tracing::TraceOperation.new } @@ -53,7 +53,7 @@ c.appsec.instrument :active_record end - Datadog::AppSec::Context.activate_context(trace, span, processor) + Datadog::AppSec::Context.activate(context) raise_on_rails_deprecation! end @@ -61,7 +61,7 @@ after do Datadog.configuration.reset! - Datadog::AppSec::Context.deactivate_context + Datadog::AppSec::Context.deactivate processor.finalize end @@ -72,8 +72,9 @@ 'SELECT "users".* FROM "users" WHERE "users"."name" = $1' end - expect(Datadog::AppSec.active_context.processor_context).to( - receive(:run).with( + expect(Datadog::AppSec.active_context).to( + receive(:run_rasp).with( + Datadog::AppSec::Ext::RASP_SQLI, {}, { 'server.db.statement' => expected_db_statement, @@ -87,8 +88,9 @@ end it 'calls waf with correct arguments when querying using .find_by_sql' do - expect(Datadog::AppSec.active_context.processor_context).to( - receive(:run).with( + expect(Datadog::AppSec.active_context).to( + receive(:run_rasp).with( + Datadog::AppSec::Ext::RASP_SQLI, {}, { 'server.db.statement' => "SELECT * FROM users WHERE name = 'Bob'", @@ -102,11 +104,11 @@ end it 'adds an event to processor context if waf status is :match' do - expect(Datadog::AppSec.active_context.processor_context).to( - receive(:run).and_return(instance_double(Datadog::AppSec::WAF::Result, status: :match, actions: {})) + expect(Datadog::AppSec.active_context).to( + receive(:run_rasp).and_return(instance_double(Datadog::AppSec::WAF::Result, status: :match, actions: {})) ) - expect(Datadog::AppSec.active_context.processor_context.events).to receive(:<<).and_call_original + expect(Datadog::AppSec.active_context.waf_runner.events).to receive(:<<).and_call_original User.where(name: 'Bob').to_a end diff --git a/spec/datadog/appsec/contrib/active_record/sqlite3_adapter_spec.rb b/spec/datadog/appsec/contrib/active_record/sqlite3_adapter_spec.rb index 9be5d7ebfad..c15246f9017 100644 --- a/spec/datadog/appsec/contrib/active_record/sqlite3_adapter_spec.rb +++ b/spec/datadog/appsec/contrib/active_record/sqlite3_adapter_spec.rb @@ -15,7 +15,7 @@ let(:telemetry) { instance_double(Datadog::Core::Telemetry::Component) } let(:ruleset) { Datadog::AppSec::Processor::RuleLoader.load_rules(ruleset: :recommended, telemetry: telemetry) } let(:processor) { Datadog::AppSec::Processor.new(ruleset: ruleset, telemetry: telemetry) } - let(:context) { processor.new_context } + let(:context) { Datadog::AppSec::Context.new(trace, span, processor) } let(:span) { Datadog::Tracing::SpanOperation.new('root') } let(:trace) { Datadog::Tracing::TraceOperation.new } @@ -37,10 +37,7 @@ end let(:db_config) do - { - adapter: 'sqlite3', - database: ':memory:' - } + { adapter: 'sqlite3', database: ':memory:' } end before do @@ -49,7 +46,7 @@ c.appsec.instrument :active_record end - Datadog::AppSec::Context.activate_context(trace, span, processor) + Datadog::AppSec::Context.activate(context) raise_on_rails_deprecation! end @@ -57,13 +54,14 @@ after do Datadog.configuration.reset! - Datadog::AppSec::Context.deactivate_context + Datadog::AppSec::Context.deactivate processor.finalize end it 'calls waf with correct arguments when querying using .where' do - expect(Datadog::AppSec.active_context.processor_context).to( - receive(:run).with( + expect(Datadog::AppSec.active_context).to( + receive(:run_rasp).with( + Datadog::AppSec::Ext::RASP_SQLI, {}, { 'server.db.statement' => 'SELECT "users".* FROM "users" WHERE "users"."name" = ?', @@ -77,8 +75,9 @@ end it 'calls waf with correct arguments when querying using .find_by_sql' do - expect(Datadog::AppSec.active_context.processor_context).to( - receive(:run).with( + expect(Datadog::AppSec.active_context).to( + receive(:run_rasp).with( + Datadog::AppSec::Ext::RASP_SQLI, {}, { 'server.db.statement' => "SELECT * FROM users WHERE name = 'Bob'", @@ -92,11 +91,11 @@ end it 'adds an event to processor context if waf status is :match' do - expect(Datadog::AppSec.active_context.processor_context).to( - receive(:run).and_return(instance_double(Datadog::AppSec::WAF::Result, status: :match, actions: {})) + expect(Datadog::AppSec.active_context).to( + receive(:run_rasp).and_return(instance_double(Datadog::AppSec::WAF::Result, status: :match, actions: {})) ) - expect(Datadog::AppSec.active_context.processor_context.events).to receive(:<<).and_call_original + expect(Datadog::AppSec.active_context.waf_runner.events).to receive(:<<).and_call_original User.where(name: 'Bob').to_a end diff --git a/spec/datadog/appsec/contrib/graphql/reactive/multiplex_spec.rb b/spec/datadog/appsec/contrib/graphql/reactive/multiplex_spec.rb index 21df7b7b6d5..b1354a738cb 100644 --- a/spec/datadog/appsec/contrib/graphql/reactive/multiplex_spec.rb +++ b/spec/datadog/appsec/contrib/graphql/reactive/multiplex_spec.rb @@ -29,15 +29,15 @@ end describe '.subscribe' do - let(:waf_context) { double(:waf_context) } + let(:appsec_context) { instance_double(Datadog::AppSec::Context) } context 'not all addresses have been published' do it 'does not call the waf context' do expect(engine).to receive(:subscribe).with( 'graphql.server.all_resolvers' ).and_call_original - expect(waf_context).to_not receive(:run) - described_class.subscribe(engine, waf_context) + expect(appsec_context).to_not receive(:run_waf) + described_class.subscribe(engine, appsec_context) end end @@ -46,12 +46,12 @@ expect(engine).to receive(:subscribe).and_call_original waf_result = double(:waf_result, status: :ok, timeout: false) - expect(waf_context).to receive(:run).with( + expect(appsec_context).to receive(:run_waf).with( { 'graphql.server.all_resolvers' => expected_arguments }, {}, Datadog.configuration.appsec.waf_timeout ).and_return(waf_result) - described_class.subscribe(engine, waf_context) + described_class.subscribe(engine, appsec_context) gateway_multiplex = Datadog::AppSec::Contrib::GraphQL::Gateway::Multiplex.new(multiplex) result = described_class.publish(engine, gateway_multiplex) expect(result).to be_nil diff --git a/spec/datadog/appsec/contrib/rack/reactive/request_body_spec.rb b/spec/datadog/appsec/contrib/rack/reactive/request_body_spec.rb index 75cf9aae480..e4363628dd7 100644 --- a/spec/datadog/appsec/contrib/rack/reactive/request_body_spec.rb +++ b/spec/datadog/appsec/contrib/rack/reactive/request_body_spec.rb @@ -28,13 +28,13 @@ end describe '.subscribe' do - let(:waf_context) { double(:waf_context) } + let(:appsec_context) { instance_double(Datadog::AppSec::Context) } context 'not all addresses have been published' do it 'does not call the waf context' do expect(engine).to receive(:subscribe).with('request.body').and_call_original - expect(waf_context).to_not receive(:run) - described_class.subscribe(engine, waf_context) + expect(appsec_context).to_not receive(:run_waf) + described_class.subscribe(engine, appsec_context) end end @@ -45,12 +45,12 @@ expected_waf_arguments = { 'server.request.body' => { 'foo' => 'bar' } } waf_result = double(:waf_result, status: :ok, timeout: false) - expect(waf_context).to receive(:run).with( + expect(appsec_context).to receive(:run_waf).with( expected_waf_arguments, {}, Datadog.configuration.appsec.waf_timeout ).and_return(waf_result) - described_class.subscribe(engine, waf_context) + described_class.subscribe(engine, appsec_context) result = described_class.publish(engine, request) expect(result).to be_nil end diff --git a/spec/datadog/appsec/contrib/rack/reactive/request_spec.rb b/spec/datadog/appsec/contrib/rack/reactive/request_spec.rb index f22a3964b1d..b0327350d70 100644 --- a/spec/datadog/appsec/contrib/rack/reactive/request_spec.rb +++ b/spec/datadog/appsec/contrib/rack/reactive/request_spec.rb @@ -47,7 +47,7 @@ end describe '.subscribe' do - let(:waf_context) { double(:waf_context) } + let(:appsec_context) { instance_double(Datadog::AppSec::Context) } context 'not all addresses have been published' do it 'does not call the waf context' do @@ -59,8 +59,8 @@ 'request.client_ip', 'server.request.method', ).and_call_original - expect(waf_context).to_not receive(:run) - described_class.subscribe(engine, waf_context) + expect(appsec_context).to_not receive(:run_waf) + described_class.subscribe(engine, appsec_context) end end @@ -79,12 +79,12 @@ } waf_result = double(:waf_result, status: :ok, timeout: false) - expect(waf_context).to receive(:run).with( + expect(appsec_context).to receive(:run_waf).with( expected_waf_arguments, {}, Datadog.configuration.appsec.waf_timeout ).and_return(waf_result) - described_class.subscribe(engine, waf_context) + described_class.subscribe(engine, appsec_context) result = described_class.publish(engine, request) expect(result).to be_nil end diff --git a/spec/datadog/appsec/contrib/rack/reactive/response_spec.rb b/spec/datadog/appsec/contrib/rack/reactive/response_spec.rb index 0d53e61464f..fb15acf8f4e 100644 --- a/spec/datadog/appsec/contrib/rack/reactive/response_spec.rb +++ b/spec/datadog/appsec/contrib/rack/reactive/response_spec.rb @@ -9,8 +9,7 @@ RSpec.describe Datadog::AppSec::Contrib::Rack::Reactive::Response do let(:engine) { Datadog::AppSec::Reactive::Engine.new } - let(:processor_context) { instance_double(Datadog::AppSec::Processor::Context) } - let(:context) { instance_double(Datadog::AppSec::Context, processor_context: processor_context) } + let(:appsec_context) { instance_double(Datadog::AppSec::Context) } let(:body) { ['Ok'] } let(:headers) { { 'content-type' => 'text/html', 'set-cookie' => 'foo' } } @@ -19,7 +18,7 @@ body, 200, headers, - context: context, + context: appsec_context, ) end @@ -41,15 +40,13 @@ 'response.status', 'response.headers', ).and_call_original - expect(processor_context).to_not receive(:run) - described_class.subscribe(engine, processor_context) + expect(appsec_context).to_not receive(:run_waf) + described_class.subscribe(engine, appsec_context) end end context 'waf arguments' do - before do - expect(engine).to receive(:subscribe).and_call_original - end + before { expect(engine).to receive(:subscribe).and_call_original } let(:waf_result) { double(:waf_result, status: :ok, timeout: false) } @@ -68,13 +65,15 @@ end it 'does call the waf context with the right arguments' do - expect(processor_context).to receive(:run).with( + expect(appsec_context).to receive(:run_waf).with( expected_waf_arguments, {}, Datadog.configuration.appsec.waf_timeout ).and_return(waf_result) - described_class.subscribe(engine, processor_context) + + described_class.subscribe(engine, appsec_context) result = described_class.publish(engine, response) + expect(result).to be_nil end end @@ -82,7 +81,6 @@ it_behaves_like 'waf result' do let(:gateway) { response } - let(:waf_context) { processor_context } end end end diff --git a/spec/datadog/appsec/contrib/rails/reactive/action_spec.rb b/spec/datadog/appsec/contrib/rails/reactive/action_spec.rb index fad066ef7cf..6ba2e54e988 100644 --- a/spec/datadog/appsec/contrib/rails/reactive/action_spec.rb +++ b/spec/datadog/appsec/contrib/rails/reactive/action_spec.rb @@ -35,13 +35,13 @@ end describe '.subscribe' do - let(:waf_context) { double(:waf_context) } + let(:appsec_context) { instance_double(Datadog::AppSec::Context) } context 'not all addresses have been published' do it 'does not call the waf context' do expect(engine).to receive(:subscribe).with('rails.request.body', 'rails.request.route_params').and_call_original - expect(waf_context).to_not receive(:run) - described_class.subscribe(engine, waf_context) + expect(appsec_context).to_not receive(:run_waf) + described_class.subscribe(engine, appsec_context) end end @@ -55,12 +55,12 @@ } waf_result = double(:waf_result, status: :ok, timeout: false) - expect(waf_context).to receive(:run).with( + expect(appsec_context).to receive(:run_waf).with( expected_waf_arguments, {}, Datadog.configuration.appsec.waf_timeout ).and_return(waf_result) - described_class.subscribe(engine, waf_context) + described_class.subscribe(engine, appsec_context) result = described_class.publish(engine, request) expect(result).to be_nil end diff --git a/spec/datadog/appsec/contrib/sinatra/reactive/routed_spec.rb b/spec/datadog/appsec/contrib/sinatra/reactive/routed_spec.rb index 690d1609ecb..5183002b0cd 100644 --- a/spec/datadog/appsec/contrib/sinatra/reactive/routed_spec.rb +++ b/spec/datadog/appsec/contrib/sinatra/reactive/routed_spec.rb @@ -30,13 +30,13 @@ end describe '.subscribe' do - let(:waf_context) { double(:waf_context) } + let(:appsec_context) { instance_double(Datadog::AppSec::Context) } context 'not all addresses have been published' do it 'does not call the waf context' do expect(engine).to receive(:subscribe).with('sinatra.request.route_params').and_call_original - expect(waf_context).to_not receive(:run) - described_class.subscribe(engine, waf_context) + expect(appsec_context).to_not receive(:run_waf) + described_class.subscribe(engine, appsec_context) end end @@ -49,12 +49,12 @@ } waf_result = double(:waf_result, status: :ok, timeout: false) - expect(waf_context).to receive(:run).with( + expect(appsec_context).to receive(:run_waf).with( expected_waf_arguments, {}, Datadog.configuration.appsec.waf_timeout ).and_return(waf_result) - described_class.subscribe(engine, waf_context) + described_class.subscribe(engine, appsec_context) result = described_class.publish(engine, [request, routed_params]) expect(result).to be_nil end diff --git a/spec/datadog/appsec/monitor/reactive/set_user_spec.rb b/spec/datadog/appsec/monitor/reactive/set_user_spec.rb index 5e5472f6b2a..757fc5f9ed8 100644 --- a/spec/datadog/appsec/monitor/reactive/set_user_spec.rb +++ b/spec/datadog/appsec/monitor/reactive/set_user_spec.rb @@ -18,13 +18,13 @@ end describe '.subscribe' do - let(:waf_context) { double(:waf_context) } + let(:appsec_context) { instance_double(Datadog::AppSec::Context) } context 'not all addresses have been published' do it 'does not call the waf context' do expect(engine).to receive(:subscribe).with('usr.id').and_call_original - expect(waf_context).to_not receive(:run) - described_class.subscribe(engine, waf_context) + expect(appsec_context).to_not receive(:run_waf) + described_class.subscribe(engine, appsec_context) end end @@ -35,12 +35,12 @@ expected_waf_persisted_data = { 'usr.id' => 1 } waf_result = double(:waf_result, status: :ok, timeout: false) - expect(waf_context).to receive(:run).with( + expect(appsec_context).to receive(:run_waf).with( expected_waf_persisted_data, {}, Datadog.configuration.appsec.waf_timeout ).and_return(waf_result) - described_class.subscribe(engine, waf_context) + described_class.subscribe(engine, appsec_context) result = described_class.publish(engine, user) expect(result).to be_nil end diff --git a/spec/datadog/appsec/reactive/shared_examples.rb b/spec/datadog/appsec/reactive/shared_examples.rb index 352ae336781..4d1ebe37adc 100644 --- a/spec/datadog/appsec/reactive/shared_examples.rb +++ b/spec/datadog/appsec/reactive/shared_examples.rb @@ -6,8 +6,8 @@ expect(engine).to receive(:subscribe).and_call_original waf_result = double(:waf_result, status: :match, timeout: false, actions: []) - expect(waf_context).to receive(:run).and_return(waf_result) - described_class.subscribe(engine, waf_context) do |result| + expect(appsec_context).to receive(:run_waf).and_return(waf_result) + described_class.subscribe(engine, appsec_context) do |result| expect(result).to eq(waf_result) end result = described_class.publish(engine, gateway) @@ -18,8 +18,8 @@ expect(engine).to receive(:subscribe).and_call_original waf_result = double(:waf_result, status: :match, timeout: false, actions: ['block']) - expect(waf_context).to receive(:run).and_return(waf_result) - described_class.subscribe(engine, waf_context) do |result| + expect(appsec_context).to receive(:run_waf).and_return(waf_result) + described_class.subscribe(engine, appsec_context) do |result| expect(result).to eq(waf_result) end block = described_class.publish(engine, gateway) @@ -32,8 +32,8 @@ expect(engine).to receive(:subscribe).and_call_original waf_result = double(:waf_result, status: :ok, timeout: false) - expect(waf_context).to receive(:run).and_return(waf_result) - expect { |b| described_class.subscribe(engine, waf_context, &b) }.not_to yield_control + expect(appsec_context).to receive(:run_waf).and_return(waf_result) + expect { |b| described_class.subscribe(engine, appsec_context, &b) }.not_to yield_control result = described_class.publish(engine, gateway) expect(result).to be_nil end @@ -44,8 +44,8 @@ expect(engine).to receive(:subscribe).and_call_original waf_result = double(:waf_result, status: :invalid_call, timeout: false) - expect(waf_context).to receive(:run).and_return(waf_result) - expect { |b| described_class.subscribe(engine, waf_context, &b) }.not_to yield_control + expect(appsec_context).to receive(:run_waf).and_return(waf_result) + expect { |b| described_class.subscribe(engine, appsec_context, &b) }.not_to yield_control result = described_class.publish(engine, gateway) expect(result).to be_nil end @@ -56,8 +56,8 @@ expect(engine).to receive(:subscribe).and_call_original waf_result = double(:waf_result, status: :invalid_rule, timeout: false) - expect(waf_context).to receive(:run).and_return(waf_result) - expect { |b| described_class.subscribe(engine, waf_context, &b) }.not_to yield_control + expect(appsec_context).to receive(:run_waf).and_return(waf_result) + expect { |b| described_class.subscribe(engine, appsec_context, &b) }.not_to yield_control result = described_class.publish(engine, gateway) expect(result).to be_nil end @@ -68,8 +68,8 @@ expect(engine).to receive(:subscribe).and_call_original waf_result = double(:waf_result, status: :invalid_flow, timeout: false) - expect(waf_context).to receive(:run).and_return(waf_result) - expect { |b| described_class.subscribe(engine, waf_context, &b) }.not_to yield_control + expect(appsec_context).to receive(:run_waf).and_return(waf_result) + expect { |b| described_class.subscribe(engine, appsec_context, &b) }.not_to yield_control result = described_class.publish(engine, gateway) expect(result).to be_nil end @@ -80,8 +80,8 @@ expect(engine).to receive(:subscribe).and_call_original waf_result = double(:waf_result, status: :no_rule, timeout: false) - expect(waf_context).to receive(:run).and_return(waf_result) - expect { |b| described_class.subscribe(engine, waf_context, &b) }.not_to yield_control + expect(appsec_context).to receive(:run_waf).and_return(waf_result) + expect { |b| described_class.subscribe(engine, appsec_context, &b) }.not_to yield_control result = described_class.publish(engine, gateway) expect(result).to be_nil end @@ -92,8 +92,8 @@ expect(engine).to receive(:subscribe).and_call_original waf_result = double(:waf_result, status: :foo, timeout: false) - expect(waf_context).to receive(:run).and_return(waf_result) - expect { |b| described_class.subscribe(engine, waf_context, &b) }.not_to yield_control + expect(appsec_context).to receive(:run_waf).and_return(waf_result) + expect { |b| described_class.subscribe(engine, appsec_context, &b) }.not_to yield_control result = described_class.publish(engine, gateway) expect(result).to be_nil end diff --git a/spec/datadog/kit/appsec/events_spec.rb b/spec/datadog/kit/appsec/events_spec.rb index 7f2ff40ab04..200ea4812d0 100644 --- a/spec/datadog/kit/appsec/events_spec.rb +++ b/spec/datadog/kit/appsec/events_spec.rb @@ -9,15 +9,16 @@ let(:trace_op) { Datadog::Tracing::TraceOperation.new } shared_context 'uses AppSec context' do - before { allow(Datadog::AppSec).to receive(:active_context).and_return(appsec_active_context) } + before do + allow(processor).to receive(:new_context).and_return(instance_double(Datadog::AppSec::Processor::Context)) + allow(Datadog::AppSec).to receive(:active_context).and_return(appsec_active_context) + end + + let(:processor) { instance_double(Datadog::AppSec::Processor) } let(:appsec_span) { trace_op.build_span('root') } context 'when is present' do - let(:appsec_active_context) do - processor = instance_double('Datadog::Appsec::Processor') - - Datadog::AppSec::Context.new(trace_op, appsec_span, processor) - end + let(:appsec_active_context) { Datadog::AppSec::Context.new(trace_op, appsec_span, processor) } it 'sets tags on AppSec span' do event diff --git a/spec/datadog/kit/identity_spec.rb b/spec/datadog/kit/identity_spec.rb index d888eb437bf..1531faffd8d 100644 --- a/spec/datadog/kit/identity_spec.rb +++ b/spec/datadog/kit/identity_spec.rb @@ -212,12 +212,16 @@ end context 'appsec' do + before do + allow(processor).to receive(:new_context).and_return(instance_double(Datadog::AppSec::Processor::Context)) + allow(Datadog::AppSec).to receive(:active_context).and_return(appsec_active_context) + end + + let(:processor) { instance_double(Datadog::AppSec::Processor) } let(:appsec_active_context) { nil } - before { allow(Datadog::AppSec).to receive(:active_context).and_return(appsec_active_context) } context 'when is enabled' do let(:appsec_active_context) do - processor = instance_double('Datadog::Appsec::Processor') trace = trace_op span = trace.build_span('root') From f8fe6ee19b0eef923ef99cbf78099b8e3e68ac1c Mon Sep 17 00:00:00 2001 From: Sergey Fedorov Date: Fri, 10 Jan 2025 16:49:24 +0100 Subject: [PATCH 144/161] Add new RSpec negate matcher not_change --- spec/spec_helper.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb index 19f85ae593d..c493bbc86ff 100644 --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -295,6 +295,7 @@ def initialize(*args, &block) # Helper matchers RSpec::Matchers.define_negated_matcher :not_be, :be +RSpec::Matchers.define_negated_matcher :not_change, :change # The Ruby Timeout class uses a long-lived class-level thread that is never terminated. # Creating it early here ensures tests that tests that check for leaking threads are not From 92b64430a0a49524f977819a087b582edf559415 Mon Sep 17 00:00:00 2001 From: Sergey Fedorov Date: Mon, 13 Jan 2025 10:27:29 +0100 Subject: [PATCH 145/161] Update RBS signatures --- sig/datadog/appsec/context.rbs | 37 ++++++++++++++++++++++++++++++++++ sig/datadog/appsec/event.rbs | 14 ++++++------- sig/datadog/appsec/ext.rbs | 12 ++++++----- sig/datadog/appsec/scope.rbs | 35 -------------------------------- 4 files changed, 51 insertions(+), 47 deletions(-) create mode 100644 sig/datadog/appsec/context.rbs delete mode 100644 sig/datadog/appsec/scope.rbs diff --git a/sig/datadog/appsec/context.rbs b/sig/datadog/appsec/context.rbs new file mode 100644 index 00000000000..522072741b2 --- /dev/null +++ b/sig/datadog/appsec/context.rbs @@ -0,0 +1,37 @@ +module Datadog + module AppSec + class Context + type waf_data = ::Hash[::String, untyped] + + @trace: Tracing::TraceOperation + + @span: Tracing::SpanOperation + + @security_engine: Processor + + @waf_runner: Processor::Context + + ActiveContextError: ::StandardError + + attr_reader trace: Tracing::TraceOperation + + attr_reader span: Tracing::SpanOperation + + attr_reader waf_runner: Processor::Context + + def self.activate: (Context context) -> Context + + def self.deactivate: () -> void + + def self.active: () -> Context + + def initialize: (Tracing::TraceOperation trace, Tracing::SpanOperation span, AppSec::Processor security_engine) -> void + + def run_waf: (waf_data persistent_data, waf_data ephemeral_data, ?Integer timeout) -> WAF::Result + + def run_rasp: (::Symbol _type, waf_data persistent_data, waf_data ephemeral_data, ?Integer timeout) -> WAF::Result + + def finalize: () -> void + end + end +end diff --git a/sig/datadog/appsec/event.rbs b/sig/datadog/appsec/event.rbs index b4b0e584513..713f73a2129 100644 --- a/sig/datadog/appsec/event.rbs +++ b/sig/datadog/appsec/event.rbs @@ -8,14 +8,14 @@ module Datadog MAX_ENCODED_SCHEMA_SIZE: Numeric MIN_SCHEMA_SIZE_FOR_COMPRESSION: Numeric - def self.record: (Datadog::Tracing::SpanOperation, *untyped events) -> (nil | untyped) + def self.record: (Tracing::SpanOperation, *untyped events) -> (nil | untyped) - def self.record_via_span: (Datadog::Tracing::SpanOperation, *untyped events) -> untyped + def self.record_via_span: (Tracing::SpanOperation, *untyped events) -> untyped def self.build_service_entry_tags: (Array[Hash[::Symbol, untyped]] event_group) -> Hash[::String, untyped] - - def self.tag_and_keep!: (Datadog::AppSec::Scope scope, Datadog::AppSec::WAF::Result waf_result) -> void - + + def self.tag_and_keep!: (Context scope, WAF::Result waf_result) -> void + private def self.compressed_and_base64_encoded: (untyped value) -> untyped @@ -23,8 +23,8 @@ module Datadog def self.json_parse: (untyped value) -> untyped def self.gzip: (untyped value) -> untyped - - def self.add_distributed_tags: (Datadog::Tracing::TraceOperation trace) -> void + + def self.add_distributed_tags: (Tracing::TraceOperation trace) -> void end end end diff --git a/sig/datadog/appsec/ext.rbs b/sig/datadog/appsec/ext.rbs index 2ac545ba1d3..8c4b59fb575 100644 --- a/sig/datadog/appsec/ext.rbs +++ b/sig/datadog/appsec/ext.rbs @@ -1,12 +1,14 @@ module Datadog module AppSec module Ext - INTERRUPT: Symbol - SCOPE_KEY: String + RASP_SQLI: ::Symbol + INTERRUPT: ::Symbol + CONTEXT_KEY: ::String + ACTIVE_CONTEXT_KEY: ::Symbol - TAG_APPSEC_ENABLED: String - TAG_APM_ENABLED: String - TAG_DISTRIBUTED_APPSEC_EVENT: String + TAG_APPSEC_ENABLED: ::String + TAG_APM_ENABLED: ::String + TAG_DISTRIBUTED_APPSEC_EVENT: ::String end end end diff --git a/sig/datadog/appsec/scope.rbs b/sig/datadog/appsec/scope.rbs deleted file mode 100644 index bde7a39b332..00000000000 --- a/sig/datadog/appsec/scope.rbs +++ /dev/null @@ -1,35 +0,0 @@ -module Datadog - module AppSec - class Scope - attr_reader trace: Datadog::Tracing::TraceOperation - - attr_reader service_entry_span: Datadog::Tracing::SpanOperation - - attr_reader processor_context: Datadog::AppSec::Processor::Context - - def initialize: (Datadog::Tracing::TraceOperation trace, Datadog::Tracing::SpanOperation service_entry_span, Datadog::AppSec::Processor::Context processor_context) -> void - - def finalize: () -> void - - def self.activate_scope: (Datadog::Tracing::TraceOperation trace, Datadog::Tracing::SpanOperation service_entry_span, Datadog::AppSec::Processor processor) -> Scope - - def self.deactivate_scope: () -> void - - def self.active_scope: () -> Scope - - private - - def self.active_scope=: (Scope scope) -> Scope - - def self.reset_active_scope: () -> void - - public - - class InactiveScopeError < StandardError - end - - class ActiveScopeError < StandardError - end - end - end -end From 234c3060d6fb452f53fb2437bc0dd3aaccc345a5 Mon Sep 17 00:00:00 2001 From: Tony Hsu Date: Tue, 14 Jan 2025 09:51:25 +0100 Subject: [PATCH 146/161] Implement polling vaccine --- .gitlab-ci.yml | 99 ++++++++++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 96 insertions(+), 3 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index f13052d9266..8664205f615 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -158,9 +158,102 @@ vaccine: needs: [create-multiarch-lib-injection-image] script: | GH_VACCINE_PAT=$(vault kv get -field=vaccine-token kv/k8s/gitlab-runner/dd-trace-rb/github-token) + REPO="TonyCTHsu/vaccine" + POLL_INTERVAL=30 # seconds - curl -X POST \ + # Trigger workflow + echo "Triggering workflow..." + TRIGGER_RESPONSE=$(curl -X POST \ -H "Accept: application/vnd.github.v3+json" \ -H "Authorization: token $GH_VACCINE_PAT" \ - https://api.github.com/repos/TonyCTHsu/vaccine/actions/workflows/vaccine.yml/dispatches \ - -d '{"ref":"master", "inputs": {"commit_sha": "'$CI_COMMIT_SHA'"}}' + -w "\n%{http_code}" \ + "https://api.github.com/repos/$REPO/actions/workflows/vaccine.yml/dispatches" \ + -d '{"ref":"master", "inputs": {"commit_sha": "'$CI_COMMIT_SHA'"}}' 2>&1) + + HTTP_STATUS=$(echo "$TRIGGER_RESPONSE" | tail -n1) + RESPONSE_BODY=$(echo "$TRIGGER_RESPONSE" | sed '$ d') + + if [ "$HTTP_STATUS" -eq 403 ]; then + echo "Error: Workflow trigger failed - Authentication failed" + echo "Response: $RESPONSE_BODY" + exit 1 + elif [ "$HTTP_STATUS" -ne 204 ]; then + echo "Error: Workflow trigger failed with status $HTTP_STATUS" + echo "Response: $RESPONSE_BODY" + exit 1 + fi + + echo "Successfully triggered workflow. Waiting for workflow to start..." + sleep 10 # Give GitHub a moment to create the workflow run + + # Get the most recent workflow run + echo "Fetching most recent workflow run..." + RUNS_RESPONSE=$(curl -s \ + -H "Accept: application/vnd.github.v3+json" \ + -H "Authorization: token $GH_VACCINE_PAT" \ + -w "\n%{http_code}" \ + "https://api.github.com/repos/$REPO/actions/runs?event=workflow_dispatch&per_page=1" 2>&1) + + HTTP_STATUS=$(echo "$RUNS_RESPONSE" | tail -n1) + RESPONSE_BODY=$(echo "$RUNS_RESPONSE" | sed '$ d') + + if [ "$HTTP_STATUS" -eq 403 ]; then + echo "Error: Fetching runs failed - Authentication failed" + echo "Response: $RESPONSE_BODY" + exit 1 + elif [ "$HTTP_STATUS" -ne 200 ]; then + echo "Error: Fetching runs failed with status $HTTP_STATUS" + echo "Response: $RESPONSE_BODY" + exit 1 + fi + + echo "Response body: $RESPONSE_BODY" + + # Get the most recent run ID + WORKFLOW_ID=$(echo "$RESPONSE_BODY" | jq -r '.workflow_runs[0].id') + + if [ -z "$WORKFLOW_ID" ] || [ "$WORKFLOW_ID" = "null" ]; then + echo "Error: Could not find recent workflow run" + exit 1 + fi + + echo "Found workflow run ID: $WORKFLOW_ID" + + # Poll workflow status + while true; do + RUN_RESPONSE=$(curl -s \ + -H "Accept: application/vnd.github.v3+json" \ + -H "Authorization: token $GH_VACCINE_PAT" \ + -w "\n%{http_code}" \ + "https://api.github.com/repos/$REPO/actions/runs/$WORKFLOW_ID" 2>&1) + + HTTP_STATUS=$(echo "$RUN_RESPONSE" | tail -n1) + RESPONSE_BODY=$(echo "$RUN_RESPONSE" | sed '$ d') + + if [ "$HTTP_STATUS" -eq 403 ]; then + echo "Error: Fetching run status failed - Authentication failed" + echo "Response: $RESPONSE_BODY" + exit 1 + elif [ "$HTTP_STATUS" -ne 200 ]; then + echo "Error: Fetching run status failed with status $HTTP_STATUS" + echo "Response: $RESPONSE_BODY" + exit 1 + fi + + STATUS=$(echo "$RESPONSE_BODY" | jq -r .status) + CONCLUSION=$(echo "$RESPONSE_BODY" | jq -r .conclusion) + + if [ "$STATUS" = "completed" ]; then + if [ "$CONCLUSION" = "success" ]; then + echo "✅ Workflow completed successfully!" + exit 0 + else + echo "❌ Workflow failed with conclusion: $CONCLUSION" + echo "See details: https://github.com/$REPO/actions/runs/$WORKFLOW_ID" + exit 1 + fi + fi + + echo "Current status: $STATUS (Checking again in ${POLL_INTERVAL}s)" + sleep $POLL_INTERVAL + done From 5ce85388e5e74071534db5c7bebc8d34567c3162 Mon Sep 17 00:00:00 2001 From: Tony Hsu Date: Tue, 14 Jan 2025 12:43:35 +0100 Subject: [PATCH 147/161] Extract to .gitlab/scripts --- .gitlab-ci.yml | 112 ++++--------------------------------- .gitlab/scripts/vaccine.sh | 88 +++++++++++++++++++++++++++++ 2 files changed, 100 insertions(+), 100 deletions(-) create mode 100755 .gitlab/scripts/vaccine.sh diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 8664205f615..58294686337 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -151,109 +151,21 @@ deploy_to_reliability_env: needs: - save_versions +# Currently, the job is implemented with polling mechanism. +# +# Due to the constraints of Github workflow dispatch endpoint, it does not return the workflow run id. +# https://docs.github.com/en/rest/actions/workflows?apiVersion=2022-11-28#create-a-workflow-dispatch-event +# +# We fetch the latest workflow run from vaccine after 5 seconds of the dispatch event. +# False positive/negative result can happen when multiple requests are made within the same window. +# +# TODO: +# Replace polling implementation with reporting status to Github with Github App. This will allow us +# to get a deterministic result without mismatched workflow run id. vaccine: image: $DOCKER_REGISTRY/docker:20.10.13 tags: [ "arch:amd64" ] stage: vaccine needs: [create-multiarch-lib-injection-image] script: | - GH_VACCINE_PAT=$(vault kv get -field=vaccine-token kv/k8s/gitlab-runner/dd-trace-rb/github-token) - REPO="TonyCTHsu/vaccine" - POLL_INTERVAL=30 # seconds - - # Trigger workflow - echo "Triggering workflow..." - TRIGGER_RESPONSE=$(curl -X POST \ - -H "Accept: application/vnd.github.v3+json" \ - -H "Authorization: token $GH_VACCINE_PAT" \ - -w "\n%{http_code}" \ - "https://api.github.com/repos/$REPO/actions/workflows/vaccine.yml/dispatches" \ - -d '{"ref":"master", "inputs": {"commit_sha": "'$CI_COMMIT_SHA'"}}' 2>&1) - - HTTP_STATUS=$(echo "$TRIGGER_RESPONSE" | tail -n1) - RESPONSE_BODY=$(echo "$TRIGGER_RESPONSE" | sed '$ d') - - if [ "$HTTP_STATUS" -eq 403 ]; then - echo "Error: Workflow trigger failed - Authentication failed" - echo "Response: $RESPONSE_BODY" - exit 1 - elif [ "$HTTP_STATUS" -ne 204 ]; then - echo "Error: Workflow trigger failed with status $HTTP_STATUS" - echo "Response: $RESPONSE_BODY" - exit 1 - fi - - echo "Successfully triggered workflow. Waiting for workflow to start..." - sleep 10 # Give GitHub a moment to create the workflow run - - # Get the most recent workflow run - echo "Fetching most recent workflow run..." - RUNS_RESPONSE=$(curl -s \ - -H "Accept: application/vnd.github.v3+json" \ - -H "Authorization: token $GH_VACCINE_PAT" \ - -w "\n%{http_code}" \ - "https://api.github.com/repos/$REPO/actions/runs?event=workflow_dispatch&per_page=1" 2>&1) - - HTTP_STATUS=$(echo "$RUNS_RESPONSE" | tail -n1) - RESPONSE_BODY=$(echo "$RUNS_RESPONSE" | sed '$ d') - - if [ "$HTTP_STATUS" -eq 403 ]; then - echo "Error: Fetching runs failed - Authentication failed" - echo "Response: $RESPONSE_BODY" - exit 1 - elif [ "$HTTP_STATUS" -ne 200 ]; then - echo "Error: Fetching runs failed with status $HTTP_STATUS" - echo "Response: $RESPONSE_BODY" - exit 1 - fi - - echo "Response body: $RESPONSE_BODY" - - # Get the most recent run ID - WORKFLOW_ID=$(echo "$RESPONSE_BODY" | jq -r '.workflow_runs[0].id') - - if [ -z "$WORKFLOW_ID" ] || [ "$WORKFLOW_ID" = "null" ]; then - echo "Error: Could not find recent workflow run" - exit 1 - fi - - echo "Found workflow run ID: $WORKFLOW_ID" - - # Poll workflow status - while true; do - RUN_RESPONSE=$(curl -s \ - -H "Accept: application/vnd.github.v3+json" \ - -H "Authorization: token $GH_VACCINE_PAT" \ - -w "\n%{http_code}" \ - "https://api.github.com/repos/$REPO/actions/runs/$WORKFLOW_ID" 2>&1) - - HTTP_STATUS=$(echo "$RUN_RESPONSE" | tail -n1) - RESPONSE_BODY=$(echo "$RUN_RESPONSE" | sed '$ d') - - if [ "$HTTP_STATUS" -eq 403 ]; then - echo "Error: Fetching run status failed - Authentication failed" - echo "Response: $RESPONSE_BODY" - exit 1 - elif [ "$HTTP_STATUS" -ne 200 ]; then - echo "Error: Fetching run status failed with status $HTTP_STATUS" - echo "Response: $RESPONSE_BODY" - exit 1 - fi - - STATUS=$(echo "$RESPONSE_BODY" | jq -r .status) - CONCLUSION=$(echo "$RESPONSE_BODY" | jq -r .conclusion) - - if [ "$STATUS" = "completed" ]; then - if [ "$CONCLUSION" = "success" ]; then - echo "✅ Workflow completed successfully!" - exit 0 - else - echo "❌ Workflow failed with conclusion: $CONCLUSION" - echo "See details: https://github.com/$REPO/actions/runs/$WORKFLOW_ID" - exit 1 - fi - fi - - echo "Current status: $STATUS (Checking again in ${POLL_INTERVAL}s)" - sleep $POLL_INTERVAL - done + .gitlab/scripts/vaccine.sh diff --git a/.gitlab/scripts/vaccine.sh b/.gitlab/scripts/vaccine.sh new file mode 100755 index 00000000000..306e6178b7f --- /dev/null +++ b/.gitlab/scripts/vaccine.sh @@ -0,0 +1,88 @@ +#!/bin/bash + +set -e + +GH_VACCINE_PAT=$(vault kv get -field=vaccine-token kv/k8s/gitlab-runner/dd-trace-rb/github-token) +REPO="TonyCTHsu/vaccine" # To be migrated +POLL_INTERVAL=60 # seconds + +# Trigger workflow +echo "Triggering workflow..." +TRIGGER_RESPONSE=$(curl -X POST \ + -H "Accept: application/vnd.github.v3+json" \ + -H "Authorization: token $GH_VACCINE_PAT" \ + -w "\n%{http_code}" \ + "https://api.github.com/repos/$REPO/actions/workflows/vaccine.yml/dispatches" \ + -d '{"ref":"master", "inputs": {"commit_sha": "'$CI_COMMIT_SHA'"}}' 2>&1) + +HTTP_STATUS=$(echo "$TRIGGER_RESPONSE" | tail -n1) +if [ "$HTTP_STATUS" -ne 204 ]; then + echo "Error: Workflow trigger failed with status $HTTP_STATUS" + echo "Response: $(echo "$TRIGGER_RESPONSE" | sed '$ d')" + exit 1 +fi + +echo "Successfully triggered workflow. Waiting for workflow to start..." +sleep 5 # Give GitHub a moment to create the workflow run + +# Get the most recent workflow run +echo "Fetching most recent workflow run..." +RUNS_RESPONSE=$(curl -s \ + -H "Accept: application/vnd.github.v3+json" \ + -H "Authorization: token $GH_VACCINE_PAT" \ + -w "\n%{http_code}" \ + "https://api.github.com/repos/$REPO/actions/runs?event=workflow_dispatch&per_page=1" 2>&1) + +HTTP_STATUS=$(echo "$RUNS_RESPONSE" | tail -n1) +RESPONSE_BODY=$(echo "$RUNS_RESPONSE" | sed '$ d') + +if [ "$HTTP_STATUS" -ne 200 ]; then + echo "Error: Fetching runs failed with status $HTTP_STATUS" + echo "Response: $RESPONSE_BODY" + exit 1 +fi + +# Get the most recent run ID +WORKFLOW_ID=$(echo "$RESPONSE_BODY" | jq -r '.workflow_runs[0].id') + +if [ -z "$WORKFLOW_ID" ] || [ "$WORKFLOW_ID" = "null" ]; then + echo "Error: Could not find recent workflow run" + exit 1 +fi + +echo "Found workflow run ID: $WORKFLOW_ID" + +# Poll workflow status +while true; do + RUN_RESPONSE=$(curl -s \ + -H "Accept: application/vnd.github.v3+json" \ + -H "Authorization: token $GH_VACCINE_PAT" \ + -w "\n%{http_code}" \ + "https://api.github.com/repos/$REPO/actions/runs/$WORKFLOW_ID" 2>&1) + + HTTP_STATUS=$(echo "$RUN_RESPONSE" | tail -n1) + RESPONSE_BODY=$(echo "$RUN_RESPONSE" | sed '$ d') + + if [ "$HTTP_STATUS" -ne 200 ]; then + echo "Error: Fetching run status failed with status $HTTP_STATUS" + echo "Response: $RESPONSE_BODY" + exit 1 + fi + + STATUS=$(echo "$RESPONSE_BODY" | jq -r .status) + CONCLUSION=$(echo "$RESPONSE_BODY" | jq -r .conclusion) + + if [ "$STATUS" = "completed" ]; then + if [ "$CONCLUSION" = "success" ]; then + echo "✅ Workflow completed successfully!" + exit 0 + else + echo "❌ Workflow failed with conclusion: $CONCLUSION" + echo "See details: https://github.com/$REPO/actions/runs/$WORKFLOW_ID" + exit 1 + fi + fi + + echo "Current status: $STATUS (Checking again in ${POLL_INTERVAL}s)" + sleep $POLL_INTERVAL +done From 26a5cddc8a5b933fb242681b2b25fb5ae788ebc5 Mon Sep 17 00:00:00 2001 From: Yury Lebedev Date: Mon, 13 Jan 2025 12:15:52 +0100 Subject: [PATCH 148/161] Switch AppSec rack blocking to throw We want to have a unified way of blocking in AppSec. --- .../appsec/contrib/rack/gateway/watcher.rb | 6 ++--- .../contrib/rack/request_body_middleware.rb | 20 +++++++------- .../appsec/contrib/rack/request_middleware.rb | 27 ++++++++++--------- lib/datadog/appsec/monitor/gateway/watcher.rb | 2 +- 4 files changed, 28 insertions(+), 27 deletions(-) diff --git a/lib/datadog/appsec/contrib/rack/gateway/watcher.rb b/lib/datadog/appsec/contrib/rack/gateway/watcher.rb index a655b3fe1d5..cab7ae3128e 100644 --- a/lib/datadog/appsec/contrib/rack/gateway/watcher.rb +++ b/lib/datadog/appsec/contrib/rack/gateway/watcher.rb @@ -48,7 +48,7 @@ def watch_request(gateway = Instrumentation.gateway) end block = Rack::Reactive::Request.publish(engine, gateway_request) - next [nil, [[:block, event]]] if block + throw(Datadog::AppSec::Ext::INTERRUPT, event[:actions]) if block stack.call(gateway_request.request) end @@ -79,7 +79,7 @@ def watch_response(gateway = Instrumentation.gateway) end block = Rack::Reactive::Response.publish(engine, gateway_response) - next [nil, [[:block, event]]] if block + throw(Datadog::AppSec::Ext::INTERRUPT, event[:actions]) if block stack.call(gateway_response.response) end @@ -110,7 +110,7 @@ def watch_request_body(gateway = Instrumentation.gateway) end block = Rack::Reactive::RequestBody.publish(engine, gateway_request) - next [nil, [[:block, event]]] if block + throw(Datadog::AppSec::Ext::INTERRUPT, event[:actions]) if block stack.call(gateway_request.request) end diff --git a/lib/datadog/appsec/contrib/rack/request_body_middleware.rb b/lib/datadog/appsec/contrib/rack/request_body_middleware.rb index 6ba2f5dfa9a..154c350df30 100644 --- a/lib/datadog/appsec/contrib/rack/request_body_middleware.rb +++ b/lib/datadog/appsec/contrib/rack/request_body_middleware.rb @@ -23,17 +23,17 @@ def call(env) # TODO: handle exceptions, except for @app.call - request_return, request_response = Instrumentation.gateway.push( - 'rack.request.body', - Gateway::Request.new(env) - ) do - @app.call(env) - end - - if request_response - blocked_event = request_response.find { |action, _event| action == :block } - request_return = AppSec::Response.negotiate(env, blocked_event.last[:actions]).to_rack if blocked_event + request_return = nil + block_actions = catch(::Datadog::AppSec::Ext::INTERRUPT) do + request_return, _request_response = Instrumentation.gateway.push( + 'rack.request.body', Gateway::Request.new(env) + ) do + @app.call(env) + end + + nil end + request_return = AppSec::Response.negotiate(env, block_actions).to_rack if block_actions request_return end diff --git a/lib/datadog/appsec/contrib/rack/request_middleware.rb b/lib/datadog/appsec/contrib/rack/request_middleware.rb index 6aa14798a19..9805fc5a8e4 100644 --- a/lib/datadog/appsec/contrib/rack/request_middleware.rb +++ b/lib/datadog/appsec/contrib/rack/request_middleware.rb @@ -36,7 +36,7 @@ def initialize(app, opt = {}) @rack_headers = {} end - # rubocop:disable Metrics/AbcSize,Metrics/PerceivedComplexity,Metrics/CyclomaticComplexity,Metrics/MethodLength + # rubocop:disable Metrics/AbcSize,Metrics/MethodLength def call(env) return @app.call(env) unless Datadog::AppSec.enabled? @@ -74,17 +74,17 @@ def call(env) add_appsec_tags(processor, ctx) add_request_tags(ctx, env) - request_return, request_response = catch(::Datadog::AppSec::Ext::INTERRUPT) do - Instrumentation.gateway.push('rack.request', gateway_request) do + request_return = nil + block_actions = catch(::Datadog::AppSec::Ext::INTERRUPT) do + request_return, _request_response = Instrumentation.gateway.push('rack.request', gateway_request) do @app.call(env) end - end - if request_response - blocked_event = request_response.find { |action, _options| action == :block } - request_return = AppSec::Response.negotiate(env, blocked_event.last[:actions]).to_rack if blocked_event + nil end + request_return = AppSec::Response.negotiate(env, block_actions).to_rack if block_actions + gateway_response = Gateway::Response.new( request_return[2], request_return[0], @@ -92,7 +92,11 @@ def call(env) context: ctx, ) - _response_return, response_response = Instrumentation.gateway.push('rack.response', gateway_response) + block_actions = catch(::Datadog::AppSec::Ext::INTERRUPT) do + Instrumentation.gateway.push('rack.response', gateway_response) + + nil + end result = ctx.waf_runner.extract_schema @@ -111,10 +115,7 @@ def call(env) AppSec::Event.record(ctx.span, *ctx.waf_runner.events) - if response_response - blocked_event = response_response.find { |action, _options| action == :block } - request_return = AppSec::Response.negotiate(env, blocked_event.last[:actions]).to_rack if blocked_event - end + request_return = AppSec::Response.negotiate(env, block_actions).to_rack if block_actions request_return ensure @@ -123,7 +124,7 @@ def call(env) Datadog::AppSec::Context.deactivate end end - # rubocop:enable Metrics/AbcSize,Metrics/PerceivedComplexity,Metrics/CyclomaticComplexity,Metrics/MethodLength + # rubocop:enable Metrics/AbcSize,Metrics/MethodLength private diff --git a/lib/datadog/appsec/monitor/gateway/watcher.rb b/lib/datadog/appsec/monitor/gateway/watcher.rb index 4d0194f9c7a..f7d29bf5601 100644 --- a/lib/datadog/appsec/monitor/gateway/watcher.rb +++ b/lib/datadog/appsec/monitor/gateway/watcher.rb @@ -42,7 +42,7 @@ def watch_user_id(gateway = Instrumentation.gateway) end block = Monitor::Reactive::SetUser.publish(engine, user) - throw(Datadog::AppSec::Ext::INTERRUPT, [nil, [[:block, event]]]) if block + throw(Datadog::AppSec::Ext::INTERRUPT, event[:actions]) if block stack.call(user) end From e268d63b35ad4b86debb11f4b259eebc5faec153 Mon Sep 17 00:00:00 2001 From: Yury Lebedev Date: Mon, 13 Jan 2025 13:24:52 +0100 Subject: [PATCH 149/161] Simplify Rack::RequestMiddleware --- .../appsec/contrib/rack/request_middleware.rb | 30 +++++++------------ 1 file changed, 11 insertions(+), 19 deletions(-) diff --git a/lib/datadog/appsec/contrib/rack/request_middleware.rb b/lib/datadog/appsec/contrib/rack/request_middleware.rb index 9805fc5a8e4..09bcc6eee80 100644 --- a/lib/datadog/appsec/contrib/rack/request_middleware.rb +++ b/lib/datadog/appsec/contrib/rack/request_middleware.rb @@ -69,41 +69,35 @@ def call(env) return @app.call(env) unless ready - gateway_request = Gateway::Request.new(env) - add_appsec_tags(processor, ctx) add_request_tags(ctx, env) + gateway_request = Gateway::Request.new(env) request_return = nil + gateway_response = nil + block_actions = catch(::Datadog::AppSec::Ext::INTERRUPT) do request_return, _request_response = Instrumentation.gateway.push('rack.request', gateway_request) do @app.call(env) end - nil - end - - request_return = AppSec::Response.negotiate(env, block_actions).to_rack if block_actions - - gateway_response = Gateway::Response.new( - request_return[2], - request_return[0], - request_return[1], - context: ctx, - ) + gateway_response = Gateway::Response.new( + request_return[2], request_return[0], request_return[1], context: ctx + ) - block_actions = catch(::Datadog::AppSec::Ext::INTERRUPT) do Instrumentation.gateway.push('rack.response', gateway_response) nil end + request_return = AppSec::Response.negotiate(env, block_actions).to_rack if block_actions + result = ctx.waf_runner.extract_schema - if result - ctx.waf_runner.events << { + if (result = ctx.processor_context.extract_schema) + scope.processor_context.events << { trace: ctx.trace, - span: ctx.span, + span: ctx.service_entry_span, waf_result: result, } end @@ -115,8 +109,6 @@ def call(env) AppSec::Event.record(ctx.span, *ctx.waf_runner.events) - request_return = AppSec::Response.negotiate(env, block_actions).to_rack if block_actions - request_return ensure if ctx From 278248fee0a3e7b669baa9b8fd030e1d423d0b7c Mon Sep 17 00:00:00 2001 From: Yury Lebedev Date: Mon, 13 Jan 2025 13:30:36 +0100 Subject: [PATCH 150/161] Improve variable naming in Rack::RequestMiddleware --- lib/datadog/appsec/contrib/rack/request_middleware.rb | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/lib/datadog/appsec/contrib/rack/request_middleware.rb b/lib/datadog/appsec/contrib/rack/request_middleware.rb index 09bcc6eee80..a51d2fe04ef 100644 --- a/lib/datadog/appsec/contrib/rack/request_middleware.rb +++ b/lib/datadog/appsec/contrib/rack/request_middleware.rb @@ -73,16 +73,16 @@ def call(env) add_request_tags(ctx, env) gateway_request = Gateway::Request.new(env) - request_return = nil + http_response = nil gateway_response = nil block_actions = catch(::Datadog::AppSec::Ext::INTERRUPT) do - request_return, _request_response = Instrumentation.gateway.push('rack.request', gateway_request) do + http_response, = Instrumentation.gateway.push('rack.request', gateway_request) do @app.call(env) end gateway_response = Gateway::Response.new( - request_return[2], request_return[0], request_return[1], context: ctx + http_response[2], http_response[0], http_response[1], context: ctx ) Instrumentation.gateway.push('rack.response', gateway_response) @@ -90,7 +90,7 @@ def call(env) nil end - request_return = AppSec::Response.negotiate(env, block_actions).to_rack if block_actions + http_response = AppSec::Response.negotiate(env, block_actions).to_rack if block_actions result = ctx.waf_runner.extract_schema @@ -109,7 +109,7 @@ def call(env) AppSec::Event.record(ctx.span, *ctx.waf_runner.events) - request_return + http_response ensure if ctx add_waf_runtime_tags(ctx) From 3b2a59a60d52368ffe549df3169b882b52c4abc7 Mon Sep 17 00:00:00 2001 From: Yury Lebedev Date: Mon, 13 Jan 2025 13:32:10 +0100 Subject: [PATCH 151/161] Improve variable naming in Rack::RequestBodyMiddleware --- .../appsec/contrib/rack/request_body_middleware.rb | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/datadog/appsec/contrib/rack/request_body_middleware.rb b/lib/datadog/appsec/contrib/rack/request_body_middleware.rb index 154c350df30..49a4962ce8b 100644 --- a/lib/datadog/appsec/contrib/rack/request_body_middleware.rb +++ b/lib/datadog/appsec/contrib/rack/request_body_middleware.rb @@ -23,9 +23,9 @@ def call(env) # TODO: handle exceptions, except for @app.call - request_return = nil + http_response = nil block_actions = catch(::Datadog::AppSec::Ext::INTERRUPT) do - request_return, _request_response = Instrumentation.gateway.push( + http_response, = Instrumentation.gateway.push( 'rack.request.body', Gateway::Request.new(env) ) do @app.call(env) @@ -33,9 +33,9 @@ def call(env) nil end - request_return = AppSec::Response.negotiate(env, block_actions).to_rack if block_actions + http_response = AppSec::Response.negotiate(env, block_actions).to_rack if block_actions - request_return + http_response end end end From b2604ff362d72f2b71df240c0ce966a6bd53523d Mon Sep 17 00:00:00 2001 From: Yury Lebedev Date: Mon, 13 Jan 2025 14:36:31 +0100 Subject: [PATCH 152/161] Improve code style in AppSec rack middlewares --- lib/datadog/appsec/contrib/rack/request_body_middleware.rb | 7 +++---- lib/datadog/appsec/contrib/rack/request_middleware.rb | 2 +- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/lib/datadog/appsec/contrib/rack/request_body_middleware.rb b/lib/datadog/appsec/contrib/rack/request_body_middleware.rb index 49a4962ce8b..3159f228e79 100644 --- a/lib/datadog/appsec/contrib/rack/request_body_middleware.rb +++ b/lib/datadog/appsec/contrib/rack/request_body_middleware.rb @@ -25,15 +25,14 @@ def call(env) http_response = nil block_actions = catch(::Datadog::AppSec::Ext::INTERRUPT) do - http_response, = Instrumentation.gateway.push( - 'rack.request.body', Gateway::Request.new(env) - ) do + http_response, = Instrumentation.gateway.push('rack.request.body', Gateway::Request.new(env)) do @app.call(env) end nil end - http_response = AppSec::Response.negotiate(env, block_actions).to_rack if block_actions + + return AppSec::Response.negotiate(env, block_actions).to_rack if block_actions http_response end diff --git a/lib/datadog/appsec/contrib/rack/request_middleware.rb b/lib/datadog/appsec/contrib/rack/request_middleware.rb index a51d2fe04ef..bd1fd308546 100644 --- a/lib/datadog/appsec/contrib/rack/request_middleware.rb +++ b/lib/datadog/appsec/contrib/rack/request_middleware.rb @@ -72,8 +72,8 @@ def call(env) add_appsec_tags(processor, ctx) add_request_tags(ctx, env) - gateway_request = Gateway::Request.new(env) http_response = nil + gateway_request = Gateway::Request.new(env) gateway_response = nil block_actions = catch(::Datadog::AppSec::Ext::INTERRUPT) do From 629e7b5fdd5a034bae1560d0b030e62b64e40fa0 Mon Sep 17 00:00:00 2001 From: Yury Lebedev Date: Mon, 13 Jan 2025 14:51:45 +0100 Subject: [PATCH 153/161] Fix rebase issue in Rack::RequestMiddleware --- lib/datadog/appsec/contrib/rack/request_middleware.rb | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/lib/datadog/appsec/contrib/rack/request_middleware.rb b/lib/datadog/appsec/contrib/rack/request_middleware.rb index bd1fd308546..abbdbca7b30 100644 --- a/lib/datadog/appsec/contrib/rack/request_middleware.rb +++ b/lib/datadog/appsec/contrib/rack/request_middleware.rb @@ -92,12 +92,10 @@ def call(env) http_response = AppSec::Response.negotiate(env, block_actions).to_rack if block_actions - result = ctx.waf_runner.extract_schema - - if (result = ctx.processor_context.extract_schema) - scope.processor_context.events << { + if (result = ctx.waf_runner.extract_schema) + ctx.waf_runner.events << { trace: ctx.trace, - span: ctx.service_entry_span, + span: ctx.span, waf_result: result, } end From 08743d99db767cfc8db3a937e8fa96908c895537 Mon Sep 17 00:00:00 2001 From: Oleg Pudeyev <156273877+p-datadog@users.noreply.github.com> Date: Tue, 14 Jan 2025 10:52:32 -0500 Subject: [PATCH 154/161] DEBUG-3316 verify code tracking works in forked processes (#4284) --- spec/datadog/di/code_tracker_spec.rb | 37 ++++++++++++++++++++ spec/datadog/di/code_tracker_test_class_4.rb | 2 ++ spec/datadog/di/code_tracker_test_class_5.rb | 2 ++ 3 files changed, 41 insertions(+) create mode 100644 spec/datadog/di/code_tracker_test_class_4.rb create mode 100644 spec/datadog/di/code_tracker_test_class_5.rb diff --git a/spec/datadog/di/code_tracker_spec.rb b/spec/datadog/di/code_tracker_spec.rb index 896eef6e6dc..053ce338783 100644 --- a/spec/datadog/di/code_tracker_spec.rb +++ b/spec/datadog/di/code_tracker_spec.rb @@ -97,6 +97,43 @@ expect(tracker.send(:registry)).to be_empty end end + + context 'when process forks' do + it 'continues tracking in the fork' do + # Load rspec assertion code + expect(1).to eq(1) + expect(1).to equal(1) + + expect(tracker.send(:registry)).to be_empty + tracker.start + + require_relative 'code_tracker_test_class_4' + expect(tracker.send(:registry).length).to eq(1) + path = tracker.send(:registry).to_a.dig(0, 0) + expect(File.basename(path)).to eq("code_tracker_test_class_4.rb") + + expect_in_fork do + expect(tracker.send(:registry).length).to eq(1) + path = tracker.send(:registry).to_a.dig(0, 0) + expect(File.basename(path)).to eq("code_tracker_test_class_4.rb") + + require_relative 'code_tracker_test_class_5' + expect(tracker.send(:registry).length).to eq(2) + path = tracker.send(:registry).to_a.dig(1, 0) + expect(File.basename(path)).to eq("code_tracker_test_class_5.rb") + end + + begin + Process.waitpid + rescue Errno::ECHILD + end + + # Verify parent did not change + expect(tracker.send(:registry).length).to eq(1) + path = tracker.send(:registry).to_a.dig(0, 0) + expect(File.basename(path)).to eq("code_tracker_test_class_4.rb") + end + end end describe "#active?" do diff --git a/spec/datadog/di/code_tracker_test_class_4.rb b/spec/datadog/di/code_tracker_test_class_4.rb new file mode 100644 index 00000000000..99c8cc88a08 --- /dev/null +++ b/spec/datadog/di/code_tracker_test_class_4.rb @@ -0,0 +1,2 @@ +class CodeTrackerTestClass4 +end diff --git a/spec/datadog/di/code_tracker_test_class_5.rb b/spec/datadog/di/code_tracker_test_class_5.rb new file mode 100644 index 00000000000..fd32977582e --- /dev/null +++ b/spec/datadog/di/code_tracker_test_class_5.rb @@ -0,0 +1,2 @@ +class CodeTrackerTestClass5 +end From ecf6a2b959f88d5870fcd11ba990d18c62392411 Mon Sep 17 00:00:00 2001 From: Yury Lebedev Date: Tue, 14 Jan 2025 19:48:32 +0100 Subject: [PATCH 155/161] Move out ostruct gem from test group for Ruby 3.5 OStruct was extracted to a gem in Ruby 3.5 and we use Ruby 3.5 to run a test for memory leaks --- ruby-3.5.gemfile | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/ruby-3.5.gemfile b/ruby-3.5.gemfile index 6c9ae576e87..d622ec81ab9 100644 --- a/ruby-3.5.gemfile +++ b/ruby-3.5.gemfile @@ -27,6 +27,7 @@ gem 'json-schema', '< 3' # V3 only works with 2.5+ gem 'memory_profiler', '~> 0.9' gem 'mutex_m' gem 'os', '~> 1.1' +gem 'ostruct' gem 'pimpmychangelog', '>= 0.1.2' gem 'pry' gem 'pry-stack_explorer' @@ -62,7 +63,3 @@ group :dev do gem 'ruby-lsp', require: false gem 'appraisal', '~> 2.4.0', require: false end - -group :test do - gem 'ostruct' -end From 8f97fe708fb2c872982d00368d12236d807512d5 Mon Sep 17 00:00:00 2001 From: Oleg Pudeyev <156273877+p-datadog@users.noreply.github.com> Date: Tue, 14 Jan 2025 14:45:25 -0500 Subject: [PATCH 156/161] DEBUG-3328 report DI status in environment logger summary (#4285) --- lib/datadog/core/configuration/components.rb | 1 + .../core/configuration/components_spec.rb | 54 ++++++++++++++++++- 2 files changed, 54 insertions(+), 1 deletion(-) diff --git a/lib/datadog/core/configuration/components.rb b/lib/datadog/core/configuration/components.rb index c4f8301541d..25afac8bff2 100644 --- a/lib/datadog/core/configuration/components.rb +++ b/lib/datadog/core/configuration/components.rb @@ -114,6 +114,7 @@ def initialize(settings) @health_metrics = self.class.build_health_metrics(settings) @appsec = Datadog::AppSec::Component.build_appsec_component(settings, telemetry: telemetry) @dynamic_instrumentation = Datadog::DI::Component.build(settings, agent_settings, @logger, telemetry: telemetry) + @environment_logger_extra[:dynamic_instrumentation_enabled] = !!@dynamic_instrumentation self.class.configure_tracing(settings) end diff --git a/spec/datadog/core/configuration/components_spec.rb b/spec/datadog/core/configuration/components_spec.rb index 43247c74990..6957185b1c2 100644 --- a/spec/datadog/core/configuration/components_spec.rb +++ b/spec/datadog/core/configuration/components_spec.rb @@ -1,4 +1,5 @@ require 'spec_helper' +require 'datadog/di/spec_helper' require 'datadog/profiling/spec_helper' require 'logger' @@ -95,6 +96,54 @@ expect(components.runtime_metrics).to be runtime_metrics expect(components.health_metrics).to be health_metrics end + + describe '@environment_logger_extra' do + let(:environment_logger_extra) { {} } + + let(:extra) do + components.instance_variable_get('@environment_logger_extra') + end + + context 'DI is not enabled' do + it 'reports DI as disabled' do + expect(components.dynamic_instrumentation).to be nil + expect(extra).to eq(dynamic_instrumentation_enabled: false) + end + end + + context 'DI is enabled' do + before(:all) do + skip 'DI is disabled due to Ruby version < 2.5' if RUBY_VERSION < '2.6' + end + + before do + settings.dynamic_instrumentation.enabled = true + end + + context 'MRI' do + before(:all) do + skip 'Test requires MRI' if PlatformHelpers.jruby? + end + + it 'reports DI as enabled' do + expect(components.dynamic_instrumentation).to be_a(Datadog::DI::Component) + expect(extra).to eq(dynamic_instrumentation_enabled: true) + end + end + + context 'JRuby' do + before(:all) do + skip 'Test requires JRuby' unless PlatformHelpers.jruby? + end + + it 'reports DI as disabled' do + expect(logger).to receive(:warn).with(/cannot enable dynamic instrumentation/) + expect(components.dynamic_instrumentation).to be nil + expect(extra).to eq(dynamic_instrumentation_enabled: false) + end + end + end + end end describe '::build_health_metrics' do @@ -1132,7 +1181,10 @@ expect(Datadog::Profiling::Component).to receive(:build_profiler_component) .and_return([nil, environment_logger_extra]) - expect(Datadog::Core::Diagnostics::EnvironmentLogger).to receive(:collect_and_log!).with(environment_logger_extra) + expect(Datadog::Core::Diagnostics::EnvironmentLogger).to \ + receive(:collect_and_log!).with( + environment_logger_extra.merge(dynamic_instrumentation_enabled: false) + ) startup! end From 5361e8e9a7092ca081ff0d5126daf8950bb2c792 Mon Sep 17 00:00:00 2001 From: Oleg Pudeyev <156273877+p-datadog@users.noreply.github.com> Date: Tue, 14 Jan 2025 15:07:33 -0500 Subject: [PATCH 157/161] DEBUG-3182 DI railtie (#4272) --- Steepfile | 1 + integration/apps/hanami/Gemfile | 10 +----- integration/apps/rails-five/Gemfile | 2 +- .../app/controllers/di_controller.rb | 6 ++++ integration/apps/rails-five/bin/run | 8 ++--- .../rails-five/config/initializers/datadog.rb | 6 ++++ integration/apps/rails-five/config/routes.rb | 2 ++ .../rails-five/spec/integration/di_spec.rb | 36 +++++++++++++++++++ .../spec/support/integration_helper.rb | 19 ++++++++++ integration/apps/rails-seven/Gemfile | 2 +- .../app/controllers/di_controller.rb | 6 ++++ integration/apps/rails-seven/bin/run | 8 ++--- .../config/initializers/datadog.rb | 7 +++- integration/apps/rails-seven/config/routes.rb | 2 ++ .../rails-seven/spec/integration/di_spec.rb | 36 +++++++++++++++++++ .../spec/support/integration_helper.rb | 19 ++++++++++ integration/apps/rails-six/Gemfile | 11 ++++-- .../app/controllers/di_controller.rb | 6 ++++ integration/apps/rails-six/bin/run | 8 ++--- .../rails-six/config/initializers/datadog.rb | 6 ++++ integration/apps/rails-six/config/routes.rb | 2 ++ .../rails-six/spec/integration/di_spec.rb | 36 +++++++++++++++++++ .../spec/support/integration_helper.rb | 19 ++++++++++ .../images/include/datadog/demo_env.rb | 14 +++++++- lib/datadog/auto_instrument.rb | 3 ++ lib/datadog/di.rb | 19 +++------- lib/datadog/di/contrib.rb | 26 ++++++++++++++ lib/datadog/di/contrib/railtie.rb | 15 ++++++++ sig/datadog/di/contrib.rbs | 9 +++++ sig/datadog/di/contrib/railtie.rbs | 8 +++++ 30 files changed, 310 insertions(+), 42 deletions(-) create mode 100644 integration/apps/rails-five/app/controllers/di_controller.rb create mode 100644 integration/apps/rails-five/spec/integration/di_spec.rb create mode 100644 integration/apps/rails-seven/app/controllers/di_controller.rb create mode 100644 integration/apps/rails-seven/spec/integration/di_spec.rb create mode 100644 integration/apps/rails-six/app/controllers/di_controller.rb create mode 100644 integration/apps/rails-six/spec/integration/di_spec.rb create mode 100644 lib/datadog/di/contrib.rb create mode 100644 lib/datadog/di/contrib/railtie.rb create mode 100644 sig/datadog/di/contrib.rbs create mode 100644 sig/datadog/di/contrib/railtie.rbs diff --git a/Steepfile b/Steepfile index b0151312b7d..d0cb048720a 100644 --- a/Steepfile +++ b/Steepfile @@ -91,6 +91,7 @@ target :datadog do ignore 'lib/datadog/core/workers/queue.rb' ignore 'lib/datadog/core/workers/runtime_metrics.rb' ignore 'lib/datadog/di/configuration/settings.rb' + ignore 'lib/datadog/di/contrib/railtie.rb' ignore 'lib/datadog/kit/appsec/events.rb' # disabled because of https://github.com/soutaro/steep/issues/701 ignore 'lib/datadog/kit/identity.rb' # disabled because of https://github.com/soutaro/steep/issues/701 ignore 'lib/datadog/opentelemetry.rb' diff --git a/integration/apps/hanami/Gemfile b/integration/apps/hanami/Gemfile index 5305085d12a..d5f0279b658 100644 --- a/integration/apps/hanami/Gemfile +++ b/integration/apps/hanami/Gemfile @@ -15,15 +15,7 @@ gem 'unicorn' gem 'webrick' gem 'pry-byebug' -gem_spec = Datadog::DemoEnv.gem_spec('datadog') -req = {require: 'datadog/auto_instrument'} -opts = if gem_spec.last.is_a?(Hash) - gem_spec.pop.merge(req) -else - req -end -gem_spec << opts -gem 'datadog', *gem_spec +gem *Datadog::DemoEnv.gem_datadog_auto_instrument gem 'google-protobuf', '~> 3.0' group :development do diff --git a/integration/apps/rails-five/Gemfile b/integration/apps/rails-five/Gemfile index d50445bff50..246fbd9480f 100644 --- a/integration/apps/rails-five/Gemfile +++ b/integration/apps/rails-five/Gemfile @@ -25,7 +25,7 @@ gem 'unicorn' gem 'loofah', '2.19.1' # Choose correct specs for 'datadog' demo environment -gem 'datadog', *Datadog::DemoEnv.gem_spec('datadog') +gem *Datadog::DemoEnv.gem_datadog_auto_instrument gem 'dogstatsd-ruby' gem 'ffi' diff --git a/integration/apps/rails-five/app/controllers/di_controller.rb b/integration/apps/rails-five/app/controllers/di_controller.rb new file mode 100644 index 00000000000..beabc41dd06 --- /dev/null +++ b/integration/apps/rails-five/app/controllers/di_controller.rb @@ -0,0 +1,6 @@ +class DiController < ApplicationController + def ar_serializer + test = Test.create! + render json: Datadog::DI.component.serializer.serialize_value(test) + end +end diff --git a/integration/apps/rails-five/bin/run b/integration/apps/rails-five/bin/run index c0c594994c7..70f814253c7 100755 --- a/integration/apps/rails-five/bin/run +++ b/integration/apps/rails-five/bin/run @@ -8,13 +8,13 @@ puts "\n== Starting application process ==" process = (ARGV[0] || Datadog::DemoEnv.process) command = case process when 'puma' - "bundle exec ddprofrb exec puma -C /app/config/puma.rb" + "bundle exec puma -C /app/config/puma.rb" when 'unicorn' - "bundle exec ddprofrb exec unicorn -c /app/config/unicorn.rb" + "bundle exec unicorn -c /app/config/unicorn.rb" when 'console' - "bundle exec ddprofrb exec rails c" + "bundle exec rails c" when 'irb' - "bundle exec ddprofrb exec irb" + "bundle exec irb" when nil, '' abort("\n== ERROR: Must specify a application process! ==") else diff --git a/integration/apps/rails-five/config/initializers/datadog.rb b/integration/apps/rails-five/config/initializers/datadog.rb index f3060959c06..8b8f91c1a67 100644 --- a/integration/apps/rails-five/config/initializers/datadog.rb +++ b/integration/apps/rails-five/config/initializers/datadog.rb @@ -28,4 +28,10 @@ c.profiling.exporter.transport = Datadog::DemoEnv.profiler_file_transport end end + + if c.respond_to?(:dynamic_instrumentation) + c.remote.enabled = true + c.dynamic_instrumentation.enabled = true + c.dynamic_instrumentation.internal.development = true + end end diff --git a/integration/apps/rails-five/config/routes.rb b/integration/apps/rails-five/config/routes.rb index b9731693eb6..8e4d1893ede 100644 --- a/integration/apps/rails-five/config/routes.rb +++ b/integration/apps/rails-five/config/routes.rb @@ -7,6 +7,8 @@ get 'basic/default', to: 'basic#default' get 'basic/fibonacci', to: 'basic#fibonacci' + get 'di/ar_serializer', to: 'di#ar_serializer' + # Job test scenarios post 'jobs', to: 'jobs#create' end diff --git a/integration/apps/rails-five/spec/integration/di_spec.rb b/integration/apps/rails-five/spec/integration/di_spec.rb new file mode 100644 index 00000000000..a2d2db72499 --- /dev/null +++ b/integration/apps/rails-five/spec/integration/di_spec.rb @@ -0,0 +1,36 @@ +require 'spec_helper' +require 'json' + +RSpec.describe 'Dynamic Instrumentation' do + include_context 'integration test' + di_test + + describe 'ActiveRecord integration' do + let(:response) { get('di/ar_serializer') } + subject { JSON.parse(response.body) } + + it 'is loaded' do + expect(response.code).to eq '200' + + # If AR integration is loaded, this output will be the result of + # the custom serializer. + # If AR integration is not loaded, the output here will have a bunch of + # internal AR fields but not the attributes themselves. + expect(subject).to match( + {"type"=>"Test", + "entries"=> + [[{"type"=>"Symbol", "value"=>"attributes"}, + {"type"=>"Hash", + "entries"=> + [[{"type"=>"String", "value"=>"id"}, {"type"=>"Integer", "value"=>String}], + [{"type"=>"String", "value"=>"version"}, {"type"=>"NilClass", "isNull"=>true}], + [{"type"=>"String", "value"=>"data"}, {"type"=>"NilClass", "isNull"=>true}], + [{"type"=>"String", "value"=>"created_at"}, + {"type"=>"Time", "value"=>String}], + [{"type"=>"String", "value"=>"updated_at"}, + {"type"=>"Time", "value"=>String}]]}], + [{"type"=>"Symbol", "value"=>"new_record"}, {"type"=>"FalseClass", "value"=>"false"}]]} + ) + end + end +end diff --git a/integration/apps/rails-five/spec/support/integration_helper.rb b/integration/apps/rails-five/spec/support/integration_helper.rb index b0260327e6d..37871c5b065 100644 --- a/integration/apps/rails-five/spec/support/integration_helper.rb +++ b/integration/apps/rails-five/spec/support/integration_helper.rb @@ -19,4 +19,23 @@ def get(path) Net::HTTP.get_response(uri) end end + + module ClassMethods + def di_test + if RUBY_ENGINE == 'jruby' + before(:all) do + skip "Dynamic instrumentation is not supported on JRuby" + end + end + if RUBY_VERSION < "2.6" + before(:all) do + skip "Dynamic instrumentation requires Ruby 2.6 or higher" + end + end + end + end + + def self.included(base) + base.extend(ClassMethods) + end end diff --git a/integration/apps/rails-seven/Gemfile b/integration/apps/rails-seven/Gemfile index 85b7d128063..d28e118b82c 100644 --- a/integration/apps/rails-seven/Gemfile +++ b/integration/apps/rails-seven/Gemfile @@ -7,7 +7,7 @@ git_source(:github) { |repo| "https://github.com/#{repo}.git" } gem "rails", "~> 7.0.5" # Choose correct specs for 'datadog' demo environment -gem 'datadog', *Datadog::DemoEnv.gem_spec('datadog') +gem *Datadog::DemoEnv.gem_datadog_auto_instrument gem 'dogstatsd-ruby' diff --git a/integration/apps/rails-seven/app/controllers/di_controller.rb b/integration/apps/rails-seven/app/controllers/di_controller.rb new file mode 100644 index 00000000000..beabc41dd06 --- /dev/null +++ b/integration/apps/rails-seven/app/controllers/di_controller.rb @@ -0,0 +1,6 @@ +class DiController < ApplicationController + def ar_serializer + test = Test.create! + render json: Datadog::DI.component.serializer.serialize_value(test) + end +end diff --git a/integration/apps/rails-seven/bin/run b/integration/apps/rails-seven/bin/run index c0c594994c7..70f814253c7 100755 --- a/integration/apps/rails-seven/bin/run +++ b/integration/apps/rails-seven/bin/run @@ -8,13 +8,13 @@ puts "\n== Starting application process ==" process = (ARGV[0] || Datadog::DemoEnv.process) command = case process when 'puma' - "bundle exec ddprofrb exec puma -C /app/config/puma.rb" + "bundle exec puma -C /app/config/puma.rb" when 'unicorn' - "bundle exec ddprofrb exec unicorn -c /app/config/unicorn.rb" + "bundle exec unicorn -c /app/config/unicorn.rb" when 'console' - "bundle exec ddprofrb exec rails c" + "bundle exec rails c" when 'irb' - "bundle exec ddprofrb exec irb" + "bundle exec irb" when nil, '' abort("\n== ERROR: Must specify a application process! ==") else diff --git a/integration/apps/rails-seven/config/initializers/datadog.rb b/integration/apps/rails-seven/config/initializers/datadog.rb index 89e276870ea..d2749049b11 100644 --- a/integration/apps/rails-seven/config/initializers/datadog.rb +++ b/integration/apps/rails-seven/config/initializers/datadog.rb @@ -1,6 +1,5 @@ require 'datadog/statsd' require 'datadog' -require 'datadog/appsec' Datadog.configure do |c| c.env = 'integration' @@ -26,4 +25,10 @@ # Reconfigure transport to write pprof to file c.profiling.exporter.transport = Datadog::DemoEnv.profiler_file_transport end + + if c.respond_to?(:dynamic_instrumentation) + c.remote.enabled = true + c.dynamic_instrumentation.enabled = true + c.dynamic_instrumentation.internal.development = true + end end diff --git a/integration/apps/rails-seven/config/routes.rb b/integration/apps/rails-seven/config/routes.rb index 4f012b42a9d..06a88068d6d 100644 --- a/integration/apps/rails-seven/config/routes.rb +++ b/integration/apps/rails-seven/config/routes.rb @@ -10,6 +10,8 @@ get 'basic/fibonacci', to: 'basic#fibonacci' get 'basic/boom', to: 'basic#boom' + get 'di/ar_serializer', to: 'di#ar_serializer' + # Job test scenarios post 'jobs', to: 'jobs#create' end diff --git a/integration/apps/rails-seven/spec/integration/di_spec.rb b/integration/apps/rails-seven/spec/integration/di_spec.rb new file mode 100644 index 00000000000..9f37c14ffbe --- /dev/null +++ b/integration/apps/rails-seven/spec/integration/di_spec.rb @@ -0,0 +1,36 @@ +require 'spec_helper' +require 'json' + +RSpec.describe 'Dynamic Instrumentation' do + include_context 'integration test' + di_test + + describe 'ActiveRecord integration' do + let(:response) { get('di/ar_serializer') } + subject { JSON.parse(response.body) } + + it 'is loaded' do + expect(response.code).to eq '200' + + # If AR integration is loaded, this output will be the result of + # the custom serializer. + # If AR integration is not loaded, the output here will have a bunch of + # internal AR fields but not the attributes themselves. + expect(subject).to match( + {"type"=>"Test", + "entries"=> + [[{"type"=>"Symbol", "value"=>"attributes"}, + {"type"=>"Hash", + "entries"=> + [[{"type"=>"String", "value"=>"id"}, {"type"=>"Integer", "value"=>String}], + [{"type"=>"String", "value"=>"version"}, {"type"=>"NilClass", "isNull"=>true}], + [{"type"=>"String", "value"=>"data"}, {"type"=>"NilClass", "isNull"=>true}], + [{"type"=>"String", "value"=>"created_at"}, + {"type"=>"ActiveSupport::TimeWithZone", "value"=>String}], + [{"type"=>"String", "value"=>"updated_at"}, + {"type"=>"ActiveSupport::TimeWithZone", "value"=>String}]]}], + [{"type"=>"Symbol", "value"=>"new_record"}, {"type"=>"FalseClass", "value"=>"false"}]]} + ) + end + end +end diff --git a/integration/apps/rails-seven/spec/support/integration_helper.rb b/integration/apps/rails-seven/spec/support/integration_helper.rb index b0260327e6d..37871c5b065 100644 --- a/integration/apps/rails-seven/spec/support/integration_helper.rb +++ b/integration/apps/rails-seven/spec/support/integration_helper.rb @@ -19,4 +19,23 @@ def get(path) Net::HTTP.get_response(uri) end end + + module ClassMethods + def di_test + if RUBY_ENGINE == 'jruby' + before(:all) do + skip "Dynamic instrumentation is not supported on JRuby" + end + end + if RUBY_VERSION < "2.6" + before(:all) do + skip "Dynamic instrumentation requires Ruby 2.6 or higher" + end + end + end + end + + def self.included(base) + base.extend(ClassMethods) + end end diff --git a/integration/apps/rails-six/Gemfile b/integration/apps/rails-six/Gemfile index 9dcce283d06..7056563881a 100644 --- a/integration/apps/rails-six/Gemfile +++ b/integration/apps/rails-six/Gemfile @@ -18,7 +18,7 @@ gem 'puma' gem 'unicorn' # Choose correct specs for 'datadog' demo environment -gem 'datadog', *Datadog::DemoEnv.gem_spec('datadog') +gem *Datadog::DemoEnv.gem_datadog_auto_instrument gem 'dogstatsd-ruby' gem 'ffi' @@ -90,7 +90,14 @@ end group :test, :development do gem 'byebug', platform: :ruby - gem 'mock_redis' + # mock_redis 0.47.0+ requires redis 5 or higher + # mock_redis 0.42.0+ requires Ruby 3.0 or higher + # mock_redis 0.37.0+ requires Ruby 2.7 or higher + if RUBY_VERSION >= '2.7' + gem 'mock_redis', '~> 0.37.0' + else + gem 'mock_redis', '< 0.37.0' + end gem 'parallel_tests' gem 'listen' diff --git a/integration/apps/rails-six/app/controllers/di_controller.rb b/integration/apps/rails-six/app/controllers/di_controller.rb new file mode 100644 index 00000000000..beabc41dd06 --- /dev/null +++ b/integration/apps/rails-six/app/controllers/di_controller.rb @@ -0,0 +1,6 @@ +class DiController < ApplicationController + def ar_serializer + test = Test.create! + render json: Datadog::DI.component.serializer.serialize_value(test) + end +end diff --git a/integration/apps/rails-six/bin/run b/integration/apps/rails-six/bin/run index c0c594994c7..70f814253c7 100755 --- a/integration/apps/rails-six/bin/run +++ b/integration/apps/rails-six/bin/run @@ -8,13 +8,13 @@ puts "\n== Starting application process ==" process = (ARGV[0] || Datadog::DemoEnv.process) command = case process when 'puma' - "bundle exec ddprofrb exec puma -C /app/config/puma.rb" + "bundle exec puma -C /app/config/puma.rb" when 'unicorn' - "bundle exec ddprofrb exec unicorn -c /app/config/unicorn.rb" + "bundle exec unicorn -c /app/config/unicorn.rb" when 'console' - "bundle exec ddprofrb exec rails c" + "bundle exec rails c" when 'irb' - "bundle exec ddprofrb exec irb" + "bundle exec irb" when nil, '' abort("\n== ERROR: Must specify a application process! ==") else diff --git a/integration/apps/rails-six/config/initializers/datadog.rb b/integration/apps/rails-six/config/initializers/datadog.rb index 42f9582a4e7..4a323bb6be1 100644 --- a/integration/apps/rails-six/config/initializers/datadog.rb +++ b/integration/apps/rails-six/config/initializers/datadog.rb @@ -28,4 +28,10 @@ c.profiling.exporter.transport = Datadog::DemoEnv.profiler_file_transport end end + + if c.respond_to?(:dynamic_instrumentation) + c.remote.enabled = true + c.dynamic_instrumentation.enabled = true + c.dynamic_instrumentation.internal.development = true + end end diff --git a/integration/apps/rails-six/config/routes.rb b/integration/apps/rails-six/config/routes.rb index 4f012b42a9d..06a88068d6d 100644 --- a/integration/apps/rails-six/config/routes.rb +++ b/integration/apps/rails-six/config/routes.rb @@ -10,6 +10,8 @@ get 'basic/fibonacci', to: 'basic#fibonacci' get 'basic/boom', to: 'basic#boom' + get 'di/ar_serializer', to: 'di#ar_serializer' + # Job test scenarios post 'jobs', to: 'jobs#create' end diff --git a/integration/apps/rails-six/spec/integration/di_spec.rb b/integration/apps/rails-six/spec/integration/di_spec.rb new file mode 100644 index 00000000000..a2d2db72499 --- /dev/null +++ b/integration/apps/rails-six/spec/integration/di_spec.rb @@ -0,0 +1,36 @@ +require 'spec_helper' +require 'json' + +RSpec.describe 'Dynamic Instrumentation' do + include_context 'integration test' + di_test + + describe 'ActiveRecord integration' do + let(:response) { get('di/ar_serializer') } + subject { JSON.parse(response.body) } + + it 'is loaded' do + expect(response.code).to eq '200' + + # If AR integration is loaded, this output will be the result of + # the custom serializer. + # If AR integration is not loaded, the output here will have a bunch of + # internal AR fields but not the attributes themselves. + expect(subject).to match( + {"type"=>"Test", + "entries"=> + [[{"type"=>"Symbol", "value"=>"attributes"}, + {"type"=>"Hash", + "entries"=> + [[{"type"=>"String", "value"=>"id"}, {"type"=>"Integer", "value"=>String}], + [{"type"=>"String", "value"=>"version"}, {"type"=>"NilClass", "isNull"=>true}], + [{"type"=>"String", "value"=>"data"}, {"type"=>"NilClass", "isNull"=>true}], + [{"type"=>"String", "value"=>"created_at"}, + {"type"=>"Time", "value"=>String}], + [{"type"=>"String", "value"=>"updated_at"}, + {"type"=>"Time", "value"=>String}]]}], + [{"type"=>"Symbol", "value"=>"new_record"}, {"type"=>"FalseClass", "value"=>"false"}]]} + ) + end + end +end diff --git a/integration/apps/rails-six/spec/support/integration_helper.rb b/integration/apps/rails-six/spec/support/integration_helper.rb index b0260327e6d..37871c5b065 100644 --- a/integration/apps/rails-six/spec/support/integration_helper.rb +++ b/integration/apps/rails-six/spec/support/integration_helper.rb @@ -19,4 +19,23 @@ def get(path) Net::HTTP.get_response(uri) end end + + module ClassMethods + def di_test + if RUBY_ENGINE == 'jruby' + before(:all) do + skip "Dynamic instrumentation is not supported on JRuby" + end + end + if RUBY_VERSION < "2.6" + before(:all) do + skip "Dynamic instrumentation requires Ruby 2.6 or higher" + end + end + end + end + + def self.included(base) + base.extend(ClassMethods) + end end diff --git a/integration/images/include/datadog/demo_env.rb b/integration/images/include/datadog/demo_env.rb index 516f2a0d479..46190a078cd 100644 --- a/integration/images/include/datadog/demo_env.rb +++ b/integration/images/include/datadog/demo_env.rb @@ -3,7 +3,7 @@ module Datadog module DemoEnv module_function - def gem_spec(gem_name, defaults = {}) + def gem_spec(gem_name) args = if local_gem(gem_name) [local_gem(gem_name)] elsif git_gem(gem_name) @@ -17,6 +17,18 @@ def gem_spec(gem_name, defaults = {}) args end + def gem_datadog_auto_instrument + gem_spec = gem_spec('datadog') + req = {require: 'datadog/auto_instrument'} + opts = if gem_spec.last.is_a?(Hash) + gem_spec.pop.merge(req) + else + req + end + gem_spec << opts + ['datadog', *gem_spec] + end + def gem_env_name(gem_name) gem_name.upcase.tr('-', '_') end diff --git a/lib/datadog/auto_instrument.rb b/lib/datadog/auto_instrument.rb index e02305a0009..264d53611cd 100644 --- a/lib/datadog/auto_instrument.rb +++ b/lib/datadog/auto_instrument.rb @@ -6,6 +6,9 @@ require_relative '../datadog' require_relative 'tracing/contrib/auto_instrument' +# DI is not loaded on Ruby 2.5 and JRuby +Datadog::DI::Contrib.load_now_or_later if defined?(Datadog::DI::Contrib) + Datadog::Profiling.start_if_enabled module Datadog diff --git a/lib/datadog/di.rb b/lib/datadog/di.rb index 221c32864f6..ff185b09318 100644 --- a/lib/datadog/di.rb +++ b/lib/datadog/di.rb @@ -18,21 +18,6 @@ require_relative 'di/transport' require_relative 'di/utils' -if defined?(ActiveRecord::Base) - # The third-party library integrations need to be loaded after the - # third-party libraries are loaded. Tracing and appsec use Railtie - # to delay integrations until all of the application's dependencies - # are loaded, when running under Rails. We should do the same here in - # principle, however DI currently only has an ActiveRecord integration - # and AR should be loaded before any application code is loaded, being - # part of Rails, therefore for now we should be OK to just require the - # AR integration from here. - # - # TODO this require might need to be delayed via Rails post-initialization - # logic? - require_relative 'di/contrib/active_record' -end - module Datadog # Namespace for Datadog dynamic instrumentation. # @@ -75,3 +60,7 @@ def component # for line probes to work) activate tracking in an initializer. Datadog::DI.activate_tracking end + +require_relative 'di/contrib' + +Datadog::DI::Contrib.load_now_or_later diff --git a/lib/datadog/di/contrib.rb b/lib/datadog/di/contrib.rb new file mode 100644 index 00000000000..8098b5befb0 --- /dev/null +++ b/lib/datadog/di/contrib.rb @@ -0,0 +1,26 @@ +# frozen_string_literal: true + +require_relative '../core/contrib/rails/utils' + +module Datadog + module DI + module Contrib + module_function def load_now_or_later + if Datadog::Core::Contrib::Rails::Utils.railtie_supported? + require_relative 'contrib/railtie' + else + load_now + end + end + + # This method can be called more than once, to attempt to load + # DI components that depend on third-party libraries after additional + # dependencies are loaded (or potentially loaded). + module_function def load_now + if defined?(ActiveRecord::Base) + require_relative 'contrib/active_record' + end + end + end + end +end diff --git a/lib/datadog/di/contrib/railtie.rb b/lib/datadog/di/contrib/railtie.rb new file mode 100644 index 00000000000..b0a3f57d8d2 --- /dev/null +++ b/lib/datadog/di/contrib/railtie.rb @@ -0,0 +1,15 @@ +# frozen_string_literal: true + +module Datadog + module DI + module Contrib + # Railtie class initializes dynamic instrumentation contrib code + # in Rails environments. + class Railtie < Rails::Railtie + initializer 'datadog.dynamic_instrumentation.initialize' do |app| + Contrib.load_now + end + end + end + end +end diff --git a/sig/datadog/di/contrib.rbs b/sig/datadog/di/contrib.rbs new file mode 100644 index 00000000000..80ac578ffac --- /dev/null +++ b/sig/datadog/di/contrib.rbs @@ -0,0 +1,9 @@ +module Datadog + module DI + module Contrib + def self?.load_now_or_later: () -> void + + def self?.load_now: () -> void + end + end +end diff --git a/sig/datadog/di/contrib/railtie.rbs b/sig/datadog/di/contrib/railtie.rbs new file mode 100644 index 00000000000..473a68df3ca --- /dev/null +++ b/sig/datadog/di/contrib/railtie.rbs @@ -0,0 +1,8 @@ +module Datadog + module DI + module Contrib + class Railtie < Rails::Railtie + end + end + end +end From e28dcc81106ac1f8dec35905f3ca3802d3cf6883 Mon Sep 17 00:00:00 2001 From: Quinna Halim Date: Tue, 14 Jan 2025 17:09:49 -0500 Subject: [PATCH 158/161] update supported versions workflow (#4289) * update supported versions scripts * update gemfile version parsing - upper bounds --- .github/scripts/find_gem_version_bounds.rb | 47 ++++++++++++++-------- .github/scripts/generate_table_versions.rb | 10 ++++- 2 files changed, 38 insertions(+), 19 deletions(-) diff --git a/.github/scripts/find_gem_version_bounds.rb b/.github/scripts/find_gem_version_bounds.rb index 93daee54981..da1366d737a 100644 --- a/.github/scripts/find_gem_version_bounds.rb +++ b/.github/scripts/find_gem_version_bounds.rb @@ -52,7 +52,11 @@ def process_gemfile(gemfile_name, runtime) definition.dependencies.each do |dependency| gem_name = dependency.name version = dependency.requirement.to_s - update_gem_versions(runtime, gem_name, version) + unspecified = version.strip == '' || version == ">= 0" + if unspecified + puts "#{gem_name} uses latest" + end + update_gem_versions(runtime, gem_name, version, unspecified) end rescue Bundler::GemfileError => e puts "Error reading Gemfile: #{e.message}" @@ -65,30 +69,36 @@ def process_lockfile(gemfile_name, runtime) parser.specs.each do |spec| gem_name = spec.name version = spec.version.to_s - update_gem_versions(runtime, gem_name, version) + update_gem_versions(runtime, gem_name, version, false) end end - def update_gem_versions(runtime, gem_name, version) - return unless version_valid?(version) - - gem_version = Gem::Version.new(version) + def update_gem_versions(runtime, gem_name, version, unspecified) + return unless version_valid?(version, unspecified) + gem_version = Gem::Version.new(version) unless unspecified # Update minimum gems - if @min_gems[runtime][gem_name].nil? || gem_version < Gem::Version.new(@min_gems[runtime][gem_name]) - @min_gems[runtime][gem_name] = version + if not unspecified + if @min_gems[runtime][gem_name].nil? || gem_version < Gem::Version.new(@min_gems[runtime][gem_name]) + @min_gems[runtime][gem_name] = version + end end # Update maximum gems - if @max_gems[runtime][gem_name].nil? || gem_version > Gem::Version.new(@max_gems[runtime][gem_name]) - @max_gems[runtime][gem_name] = version + if unspecified + puts "Setting gem #{gem_name} to infinity" + @max_gems[runtime][gem_name] = Float::INFINITY + else + if @max_gems[runtime][gem_name].nil? || (@max_gems[runtime][gem_name] != Float::INFINITY && gem_version > Gem::Version.new(@max_gems[runtime][gem_name])) + @max_gems[runtime][gem_name] = version + end end end # Helper: Validate the version format - def version_valid?(version) + def version_valid?(version, unspecified) + return true if unspecified return false if version.nil? || version.strip.empty? - Gem::Version.new(version) true rescue ArgumentError @@ -115,17 +125,17 @@ def process_integrations def include_hardcoded_versions # `httpx` is maintained externally @integration_json_mapping['httpx'] = [ - '0.11', # Min version Ruby - '0.11', # Max version Ruby - nil, # Min version JRuby + '0.11', # Min version Ruby + nil, # Max version Ruby + '0.11', # Min version JRuby nil # Max version JRuby ] # `makara` is part of `activerecord` @integration_json_mapping['makara'] = [ '0.3.5', # Min version Ruby - '0.3.5', # Max version Ruby - nil, # Min version JRuby + nil, # Max version Ruby + '0.3.5', # Min version JRuby nil # Max version JRuby ] end @@ -142,6 +152,9 @@ def resolve_integration_name(integration) def write_output @integration_json_mapping = @integration_json_mapping.sort.to_h + @integration_json_mapping.each do |integration, versions| + versions.map! { |v| v == Float::INFINITY ? 'infinity' : v } + end File.write("gem_output.json", JSON.pretty_generate(@integration_json_mapping)) end end diff --git a/.github/scripts/generate_table_versions.rb b/.github/scripts/generate_table_versions.rb index bbc8ef62dcd..46068adeb0e 100644 --- a/.github/scripts/generate_table_versions.rb +++ b/.github/scripts/generate_table_versions.rb @@ -9,8 +9,14 @@ header = "| Integration | Ruby Min | Ruby Max | JRuby Min | JRuby Max |\n" separator = "|-------------|----------|-----------|----------|----------|\n" rows = data.map do |integration_name, versions| - ruby_min, ruby_max, jruby_min, jruby_max = versions.map { |v| v || "None" } - "| #{integration_name} | #{ruby_min} | #{ruby_max} | #{jruby_min} | #{jruby_max} |" + ruby_min, ruby_max, jruby_min, jruby_max = versions.map do |v| + if v == "infinity" + "latest" + else + v || "None" + end + end + "| #{integration_name} | #{ruby_min} | #{ruby_max} | #{jruby_min} | #{jruby_max} |" end File.open(output_file, 'w') do |file| From 9e3a3e31b48645e87e2ea0ca8950e4631fb09591 Mon Sep 17 00:00:00 2001 From: Oleg Pudeyev <156273877+p-datadog@users.noreply.github.com> Date: Tue, 14 Jan 2025 17:55:00 -0500 Subject: [PATCH 159/161] DEBUG-3329 rename datadog/di/init to datadog/di/preload (#4288) Co-authored-by: Oleg Pudeyev --- lib/datadog/di/base.rb | 2 +- lib/datadog/di/{init.rb => preload.rb} | 2 +- sig/datadog/di/{init.rbs => preload.rbs} | 0 spec/datadog/di/{init_spec.rb => preload_spec.rb} | 2 +- spec/loading_spec.rb | 2 +- 5 files changed, 4 insertions(+), 4 deletions(-) rename lib/datadog/di/{init.rb => preload.rb} (90%) rename sig/datadog/di/{init.rbs => preload.rbs} (100%) rename spec/datadog/di/{init_spec.rb => preload_spec.rb} (98%) diff --git a/lib/datadog/di/base.rb b/lib/datadog/di/base.rb index afe8c38e602..69e7e78ec5c 100644 --- a/lib/datadog/di/base.rb +++ b/lib/datadog/di/base.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -# This file is loaded by datadog/di/init.rb. +# This file is loaded by datadog/di/preload.rb. # It contains just the global DI reference to the (normally one and only) # code tracker for the current process. # This file should not require the rest of DI, specifically none of the diff --git a/lib/datadog/di/init.rb b/lib/datadog/di/preload.rb similarity index 90% rename from lib/datadog/di/init.rb rename to lib/datadog/di/preload.rb index 2af4c29c325..932e72d7e88 100644 --- a/lib/datadog/di/init.rb +++ b/lib/datadog/di/preload.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -# Require 'datadog/di/init' early in the application boot process to +# Require 'datadog/di/preload' early in the application boot process to # enable dynamic instrumentation for third-party libraries used by the # application. diff --git a/sig/datadog/di/init.rbs b/sig/datadog/di/preload.rbs similarity index 100% rename from sig/datadog/di/init.rbs rename to sig/datadog/di/preload.rbs diff --git a/spec/datadog/di/init_spec.rb b/spec/datadog/di/preload_spec.rb similarity index 98% rename from spec/datadog/di/init_spec.rb rename to spec/datadog/di/preload_spec.rb index 45a5f650fc4..6ae770a08e5 100644 --- a/spec/datadog/di/init_spec.rb +++ b/spec/datadog/di/preload_spec.rb @@ -10,7 +10,7 @@ raise "Datadog code loaded too early" end - require 'datadog/di/init' + require 'datadog/di/preload' if Datadog.constants.sort != %i(DI VERSION) raise "Too many datadog components loaded: \#{Datadog.constants}" diff --git a/spec/loading_spec.rb b/spec/loading_spec.rb index 73da2c2d7e9..c65f4e62050 100644 --- a/spec/loading_spec.rb +++ b/spec/loading_spec.rb @@ -4,7 +4,7 @@ 'datadog/appsec' => 'Datadog::AppSec', 'datadog/core' => 'Datadog::Core', 'datadog/di' => 'Datadog::DI', - 'datadog/di/init' => 'Datadog::DI::CodeTracker', + 'datadog/di/preload' => 'Datadog::DI::CodeTracker', 'datadog/kit' => 'Datadog::Kit', 'datadog/profiling' => 'Datadog::Profiling', 'datadog/tracing' => 'Datadog::Tracing', From 7fa295e7ddd71202bae53123b9beb65d358c1d29 Mon Sep 17 00:00:00 2001 From: Marco Costa Date: Wed, 15 Jan 2025 11:58:25 -0500 Subject: [PATCH 160/161] Increase type checking coverage (#4290) --- Steepfile | 31 ++------ lib/datadog/tracing/span.rb | 16 +++- lib/datadog/tracing/span_operation.rb | 4 + sig/datadog/core/configuration.rbs | 2 + sig/datadog/core/diagnostics/health.rbs | 2 +- sig/datadog/tracing.rbs | 2 + .../tracing/contrib/resque/resque_job.rbs | 2 +- sig/datadog/tracing/diagnostics/health.rbs | 20 ++++- sig/datadog/tracing/metadata.rbs | 4 +- sig/datadog/tracing/span.rbs | 55 ++++++++++++- sig/datadog/tracing/span_operation.rbs | 28 +++++-- sig/datadog/tracing/trace_operation.rbs | 4 +- sig/datadog/tracing/transport/http/api.rbs | 14 ++-- .../tracing/transport/http/builder.rbs | 76 +++++++++--------- sig/datadog/tracing/transport/http/client.rbs | 18 +++-- .../tracing/transport/http/statistics.rbs | 20 ++--- sig/datadog/tracing/transport/http/traces.rbs | 76 +++++++++--------- sig/datadog/tracing/transport/io/response.rbs | 16 ++-- vendor/rbs/minitest/0/minitest.rbs | 57 ++++++++++++++ vendor/rbs/minitest/0/minitest/unit.rbs | 4 + vendor/rbs/msgpack/0/message_pack.rbs | 23 ++++++ vendor/rbs/msgpack/0/message_pack/packer.rbs | 77 +++++++++++++++++++ 22 files changed, 400 insertions(+), 151 deletions(-) create mode 100644 vendor/rbs/minitest/0/minitest.rbs create mode 100644 vendor/rbs/minitest/0/minitest/unit.rbs create mode 100644 vendor/rbs/msgpack/0/message_pack.rbs create mode 100644 vendor/rbs/msgpack/0/message_pack/packer.rbs diff --git a/Steepfile b/Steepfile index d0cb048720a..7acf3d2057b 100644 --- a/Steepfile +++ b/Steepfile @@ -128,16 +128,12 @@ target :datadog do ignore 'lib/datadog/tracing/sampling/rule.rb' ignore 'lib/datadog/tracing/sampling/rule_sampler.rb' ignore 'lib/datadog/tracing/sampling/span/rule.rb' - ignore 'lib/datadog/tracing/span.rb' - ignore 'lib/datadog/tracing/span_operation.rb' ignore 'lib/datadog/tracing/sync_writer.rb' ignore 'lib/datadog/tracing/trace_operation.rb' ignore 'lib/datadog/tracing/tracer.rb' ignore 'lib/datadog/tracing/transport/http.rb' ignore 'lib/datadog/tracing/transport/http/api.rb' - ignore 'lib/datadog/tracing/transport/http/builder.rb' ignore 'lib/datadog/tracing/transport/http/client.rb' - ignore 'lib/datadog/tracing/transport/http/statistics.rb' ignore 'lib/datadog/tracing/transport/http/traces.rb' ignore 'lib/datadog/tracing/transport/io/client.rb' ignore 'lib/datadog/tracing/transport/io/traces.rb' @@ -162,30 +158,13 @@ target :datadog do library 'digest' library 'zlib' library 'time' + library 'pp' + # Load all dependency signatures from the `vendor/rbs` directory repo_path 'vendor/rbs' - library 'cucumber' - library 'jruby' - library 'gem' - library 'rails' - library 'spring' - library 'sinatra' - library 'google-protobuf' - library 'protobuf-cucumber' - library 'minitest' - library 'mysql2' - library 'mysql2-aurora' - library 'concurrent-ruby' - library 'faraday' - library 'seahorse' - library 'excon' - library 'grpc' - library 'delayed_job' - library 'opentelemetry-api' - library 'passenger' - library 'webmock' - library 'graphql' - library 'datadog-ci' + Dir.children('vendor/rbs').each do |vendor_gem| + library vendor_gem + end # ffi version 1.17 was shipped with invalid rbs types: # https://github.com/ffi/ffi/issues/1107 diff --git a/lib/datadog/tracing/span.rb b/lib/datadog/tracing/span.rb index be827c78c65..5eaa73d7387 100644 --- a/lib/datadog/tracing/span.rb +++ b/lib/datadog/tracing/span.rb @@ -112,7 +112,10 @@ def stopped? def duration return @duration if @duration - return @end_time - @start_time if @start_time && @end_time + + start_time = @start_time + end_time = @end_time + end_time - start_time if start_time && end_time end def set_error(e) @@ -135,6 +138,8 @@ def to_s # TODO: Change this to reflect attributes when serialization # isn't handled by this method. def to_hash + @meta['events'] = @events.map(&:to_hash).to_json unless @events.empty? + h = { error: @status, meta: @meta, @@ -154,8 +159,6 @@ def to_hash h[:duration] = duration_nano end - h[:meta]['events'] = @events.map(&:to_hash).to_json unless @events.empty? - h end @@ -196,12 +199,17 @@ def pretty_print(q) # Used for serialization # @return [Integer] in nanoseconds since Epoch def start_time_nano - @start_time.to_i * 1000000000 + @start_time.nsec + return unless (start_time = @start_time) + + start_time.to_i * 1000000000 + start_time.nsec end # Used for serialization # @return [Integer] in nanoseconds since Epoch def duration_nano + duration = self.duration + return unless duration + (duration * 1e9).to_i end diff --git a/lib/datadog/tracing/span_operation.rb b/lib/datadog/tracing/span_operation.rb index 52a8fc469af..483da6ae1b1 100644 --- a/lib/datadog/tracing/span_operation.rb +++ b/lib/datadog/tracing/span_operation.rb @@ -199,6 +199,9 @@ def start(start_time = nil) end # Mark the span stopped at the current time + # + # steep:ignore:start + # Steep issue fixed in https://github.com/soutaro/steep/pull/1467 def stop(stop_time = nil) # A span should not be stopped twice. Note that this is not thread-safe, # stop is called from multiple threads, a given span might be stopped @@ -221,6 +224,7 @@ def stop(stop_time = nil) self end + # steep:ignore:end # Return whether the duration is started or not def started? diff --git a/sig/datadog/core/configuration.rbs b/sig/datadog/core/configuration.rbs index e241fb56a65..ae76973d007 100644 --- a/sig/datadog/core/configuration.rbs +++ b/sig/datadog/core/configuration.rbs @@ -1,6 +1,8 @@ module Datadog module Core module Configuration + def health_metrics: -> Diagnostics::Health::Metrics + def tracer: () -> Datadog::Tracing::Tracer def logger: () -> Datadog::Core::Logger diff --git a/sig/datadog/core/diagnostics/health.rbs b/sig/datadog/core/diagnostics/health.rbs index d31c41f9cde..ec54e0b87b0 100644 --- a/sig/datadog/core/diagnostics/health.rbs +++ b/sig/datadog/core/diagnostics/health.rbs @@ -3,7 +3,7 @@ module Datadog module Diagnostics module Health class Metrics < Core::Metrics::Client - extend Tracing::Diagnostics::Health::Metrics + include Tracing::Diagnostics::Health::Metrics end end end diff --git a/sig/datadog/tracing.rbs b/sig/datadog/tracing.rbs index 9135960953e..87a06f1c9f7 100644 --- a/sig/datadog/tracing.rbs +++ b/sig/datadog/tracing.rbs @@ -4,5 +4,7 @@ module Datadog def self.active_trace: -> TraceSegment? def self.active_span: -> SpanOperation? + + type on_error = ^(SpanOperation span_op, Exception error) -> void end end diff --git a/sig/datadog/tracing/contrib/resque/resque_job.rbs b/sig/datadog/tracing/contrib/resque/resque_job.rbs index 59eea098b27..4c1b1cde88c 100644 --- a/sig/datadog/tracing/contrib/resque/resque_job.rbs +++ b/sig/datadog/tracing/contrib/resque/resque_job.rbs @@ -18,7 +18,7 @@ module Datadog def forked?: () -> untyped - def span_options: () -> { service: untyped, on_error: untyped } + def span_options: () -> { service: untyped, on_error: on_error } def datadog_configuration: () -> untyped end diff --git a/sig/datadog/tracing/diagnostics/health.rbs b/sig/datadog/tracing/diagnostics/health.rbs index dd3fd3fc616..deeb13ff221 100644 --- a/sig/datadog/tracing/diagnostics/health.rbs +++ b/sig/datadog/tracing/diagnostics/health.rbs @@ -3,7 +3,25 @@ module Datadog module Diagnostics module Health module Metrics - def self.extended: (untyped base) -> untyped + def api_errors: (untyped ?value) ?{ (untyped) -> untyped } -> void + def api_requests: (untyped ?value) ?{ (untyped) -> untyped } -> void + def api_responses: (untyped ?value) ?{ (untyped) -> untyped } -> void + def error_context_overflow: (untyped ?value) ?{ (untyped) -> untyped } -> void + def error_instrumentation_patch: (untyped ?value) ?{ (untyped) -> untyped } -> void + def error_span_finish: (untyped ?value) ?{ (untyped) -> untyped } -> void + def error_unfinished_spans: (untyped ?value) ?{ (untyped) -> untyped } -> void + def instrumentation_patched: (untyped ?value) ?{ (untyped) -> untyped } -> void + def queue_accepted: (untyped ?value) ?{ (untyped) -> untyped } -> void + def queue_accepted_lengths: (untyped ?value) ?{ (untyped) -> untyped } -> void + def queue_dropped: (untyped ?value) ?{ (untyped) -> untyped } -> void + def traces_filtered: (untyped ?value) ?{ (untyped) -> untyped } -> void + def transport_trace_too_large: (untyped ?value) ?{ (untyped) -> untyped } -> void + def transport_chunked: (untyped ?value) ?{ (untyped) -> untyped } -> void + def writer_cpu_time: (untyped ?value) ?{ (untyped) -> untyped } -> void + def queue_length: (untyped ?value) ?{ (untyped) -> untyped } -> void + def queue_max_length: (untyped ?value) ?{ (untyped) -> untyped } -> void + def queue_spans: (untyped ?value) ?{ (untyped) -> untyped } -> void + def sampling_service_cache_length: (untyped ?value) ?{ (untyped) -> untyped } -> void end end end diff --git a/sig/datadog/tracing/metadata.rbs b/sig/datadog/tracing/metadata.rbs index c5c79f73ed0..34efb3f3071 100644 --- a/sig/datadog/tracing/metadata.rbs +++ b/sig/datadog/tracing/metadata.rbs @@ -1,7 +1,9 @@ module Datadog module Tracing module Metadata - def self.included: (untyped base) -> untyped + include Metadata::Tagging + include Metadata::Errors + prepend Metadata::Analytics end end end diff --git a/sig/datadog/tracing/span.rbs b/sig/datadog/tracing/span.rbs index 9adb31f126a..b610dcaa7eb 100644 --- a/sig/datadog/tracing/span.rbs +++ b/sig/datadog/tracing/span.rbs @@ -1,10 +1,59 @@ module Datadog module Tracing class Span - attr_accessor span_id: Integer + include Metadata - def set_tag: (String key, ?untyped? value) -> void + attr_accessor end_time: (Time | nil) + attr_accessor id: Integer + attr_accessor meta: Hash[String, String] + attr_accessor metrics: Hash[String, Float] + attr_accessor name: String + attr_accessor parent_id: Integer + attr_accessor resource: String + attr_accessor service: (String | nil) + attr_accessor links: Array[untyped] + attr_accessor events: Array[untyped] + attr_accessor type: (String | nil) + attr_accessor start_time: (Time | nil) + attr_accessor status: Integer + attr_accessor trace_id: Integer + attr_writer duration: (Float | nil) + + def initialize: ( + String name, + ?duration: (Float | nil), + ?end_time: (Time | nil), + ?id: (Integer | nil), + ?meta: (Hash[String, String] | nil), + ?metrics: (Hash[String, Float] | nil), + ?parent_id: Integer, + ?resource: String, + ?service: (String | nil), + ?start_time: (Time | nil), + ?status: Integer, + ?type: (String | nil), + ?trace_id: (Integer | nil), + ?service_entry: (bool | nil), + ?links: (Array[untyped] | nil), + ?events: (Array[untyped] | nil) + ) -> void + + def started?: -> bool + def stopped?: -> bool + def duration: -> (Float | nil) + def set_error: (Exception e) -> void + def ==: (Span other) -> bool + def to_s: -> String + def to_hash: -> Hash[Symbol, untyped] + def pretty_print: (PP q) -> void + + private + + def duration_nano: -> Integer? + + def service_entry?: -> bool + + def start_time_nano: -> Integer? end end end - diff --git a/sig/datadog/tracing/span_operation.rbs b/sig/datadog/tracing/span_operation.rbs index 8002a33ae2a..a50641c0aa8 100644 --- a/sig/datadog/tracing/span_operation.rbs +++ b/sig/datadog/tracing/span_operation.rbs @@ -10,7 +10,7 @@ module Datadog attr_reader span_events: untyped - attr_reader end_time: untyped + attr_reader end_time: ::Time attr_reader id: untyped @@ -22,7 +22,7 @@ module Datadog attr_reader service: untyped - attr_reader start_time: untyped + attr_reader start_time: ::Time attr_reader trace_id: untyped @@ -30,7 +30,21 @@ module Datadog attr_accessor status: untyped - def initialize: (untyped name, ?child_of: untyped?, ?events: untyped?, ?on_error: untyped?, ?parent_id: ::Integer, ?resource: untyped, ?service: untyped?, ?start_time: untyped?, ?tags: untyped?, ?trace_id: untyped?, ?type: untyped?, ?links: untyped?, ?span_events: untyped?) -> void + def initialize: ( + String name, + ?events: Events, + ?on_error: on_error, + ?parent_id: Integer, + ?resource: String, + ?service: (String | nil), + ?start_time: (Time | nil), + ?tags: (Hash[String, (String|Numeric)] | nil), + ?trace_id: (Integer | nil), + ?type: (String | nil), + ?links: (Array[SpanLink] | nil), + ?span_events: (Array[SpanEvent] | nil), + ?id: (Integer | nil) + ) -> void def name=: (untyped name) -> untyped @@ -44,7 +58,7 @@ module Datadog def start: (?untyped? start_time) -> self - def stop: (?untyped? stop_time) -> (nil | self) + def stop: (?untyped? stop_time) -> self? def started?: () -> untyped @@ -71,7 +85,7 @@ module Datadog class Events include Tracing::Events - DEFAULT_ON_ERROR: untyped + DEFAULT_ON_ERROR: on_error attr_reader after_finish: untyped @@ -79,9 +93,9 @@ module Datadog attr_reader before_start: untyped - def initialize: (?on_error: untyped?) -> void + def initialize: (?on_error: on_error) -> void - def on_error: () -> untyped + def on_error: () -> OnError class AfterFinish < Tracing::Event def initialize: () -> void diff --git a/sig/datadog/tracing/trace_operation.rbs b/sig/datadog/tracing/trace_operation.rbs index e434c9872d6..551ce4ccf48 100644 --- a/sig/datadog/tracing/trace_operation.rbs +++ b/sig/datadog/tracing/trace_operation.rbs @@ -35,8 +35,8 @@ module Datadog def resource: () -> untyped def resource_override?: () -> bool def service: () -> untyped - def measure: (untyped op_name, ?events: untyped?, ?on_error: untyped?, ?resource: untyped?, ?service: untyped?, ?start_time: untyped?, ?tags: untyped?, ?type: untyped?) { (untyped, untyped) -> untyped } -> untyped - def build_span: (untyped op_name, ?events: untyped?, ?on_error: untyped?, ?resource: untyped?, ?service: untyped?, ?start_time: untyped?, ?tags: untyped?, ?type: untyped?) -> untyped + def measure: (untyped op_name, ?events: untyped?, ?on_error: on_error, ?resource: untyped?, ?service: untyped?, ?start_time: untyped?, ?tags: untyped?, ?type: untyped?) { (untyped, untyped) -> untyped } -> untyped + def build_span: (untyped op_name, ?events: untyped?, ?on_error: on_error, ?resource: untyped?, ?service: untyped?, ?start_time: untyped?, ?tags: untyped?, ?type: untyped?) -> untyped def flush!: () { (untyped) -> untyped } -> untyped def to_digest: () -> untyped def fork_clone: () -> untyped diff --git a/sig/datadog/tracing/transport/http/api.rbs b/sig/datadog/tracing/transport/http/api.rbs index ac130133591..f3a063f2d9c 100644 --- a/sig/datadog/tracing/transport/http/api.rbs +++ b/sig/datadog/tracing/transport/http/api.rbs @@ -1,12 +1,14 @@ module Datadog - module Transport - module HTTP - module API - V4: "v0.4" + module Tracing + module Transport + module HTTP + module API + V4: "v0.4" - V3: "v0.3" + V3: "v0.3" - def self?.defaults: () -> untyped + def self?.defaults: () -> untyped + end end end end diff --git a/sig/datadog/tracing/transport/http/builder.rbs b/sig/datadog/tracing/transport/http/builder.rbs index dff2d9ef5bc..95a11954c11 100644 --- a/sig/datadog/tracing/transport/http/builder.rbs +++ b/sig/datadog/tracing/transport/http/builder.rbs @@ -1,65 +1,67 @@ module Datadog - module Transport - module HTTP - class Builder - REGISTRY: untyped + module Tracing + module Transport + module HTTP + class Builder + REGISTRY: untyped - attr_reader apis: untyped + attr_reader apis: untyped - attr_reader api_options: untyped + attr_reader api_options: untyped - attr_reader default_adapter: untyped + attr_reader default_adapter: untyped - attr_reader default_api: untyped + attr_reader default_api: untyped - attr_reader default_headers: untyped + attr_reader default_headers: untyped - def initialize: () { (untyped) -> untyped } -> void + def initialize: () { (untyped) -> untyped } -> void - def adapter: (untyped config, *untyped args, **untyped kwargs) -> untyped + def adapter: (untyped config, *untyped args, **untyped kwargs) -> untyped - def headers: (?::Hash[untyped, untyped] values) -> untyped + def headers: (?::Hash[untyped, untyped] values) -> untyped - def api: (untyped key, untyped spec, ?::Hash[untyped, untyped] options) -> untyped + def api: (untyped key, untyped spec, ?::Hash[untyped, untyped] options) -> untyped - def default_api=: (untyped key) -> untyped + def default_api=: (untyped key) -> untyped - def to_transport: () -> untyped + def to_transport: () -> untyped - def to_api_instances: () -> untyped + def to_api_instances: () -> untyped - def api_instance_class: () -> untyped + def api_instance_class: () -> untyped - class UnknownApiError < StandardError - attr_reader key: untyped + class UnknownApiError < StandardError + attr_reader key: untyped - def initialize: (untyped key) -> void + def initialize: (untyped key) -> void - def message: () -> ::String - end + def message: () -> ::String + end - class UnknownAdapterError < StandardError - attr_reader type: untyped + class UnknownAdapterError < StandardError + attr_reader type: untyped - def initialize: (untyped `type`) -> void + def initialize: (untyped `type`) -> void - def message: () -> ::String - end + def message: () -> ::String + end - class NoAdapterForApiError < StandardError - attr_reader key: untyped + class NoAdapterForApiError < StandardError + attr_reader key: untyped - def initialize: (untyped key) -> void + def initialize: (untyped key) -> void - def message: () -> ::String - end + def message: () -> ::String + end - class NoApisError < StandardError - def message: () -> "No APIs configured for transport!" - end + class NoApisError < StandardError + def message: () -> "No APIs configured for transport!" + end - class NoDefaultApiError < StandardError - def message: () -> "No default API configured for transport!" + class NoDefaultApiError < StandardError + def message: () -> "No default API configured for transport!" + end end end end diff --git a/sig/datadog/tracing/transport/http/client.rbs b/sig/datadog/tracing/transport/http/client.rbs index 5ddbe16ae17..b723af2bd54 100644 --- a/sig/datadog/tracing/transport/http/client.rbs +++ b/sig/datadog/tracing/transport/http/client.rbs @@ -1,16 +1,18 @@ module Datadog - module Transport - module HTTP - class Client - include Transport::HTTP::Statistics + module Tracing + module Transport + module HTTP + class Client + include Transport::HTTP::Statistics - attr_reader api: untyped + attr_reader api: untyped - def initialize: (untyped api) -> void + def initialize: (untyped api) -> void - def send_request: (untyped request) { (untyped, untyped) -> untyped } -> untyped + def send_request: (untyped request) { (untyped, untyped) -> untyped } -> untyped - def build_env: (untyped request) -> untyped + def build_env: (untyped request) -> untyped + end end end end diff --git a/sig/datadog/tracing/transport/http/statistics.rbs b/sig/datadog/tracing/transport/http/statistics.rbs index 0ee2cc8bc95..95ef7ac5661 100644 --- a/sig/datadog/tracing/transport/http/statistics.rbs +++ b/sig/datadog/tracing/transport/http/statistics.rbs @@ -1,17 +1,19 @@ module Datadog - module Transport - module HTTP - module Statistics - def self.included: (untyped base) -> untyped + module Tracing + module Transport + module HTTP + module Statistics + def self.included: (untyped base) -> untyped - module InstanceMethods - def metrics_for_response: (untyped response) -> untyped + module InstanceMethods + def metrics_for_response: (untyped response) -> untyped - private + private - STATUS_CODE_200: "status_code:200" + STATUS_CODE_200: "status_code:200" - def metrics_tag_value: (untyped status_code) -> (untyped | ::String) + def metrics_tag_value: (untyped status_code) -> (untyped | ::String) + end end end end diff --git a/sig/datadog/tracing/transport/http/traces.rbs b/sig/datadog/tracing/transport/http/traces.rbs index 0f1d12916b5..5c4b88b0bb1 100644 --- a/sig/datadog/tracing/transport/http/traces.rbs +++ b/sig/datadog/tracing/transport/http/traces.rbs @@ -1,64 +1,66 @@ module Datadog - module Transport - module HTTP - module Traces - class Response - include Core::Transport::HTTP::Response + module Tracing + module Transport + module HTTP + module Traces + class Response + include Core::Transport::HTTP::Response - include Tracing::Transport::Traces::Response + include Tracing::Transport::Traces::Response - def initialize: (untyped http_response, ?::Hash[untyped, untyped] options) -> void - end + def initialize: (untyped http_response, ?::Hash[untyped, untyped] options) -> void + end - module Client - def send_traces_payload: (untyped request) -> untyped - end + module Client + def send_traces_payload: (untyped request) -> untyped + end - module API - module Spec - attr_reader traces: untyped + module API + module Spec + attr_reader traces: untyped - def traces=: (untyped endpoint) -> untyped + def traces=: (untyped endpoint) -> untyped - def send_traces: (untyped env) ?{ () -> untyped } -> untyped + def send_traces: (untyped env) ?{ () -> untyped } -> untyped - def encoder: () -> untyped + def encoder: () -> untyped - class NoTraceEndpointDefinedError < StandardError - attr_reader spec: untyped + class NoTraceEndpointDefinedError < StandardError + attr_reader spec: untyped - def initialize: (untyped spec) -> void + def initialize: (untyped spec) -> void - def message: () -> "No trace endpoint is defined for API specification!" + def message: () -> "No trace endpoint is defined for API specification!" + end end - end - module Instance - def send_traces: (untyped env) -> untyped + module Instance + def send_traces: (untyped env) -> untyped - class TracesNotSupportedError < StandardError - attr_reader spec: untyped + class TracesNotSupportedError < StandardError + attr_reader spec: untyped - def initialize: (untyped spec) -> void + def initialize: (untyped spec) -> void - def message: () -> "Traces not supported for this API!" + def message: () -> "Traces not supported for this API!" + end end - end - class Endpoint < Core::Transport::HTTP::API::Endpoint - HEADER_CONTENT_TYPE: "Content-Type" + class Endpoint < Core::Transport::HTTP::API::Endpoint + HEADER_CONTENT_TYPE: "Content-Type" - HEADER_TRACE_COUNT: "X-Datadog-Trace-Count" + HEADER_TRACE_COUNT: "X-Datadog-Trace-Count" - SERVICE_RATE_KEY: "rate_by_service" + SERVICE_RATE_KEY: "rate_by_service" - attr_reader encoder: untyped + attr_reader encoder: untyped - def initialize: (untyped path, untyped encoder, ?::Hash[untyped, untyped] options) -> void + def initialize: (untyped path, untyped encoder, ?::Hash[untyped, untyped] options) -> void - def service_rates?: () -> untyped + def service_rates?: () -> untyped - def call: (untyped env) ?{ () -> untyped } -> untyped + def call: (untyped env) ?{ () -> untyped } -> untyped + end end end end diff --git a/sig/datadog/tracing/transport/io/response.rbs b/sig/datadog/tracing/transport/io/response.rbs index 591910610d7..05e5b7c8bdd 100644 --- a/sig/datadog/tracing/transport/io/response.rbs +++ b/sig/datadog/tracing/transport/io/response.rbs @@ -1,17 +1,17 @@ module Datadog module Tracing - module Transport - module IO - class Response - include Datadog::Core::Transport::Response + module Transport + module IO + class Response + include Datadog::Core::Transport::Response - attr_reader result: untyped + attr_reader result: untyped - def initialize: (untyped result) -> void + def initialize: (untyped result) -> void - def ok?: () -> true + def ok?: () -> true + end end end end end -end diff --git a/vendor/rbs/minitest/0/minitest.rbs b/vendor/rbs/minitest/0/minitest.rbs new file mode 100644 index 00000000000..b49f5a99fae --- /dev/null +++ b/vendor/rbs/minitest/0/minitest.rbs @@ -0,0 +1,57 @@ +module Minitest + def self.__run: (untyped reporter, untyped options) -> untyped + + def self.after_run: () { (*untyped) -> untyped } -> untyped + + def self.allow_fork: () -> untyped + + def self.allow_fork=: (untyped) -> untyped + + def self.autorun: () -> untyped + + def self.backtrace_filter: () -> untyped + + def self.backtrace_filter=: (untyped) -> untyped + + def self.cattr_accessor: (untyped name) -> untyped + + def self.clock_time: () -> untyped + + def self.empty_run!: (untyped options) -> untyped + + def self.extensions: () -> untyped + + def self.extensions=: (untyped) -> untyped + + def self.filter_backtrace: (untyped bt) -> untyped + + def self.info_signal: () -> untyped + + def self.info_signal=: (untyped) -> untyped + + def self.init_plugins: (untyped options) -> untyped + + def self.load_plugins: () -> untyped + + def self.parallel_executor: () -> untyped + + def self.parallel_executor=: (untyped) -> untyped + + def self.process_args: (?untyped args) -> untyped + + def self.register_plugin: (untyped name_or_mod) -> untyped + + def self.reporter: () -> untyped + + def self.reporter=: (untyped) -> untyped + + def self.run: (?untyped args) -> untyped + + def self.run_one_method: (untyped klass, untyped method_name) -> untyped + + def self.seed: () -> untyped + + def self.seed=: (untyped) -> untyped + + VERSION: ::String +end diff --git a/vendor/rbs/minitest/0/minitest/unit.rbs b/vendor/rbs/minitest/0/minitest/unit.rbs new file mode 100644 index 00000000000..614e35e3014 --- /dev/null +++ b/vendor/rbs/minitest/0/minitest/unit.rbs @@ -0,0 +1,4 @@ +module Minitest + class Unit + end +end \ No newline at end of file diff --git a/vendor/rbs/msgpack/0/message_pack.rbs b/vendor/rbs/msgpack/0/message_pack.rbs new file mode 100644 index 00000000000..87e4c64fce8 --- /dev/null +++ b/vendor/rbs/msgpack/0/message_pack.rbs @@ -0,0 +1,23 @@ +module MessagePack + alias self.dump self.pack + + def self.load: (untyped src, ?untyped param) -> untyped + + def self.pack: (untyped v, ?untyped io, ?untyped options) -> untyped + + alias self.unpack self.load + + private + + alias dump pack + + def load: (untyped src, ?untyped param) -> untyped + + def pack: (untyped v, ?untyped io, ?untyped options) -> untyped + + alias unpack load + + DefaultFactory: ::MessagePack::Factory + + VERSION: ::String +end diff --git a/vendor/rbs/msgpack/0/message_pack/packer.rbs b/vendor/rbs/msgpack/0/message_pack/packer.rbs new file mode 100644 index 00000000000..064ff4bb3ba --- /dev/null +++ b/vendor/rbs/msgpack/0/message_pack/packer.rbs @@ -0,0 +1,77 @@ +module MessagePack + class Packer + def buffer: () -> untyped + + alias clear reset + + def compatibility_mode?: () -> untyped + + def empty?: () -> untyped + + def flush: () -> untyped + + def full_pack: () -> untyped + + alias pack write + + def register_type: (untyped type, untyped klass, ?untyped method_name) { (*untyped) -> untyped } -> untyped + + def register_type_internal: (untyped, untyped, untyped) -> untyped + + def registered_types: () -> untyped + + def reset: () -> untyped + + def size: () -> untyped + + def to_a: () -> untyped + + alias to_s to_str + + def to_str: () -> untyped + + def type_registered?: (untyped klass_or_type) -> untyped + + def write: (untyped) -> untyped + + def write_array: (untyped) -> untyped + + def write_array_header: (untyped) -> untyped + + def write_bin: (untyped) -> untyped + + def write_bin_header: (untyped) -> untyped + + def write_ext: (untyped, untyped) -> untyped + + def write_extension: (untyped) -> untyped + + def write_false: () -> untyped + + def write_float: (untyped) -> untyped + + def write_float32: (untyped) -> untyped + + def write_hash: (untyped) -> untyped + + def write_int: (untyped) -> untyped + + def write_map_header: (untyped) -> untyped + + def write_nil: () -> untyped + + def write_string: (untyped) -> untyped + + def write_symbol: (untyped) -> untyped + + def write_to: (untyped) -> untyped + + def write_true: () -> untyped + + private + + def initialize: (*untyped) -> void + + def registered_types_internal: () -> untyped + end +end From fe9272b14743e9af065f71cd9ef71181f1086d89 Mon Sep 17 00:00:00 2001 From: Oleg Pudeyev <156273877+p-datadog@users.noreply.github.com> Date: Wed, 15 Jan 2025 13:20:04 -0500 Subject: [PATCH 161/161] Bump to version 2.9.0 (#4293) * Add 2.9.0 to CHANGELOG.md * Bump version 2.8.0 to 2.9.0 * Update lockfiles for release 2.9.0 --------- Co-authored-by: Oleg Pudeyev --- CHANGELOG.md | 37 ++++++++++++++++++- gemfiles/jruby_9.2_activesupport.gemfile.lock | 2 +- gemfiles/jruby_9.2_aws.gemfile.lock | 2 +- gemfiles/jruby_9.2_contrib.gemfile.lock | 2 +- gemfiles/jruby_9.2_contrib_old.gemfile.lock | 2 +- gemfiles/jruby_9.2_core_old.gemfile.lock | 2 +- .../jruby_9.2_elasticsearch_7.gemfile.lock | 2 +- .../jruby_9.2_elasticsearch_8.gemfile.lock | 2 +- ...ruby_9.2_elasticsearch_latest.gemfile.lock | 2 +- gemfiles/jruby_9.2_graphql_2.0.gemfile.lock | 2 +- gemfiles/jruby_9.2_http.gemfile.lock | 2 +- gemfiles/jruby_9.2_opensearch_2.gemfile.lock | 2 +- gemfiles/jruby_9.2_opensearch_3.gemfile.lock | 2 +- .../jruby_9.2_opensearch_latest.gemfile.lock | 2 +- gemfiles/jruby_9.2_rack_1.gemfile.lock | 2 +- gemfiles/jruby_9.2_rack_2.gemfile.lock | 2 +- gemfiles/jruby_9.2_rack_3.gemfile.lock | 2 +- gemfiles/jruby_9.2_rack_latest.gemfile.lock | 2 +- gemfiles/jruby_9.2_rails5_mysql2.gemfile.lock | 2 +- .../jruby_9.2_rails5_postgres.gemfile.lock | 2 +- ...uby_9.2_rails5_postgres_redis.gemfile.lock | 2 +- ..._postgres_redis_activesupport.gemfile.lock | 2 +- ...y_9.2_rails5_postgres_sidekiq.gemfile.lock | 2 +- ...by_9.2_rails5_semantic_logger.gemfile.lock | 2 +- .../jruby_9.2_rails61_mysql2.gemfile.lock | 2 +- .../jruby_9.2_rails61_postgres.gemfile.lock | 2 +- ...by_9.2_rails61_postgres_redis.gemfile.lock | 2 +- ..._9.2_rails61_postgres_sidekiq.gemfile.lock | 2 +- ...y_9.2_rails61_semantic_logger.gemfile.lock | 2 +- gemfiles/jruby_9.2_rails6_mysql2.gemfile.lock | 2 +- .../jruby_9.2_rails6_postgres.gemfile.lock | 2 +- ...uby_9.2_rails6_postgres_redis.gemfile.lock | 2 +- ..._postgres_redis_activesupport.gemfile.lock | 2 +- ...y_9.2_rails6_postgres_sidekiq.gemfile.lock | 2 +- ...by_9.2_rails6_semantic_logger.gemfile.lock | 2 +- gemfiles/jruby_9.2_redis_3.gemfile.lock | 2 +- gemfiles/jruby_9.2_redis_4.gemfile.lock | 2 +- gemfiles/jruby_9.2_redis_5.gemfile.lock | 2 +- gemfiles/jruby_9.2_relational_db.gemfile.lock | 2 +- .../jruby_9.2_resque2_redis3.gemfile.lock | 2 +- .../jruby_9.2_resque2_redis4.gemfile.lock | 2 +- gemfiles/jruby_9.2_sinatra_2.gemfile.lock | 2 +- gemfiles/jruby_9.2_stripe_10.gemfile.lock | 2 +- gemfiles/jruby_9.2_stripe_11.gemfile.lock | 2 +- gemfiles/jruby_9.2_stripe_12.gemfile.lock | 2 +- gemfiles/jruby_9.2_stripe_7.gemfile.lock | 2 +- gemfiles/jruby_9.2_stripe_8.gemfile.lock | 2 +- gemfiles/jruby_9.2_stripe_9.gemfile.lock | 2 +- gemfiles/jruby_9.2_stripe_latest.gemfile.lock | 2 +- gemfiles/jruby_9.2_stripe_min.gemfile.lock | 2 +- gemfiles/jruby_9.3_activesupport.gemfile.lock | 2 +- gemfiles/jruby_9.3_aws.gemfile.lock | 2 +- gemfiles/jruby_9.3_contrib.gemfile.lock | 2 +- gemfiles/jruby_9.3_contrib_old.gemfile.lock | 2 +- gemfiles/jruby_9.3_core_old.gemfile.lock | 2 +- .../jruby_9.3_elasticsearch_7.gemfile.lock | 2 +- .../jruby_9.3_elasticsearch_8.gemfile.lock | 2 +- ...ruby_9.3_elasticsearch_latest.gemfile.lock | 2 +- gemfiles/jruby_9.3_graphql_1.13.gemfile.lock | 2 +- gemfiles/jruby_9.3_graphql_2.0.gemfile.lock | 2 +- gemfiles/jruby_9.3_http.gemfile.lock | 2 +- gemfiles/jruby_9.3_opensearch_2.gemfile.lock | 2 +- gemfiles/jruby_9.3_opensearch_3.gemfile.lock | 2 +- .../jruby_9.3_opensearch_latest.gemfile.lock | 2 +- gemfiles/jruby_9.3_rack_1.gemfile.lock | 2 +- gemfiles/jruby_9.3_rack_2.gemfile.lock | 2 +- gemfiles/jruby_9.3_rack_3.gemfile.lock | 2 +- gemfiles/jruby_9.3_rack_latest.gemfile.lock | 2 +- gemfiles/jruby_9.3_rails5_mysql2.gemfile.lock | 2 +- .../jruby_9.3_rails5_postgres.gemfile.lock | 2 +- ...uby_9.3_rails5_postgres_redis.gemfile.lock | 2 +- ..._postgres_redis_activesupport.gemfile.lock | 2 +- ...y_9.3_rails5_postgres_sidekiq.gemfile.lock | 2 +- ...by_9.3_rails5_semantic_logger.gemfile.lock | 2 +- .../jruby_9.3_rails61_mysql2.gemfile.lock | 2 +- .../jruby_9.3_rails61_postgres.gemfile.lock | 2 +- ...by_9.3_rails61_postgres_redis.gemfile.lock | 2 +- ..._9.3_rails61_postgres_sidekiq.gemfile.lock | 2 +- ...y_9.3_rails61_semantic_logger.gemfile.lock | 2 +- gemfiles/jruby_9.3_rails6_mysql2.gemfile.lock | 2 +- .../jruby_9.3_rails6_postgres.gemfile.lock | 2 +- ...uby_9.3_rails6_postgres_redis.gemfile.lock | 2 +- ..._postgres_redis_activesupport.gemfile.lock | 2 +- ...y_9.3_rails6_postgres_sidekiq.gemfile.lock | 2 +- ...by_9.3_rails6_semantic_logger.gemfile.lock | 2 +- gemfiles/jruby_9.3_redis_3.gemfile.lock | 2 +- gemfiles/jruby_9.3_redis_4.gemfile.lock | 2 +- gemfiles/jruby_9.3_redis_5.gemfile.lock | 2 +- gemfiles/jruby_9.3_relational_db.gemfile.lock | 2 +- .../jruby_9.3_resque2_redis3.gemfile.lock | 2 +- .../jruby_9.3_resque2_redis4.gemfile.lock | 2 +- gemfiles/jruby_9.3_sinatra_2.gemfile.lock | 2 +- gemfiles/jruby_9.3_sinatra_3.gemfile.lock | 2 +- gemfiles/jruby_9.3_stripe_10.gemfile.lock | 2 +- gemfiles/jruby_9.3_stripe_11.gemfile.lock | 2 +- gemfiles/jruby_9.3_stripe_12.gemfile.lock | 2 +- gemfiles/jruby_9.3_stripe_7.gemfile.lock | 2 +- gemfiles/jruby_9.3_stripe_8.gemfile.lock | 2 +- gemfiles/jruby_9.3_stripe_9.gemfile.lock | 2 +- gemfiles/jruby_9.3_stripe_latest.gemfile.lock | 2 +- gemfiles/jruby_9.3_stripe_min.gemfile.lock | 2 +- gemfiles/jruby_9.4_activesupport.gemfile.lock | 2 +- gemfiles/jruby_9.4_aws.gemfile.lock | 2 +- gemfiles/jruby_9.4_contrib.gemfile.lock | 2 +- gemfiles/jruby_9.4_contrib_old.gemfile.lock | 2 +- gemfiles/jruby_9.4_core_old.gemfile.lock | 2 +- .../jruby_9.4_elasticsearch_7.gemfile.lock | 2 +- .../jruby_9.4_elasticsearch_8.gemfile.lock | 2 +- ...ruby_9.4_elasticsearch_latest.gemfile.lock | 2 +- gemfiles/jruby_9.4_graphql_1.13.gemfile.lock | 2 +- gemfiles/jruby_9.4_graphql_2.0.gemfile.lock | 2 +- gemfiles/jruby_9.4_graphql_2.1.gemfile.lock | 2 +- gemfiles/jruby_9.4_graphql_2.2.gemfile.lock | 2 +- gemfiles/jruby_9.4_graphql_2.3.gemfile.lock | 2 +- gemfiles/jruby_9.4_http.gemfile.lock | 2 +- gemfiles/jruby_9.4_opensearch_2.gemfile.lock | 2 +- gemfiles/jruby_9.4_opensearch_3.gemfile.lock | 2 +- .../jruby_9.4_opensearch_latest.gemfile.lock | 2 +- gemfiles/jruby_9.4_rack_1.gemfile.lock | 2 +- gemfiles/jruby_9.4_rack_2.gemfile.lock | 2 +- gemfiles/jruby_9.4_rack_3.gemfile.lock | 2 +- gemfiles/jruby_9.4_rack_latest.gemfile.lock | 2 +- .../jruby_9.4_rails61_mysql2.gemfile.lock | 2 +- .../jruby_9.4_rails61_postgres.gemfile.lock | 2 +- ...by_9.4_rails61_postgres_redis.gemfile.lock | 2 +- ..._9.4_rails61_postgres_sidekiq.gemfile.lock | 2 +- ...y_9.4_rails61_semantic_logger.gemfile.lock | 2 +- gemfiles/jruby_9.4_redis_3.gemfile.lock | 2 +- gemfiles/jruby_9.4_redis_4.gemfile.lock | 2 +- gemfiles/jruby_9.4_redis_5.gemfile.lock | 2 +- gemfiles/jruby_9.4_relational_db.gemfile.lock | 2 +- .../jruby_9.4_resque2_redis3.gemfile.lock | 2 +- .../jruby_9.4_resque2_redis4.gemfile.lock | 2 +- gemfiles/jruby_9.4_sinatra_2.gemfile.lock | 2 +- gemfiles/jruby_9.4_sinatra_3.gemfile.lock | 2 +- gemfiles/jruby_9.4_sinatra_4.gemfile.lock | 2 +- gemfiles/jruby_9.4_stripe_10.gemfile.lock | 2 +- gemfiles/jruby_9.4_stripe_11.gemfile.lock | 2 +- gemfiles/jruby_9.4_stripe_12.gemfile.lock | 2 +- gemfiles/jruby_9.4_stripe_7.gemfile.lock | 2 +- gemfiles/jruby_9.4_stripe_8.gemfile.lock | 2 +- gemfiles/jruby_9.4_stripe_9.gemfile.lock | 2 +- gemfiles/jruby_9.4_stripe_latest.gemfile.lock | 2 +- gemfiles/jruby_9.4_stripe_min.gemfile.lock | 2 +- gemfiles/ruby_2.5_activesupport.gemfile.lock | 2 +- gemfiles/ruby_2.5_aws.gemfile.lock | 2 +- gemfiles/ruby_2.5_contrib.gemfile.lock | 2 +- gemfiles/ruby_2.5_contrib_old.gemfile.lock | 2 +- gemfiles/ruby_2.5_core_old.gemfile.lock | 2 +- .../ruby_2.5_elasticsearch_7.gemfile.lock | 2 +- .../ruby_2.5_elasticsearch_8.gemfile.lock | 2 +- ...ruby_2.5_elasticsearch_latest.gemfile.lock | 2 +- gemfiles/ruby_2.5_graphql_2.0.gemfile.lock | 2 +- gemfiles/ruby_2.5_hanami_1.gemfile.lock | 2 +- gemfiles/ruby_2.5_http.gemfile.lock | 2 +- gemfiles/ruby_2.5_opensearch_2.gemfile.lock | 2 +- gemfiles/ruby_2.5_opensearch_3.gemfile.lock | 2 +- .../ruby_2.5_opensearch_latest.gemfile.lock | 2 +- gemfiles/ruby_2.5_rack_1.gemfile.lock | 2 +- gemfiles/ruby_2.5_rack_2.gemfile.lock | 2 +- gemfiles/ruby_2.5_rack_3.gemfile.lock | 2 +- gemfiles/ruby_2.5_rack_latest.gemfile.lock | 2 +- gemfiles/ruby_2.5_rails4_mysql2.gemfile.lock | 2 +- .../ruby_2.5_rails4_postgres.gemfile.lock | 2 +- ...uby_2.5_rails4_postgres_redis.gemfile.lock | 2 +- ...y_2.5_rails4_postgres_sidekiq.gemfile.lock | 2 +- ...by_2.5_rails4_semantic_logger.gemfile.lock | 2 +- gemfiles/ruby_2.5_rails5_mysql2.gemfile.lock | 2 +- .../ruby_2.5_rails5_postgres.gemfile.lock | 2 +- ...uby_2.5_rails5_postgres_redis.gemfile.lock | 2 +- ..._postgres_redis_activesupport.gemfile.lock | 2 +- ...y_2.5_rails5_postgres_sidekiq.gemfile.lock | 2 +- ...by_2.5_rails5_semantic_logger.gemfile.lock | 2 +- gemfiles/ruby_2.5_rails61_mysql2.gemfile.lock | 2 +- .../ruby_2.5_rails61_postgres.gemfile.lock | 2 +- ...by_2.5_rails61_postgres_redis.gemfile.lock | 2 +- ..._2.5_rails61_postgres_sidekiq.gemfile.lock | 2 +- ...y_2.5_rails61_semantic_logger.gemfile.lock | 2 +- gemfiles/ruby_2.5_rails6_mysql2.gemfile.lock | 2 +- .../ruby_2.5_rails6_postgres.gemfile.lock | 2 +- ...uby_2.5_rails6_postgres_redis.gemfile.lock | 2 +- ..._postgres_redis_activesupport.gemfile.lock | 2 +- ...y_2.5_rails6_postgres_sidekiq.gemfile.lock | 2 +- ...by_2.5_rails6_semantic_logger.gemfile.lock | 2 +- gemfiles/ruby_2.5_redis_3.gemfile.lock | 2 +- gemfiles/ruby_2.5_redis_4.gemfile.lock | 2 +- gemfiles/ruby_2.5_redis_5.gemfile.lock | 2 +- gemfiles/ruby_2.5_relational_db.gemfile.lock | 2 +- gemfiles/ruby_2.5_resque2_redis3.gemfile.lock | 2 +- gemfiles/ruby_2.5_resque2_redis4.gemfile.lock | 2 +- gemfiles/ruby_2.5_sinatra_2.gemfile.lock | 2 +- gemfiles/ruby_2.5_stripe_10.gemfile.lock | 2 +- gemfiles/ruby_2.5_stripe_11.gemfile.lock | 2 +- gemfiles/ruby_2.5_stripe_12.gemfile.lock | 2 +- gemfiles/ruby_2.5_stripe_7.gemfile.lock | 2 +- gemfiles/ruby_2.5_stripe_8.gemfile.lock | 2 +- gemfiles/ruby_2.5_stripe_9.gemfile.lock | 2 +- gemfiles/ruby_2.5_stripe_latest.gemfile.lock | 2 +- gemfiles/ruby_2.5_stripe_min.gemfile.lock | 2 +- gemfiles/ruby_2.6_activesupport.gemfile.lock | 2 +- gemfiles/ruby_2.6_aws.gemfile.lock | 2 +- gemfiles/ruby_2.6_contrib.gemfile.lock | 2 +- gemfiles/ruby_2.6_contrib_old.gemfile.lock | 2 +- gemfiles/ruby_2.6_core_old.gemfile.lock | 2 +- .../ruby_2.6_elasticsearch_7.gemfile.lock | 2 +- .../ruby_2.6_elasticsearch_8.gemfile.lock | 2 +- ...ruby_2.6_elasticsearch_latest.gemfile.lock | 2 +- gemfiles/ruby_2.6_graphql_1.13.gemfile.lock | 2 +- gemfiles/ruby_2.6_graphql_2.0.gemfile.lock | 2 +- gemfiles/ruby_2.6_hanami_1.gemfile.lock | 2 +- gemfiles/ruby_2.6_http.gemfile.lock | 2 +- gemfiles/ruby_2.6_opensearch_2.gemfile.lock | 2 +- gemfiles/ruby_2.6_opensearch_3.gemfile.lock | 2 +- .../ruby_2.6_opensearch_latest.gemfile.lock | 2 +- gemfiles/ruby_2.6_opentelemetry.gemfile.lock | 2 +- .../ruby_2.6_opentelemetry_otlp.gemfile.lock | 2 +- gemfiles/ruby_2.6_rack_1.gemfile.lock | 2 +- gemfiles/ruby_2.6_rack_2.gemfile.lock | 2 +- gemfiles/ruby_2.6_rack_3.gemfile.lock | 2 +- gemfiles/ruby_2.6_rack_latest.gemfile.lock | 2 +- gemfiles/ruby_2.6_rails5_mysql2.gemfile.lock | 2 +- .../ruby_2.6_rails5_postgres.gemfile.lock | 2 +- ...uby_2.6_rails5_postgres_redis.gemfile.lock | 2 +- ..._postgres_redis_activesupport.gemfile.lock | 2 +- ...y_2.6_rails5_postgres_sidekiq.gemfile.lock | 2 +- ...by_2.6_rails5_semantic_logger.gemfile.lock | 2 +- gemfiles/ruby_2.6_rails61_mysql2.gemfile.lock | 2 +- .../ruby_2.6_rails61_postgres.gemfile.lock | 2 +- ...by_2.6_rails61_postgres_redis.gemfile.lock | 2 +- ..._2.6_rails61_postgres_sidekiq.gemfile.lock | 2 +- ...y_2.6_rails61_semantic_logger.gemfile.lock | 2 +- gemfiles/ruby_2.6_rails6_mysql2.gemfile.lock | 2 +- .../ruby_2.6_rails6_postgres.gemfile.lock | 2 +- ...uby_2.6_rails6_postgres_redis.gemfile.lock | 2 +- ..._postgres_redis_activesupport.gemfile.lock | 2 +- ...y_2.6_rails6_postgres_sidekiq.gemfile.lock | 2 +- ...by_2.6_rails6_semantic_logger.gemfile.lock | 2 +- gemfiles/ruby_2.6_redis_3.gemfile.lock | 2 +- gemfiles/ruby_2.6_redis_4.gemfile.lock | 2 +- gemfiles/ruby_2.6_redis_5.gemfile.lock | 2 +- gemfiles/ruby_2.6_relational_db.gemfile.lock | 2 +- gemfiles/ruby_2.6_resque2_redis3.gemfile.lock | 2 +- gemfiles/ruby_2.6_resque2_redis4.gemfile.lock | 2 +- gemfiles/ruby_2.6_sinatra_2.gemfile.lock | 2 +- gemfiles/ruby_2.6_sinatra_3.gemfile.lock | 2 +- gemfiles/ruby_2.6_stripe_10.gemfile.lock | 2 +- gemfiles/ruby_2.6_stripe_11.gemfile.lock | 2 +- gemfiles/ruby_2.6_stripe_12.gemfile.lock | 2 +- gemfiles/ruby_2.6_stripe_7.gemfile.lock | 2 +- gemfiles/ruby_2.6_stripe_8.gemfile.lock | 2 +- gemfiles/ruby_2.6_stripe_9.gemfile.lock | 2 +- gemfiles/ruby_2.6_stripe_latest.gemfile.lock | 2 +- gemfiles/ruby_2.6_stripe_min.gemfile.lock | 2 +- gemfiles/ruby_2.7_activesupport.gemfile.lock | 2 +- gemfiles/ruby_2.7_aws.gemfile.lock | 2 +- gemfiles/ruby_2.7_contrib.gemfile.lock | 2 +- gemfiles/ruby_2.7_contrib_old.gemfile.lock | 2 +- gemfiles/ruby_2.7_core_old.gemfile.lock | 2 +- .../ruby_2.7_elasticsearch_7.gemfile.lock | 2 +- .../ruby_2.7_elasticsearch_8.gemfile.lock | 2 +- ...ruby_2.7_elasticsearch_latest.gemfile.lock | 2 +- gemfiles/ruby_2.7_graphql_1.13.gemfile.lock | 2 +- gemfiles/ruby_2.7_graphql_2.0.gemfile.lock | 2 +- gemfiles/ruby_2.7_graphql_2.1.gemfile.lock | 2 +- gemfiles/ruby_2.7_graphql_2.2.gemfile.lock | 2 +- gemfiles/ruby_2.7_graphql_2.3.gemfile.lock | 2 +- gemfiles/ruby_2.7_hanami_1.gemfile.lock | 2 +- gemfiles/ruby_2.7_http.gemfile.lock | 2 +- gemfiles/ruby_2.7_opensearch_2.gemfile.lock | 2 +- gemfiles/ruby_2.7_opensearch_3.gemfile.lock | 2 +- .../ruby_2.7_opensearch_latest.gemfile.lock | 2 +- gemfiles/ruby_2.7_opentelemetry.gemfile.lock | 2 +- .../ruby_2.7_opentelemetry_otlp.gemfile.lock | 2 +- gemfiles/ruby_2.7_rack_1.gemfile.lock | 2 +- gemfiles/ruby_2.7_rack_2.gemfile.lock | 2 +- gemfiles/ruby_2.7_rack_3.gemfile.lock | 2 +- gemfiles/ruby_2.7_rack_latest.gemfile.lock | 2 +- gemfiles/ruby_2.7_rails5_mysql2.gemfile.lock | 2 +- .../ruby_2.7_rails5_postgres.gemfile.lock | 2 +- ...uby_2.7_rails5_postgres_redis.gemfile.lock | 2 +- ..._postgres_redis_activesupport.gemfile.lock | 2 +- ...y_2.7_rails5_postgres_sidekiq.gemfile.lock | 2 +- ...by_2.7_rails5_semantic_logger.gemfile.lock | 2 +- gemfiles/ruby_2.7_rails61_mysql2.gemfile.lock | 2 +- .../ruby_2.7_rails61_postgres.gemfile.lock | 2 +- ...by_2.7_rails61_postgres_redis.gemfile.lock | 2 +- ..._2.7_rails61_postgres_sidekiq.gemfile.lock | 2 +- ...y_2.7_rails61_semantic_logger.gemfile.lock | 2 +- gemfiles/ruby_2.7_rails6_mysql2.gemfile.lock | 2 +- .../ruby_2.7_rails6_postgres.gemfile.lock | 2 +- ...uby_2.7_rails6_postgres_redis.gemfile.lock | 2 +- ..._postgres_redis_activesupport.gemfile.lock | 2 +- ...y_2.7_rails6_postgres_sidekiq.gemfile.lock | 2 +- ...by_2.7_rails6_semantic_logger.gemfile.lock | 2 +- gemfiles/ruby_2.7_redis_3.gemfile.lock | 2 +- gemfiles/ruby_2.7_redis_4.gemfile.lock | 2 +- gemfiles/ruby_2.7_redis_5.gemfile.lock | 2 +- gemfiles/ruby_2.7_relational_db.gemfile.lock | 2 +- gemfiles/ruby_2.7_resque2_redis3.gemfile.lock | 2 +- gemfiles/ruby_2.7_resque2_redis4.gemfile.lock | 2 +- gemfiles/ruby_2.7_sinatra_2.gemfile.lock | 2 +- gemfiles/ruby_2.7_sinatra_3.gemfile.lock | 2 +- gemfiles/ruby_2.7_stripe_10.gemfile.lock | 2 +- gemfiles/ruby_2.7_stripe_11.gemfile.lock | 2 +- gemfiles/ruby_2.7_stripe_12.gemfile.lock | 2 +- gemfiles/ruby_2.7_stripe_7.gemfile.lock | 2 +- gemfiles/ruby_2.7_stripe_8.gemfile.lock | 2 +- gemfiles/ruby_2.7_stripe_9.gemfile.lock | 2 +- gemfiles/ruby_2.7_stripe_latest.gemfile.lock | 2 +- gemfiles/ruby_2.7_stripe_min.gemfile.lock | 2 +- gemfiles/ruby_3.0_activesupport.gemfile.lock | 2 +- gemfiles/ruby_3.0_aws.gemfile.lock | 2 +- gemfiles/ruby_3.0_contrib.gemfile.lock | 2 +- gemfiles/ruby_3.0_contrib_old.gemfile.lock | 2 +- gemfiles/ruby_3.0_core_old.gemfile.lock | 2 +- .../ruby_3.0_elasticsearch_7.gemfile.lock | 2 +- .../ruby_3.0_elasticsearch_8.gemfile.lock | 2 +- ...ruby_3.0_elasticsearch_latest.gemfile.lock | 2 +- gemfiles/ruby_3.0_graphql_1.13.gemfile.lock | 2 +- gemfiles/ruby_3.0_graphql_2.0.gemfile.lock | 2 +- gemfiles/ruby_3.0_graphql_2.1.gemfile.lock | 2 +- gemfiles/ruby_3.0_graphql_2.2.gemfile.lock | 2 +- gemfiles/ruby_3.0_graphql_2.3.gemfile.lock | 2 +- gemfiles/ruby_3.0_http.gemfile.lock | 2 +- gemfiles/ruby_3.0_opensearch_2.gemfile.lock | 2 +- gemfiles/ruby_3.0_opensearch_3.gemfile.lock | 2 +- .../ruby_3.0_opensearch_latest.gemfile.lock | 2 +- gemfiles/ruby_3.0_opentelemetry.gemfile.lock | 2 +- .../ruby_3.0_opentelemetry_otlp.gemfile.lock | 2 +- gemfiles/ruby_3.0_rack_1.gemfile.lock | 2 +- gemfiles/ruby_3.0_rack_2.gemfile.lock | 2 +- gemfiles/ruby_3.0_rack_3.gemfile.lock | 2 +- gemfiles/ruby_3.0_rack_latest.gemfile.lock | 2 +- gemfiles/ruby_3.0_rails61_mysql2.gemfile.lock | 2 +- .../ruby_3.0_rails61_postgres.gemfile.lock | 2 +- ...by_3.0_rails61_postgres_redis.gemfile.lock | 2 +- ..._3.0_rails61_postgres_sidekiq.gemfile.lock | 2 +- ...y_3.0_rails61_semantic_logger.gemfile.lock | 2 +- .../ruby_3.0_rails61_trilogy.gemfile.lock | 2 +- gemfiles/ruby_3.0_rails7.gemfile.lock | 2 +- gemfiles/ruby_3.0_rails71.gemfile.lock | 2 +- gemfiles/ruby_3.0_redis_3.gemfile.lock | 2 +- gemfiles/ruby_3.0_redis_4.gemfile.lock | 2 +- gemfiles/ruby_3.0_redis_5.gemfile.lock | 2 +- gemfiles/ruby_3.0_relational_db.gemfile.lock | 2 +- gemfiles/ruby_3.0_resque2_redis3.gemfile.lock | 2 +- gemfiles/ruby_3.0_resque2_redis4.gemfile.lock | 2 +- gemfiles/ruby_3.0_sinatra_2.gemfile.lock | 2 +- gemfiles/ruby_3.0_sinatra_3.gemfile.lock | 2 +- gemfiles/ruby_3.0_sinatra_4.gemfile.lock | 2 +- gemfiles/ruby_3.0_stripe_10.gemfile.lock | 2 +- gemfiles/ruby_3.0_stripe_11.gemfile.lock | 2 +- gemfiles/ruby_3.0_stripe_12.gemfile.lock | 2 +- gemfiles/ruby_3.0_stripe_7.gemfile.lock | 2 +- gemfiles/ruby_3.0_stripe_8.gemfile.lock | 2 +- gemfiles/ruby_3.0_stripe_9.gemfile.lock | 2 +- gemfiles/ruby_3.0_stripe_latest.gemfile.lock | 2 +- gemfiles/ruby_3.0_stripe_min.gemfile.lock | 2 +- gemfiles/ruby_3.1_activesupport.gemfile.lock | 2 +- gemfiles/ruby_3.1_aws.gemfile.lock | 2 +- gemfiles/ruby_3.1_contrib.gemfile.lock | 2 +- gemfiles/ruby_3.1_contrib_old.gemfile.lock | 2 +- gemfiles/ruby_3.1_core_old.gemfile.lock | 2 +- .../ruby_3.1_elasticsearch_7.gemfile.lock | 2 +- .../ruby_3.1_elasticsearch_8.gemfile.lock | 2 +- ...ruby_3.1_elasticsearch_latest.gemfile.lock | 2 +- gemfiles/ruby_3.1_graphql_1.13.gemfile.lock | 2 +- gemfiles/ruby_3.1_graphql_2.0.gemfile.lock | 2 +- gemfiles/ruby_3.1_graphql_2.1.gemfile.lock | 2 +- gemfiles/ruby_3.1_graphql_2.2.gemfile.lock | 2 +- gemfiles/ruby_3.1_graphql_2.3.gemfile.lock | 2 +- gemfiles/ruby_3.1_http.gemfile.lock | 2 +- gemfiles/ruby_3.1_opensearch_2.gemfile.lock | 2 +- gemfiles/ruby_3.1_opensearch_3.gemfile.lock | 2 +- .../ruby_3.1_opensearch_latest.gemfile.lock | 2 +- gemfiles/ruby_3.1_opentelemetry.gemfile.lock | 2 +- .../ruby_3.1_opentelemetry_otlp.gemfile.lock | 2 +- gemfiles/ruby_3.1_rack_1.gemfile.lock | 2 +- gemfiles/ruby_3.1_rack_2.gemfile.lock | 2 +- gemfiles/ruby_3.1_rack_3.gemfile.lock | 2 +- gemfiles/ruby_3.1_rack_latest.gemfile.lock | 2 +- gemfiles/ruby_3.1_rails61_mysql2.gemfile.lock | 2 +- .../ruby_3.1_rails61_postgres.gemfile.lock | 2 +- ...by_3.1_rails61_postgres_redis.gemfile.lock | 2 +- ..._3.1_rails61_postgres_sidekiq.gemfile.lock | 2 +- ...y_3.1_rails61_semantic_logger.gemfile.lock | 2 +- .../ruby_3.1_rails61_trilogy.gemfile.lock | 2 +- gemfiles/ruby_3.1_rails7.gemfile.lock | 2 +- gemfiles/ruby_3.1_rails71.gemfile.lock | 2 +- gemfiles/ruby_3.1_redis_3.gemfile.lock | 2 +- gemfiles/ruby_3.1_redis_4.gemfile.lock | 2 +- gemfiles/ruby_3.1_redis_5.gemfile.lock | 2 +- gemfiles/ruby_3.1_relational_db.gemfile.lock | 2 +- gemfiles/ruby_3.1_resque2_redis3.gemfile.lock | 2 +- gemfiles/ruby_3.1_resque2_redis4.gemfile.lock | 2 +- gemfiles/ruby_3.1_sinatra_2.gemfile.lock | 2 +- gemfiles/ruby_3.1_sinatra_3.gemfile.lock | 2 +- gemfiles/ruby_3.1_sinatra_4.gemfile.lock | 2 +- gemfiles/ruby_3.1_stripe_10.gemfile.lock | 2 +- gemfiles/ruby_3.1_stripe_11.gemfile.lock | 2 +- gemfiles/ruby_3.1_stripe_12.gemfile.lock | 2 +- gemfiles/ruby_3.1_stripe_7.gemfile.lock | 2 +- gemfiles/ruby_3.1_stripe_8.gemfile.lock | 2 +- gemfiles/ruby_3.1_stripe_9.gemfile.lock | 2 +- gemfiles/ruby_3.1_stripe_latest.gemfile.lock | 2 +- gemfiles/ruby_3.1_stripe_min.gemfile.lock | 2 +- gemfiles/ruby_3.2_activesupport.gemfile.lock | 2 +- gemfiles/ruby_3.2_aws.gemfile.lock | 2 +- gemfiles/ruby_3.2_contrib.gemfile.lock | 2 +- gemfiles/ruby_3.2_contrib_old.gemfile.lock | 2 +- gemfiles/ruby_3.2_core_old.gemfile.lock | 2 +- .../ruby_3.2_elasticsearch_7.gemfile.lock | 2 +- .../ruby_3.2_elasticsearch_8.gemfile.lock | 2 +- ...ruby_3.2_elasticsearch_latest.gemfile.lock | 2 +- gemfiles/ruby_3.2_graphql_1.13.gemfile.lock | 2 +- gemfiles/ruby_3.2_graphql_2.0.gemfile.lock | 2 +- gemfiles/ruby_3.2_graphql_2.1.gemfile.lock | 2 +- gemfiles/ruby_3.2_graphql_2.2.gemfile.lock | 2 +- gemfiles/ruby_3.2_graphql_2.3.gemfile.lock | 2 +- gemfiles/ruby_3.2_http.gemfile.lock | 2 +- gemfiles/ruby_3.2_opensearch_2.gemfile.lock | 2 +- gemfiles/ruby_3.2_opensearch_3.gemfile.lock | 2 +- .../ruby_3.2_opensearch_latest.gemfile.lock | 2 +- gemfiles/ruby_3.2_opentelemetry.gemfile.lock | 2 +- .../ruby_3.2_opentelemetry_otlp.gemfile.lock | 2 +- gemfiles/ruby_3.2_rack_1.gemfile.lock | 2 +- gemfiles/ruby_3.2_rack_2.gemfile.lock | 2 +- gemfiles/ruby_3.2_rack_3.gemfile.lock | 2 +- gemfiles/ruby_3.2_rack_latest.gemfile.lock | 2 +- gemfiles/ruby_3.2_rails61_mysql2.gemfile.lock | 2 +- .../ruby_3.2_rails61_postgres.gemfile.lock | 2 +- ...by_3.2_rails61_postgres_redis.gemfile.lock | 2 +- ..._3.2_rails61_postgres_sidekiq.gemfile.lock | 2 +- ...y_3.2_rails61_semantic_logger.gemfile.lock | 2 +- .../ruby_3.2_rails61_trilogy.gemfile.lock | 2 +- gemfiles/ruby_3.2_rails7.gemfile.lock | 2 +- gemfiles/ruby_3.2_rails71.gemfile.lock | 2 +- gemfiles/ruby_3.2_redis_3.gemfile.lock | 2 +- gemfiles/ruby_3.2_redis_4.gemfile.lock | 2 +- gemfiles/ruby_3.2_redis_5.gemfile.lock | 2 +- gemfiles/ruby_3.2_relational_db.gemfile.lock | 2 +- gemfiles/ruby_3.2_resque2_redis3.gemfile.lock | 2 +- gemfiles/ruby_3.2_resque2_redis4.gemfile.lock | 2 +- gemfiles/ruby_3.2_sinatra_2.gemfile.lock | 2 +- gemfiles/ruby_3.2_sinatra_3.gemfile.lock | 2 +- gemfiles/ruby_3.2_sinatra_4.gemfile.lock | 2 +- gemfiles/ruby_3.2_stripe_10.gemfile.lock | 2 +- gemfiles/ruby_3.2_stripe_11.gemfile.lock | 2 +- gemfiles/ruby_3.2_stripe_12.gemfile.lock | 2 +- gemfiles/ruby_3.2_stripe_7.gemfile.lock | 2 +- gemfiles/ruby_3.2_stripe_8.gemfile.lock | 2 +- gemfiles/ruby_3.2_stripe_9.gemfile.lock | 2 +- gemfiles/ruby_3.2_stripe_latest.gemfile.lock | 2 +- gemfiles/ruby_3.2_stripe_min.gemfile.lock | 2 +- gemfiles/ruby_3.3_activesupport.gemfile.lock | 2 +- gemfiles/ruby_3.3_aws.gemfile.lock | 2 +- gemfiles/ruby_3.3_contrib.gemfile.lock | 2 +- gemfiles/ruby_3.3_contrib_old.gemfile.lock | 2 +- gemfiles/ruby_3.3_core_old.gemfile.lock | 2 +- .../ruby_3.3_elasticsearch_7.gemfile.lock | 2 +- .../ruby_3.3_elasticsearch_8.gemfile.lock | 2 +- ...ruby_3.3_elasticsearch_latest.gemfile.lock | 2 +- gemfiles/ruby_3.3_graphql_1.13.gemfile.lock | 2 +- gemfiles/ruby_3.3_graphql_2.0.gemfile.lock | 2 +- gemfiles/ruby_3.3_graphql_2.1.gemfile.lock | 2 +- gemfiles/ruby_3.3_graphql_2.2.gemfile.lock | 2 +- gemfiles/ruby_3.3_graphql_2.3.gemfile.lock | 2 +- gemfiles/ruby_3.3_http.gemfile.lock | 2 +- gemfiles/ruby_3.3_opensearch_2.gemfile.lock | 2 +- gemfiles/ruby_3.3_opensearch_3.gemfile.lock | 2 +- .../ruby_3.3_opensearch_latest.gemfile.lock | 2 +- gemfiles/ruby_3.3_opentelemetry.gemfile.lock | 2 +- .../ruby_3.3_opentelemetry_otlp.gemfile.lock | 2 +- gemfiles/ruby_3.3_rack_2.gemfile.lock | 2 +- gemfiles/ruby_3.3_rack_3.gemfile.lock | 2 +- gemfiles/ruby_3.3_rack_latest.gemfile.lock | 2 +- gemfiles/ruby_3.3_rails61_mysql2.gemfile.lock | 2 +- .../ruby_3.3_rails61_postgres.gemfile.lock | 2 +- ...by_3.3_rails61_postgres_redis.gemfile.lock | 2 +- ..._3.3_rails61_postgres_sidekiq.gemfile.lock | 2 +- ...y_3.3_rails61_semantic_logger.gemfile.lock | 2 +- .../ruby_3.3_rails61_trilogy.gemfile.lock | 2 +- gemfiles/ruby_3.3_rails7.gemfile.lock | 2 +- gemfiles/ruby_3.3_rails71.gemfile.lock | 2 +- gemfiles/ruby_3.3_redis_3.gemfile.lock | 2 +- gemfiles/ruby_3.3_redis_4.gemfile.lock | 2 +- gemfiles/ruby_3.3_redis_5.gemfile.lock | 2 +- gemfiles/ruby_3.3_relational_db.gemfile.lock | 2 +- gemfiles/ruby_3.3_resque2_redis3.gemfile.lock | 2 +- gemfiles/ruby_3.3_resque2_redis4.gemfile.lock | 2 +- gemfiles/ruby_3.3_sinatra_2.gemfile.lock | 2 +- gemfiles/ruby_3.3_sinatra_3.gemfile.lock | 2 +- gemfiles/ruby_3.3_sinatra_4.gemfile.lock | 2 +- gemfiles/ruby_3.3_stripe_10.gemfile.lock | 2 +- gemfiles/ruby_3.3_stripe_11.gemfile.lock | 2 +- gemfiles/ruby_3.3_stripe_12.gemfile.lock | 2 +- gemfiles/ruby_3.3_stripe_7.gemfile.lock | 2 +- gemfiles/ruby_3.3_stripe_8.gemfile.lock | 2 +- gemfiles/ruby_3.3_stripe_9.gemfile.lock | 2 +- gemfiles/ruby_3.3_stripe_latest.gemfile.lock | 2 +- gemfiles/ruby_3.3_stripe_min.gemfile.lock | 2 +- gemfiles/ruby_3.4_activesupport.gemfile.lock | 2 +- gemfiles/ruby_3.4_aws.gemfile.lock | 2 +- gemfiles/ruby_3.4_contrib.gemfile.lock | 2 +- gemfiles/ruby_3.4_contrib_old.gemfile.lock | 2 +- gemfiles/ruby_3.4_core_old.gemfile.lock | 2 +- .../ruby_3.4_elasticsearch_7.gemfile.lock | 2 +- .../ruby_3.4_elasticsearch_8.gemfile.lock | 2 +- ...ruby_3.4_elasticsearch_latest.gemfile.lock | 2 +- gemfiles/ruby_3.4_graphql_1.13.gemfile.lock | 2 +- gemfiles/ruby_3.4_graphql_2.0.gemfile.lock | 2 +- gemfiles/ruby_3.4_graphql_2.1.gemfile.lock | 2 +- gemfiles/ruby_3.4_graphql_2.2.gemfile.lock | 2 +- gemfiles/ruby_3.4_graphql_2.3.gemfile.lock | 2 +- gemfiles/ruby_3.4_http.gemfile.lock | 2 +- gemfiles/ruby_3.4_opensearch_2.gemfile.lock | 2 +- gemfiles/ruby_3.4_opensearch_3.gemfile.lock | 2 +- .../ruby_3.4_opensearch_latest.gemfile.lock | 2 +- gemfiles/ruby_3.4_opentelemetry.gemfile.lock | 2 +- .../ruby_3.4_opentelemetry_otlp.gemfile.lock | 2 +- gemfiles/ruby_3.4_rack_2.gemfile.lock | 2 +- gemfiles/ruby_3.4_rack_3.gemfile.lock | 2 +- gemfiles/ruby_3.4_rack_latest.gemfile.lock | 2 +- gemfiles/ruby_3.4_rails61_mysql2.gemfile.lock | 2 +- .../ruby_3.4_rails61_postgres.gemfile.lock | 2 +- ...by_3.4_rails61_postgres_redis.gemfile.lock | 2 +- ..._3.4_rails61_postgres_sidekiq.gemfile.lock | 2 +- ...y_3.4_rails61_semantic_logger.gemfile.lock | 2 +- .../ruby_3.4_rails61_trilogy.gemfile.lock | 2 +- gemfiles/ruby_3.4_rails7.gemfile.lock | 2 +- gemfiles/ruby_3.4_rails71.gemfile.lock | 2 +- gemfiles/ruby_3.4_redis_3.gemfile.lock | 2 +- gemfiles/ruby_3.4_redis_4.gemfile.lock | 2 +- gemfiles/ruby_3.4_redis_5.gemfile.lock | 2 +- gemfiles/ruby_3.4_relational_db.gemfile.lock | 2 +- gemfiles/ruby_3.4_resque2_redis3.gemfile.lock | 2 +- gemfiles/ruby_3.4_resque2_redis4.gemfile.lock | 2 +- gemfiles/ruby_3.4_sinatra_2.gemfile.lock | 2 +- gemfiles/ruby_3.4_sinatra_3.gemfile.lock | 2 +- gemfiles/ruby_3.4_sinatra_4.gemfile.lock | 2 +- gemfiles/ruby_3.4_stripe_10.gemfile.lock | 2 +- gemfiles/ruby_3.4_stripe_11.gemfile.lock | 2 +- gemfiles/ruby_3.4_stripe_12.gemfile.lock | 2 +- gemfiles/ruby_3.4_stripe_7.gemfile.lock | 2 +- gemfiles/ruby_3.4_stripe_8.gemfile.lock | 2 +- gemfiles/ruby_3.4_stripe_9.gemfile.lock | 2 +- gemfiles/ruby_3.4_stripe_latest.gemfile.lock | 2 +- gemfiles/ruby_3.4_stripe_min.gemfile.lock | 2 +- lib/datadog/version.rb | 2 +- 549 files changed, 584 insertions(+), 549 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 690ab1959b1..b51bdb23889 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,28 @@ ## [Unreleased] +## [2.9.0] - 2025-01-15 + +### Added + +* Core: add support for Ruby 3.4 ([#4249][]) +* Integrations: add a new option for `ActiveSupport` to disable adding the `cache_key` as a Span Tag with the `cache_key_enabled` option ([#4022][]) + +### Changed + +* Dynamic instrumentation: move DI preloading to `datadog/di/preload` ([#4288][]) +* Dynamic instrumentation: dd-trace-rb now reports whether dynamic instrumentation is enabled in startup summary report ([#4285][]) +* Dynamic instrumentation: improve loading of DI components ([#4272][], [#4239][]) +* Dynamic instrumentation: logging of internal conditions is now done on debug level ([#4266][]) +* Dynamic instrumentation: report instrumentation error for line probes when the target file is loaded but not in code tracker registry ([#4208][]) +* Profiling: require datadog-ruby_core_source >= 3.3.7 to ensure Ruby 3.4 support ([#4228][]) + +### Fixed + +* Core: fix a crash in crashtracker when agent hostname is an IPv6 address ([#4237][]) +* Profiling: fix allocation profiling + otel tracing causing Ruby crash ([#4240][]) +* Profiling: fix profiling warnings being really hard to silence ([#4232][]) + ## [2.8.0] - 2024-12-10 ### Added @@ -3057,7 +3079,8 @@ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.3.1 Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.3.0...v0.3.1 -[Unreleased]: https://github.com/DataDog/dd-trace-rb/compare/v2.8.0...master +[Unreleased]: https://github.com/DataDog/dd-trace-rb/compare/v2.9.0...master +[2.9.0]: https://github.com/DataDog/dd-trace-rb/compare/v2.8.0...v2.9.0 [2.8.0]: https://github.com/DataDog/dd-trace-rb/compare/v2.7.1...v2.8.0 [2.7.0]: https://github.com/DataDog/dd-trace-rb/compare/v2.6.0...v2.7.0 [2.6.0]: https://github.com/DataDog/dd-trace-rb/compare/v2.5.0...v2.6.0 @@ -4499,6 +4522,7 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.3.0...v0.3.1 [#3997]: https://github.com/DataDog/dd-trace-rb/issues/3997 [#4014]: https://github.com/DataDog/dd-trace-rb/issues/4014 [#4020]: https://github.com/DataDog/dd-trace-rb/issues/4020 +[#4022]: https://github.com/DataDog/dd-trace-rb/issues/4022 [#4024]: https://github.com/DataDog/dd-trace-rb/issues/4024 [#4027]: https://github.com/DataDog/dd-trace-rb/issues/4027 [#4033]: https://github.com/DataDog/dd-trace-rb/issues/4033 @@ -4519,6 +4543,17 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.3.0...v0.3.1 [#4195]: https://github.com/DataDog/dd-trace-rb/issues/4195 [#4196]: https://github.com/DataDog/dd-trace-rb/issues/4196 [#4197]: https://github.com/DataDog/dd-trace-rb/issues/4197 +[#4208]: https://github.com/DataDog/dd-trace-rb/issues/4208 +[#4228]: https://github.com/DataDog/dd-trace-rb/issues/4228 +[#4232]: https://github.com/DataDog/dd-trace-rb/issues/4232 +[#4237]: https://github.com/DataDog/dd-trace-rb/issues/4237 +[#4239]: https://github.com/DataDog/dd-trace-rb/issues/4239 +[#4240]: https://github.com/DataDog/dd-trace-rb/issues/4240 +[#4249]: https://github.com/DataDog/dd-trace-rb/issues/4249 +[#4266]: https://github.com/DataDog/dd-trace-rb/issues/4266 +[#4272]: https://github.com/DataDog/dd-trace-rb/issues/4272 +[#4285]: https://github.com/DataDog/dd-trace-rb/issues/4285 +[#4288]: https://github.com/DataDog/dd-trace-rb/issues/4288 [@AdrianLC]: https://github.com/AdrianLC [@Azure7111]: https://github.com/Azure7111 [@BabyGroot]: https://github.com/BabyGroot diff --git a/gemfiles/jruby_9.2_activesupport.gemfile.lock b/gemfiles/jruby_9.2_activesupport.gemfile.lock index 46cdb836d64..e2748ae5a42 100644 --- a/gemfiles/jruby_9.2_activesupport.gemfile.lock +++ b/gemfiles/jruby_9.2_activesupport.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.2_aws.gemfile.lock b/gemfiles/jruby_9.2_aws.gemfile.lock index f3e69bd5824..f5b84d1c80e 100644 --- a/gemfiles/jruby_9.2_aws.gemfile.lock +++ b/gemfiles/jruby_9.2_aws.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.2_contrib.gemfile.lock b/gemfiles/jruby_9.2_contrib.gemfile.lock index 7fd9d5fdfd4..2f391f2fd84 100644 --- a/gemfiles/jruby_9.2_contrib.gemfile.lock +++ b/gemfiles/jruby_9.2_contrib.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.2_contrib_old.gemfile.lock b/gemfiles/jruby_9.2_contrib_old.gemfile.lock index 2a6b4da1105..9370a861d94 100644 --- a/gemfiles/jruby_9.2_contrib_old.gemfile.lock +++ b/gemfiles/jruby_9.2_contrib_old.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.2_core_old.gemfile.lock b/gemfiles/jruby_9.2_core_old.gemfile.lock index bca75bdaa36..c9cd93bdc97 100644 --- a/gemfiles/jruby_9.2_core_old.gemfile.lock +++ b/gemfiles/jruby_9.2_core_old.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.2_elasticsearch_7.gemfile.lock b/gemfiles/jruby_9.2_elasticsearch_7.gemfile.lock index faf88a72ac2..91e15e5918c 100644 --- a/gemfiles/jruby_9.2_elasticsearch_7.gemfile.lock +++ b/gemfiles/jruby_9.2_elasticsearch_7.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.2_elasticsearch_8.gemfile.lock b/gemfiles/jruby_9.2_elasticsearch_8.gemfile.lock index 634e50ced6c..762d0f3882f 100644 --- a/gemfiles/jruby_9.2_elasticsearch_8.gemfile.lock +++ b/gemfiles/jruby_9.2_elasticsearch_8.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.2_elasticsearch_latest.gemfile.lock b/gemfiles/jruby_9.2_elasticsearch_latest.gemfile.lock index ece50752ba0..4dede4cffb6 100644 --- a/gemfiles/jruby_9.2_elasticsearch_latest.gemfile.lock +++ b/gemfiles/jruby_9.2_elasticsearch_latest.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.2_graphql_2.0.gemfile.lock b/gemfiles/jruby_9.2_graphql_2.0.gemfile.lock index aec2fd370c2..78bc2b4596e 100644 --- a/gemfiles/jruby_9.2_graphql_2.0.gemfile.lock +++ b/gemfiles/jruby_9.2_graphql_2.0.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.2_http.gemfile.lock b/gemfiles/jruby_9.2_http.gemfile.lock index d4e688c6968..e5728f93533 100644 --- a/gemfiles/jruby_9.2_http.gemfile.lock +++ b/gemfiles/jruby_9.2_http.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.2_opensearch_2.gemfile.lock b/gemfiles/jruby_9.2_opensearch_2.gemfile.lock index 4cad48398bb..fbb80afd730 100644 --- a/gemfiles/jruby_9.2_opensearch_2.gemfile.lock +++ b/gemfiles/jruby_9.2_opensearch_2.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.2_opensearch_3.gemfile.lock b/gemfiles/jruby_9.2_opensearch_3.gemfile.lock index b438113e4c4..8d415eca507 100644 --- a/gemfiles/jruby_9.2_opensearch_3.gemfile.lock +++ b/gemfiles/jruby_9.2_opensearch_3.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.2_opensearch_latest.gemfile.lock b/gemfiles/jruby_9.2_opensearch_latest.gemfile.lock index a43b2abf80e..3202f3cc370 100644 --- a/gemfiles/jruby_9.2_opensearch_latest.gemfile.lock +++ b/gemfiles/jruby_9.2_opensearch_latest.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.2_rack_1.gemfile.lock b/gemfiles/jruby_9.2_rack_1.gemfile.lock index 7448ff8833d..575e90763d1 100644 --- a/gemfiles/jruby_9.2_rack_1.gemfile.lock +++ b/gemfiles/jruby_9.2_rack_1.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.2_rack_2.gemfile.lock b/gemfiles/jruby_9.2_rack_2.gemfile.lock index abf73e686dd..c19eb74088a 100644 --- a/gemfiles/jruby_9.2_rack_2.gemfile.lock +++ b/gemfiles/jruby_9.2_rack_2.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.2_rack_3.gemfile.lock b/gemfiles/jruby_9.2_rack_3.gemfile.lock index 777e8219fdd..9e316436087 100644 --- a/gemfiles/jruby_9.2_rack_3.gemfile.lock +++ b/gemfiles/jruby_9.2_rack_3.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.2_rack_latest.gemfile.lock b/gemfiles/jruby_9.2_rack_latest.gemfile.lock index 2ef5a29eb67..40e86621624 100644 --- a/gemfiles/jruby_9.2_rack_latest.gemfile.lock +++ b/gemfiles/jruby_9.2_rack_latest.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.2_rails5_mysql2.gemfile.lock b/gemfiles/jruby_9.2_rails5_mysql2.gemfile.lock index 38b42c0ac13..55e53d6c2d3 100644 --- a/gemfiles/jruby_9.2_rails5_mysql2.gemfile.lock +++ b/gemfiles/jruby_9.2_rails5_mysql2.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.2_rails5_postgres.gemfile.lock b/gemfiles/jruby_9.2_rails5_postgres.gemfile.lock index 93235e1f242..9b844ca8add 100644 --- a/gemfiles/jruby_9.2_rails5_postgres.gemfile.lock +++ b/gemfiles/jruby_9.2_rails5_postgres.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.2_rails5_postgres_redis.gemfile.lock b/gemfiles/jruby_9.2_rails5_postgres_redis.gemfile.lock index a36c717c8c0..151720070eb 100644 --- a/gemfiles/jruby_9.2_rails5_postgres_redis.gemfile.lock +++ b/gemfiles/jruby_9.2_rails5_postgres_redis.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.2_rails5_postgres_redis_activesupport.gemfile.lock b/gemfiles/jruby_9.2_rails5_postgres_redis_activesupport.gemfile.lock index fa5b23b5451..3b112cb5889 100644 --- a/gemfiles/jruby_9.2_rails5_postgres_redis_activesupport.gemfile.lock +++ b/gemfiles/jruby_9.2_rails5_postgres_redis_activesupport.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.2_rails5_postgres_sidekiq.gemfile.lock b/gemfiles/jruby_9.2_rails5_postgres_sidekiq.gemfile.lock index e55a8dfbb7b..ce06f39bc83 100644 --- a/gemfiles/jruby_9.2_rails5_postgres_sidekiq.gemfile.lock +++ b/gemfiles/jruby_9.2_rails5_postgres_sidekiq.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.2_rails5_semantic_logger.gemfile.lock b/gemfiles/jruby_9.2_rails5_semantic_logger.gemfile.lock index b445ab1e6ff..e36b0d0edf9 100644 --- a/gemfiles/jruby_9.2_rails5_semantic_logger.gemfile.lock +++ b/gemfiles/jruby_9.2_rails5_semantic_logger.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.2_rails61_mysql2.gemfile.lock b/gemfiles/jruby_9.2_rails61_mysql2.gemfile.lock index e8ff94a20df..1a27e86c865 100644 --- a/gemfiles/jruby_9.2_rails61_mysql2.gemfile.lock +++ b/gemfiles/jruby_9.2_rails61_mysql2.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.2_rails61_postgres.gemfile.lock b/gemfiles/jruby_9.2_rails61_postgres.gemfile.lock index 65e850ce150..841c863328f 100644 --- a/gemfiles/jruby_9.2_rails61_postgres.gemfile.lock +++ b/gemfiles/jruby_9.2_rails61_postgres.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.2_rails61_postgres_redis.gemfile.lock b/gemfiles/jruby_9.2_rails61_postgres_redis.gemfile.lock index b0d6bd46142..c7fb8165475 100644 --- a/gemfiles/jruby_9.2_rails61_postgres_redis.gemfile.lock +++ b/gemfiles/jruby_9.2_rails61_postgres_redis.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.2_rails61_postgres_sidekiq.gemfile.lock b/gemfiles/jruby_9.2_rails61_postgres_sidekiq.gemfile.lock index e93b098ef1d..f26ad124518 100644 --- a/gemfiles/jruby_9.2_rails61_postgres_sidekiq.gemfile.lock +++ b/gemfiles/jruby_9.2_rails61_postgres_sidekiq.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.2_rails61_semantic_logger.gemfile.lock b/gemfiles/jruby_9.2_rails61_semantic_logger.gemfile.lock index 14cd044288a..9b492ba5b3a 100644 --- a/gemfiles/jruby_9.2_rails61_semantic_logger.gemfile.lock +++ b/gemfiles/jruby_9.2_rails61_semantic_logger.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.2_rails6_mysql2.gemfile.lock b/gemfiles/jruby_9.2_rails6_mysql2.gemfile.lock index 663b3563800..87f9da2a03d 100644 --- a/gemfiles/jruby_9.2_rails6_mysql2.gemfile.lock +++ b/gemfiles/jruby_9.2_rails6_mysql2.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.2_rails6_postgres.gemfile.lock b/gemfiles/jruby_9.2_rails6_postgres.gemfile.lock index 0f2e05c7b90..1386beaddb4 100644 --- a/gemfiles/jruby_9.2_rails6_postgres.gemfile.lock +++ b/gemfiles/jruby_9.2_rails6_postgres.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.2_rails6_postgres_redis.gemfile.lock b/gemfiles/jruby_9.2_rails6_postgres_redis.gemfile.lock index 692fb17252b..b2285030065 100644 --- a/gemfiles/jruby_9.2_rails6_postgres_redis.gemfile.lock +++ b/gemfiles/jruby_9.2_rails6_postgres_redis.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.2_rails6_postgres_redis_activesupport.gemfile.lock b/gemfiles/jruby_9.2_rails6_postgres_redis_activesupport.gemfile.lock index b63ae59fe50..19f96ceb472 100644 --- a/gemfiles/jruby_9.2_rails6_postgres_redis_activesupport.gemfile.lock +++ b/gemfiles/jruby_9.2_rails6_postgres_redis_activesupport.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.2_rails6_postgres_sidekiq.gemfile.lock b/gemfiles/jruby_9.2_rails6_postgres_sidekiq.gemfile.lock index fed02b34d2a..8b1026ebbdc 100644 --- a/gemfiles/jruby_9.2_rails6_postgres_sidekiq.gemfile.lock +++ b/gemfiles/jruby_9.2_rails6_postgres_sidekiq.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.2_rails6_semantic_logger.gemfile.lock b/gemfiles/jruby_9.2_rails6_semantic_logger.gemfile.lock index becc4c9e68d..2cd7d10cfac 100644 --- a/gemfiles/jruby_9.2_rails6_semantic_logger.gemfile.lock +++ b/gemfiles/jruby_9.2_rails6_semantic_logger.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.2_redis_3.gemfile.lock b/gemfiles/jruby_9.2_redis_3.gemfile.lock index d359a21cea7..07bbed8ab28 100644 --- a/gemfiles/jruby_9.2_redis_3.gemfile.lock +++ b/gemfiles/jruby_9.2_redis_3.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.2_redis_4.gemfile.lock b/gemfiles/jruby_9.2_redis_4.gemfile.lock index 5a541cd9feb..6aeda46da27 100644 --- a/gemfiles/jruby_9.2_redis_4.gemfile.lock +++ b/gemfiles/jruby_9.2_redis_4.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.2_redis_5.gemfile.lock b/gemfiles/jruby_9.2_redis_5.gemfile.lock index a48ef1c2be8..40135e447d2 100644 --- a/gemfiles/jruby_9.2_redis_5.gemfile.lock +++ b/gemfiles/jruby_9.2_redis_5.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.2_relational_db.gemfile.lock b/gemfiles/jruby_9.2_relational_db.gemfile.lock index a775082a6df..67196757b9a 100644 --- a/gemfiles/jruby_9.2_relational_db.gemfile.lock +++ b/gemfiles/jruby_9.2_relational_db.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.2_resque2_redis3.gemfile.lock b/gemfiles/jruby_9.2_resque2_redis3.gemfile.lock index 10212001ef6..b0bf23b488b 100644 --- a/gemfiles/jruby_9.2_resque2_redis3.gemfile.lock +++ b/gemfiles/jruby_9.2_resque2_redis3.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.2_resque2_redis4.gemfile.lock b/gemfiles/jruby_9.2_resque2_redis4.gemfile.lock index 1db79c60dbd..39b76879d89 100644 --- a/gemfiles/jruby_9.2_resque2_redis4.gemfile.lock +++ b/gemfiles/jruby_9.2_resque2_redis4.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.2_sinatra_2.gemfile.lock b/gemfiles/jruby_9.2_sinatra_2.gemfile.lock index f4e5271e6f2..a82aa589282 100644 --- a/gemfiles/jruby_9.2_sinatra_2.gemfile.lock +++ b/gemfiles/jruby_9.2_sinatra_2.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.2_stripe_10.gemfile.lock b/gemfiles/jruby_9.2_stripe_10.gemfile.lock index 7fed1d0fa36..80e67dbd8a7 100644 --- a/gemfiles/jruby_9.2_stripe_10.gemfile.lock +++ b/gemfiles/jruby_9.2_stripe_10.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.2_stripe_11.gemfile.lock b/gemfiles/jruby_9.2_stripe_11.gemfile.lock index 85a5391ca18..08fcad58098 100644 --- a/gemfiles/jruby_9.2_stripe_11.gemfile.lock +++ b/gemfiles/jruby_9.2_stripe_11.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.2_stripe_12.gemfile.lock b/gemfiles/jruby_9.2_stripe_12.gemfile.lock index 931eaed0f65..95f8c3bac72 100644 --- a/gemfiles/jruby_9.2_stripe_12.gemfile.lock +++ b/gemfiles/jruby_9.2_stripe_12.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.2_stripe_7.gemfile.lock b/gemfiles/jruby_9.2_stripe_7.gemfile.lock index 020dcb22eb7..eff3d95271b 100644 --- a/gemfiles/jruby_9.2_stripe_7.gemfile.lock +++ b/gemfiles/jruby_9.2_stripe_7.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.2_stripe_8.gemfile.lock b/gemfiles/jruby_9.2_stripe_8.gemfile.lock index 3b771470bd7..ccfeadbecd4 100644 --- a/gemfiles/jruby_9.2_stripe_8.gemfile.lock +++ b/gemfiles/jruby_9.2_stripe_8.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.2_stripe_9.gemfile.lock b/gemfiles/jruby_9.2_stripe_9.gemfile.lock index e3dc7a68cdc..ab7c0e2ef50 100644 --- a/gemfiles/jruby_9.2_stripe_9.gemfile.lock +++ b/gemfiles/jruby_9.2_stripe_9.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.2_stripe_latest.gemfile.lock b/gemfiles/jruby_9.2_stripe_latest.gemfile.lock index 07dcee067af..b7bf0643bf5 100644 --- a/gemfiles/jruby_9.2_stripe_latest.gemfile.lock +++ b/gemfiles/jruby_9.2_stripe_latest.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.2_stripe_min.gemfile.lock b/gemfiles/jruby_9.2_stripe_min.gemfile.lock index 2001a7f4b51..54d456f5693 100644 --- a/gemfiles/jruby_9.2_stripe_min.gemfile.lock +++ b/gemfiles/jruby_9.2_stripe_min.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.3_activesupport.gemfile.lock b/gemfiles/jruby_9.3_activesupport.gemfile.lock index 957203857ba..ed2731eca07 100644 --- a/gemfiles/jruby_9.3_activesupport.gemfile.lock +++ b/gemfiles/jruby_9.3_activesupport.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.3_aws.gemfile.lock b/gemfiles/jruby_9.3_aws.gemfile.lock index 02f39ea3704..3035e236ca8 100644 --- a/gemfiles/jruby_9.3_aws.gemfile.lock +++ b/gemfiles/jruby_9.3_aws.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.3_contrib.gemfile.lock b/gemfiles/jruby_9.3_contrib.gemfile.lock index 0012cb70184..c2d715a7d37 100644 --- a/gemfiles/jruby_9.3_contrib.gemfile.lock +++ b/gemfiles/jruby_9.3_contrib.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.3_contrib_old.gemfile.lock b/gemfiles/jruby_9.3_contrib_old.gemfile.lock index b90c81dacab..c887ae6d5ea 100644 --- a/gemfiles/jruby_9.3_contrib_old.gemfile.lock +++ b/gemfiles/jruby_9.3_contrib_old.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.3_core_old.gemfile.lock b/gemfiles/jruby_9.3_core_old.gemfile.lock index ef4da6ad91a..713c3583432 100644 --- a/gemfiles/jruby_9.3_core_old.gemfile.lock +++ b/gemfiles/jruby_9.3_core_old.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.3_elasticsearch_7.gemfile.lock b/gemfiles/jruby_9.3_elasticsearch_7.gemfile.lock index 43feb56f009..04759cf8f15 100644 --- a/gemfiles/jruby_9.3_elasticsearch_7.gemfile.lock +++ b/gemfiles/jruby_9.3_elasticsearch_7.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.3_elasticsearch_8.gemfile.lock b/gemfiles/jruby_9.3_elasticsearch_8.gemfile.lock index d3480fdb7ec..33d80471c00 100644 --- a/gemfiles/jruby_9.3_elasticsearch_8.gemfile.lock +++ b/gemfiles/jruby_9.3_elasticsearch_8.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.3_elasticsearch_latest.gemfile.lock b/gemfiles/jruby_9.3_elasticsearch_latest.gemfile.lock index 2297e116830..a536586bda8 100644 --- a/gemfiles/jruby_9.3_elasticsearch_latest.gemfile.lock +++ b/gemfiles/jruby_9.3_elasticsearch_latest.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.3_graphql_1.13.gemfile.lock b/gemfiles/jruby_9.3_graphql_1.13.gemfile.lock index da1a7dc0cae..dbef2ab78db 100644 --- a/gemfiles/jruby_9.3_graphql_1.13.gemfile.lock +++ b/gemfiles/jruby_9.3_graphql_1.13.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.3_graphql_2.0.gemfile.lock b/gemfiles/jruby_9.3_graphql_2.0.gemfile.lock index 7fa7aff9daf..c288bb3cb7e 100644 --- a/gemfiles/jruby_9.3_graphql_2.0.gemfile.lock +++ b/gemfiles/jruby_9.3_graphql_2.0.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.3_http.gemfile.lock b/gemfiles/jruby_9.3_http.gemfile.lock index c35fec5596a..9cc43be06c6 100644 --- a/gemfiles/jruby_9.3_http.gemfile.lock +++ b/gemfiles/jruby_9.3_http.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.3_opensearch_2.gemfile.lock b/gemfiles/jruby_9.3_opensearch_2.gemfile.lock index 7e8f8c7cd38..5e709238fa1 100644 --- a/gemfiles/jruby_9.3_opensearch_2.gemfile.lock +++ b/gemfiles/jruby_9.3_opensearch_2.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.3_opensearch_3.gemfile.lock b/gemfiles/jruby_9.3_opensearch_3.gemfile.lock index 2150985660e..9572f7f5de6 100644 --- a/gemfiles/jruby_9.3_opensearch_3.gemfile.lock +++ b/gemfiles/jruby_9.3_opensearch_3.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.3_opensearch_latest.gemfile.lock b/gemfiles/jruby_9.3_opensearch_latest.gemfile.lock index fd3d167a99c..15ac6d80cfe 100644 --- a/gemfiles/jruby_9.3_opensearch_latest.gemfile.lock +++ b/gemfiles/jruby_9.3_opensearch_latest.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.3_rack_1.gemfile.lock b/gemfiles/jruby_9.3_rack_1.gemfile.lock index 83147bd88e7..6236048c0aa 100644 --- a/gemfiles/jruby_9.3_rack_1.gemfile.lock +++ b/gemfiles/jruby_9.3_rack_1.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.3_rack_2.gemfile.lock b/gemfiles/jruby_9.3_rack_2.gemfile.lock index fef05d3c922..558adfeaa24 100644 --- a/gemfiles/jruby_9.3_rack_2.gemfile.lock +++ b/gemfiles/jruby_9.3_rack_2.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.3_rack_3.gemfile.lock b/gemfiles/jruby_9.3_rack_3.gemfile.lock index 84475665cef..4e834e0c337 100644 --- a/gemfiles/jruby_9.3_rack_3.gemfile.lock +++ b/gemfiles/jruby_9.3_rack_3.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.3_rack_latest.gemfile.lock b/gemfiles/jruby_9.3_rack_latest.gemfile.lock index dee520713c9..44dddb771d0 100644 --- a/gemfiles/jruby_9.3_rack_latest.gemfile.lock +++ b/gemfiles/jruby_9.3_rack_latest.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.3_rails5_mysql2.gemfile.lock b/gemfiles/jruby_9.3_rails5_mysql2.gemfile.lock index 489facfc0ce..615bc4d0cf4 100644 --- a/gemfiles/jruby_9.3_rails5_mysql2.gemfile.lock +++ b/gemfiles/jruby_9.3_rails5_mysql2.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.3_rails5_postgres.gemfile.lock b/gemfiles/jruby_9.3_rails5_postgres.gemfile.lock index 2a2ac015277..72981fa3f9f 100644 --- a/gemfiles/jruby_9.3_rails5_postgres.gemfile.lock +++ b/gemfiles/jruby_9.3_rails5_postgres.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.3_rails5_postgres_redis.gemfile.lock b/gemfiles/jruby_9.3_rails5_postgres_redis.gemfile.lock index bba0fcc2b16..9f9a9d1d3e9 100644 --- a/gemfiles/jruby_9.3_rails5_postgres_redis.gemfile.lock +++ b/gemfiles/jruby_9.3_rails5_postgres_redis.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.3_rails5_postgres_redis_activesupport.gemfile.lock b/gemfiles/jruby_9.3_rails5_postgres_redis_activesupport.gemfile.lock index fa30762d265..a7e405cd318 100644 --- a/gemfiles/jruby_9.3_rails5_postgres_redis_activesupport.gemfile.lock +++ b/gemfiles/jruby_9.3_rails5_postgres_redis_activesupport.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.3_rails5_postgres_sidekiq.gemfile.lock b/gemfiles/jruby_9.3_rails5_postgres_sidekiq.gemfile.lock index ef611f4ff90..c8e2cbee78d 100644 --- a/gemfiles/jruby_9.3_rails5_postgres_sidekiq.gemfile.lock +++ b/gemfiles/jruby_9.3_rails5_postgres_sidekiq.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.3_rails5_semantic_logger.gemfile.lock b/gemfiles/jruby_9.3_rails5_semantic_logger.gemfile.lock index e83d543ad98..3bae7d902ff 100644 --- a/gemfiles/jruby_9.3_rails5_semantic_logger.gemfile.lock +++ b/gemfiles/jruby_9.3_rails5_semantic_logger.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.3_rails61_mysql2.gemfile.lock b/gemfiles/jruby_9.3_rails61_mysql2.gemfile.lock index 3fab8e55bfa..7331ecd504c 100644 --- a/gemfiles/jruby_9.3_rails61_mysql2.gemfile.lock +++ b/gemfiles/jruby_9.3_rails61_mysql2.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.3_rails61_postgres.gemfile.lock b/gemfiles/jruby_9.3_rails61_postgres.gemfile.lock index 97f5e589dfd..1e1b4caf75c 100644 --- a/gemfiles/jruby_9.3_rails61_postgres.gemfile.lock +++ b/gemfiles/jruby_9.3_rails61_postgres.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.3_rails61_postgres_redis.gemfile.lock b/gemfiles/jruby_9.3_rails61_postgres_redis.gemfile.lock index 1efd08f5427..e051bc82b29 100644 --- a/gemfiles/jruby_9.3_rails61_postgres_redis.gemfile.lock +++ b/gemfiles/jruby_9.3_rails61_postgres_redis.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.3_rails61_postgres_sidekiq.gemfile.lock b/gemfiles/jruby_9.3_rails61_postgres_sidekiq.gemfile.lock index 8551cc18352..19f2ec44528 100644 --- a/gemfiles/jruby_9.3_rails61_postgres_sidekiq.gemfile.lock +++ b/gemfiles/jruby_9.3_rails61_postgres_sidekiq.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.3_rails61_semantic_logger.gemfile.lock b/gemfiles/jruby_9.3_rails61_semantic_logger.gemfile.lock index f70be77c5cb..24ff0f54e97 100644 --- a/gemfiles/jruby_9.3_rails61_semantic_logger.gemfile.lock +++ b/gemfiles/jruby_9.3_rails61_semantic_logger.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.3_rails6_mysql2.gemfile.lock b/gemfiles/jruby_9.3_rails6_mysql2.gemfile.lock index 0a48c23753f..c109f4f2cd3 100644 --- a/gemfiles/jruby_9.3_rails6_mysql2.gemfile.lock +++ b/gemfiles/jruby_9.3_rails6_mysql2.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.3_rails6_postgres.gemfile.lock b/gemfiles/jruby_9.3_rails6_postgres.gemfile.lock index f7a2e67a4c1..769a6cd481f 100644 --- a/gemfiles/jruby_9.3_rails6_postgres.gemfile.lock +++ b/gemfiles/jruby_9.3_rails6_postgres.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.3_rails6_postgres_redis.gemfile.lock b/gemfiles/jruby_9.3_rails6_postgres_redis.gemfile.lock index 306640a725d..8b93acfbd4f 100644 --- a/gemfiles/jruby_9.3_rails6_postgres_redis.gemfile.lock +++ b/gemfiles/jruby_9.3_rails6_postgres_redis.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.3_rails6_postgres_redis_activesupport.gemfile.lock b/gemfiles/jruby_9.3_rails6_postgres_redis_activesupport.gemfile.lock index 8dbdb4e64a9..16c80534384 100644 --- a/gemfiles/jruby_9.3_rails6_postgres_redis_activesupport.gemfile.lock +++ b/gemfiles/jruby_9.3_rails6_postgres_redis_activesupport.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.3_rails6_postgres_sidekiq.gemfile.lock b/gemfiles/jruby_9.3_rails6_postgres_sidekiq.gemfile.lock index c0f71226cd9..8becf23a43c 100644 --- a/gemfiles/jruby_9.3_rails6_postgres_sidekiq.gemfile.lock +++ b/gemfiles/jruby_9.3_rails6_postgres_sidekiq.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.3_rails6_semantic_logger.gemfile.lock b/gemfiles/jruby_9.3_rails6_semantic_logger.gemfile.lock index 59b3839e83e..410cbc17a66 100644 --- a/gemfiles/jruby_9.3_rails6_semantic_logger.gemfile.lock +++ b/gemfiles/jruby_9.3_rails6_semantic_logger.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.3_redis_3.gemfile.lock b/gemfiles/jruby_9.3_redis_3.gemfile.lock index 6f46b64b4de..e57814a5c96 100644 --- a/gemfiles/jruby_9.3_redis_3.gemfile.lock +++ b/gemfiles/jruby_9.3_redis_3.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.3_redis_4.gemfile.lock b/gemfiles/jruby_9.3_redis_4.gemfile.lock index 837b3687a1d..e000c25198f 100644 --- a/gemfiles/jruby_9.3_redis_4.gemfile.lock +++ b/gemfiles/jruby_9.3_redis_4.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.3_redis_5.gemfile.lock b/gemfiles/jruby_9.3_redis_5.gemfile.lock index 36aa4788031..2ebe0a54cd5 100644 --- a/gemfiles/jruby_9.3_redis_5.gemfile.lock +++ b/gemfiles/jruby_9.3_redis_5.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.3_relational_db.gemfile.lock b/gemfiles/jruby_9.3_relational_db.gemfile.lock index 07526512001..4bad890fb05 100644 --- a/gemfiles/jruby_9.3_relational_db.gemfile.lock +++ b/gemfiles/jruby_9.3_relational_db.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.3_resque2_redis3.gemfile.lock b/gemfiles/jruby_9.3_resque2_redis3.gemfile.lock index c79b3a9e76b..f877bfea5ea 100644 --- a/gemfiles/jruby_9.3_resque2_redis3.gemfile.lock +++ b/gemfiles/jruby_9.3_resque2_redis3.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.3_resque2_redis4.gemfile.lock b/gemfiles/jruby_9.3_resque2_redis4.gemfile.lock index 6b10079e48f..da6a328c1b4 100644 --- a/gemfiles/jruby_9.3_resque2_redis4.gemfile.lock +++ b/gemfiles/jruby_9.3_resque2_redis4.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.3_sinatra_2.gemfile.lock b/gemfiles/jruby_9.3_sinatra_2.gemfile.lock index 90f9dbcef38..1e1a332f5dd 100644 --- a/gemfiles/jruby_9.3_sinatra_2.gemfile.lock +++ b/gemfiles/jruby_9.3_sinatra_2.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.3_sinatra_3.gemfile.lock b/gemfiles/jruby_9.3_sinatra_3.gemfile.lock index a89a3f4e41c..e8ec1e660d0 100644 --- a/gemfiles/jruby_9.3_sinatra_3.gemfile.lock +++ b/gemfiles/jruby_9.3_sinatra_3.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.3_stripe_10.gemfile.lock b/gemfiles/jruby_9.3_stripe_10.gemfile.lock index e4d4dca8a51..4acce11955b 100644 --- a/gemfiles/jruby_9.3_stripe_10.gemfile.lock +++ b/gemfiles/jruby_9.3_stripe_10.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.3_stripe_11.gemfile.lock b/gemfiles/jruby_9.3_stripe_11.gemfile.lock index b0fa5269d7c..f4be5657c8c 100644 --- a/gemfiles/jruby_9.3_stripe_11.gemfile.lock +++ b/gemfiles/jruby_9.3_stripe_11.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.3_stripe_12.gemfile.lock b/gemfiles/jruby_9.3_stripe_12.gemfile.lock index 48dde77505f..eaf8241d90b 100644 --- a/gemfiles/jruby_9.3_stripe_12.gemfile.lock +++ b/gemfiles/jruby_9.3_stripe_12.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.3_stripe_7.gemfile.lock b/gemfiles/jruby_9.3_stripe_7.gemfile.lock index 8d10d78bc09..464707cbaa7 100644 --- a/gemfiles/jruby_9.3_stripe_7.gemfile.lock +++ b/gemfiles/jruby_9.3_stripe_7.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.3_stripe_8.gemfile.lock b/gemfiles/jruby_9.3_stripe_8.gemfile.lock index 26417a8bd22..22d66acf525 100644 --- a/gemfiles/jruby_9.3_stripe_8.gemfile.lock +++ b/gemfiles/jruby_9.3_stripe_8.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.3_stripe_9.gemfile.lock b/gemfiles/jruby_9.3_stripe_9.gemfile.lock index e467ed2f3d3..038f68974a3 100644 --- a/gemfiles/jruby_9.3_stripe_9.gemfile.lock +++ b/gemfiles/jruby_9.3_stripe_9.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.3_stripe_latest.gemfile.lock b/gemfiles/jruby_9.3_stripe_latest.gemfile.lock index 0bf6e8d3694..b98930b3344 100644 --- a/gemfiles/jruby_9.3_stripe_latest.gemfile.lock +++ b/gemfiles/jruby_9.3_stripe_latest.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.3_stripe_min.gemfile.lock b/gemfiles/jruby_9.3_stripe_min.gemfile.lock index 3bc2c008636..80f287545da 100644 --- a/gemfiles/jruby_9.3_stripe_min.gemfile.lock +++ b/gemfiles/jruby_9.3_stripe_min.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.4_activesupport.gemfile.lock b/gemfiles/jruby_9.4_activesupport.gemfile.lock index f84e053cf6a..56a0ef1db85 100644 --- a/gemfiles/jruby_9.4_activesupport.gemfile.lock +++ b/gemfiles/jruby_9.4_activesupport.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.4_aws.gemfile.lock b/gemfiles/jruby_9.4_aws.gemfile.lock index fcf5182720e..8b50219cbd0 100644 --- a/gemfiles/jruby_9.4_aws.gemfile.lock +++ b/gemfiles/jruby_9.4_aws.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.4_contrib.gemfile.lock b/gemfiles/jruby_9.4_contrib.gemfile.lock index e698dd05c95..5c52237815a 100644 --- a/gemfiles/jruby_9.4_contrib.gemfile.lock +++ b/gemfiles/jruby_9.4_contrib.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.4_contrib_old.gemfile.lock b/gemfiles/jruby_9.4_contrib_old.gemfile.lock index 9fa398e5b85..8cb49e224d7 100644 --- a/gemfiles/jruby_9.4_contrib_old.gemfile.lock +++ b/gemfiles/jruby_9.4_contrib_old.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.4_core_old.gemfile.lock b/gemfiles/jruby_9.4_core_old.gemfile.lock index 9124bb84e53..cf91b964eef 100644 --- a/gemfiles/jruby_9.4_core_old.gemfile.lock +++ b/gemfiles/jruby_9.4_core_old.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.4_elasticsearch_7.gemfile.lock b/gemfiles/jruby_9.4_elasticsearch_7.gemfile.lock index 8c298449234..b4c92bda1bb 100644 --- a/gemfiles/jruby_9.4_elasticsearch_7.gemfile.lock +++ b/gemfiles/jruby_9.4_elasticsearch_7.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.4_elasticsearch_8.gemfile.lock b/gemfiles/jruby_9.4_elasticsearch_8.gemfile.lock index 4b071aaca01..950d85942bc 100644 --- a/gemfiles/jruby_9.4_elasticsearch_8.gemfile.lock +++ b/gemfiles/jruby_9.4_elasticsearch_8.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.4_elasticsearch_latest.gemfile.lock b/gemfiles/jruby_9.4_elasticsearch_latest.gemfile.lock index 94c76af9316..75fa710259b 100644 --- a/gemfiles/jruby_9.4_elasticsearch_latest.gemfile.lock +++ b/gemfiles/jruby_9.4_elasticsearch_latest.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.4_graphql_1.13.gemfile.lock b/gemfiles/jruby_9.4_graphql_1.13.gemfile.lock index 29f974c9d6c..5be75cb5b8b 100644 --- a/gemfiles/jruby_9.4_graphql_1.13.gemfile.lock +++ b/gemfiles/jruby_9.4_graphql_1.13.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.4_graphql_2.0.gemfile.lock b/gemfiles/jruby_9.4_graphql_2.0.gemfile.lock index 890dfebc871..b45f544f70b 100644 --- a/gemfiles/jruby_9.4_graphql_2.0.gemfile.lock +++ b/gemfiles/jruby_9.4_graphql_2.0.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.4_graphql_2.1.gemfile.lock b/gemfiles/jruby_9.4_graphql_2.1.gemfile.lock index 6687b16e2ea..10d4dcc9e94 100644 --- a/gemfiles/jruby_9.4_graphql_2.1.gemfile.lock +++ b/gemfiles/jruby_9.4_graphql_2.1.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.4_graphql_2.2.gemfile.lock b/gemfiles/jruby_9.4_graphql_2.2.gemfile.lock index fc158547d9b..4ef9b53fcee 100644 --- a/gemfiles/jruby_9.4_graphql_2.2.gemfile.lock +++ b/gemfiles/jruby_9.4_graphql_2.2.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.4_graphql_2.3.gemfile.lock b/gemfiles/jruby_9.4_graphql_2.3.gemfile.lock index a983e51b259..6bea248f9cb 100644 --- a/gemfiles/jruby_9.4_graphql_2.3.gemfile.lock +++ b/gemfiles/jruby_9.4_graphql_2.3.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.4_http.gemfile.lock b/gemfiles/jruby_9.4_http.gemfile.lock index 96f72636bae..bbed8fd901e 100644 --- a/gemfiles/jruby_9.4_http.gemfile.lock +++ b/gemfiles/jruby_9.4_http.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.4_opensearch_2.gemfile.lock b/gemfiles/jruby_9.4_opensearch_2.gemfile.lock index ee2a0df41ed..39232a662c6 100644 --- a/gemfiles/jruby_9.4_opensearch_2.gemfile.lock +++ b/gemfiles/jruby_9.4_opensearch_2.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.4_opensearch_3.gemfile.lock b/gemfiles/jruby_9.4_opensearch_3.gemfile.lock index 0daf355ccb0..0bf01abf8d7 100644 --- a/gemfiles/jruby_9.4_opensearch_3.gemfile.lock +++ b/gemfiles/jruby_9.4_opensearch_3.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.4_opensearch_latest.gemfile.lock b/gemfiles/jruby_9.4_opensearch_latest.gemfile.lock index 2090027ca41..9ca92a872e8 100644 --- a/gemfiles/jruby_9.4_opensearch_latest.gemfile.lock +++ b/gemfiles/jruby_9.4_opensearch_latest.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.4_rack_1.gemfile.lock b/gemfiles/jruby_9.4_rack_1.gemfile.lock index fc205265d9e..942dac42b50 100644 --- a/gemfiles/jruby_9.4_rack_1.gemfile.lock +++ b/gemfiles/jruby_9.4_rack_1.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.4_rack_2.gemfile.lock b/gemfiles/jruby_9.4_rack_2.gemfile.lock index 59fd3d6b518..f32832e0fe2 100644 --- a/gemfiles/jruby_9.4_rack_2.gemfile.lock +++ b/gemfiles/jruby_9.4_rack_2.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.4_rack_3.gemfile.lock b/gemfiles/jruby_9.4_rack_3.gemfile.lock index cd855bd5d32..f76092cdddc 100644 --- a/gemfiles/jruby_9.4_rack_3.gemfile.lock +++ b/gemfiles/jruby_9.4_rack_3.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.4_rack_latest.gemfile.lock b/gemfiles/jruby_9.4_rack_latest.gemfile.lock index 655fc2e0e62..2c4941f9aa5 100644 --- a/gemfiles/jruby_9.4_rack_latest.gemfile.lock +++ b/gemfiles/jruby_9.4_rack_latest.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.4_rails61_mysql2.gemfile.lock b/gemfiles/jruby_9.4_rails61_mysql2.gemfile.lock index b3ca3683082..d3711117512 100644 --- a/gemfiles/jruby_9.4_rails61_mysql2.gemfile.lock +++ b/gemfiles/jruby_9.4_rails61_mysql2.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.4_rails61_postgres.gemfile.lock b/gemfiles/jruby_9.4_rails61_postgres.gemfile.lock index ace31419a19..70e39e84d39 100644 --- a/gemfiles/jruby_9.4_rails61_postgres.gemfile.lock +++ b/gemfiles/jruby_9.4_rails61_postgres.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.4_rails61_postgres_redis.gemfile.lock b/gemfiles/jruby_9.4_rails61_postgres_redis.gemfile.lock index 17b1e02585d..41fa1686a2b 100644 --- a/gemfiles/jruby_9.4_rails61_postgres_redis.gemfile.lock +++ b/gemfiles/jruby_9.4_rails61_postgres_redis.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.4_rails61_postgres_sidekiq.gemfile.lock b/gemfiles/jruby_9.4_rails61_postgres_sidekiq.gemfile.lock index 542fd9644cc..1ccefa6bde5 100644 --- a/gemfiles/jruby_9.4_rails61_postgres_sidekiq.gemfile.lock +++ b/gemfiles/jruby_9.4_rails61_postgres_sidekiq.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.4_rails61_semantic_logger.gemfile.lock b/gemfiles/jruby_9.4_rails61_semantic_logger.gemfile.lock index e23101f8f95..01dd0414b31 100644 --- a/gemfiles/jruby_9.4_rails61_semantic_logger.gemfile.lock +++ b/gemfiles/jruby_9.4_rails61_semantic_logger.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.4_redis_3.gemfile.lock b/gemfiles/jruby_9.4_redis_3.gemfile.lock index 0ae8266ca20..4f2b0810195 100644 --- a/gemfiles/jruby_9.4_redis_3.gemfile.lock +++ b/gemfiles/jruby_9.4_redis_3.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.4_redis_4.gemfile.lock b/gemfiles/jruby_9.4_redis_4.gemfile.lock index 9e8b2535ca5..1bdeead921c 100644 --- a/gemfiles/jruby_9.4_redis_4.gemfile.lock +++ b/gemfiles/jruby_9.4_redis_4.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.4_redis_5.gemfile.lock b/gemfiles/jruby_9.4_redis_5.gemfile.lock index 8aba4f9329a..0c4a5788549 100644 --- a/gemfiles/jruby_9.4_redis_5.gemfile.lock +++ b/gemfiles/jruby_9.4_redis_5.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.4_relational_db.gemfile.lock b/gemfiles/jruby_9.4_relational_db.gemfile.lock index c3426e0ca78..cc6213a0619 100644 --- a/gemfiles/jruby_9.4_relational_db.gemfile.lock +++ b/gemfiles/jruby_9.4_relational_db.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.4_resque2_redis3.gemfile.lock b/gemfiles/jruby_9.4_resque2_redis3.gemfile.lock index 86323358761..c12ab848176 100644 --- a/gemfiles/jruby_9.4_resque2_redis3.gemfile.lock +++ b/gemfiles/jruby_9.4_resque2_redis3.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.4_resque2_redis4.gemfile.lock b/gemfiles/jruby_9.4_resque2_redis4.gemfile.lock index 26da1d4db43..94b4861ddba 100644 --- a/gemfiles/jruby_9.4_resque2_redis4.gemfile.lock +++ b/gemfiles/jruby_9.4_resque2_redis4.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.4_sinatra_2.gemfile.lock b/gemfiles/jruby_9.4_sinatra_2.gemfile.lock index bdedc3d7b52..27d6fca485b 100644 --- a/gemfiles/jruby_9.4_sinatra_2.gemfile.lock +++ b/gemfiles/jruby_9.4_sinatra_2.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.4_sinatra_3.gemfile.lock b/gemfiles/jruby_9.4_sinatra_3.gemfile.lock index 711dc7c6e48..9d15dca540f 100644 --- a/gemfiles/jruby_9.4_sinatra_3.gemfile.lock +++ b/gemfiles/jruby_9.4_sinatra_3.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.4_sinatra_4.gemfile.lock b/gemfiles/jruby_9.4_sinatra_4.gemfile.lock index ec4780c557a..bc4f74bbc1e 100644 --- a/gemfiles/jruby_9.4_sinatra_4.gemfile.lock +++ b/gemfiles/jruby_9.4_sinatra_4.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.4_stripe_10.gemfile.lock b/gemfiles/jruby_9.4_stripe_10.gemfile.lock index f5898f6aba6..7ffd426f2e5 100644 --- a/gemfiles/jruby_9.4_stripe_10.gemfile.lock +++ b/gemfiles/jruby_9.4_stripe_10.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.4_stripe_11.gemfile.lock b/gemfiles/jruby_9.4_stripe_11.gemfile.lock index 25d971b706b..3debf5acf6b 100644 --- a/gemfiles/jruby_9.4_stripe_11.gemfile.lock +++ b/gemfiles/jruby_9.4_stripe_11.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.4_stripe_12.gemfile.lock b/gemfiles/jruby_9.4_stripe_12.gemfile.lock index 31eaca0f9e8..d2e52ea09e5 100644 --- a/gemfiles/jruby_9.4_stripe_12.gemfile.lock +++ b/gemfiles/jruby_9.4_stripe_12.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.4_stripe_7.gemfile.lock b/gemfiles/jruby_9.4_stripe_7.gemfile.lock index 660b61de247..48c88babde1 100644 --- a/gemfiles/jruby_9.4_stripe_7.gemfile.lock +++ b/gemfiles/jruby_9.4_stripe_7.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.4_stripe_8.gemfile.lock b/gemfiles/jruby_9.4_stripe_8.gemfile.lock index d717e5f90c3..10af3616355 100644 --- a/gemfiles/jruby_9.4_stripe_8.gemfile.lock +++ b/gemfiles/jruby_9.4_stripe_8.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.4_stripe_9.gemfile.lock b/gemfiles/jruby_9.4_stripe_9.gemfile.lock index 22151522898..394a9c0db21 100644 --- a/gemfiles/jruby_9.4_stripe_9.gemfile.lock +++ b/gemfiles/jruby_9.4_stripe_9.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.4_stripe_latest.gemfile.lock b/gemfiles/jruby_9.4_stripe_latest.gemfile.lock index bec8e91a0f3..29b442258d0 100644 --- a/gemfiles/jruby_9.4_stripe_latest.gemfile.lock +++ b/gemfiles/jruby_9.4_stripe_latest.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/jruby_9.4_stripe_min.gemfile.lock b/gemfiles/jruby_9.4_stripe_min.gemfile.lock index 74359ad8d9a..6a7f0847f8b 100644 --- a/gemfiles/jruby_9.4_stripe_min.gemfile.lock +++ b/gemfiles/jruby_9.4_stripe_min.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.5_activesupport.gemfile.lock b/gemfiles/ruby_2.5_activesupport.gemfile.lock index 2dbe99cf510..d7e109837b9 100644 --- a/gemfiles/ruby_2.5_activesupport.gemfile.lock +++ b/gemfiles/ruby_2.5_activesupport.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.5_aws.gemfile.lock b/gemfiles/ruby_2.5_aws.gemfile.lock index ef72ddfdee0..409bd604d5c 100644 --- a/gemfiles/ruby_2.5_aws.gemfile.lock +++ b/gemfiles/ruby_2.5_aws.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.5_contrib.gemfile.lock b/gemfiles/ruby_2.5_contrib.gemfile.lock index d9bfe6a361f..42d7d7ac8c7 100644 --- a/gemfiles/ruby_2.5_contrib.gemfile.lock +++ b/gemfiles/ruby_2.5_contrib.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.5_contrib_old.gemfile.lock b/gemfiles/ruby_2.5_contrib_old.gemfile.lock index 72887c14802..8908d6ad0f1 100644 --- a/gemfiles/ruby_2.5_contrib_old.gemfile.lock +++ b/gemfiles/ruby_2.5_contrib_old.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.5_core_old.gemfile.lock b/gemfiles/ruby_2.5_core_old.gemfile.lock index 647dfd7007b..155c7b5df24 100644 --- a/gemfiles/ruby_2.5_core_old.gemfile.lock +++ b/gemfiles/ruby_2.5_core_old.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.5_elasticsearch_7.gemfile.lock b/gemfiles/ruby_2.5_elasticsearch_7.gemfile.lock index 45db3afcded..ef35a851b65 100644 --- a/gemfiles/ruby_2.5_elasticsearch_7.gemfile.lock +++ b/gemfiles/ruby_2.5_elasticsearch_7.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.5_elasticsearch_8.gemfile.lock b/gemfiles/ruby_2.5_elasticsearch_8.gemfile.lock index 2b8f00c4baf..aa1a5011546 100644 --- a/gemfiles/ruby_2.5_elasticsearch_8.gemfile.lock +++ b/gemfiles/ruby_2.5_elasticsearch_8.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.5_elasticsearch_latest.gemfile.lock b/gemfiles/ruby_2.5_elasticsearch_latest.gemfile.lock index 97800eb6609..194e197c74e 100644 --- a/gemfiles/ruby_2.5_elasticsearch_latest.gemfile.lock +++ b/gemfiles/ruby_2.5_elasticsearch_latest.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.5_graphql_2.0.gemfile.lock b/gemfiles/ruby_2.5_graphql_2.0.gemfile.lock index 252e84ceb73..331b0d9e3cd 100644 --- a/gemfiles/ruby_2.5_graphql_2.0.gemfile.lock +++ b/gemfiles/ruby_2.5_graphql_2.0.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.5_hanami_1.gemfile.lock b/gemfiles/ruby_2.5_hanami_1.gemfile.lock index 22b9a374f61..8828bc70036 100644 --- a/gemfiles/ruby_2.5_hanami_1.gemfile.lock +++ b/gemfiles/ruby_2.5_hanami_1.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.5_http.gemfile.lock b/gemfiles/ruby_2.5_http.gemfile.lock index b79727c71d2..9e1c9045a1f 100644 --- a/gemfiles/ruby_2.5_http.gemfile.lock +++ b/gemfiles/ruby_2.5_http.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.5_opensearch_2.gemfile.lock b/gemfiles/ruby_2.5_opensearch_2.gemfile.lock index 244be5c1c39..8185beea0ca 100644 --- a/gemfiles/ruby_2.5_opensearch_2.gemfile.lock +++ b/gemfiles/ruby_2.5_opensearch_2.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.5_opensearch_3.gemfile.lock b/gemfiles/ruby_2.5_opensearch_3.gemfile.lock index 59a36a476b6..967b4550388 100644 --- a/gemfiles/ruby_2.5_opensearch_3.gemfile.lock +++ b/gemfiles/ruby_2.5_opensearch_3.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.5_opensearch_latest.gemfile.lock b/gemfiles/ruby_2.5_opensearch_latest.gemfile.lock index 56bc18a0b9f..6da89913e76 100644 --- a/gemfiles/ruby_2.5_opensearch_latest.gemfile.lock +++ b/gemfiles/ruby_2.5_opensearch_latest.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.5_rack_1.gemfile.lock b/gemfiles/ruby_2.5_rack_1.gemfile.lock index af1e8bc663b..e26390dda75 100644 --- a/gemfiles/ruby_2.5_rack_1.gemfile.lock +++ b/gemfiles/ruby_2.5_rack_1.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.5_rack_2.gemfile.lock b/gemfiles/ruby_2.5_rack_2.gemfile.lock index 5ada7f78dff..acee9331596 100644 --- a/gemfiles/ruby_2.5_rack_2.gemfile.lock +++ b/gemfiles/ruby_2.5_rack_2.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.5_rack_3.gemfile.lock b/gemfiles/ruby_2.5_rack_3.gemfile.lock index db1412735b3..49fca1594c4 100644 --- a/gemfiles/ruby_2.5_rack_3.gemfile.lock +++ b/gemfiles/ruby_2.5_rack_3.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.5_rack_latest.gemfile.lock b/gemfiles/ruby_2.5_rack_latest.gemfile.lock index cba15d806f7..c06515bc8d0 100644 --- a/gemfiles/ruby_2.5_rack_latest.gemfile.lock +++ b/gemfiles/ruby_2.5_rack_latest.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.5_rails4_mysql2.gemfile.lock b/gemfiles/ruby_2.5_rails4_mysql2.gemfile.lock index 32afe3070cb..6257504ada9 100644 --- a/gemfiles/ruby_2.5_rails4_mysql2.gemfile.lock +++ b/gemfiles/ruby_2.5_rails4_mysql2.gemfile.lock @@ -57,7 +57,7 @@ GIT PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.5_rails4_postgres.gemfile.lock b/gemfiles/ruby_2.5_rails4_postgres.gemfile.lock index 7a510609218..2116dd124b3 100644 --- a/gemfiles/ruby_2.5_rails4_postgres.gemfile.lock +++ b/gemfiles/ruby_2.5_rails4_postgres.gemfile.lock @@ -57,7 +57,7 @@ GIT PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.5_rails4_postgres_redis.gemfile.lock b/gemfiles/ruby_2.5_rails4_postgres_redis.gemfile.lock index 0f33147f48f..a1b46f055ae 100644 --- a/gemfiles/ruby_2.5_rails4_postgres_redis.gemfile.lock +++ b/gemfiles/ruby_2.5_rails4_postgres_redis.gemfile.lock @@ -57,7 +57,7 @@ GIT PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.5_rails4_postgres_sidekiq.gemfile.lock b/gemfiles/ruby_2.5_rails4_postgres_sidekiq.gemfile.lock index 1f14dfea47b..dca7c1495d4 100644 --- a/gemfiles/ruby_2.5_rails4_postgres_sidekiq.gemfile.lock +++ b/gemfiles/ruby_2.5_rails4_postgres_sidekiq.gemfile.lock @@ -54,7 +54,7 @@ GIT PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.5_rails4_semantic_logger.gemfile.lock b/gemfiles/ruby_2.5_rails4_semantic_logger.gemfile.lock index a5bca063608..54fd0d264bd 100644 --- a/gemfiles/ruby_2.5_rails4_semantic_logger.gemfile.lock +++ b/gemfiles/ruby_2.5_rails4_semantic_logger.gemfile.lock @@ -57,7 +57,7 @@ GIT PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.5_rails5_mysql2.gemfile.lock b/gemfiles/ruby_2.5_rails5_mysql2.gemfile.lock index 9cde2038bd8..36a8992ca9e 100644 --- a/gemfiles/ruby_2.5_rails5_mysql2.gemfile.lock +++ b/gemfiles/ruby_2.5_rails5_mysql2.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.5_rails5_postgres.gemfile.lock b/gemfiles/ruby_2.5_rails5_postgres.gemfile.lock index 823a717c4ff..7b0d522d75b 100644 --- a/gemfiles/ruby_2.5_rails5_postgres.gemfile.lock +++ b/gemfiles/ruby_2.5_rails5_postgres.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.5_rails5_postgres_redis.gemfile.lock b/gemfiles/ruby_2.5_rails5_postgres_redis.gemfile.lock index 590c01459e6..eed71cef4ee 100644 --- a/gemfiles/ruby_2.5_rails5_postgres_redis.gemfile.lock +++ b/gemfiles/ruby_2.5_rails5_postgres_redis.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.5_rails5_postgres_redis_activesupport.gemfile.lock b/gemfiles/ruby_2.5_rails5_postgres_redis_activesupport.gemfile.lock index a7329c10ca2..f6ff8780a0d 100644 --- a/gemfiles/ruby_2.5_rails5_postgres_redis_activesupport.gemfile.lock +++ b/gemfiles/ruby_2.5_rails5_postgres_redis_activesupport.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.5_rails5_postgres_sidekiq.gemfile.lock b/gemfiles/ruby_2.5_rails5_postgres_sidekiq.gemfile.lock index fd9c3936161..25aa6b1d261 100644 --- a/gemfiles/ruby_2.5_rails5_postgres_sidekiq.gemfile.lock +++ b/gemfiles/ruby_2.5_rails5_postgres_sidekiq.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.5_rails5_semantic_logger.gemfile.lock b/gemfiles/ruby_2.5_rails5_semantic_logger.gemfile.lock index c1ff25d251a..2ac16866eae 100644 --- a/gemfiles/ruby_2.5_rails5_semantic_logger.gemfile.lock +++ b/gemfiles/ruby_2.5_rails5_semantic_logger.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.5_rails61_mysql2.gemfile.lock b/gemfiles/ruby_2.5_rails61_mysql2.gemfile.lock index 50c55e376fd..5ab4a0d6043 100644 --- a/gemfiles/ruby_2.5_rails61_mysql2.gemfile.lock +++ b/gemfiles/ruby_2.5_rails61_mysql2.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.5_rails61_postgres.gemfile.lock b/gemfiles/ruby_2.5_rails61_postgres.gemfile.lock index 0073a59f467..a6052119887 100644 --- a/gemfiles/ruby_2.5_rails61_postgres.gemfile.lock +++ b/gemfiles/ruby_2.5_rails61_postgres.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.5_rails61_postgres_redis.gemfile.lock b/gemfiles/ruby_2.5_rails61_postgres_redis.gemfile.lock index fda3832fab2..d362005ab5d 100644 --- a/gemfiles/ruby_2.5_rails61_postgres_redis.gemfile.lock +++ b/gemfiles/ruby_2.5_rails61_postgres_redis.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.5_rails61_postgres_sidekiq.gemfile.lock b/gemfiles/ruby_2.5_rails61_postgres_sidekiq.gemfile.lock index b3a42f92e5e..009a8c4aeab 100644 --- a/gemfiles/ruby_2.5_rails61_postgres_sidekiq.gemfile.lock +++ b/gemfiles/ruby_2.5_rails61_postgres_sidekiq.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.5_rails61_semantic_logger.gemfile.lock b/gemfiles/ruby_2.5_rails61_semantic_logger.gemfile.lock index e88abeb571e..fbebe78aed1 100644 --- a/gemfiles/ruby_2.5_rails61_semantic_logger.gemfile.lock +++ b/gemfiles/ruby_2.5_rails61_semantic_logger.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.5_rails6_mysql2.gemfile.lock b/gemfiles/ruby_2.5_rails6_mysql2.gemfile.lock index 2ffbf902f32..3d7a8f3adf9 100644 --- a/gemfiles/ruby_2.5_rails6_mysql2.gemfile.lock +++ b/gemfiles/ruby_2.5_rails6_mysql2.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.5_rails6_postgres.gemfile.lock b/gemfiles/ruby_2.5_rails6_postgres.gemfile.lock index 55c12faf46a..1270e858559 100644 --- a/gemfiles/ruby_2.5_rails6_postgres.gemfile.lock +++ b/gemfiles/ruby_2.5_rails6_postgres.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.5_rails6_postgres_redis.gemfile.lock b/gemfiles/ruby_2.5_rails6_postgres_redis.gemfile.lock index 8b7b8bd8165..ddfee6ad680 100644 --- a/gemfiles/ruby_2.5_rails6_postgres_redis.gemfile.lock +++ b/gemfiles/ruby_2.5_rails6_postgres_redis.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.5_rails6_postgres_redis_activesupport.gemfile.lock b/gemfiles/ruby_2.5_rails6_postgres_redis_activesupport.gemfile.lock index f5aebbdeca1..a84bbdb3977 100644 --- a/gemfiles/ruby_2.5_rails6_postgres_redis_activesupport.gemfile.lock +++ b/gemfiles/ruby_2.5_rails6_postgres_redis_activesupport.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.5_rails6_postgres_sidekiq.gemfile.lock b/gemfiles/ruby_2.5_rails6_postgres_sidekiq.gemfile.lock index 4697042b8be..963ead8e0c5 100644 --- a/gemfiles/ruby_2.5_rails6_postgres_sidekiq.gemfile.lock +++ b/gemfiles/ruby_2.5_rails6_postgres_sidekiq.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.5_rails6_semantic_logger.gemfile.lock b/gemfiles/ruby_2.5_rails6_semantic_logger.gemfile.lock index 161b60131b5..904232f508e 100644 --- a/gemfiles/ruby_2.5_rails6_semantic_logger.gemfile.lock +++ b/gemfiles/ruby_2.5_rails6_semantic_logger.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.5_redis_3.gemfile.lock b/gemfiles/ruby_2.5_redis_3.gemfile.lock index 135978c8f10..08482d12aaa 100644 --- a/gemfiles/ruby_2.5_redis_3.gemfile.lock +++ b/gemfiles/ruby_2.5_redis_3.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.5_redis_4.gemfile.lock b/gemfiles/ruby_2.5_redis_4.gemfile.lock index 772d78c840b..a55f9b50b76 100644 --- a/gemfiles/ruby_2.5_redis_4.gemfile.lock +++ b/gemfiles/ruby_2.5_redis_4.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.5_redis_5.gemfile.lock b/gemfiles/ruby_2.5_redis_5.gemfile.lock index a6d9e45e22b..c779f378bc3 100644 --- a/gemfiles/ruby_2.5_redis_5.gemfile.lock +++ b/gemfiles/ruby_2.5_redis_5.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.5_relational_db.gemfile.lock b/gemfiles/ruby_2.5_relational_db.gemfile.lock index e7d4d79f822..e599ce680e4 100644 --- a/gemfiles/ruby_2.5_relational_db.gemfile.lock +++ b/gemfiles/ruby_2.5_relational_db.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.5_resque2_redis3.gemfile.lock b/gemfiles/ruby_2.5_resque2_redis3.gemfile.lock index 19ae20fc5ae..03efa4f3c7f 100644 --- a/gemfiles/ruby_2.5_resque2_redis3.gemfile.lock +++ b/gemfiles/ruby_2.5_resque2_redis3.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.5_resque2_redis4.gemfile.lock b/gemfiles/ruby_2.5_resque2_redis4.gemfile.lock index 259e3b08dc8..e50e8affcb7 100644 --- a/gemfiles/ruby_2.5_resque2_redis4.gemfile.lock +++ b/gemfiles/ruby_2.5_resque2_redis4.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.5_sinatra_2.gemfile.lock b/gemfiles/ruby_2.5_sinatra_2.gemfile.lock index 945988d41f9..df5e3c2949f 100644 --- a/gemfiles/ruby_2.5_sinatra_2.gemfile.lock +++ b/gemfiles/ruby_2.5_sinatra_2.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.5_stripe_10.gemfile.lock b/gemfiles/ruby_2.5_stripe_10.gemfile.lock index 141f4c64c46..fa104cfcbec 100644 --- a/gemfiles/ruby_2.5_stripe_10.gemfile.lock +++ b/gemfiles/ruby_2.5_stripe_10.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.5_stripe_11.gemfile.lock b/gemfiles/ruby_2.5_stripe_11.gemfile.lock index 43f42b2dcd2..e838cdb4de6 100644 --- a/gemfiles/ruby_2.5_stripe_11.gemfile.lock +++ b/gemfiles/ruby_2.5_stripe_11.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.5_stripe_12.gemfile.lock b/gemfiles/ruby_2.5_stripe_12.gemfile.lock index a5bd9338a7a..24c14d8371d 100644 --- a/gemfiles/ruby_2.5_stripe_12.gemfile.lock +++ b/gemfiles/ruby_2.5_stripe_12.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.5_stripe_7.gemfile.lock b/gemfiles/ruby_2.5_stripe_7.gemfile.lock index 647e7c4c9be..8ffe6b293fe 100644 --- a/gemfiles/ruby_2.5_stripe_7.gemfile.lock +++ b/gemfiles/ruby_2.5_stripe_7.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.5_stripe_8.gemfile.lock b/gemfiles/ruby_2.5_stripe_8.gemfile.lock index 729c1d2cd84..5ca94bb3b65 100644 --- a/gemfiles/ruby_2.5_stripe_8.gemfile.lock +++ b/gemfiles/ruby_2.5_stripe_8.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.5_stripe_9.gemfile.lock b/gemfiles/ruby_2.5_stripe_9.gemfile.lock index 372b9da24d0..ca7e309649e 100644 --- a/gemfiles/ruby_2.5_stripe_9.gemfile.lock +++ b/gemfiles/ruby_2.5_stripe_9.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.5_stripe_latest.gemfile.lock b/gemfiles/ruby_2.5_stripe_latest.gemfile.lock index 2e909d48ff2..b79533ac528 100644 --- a/gemfiles/ruby_2.5_stripe_latest.gemfile.lock +++ b/gemfiles/ruby_2.5_stripe_latest.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.5_stripe_min.gemfile.lock b/gemfiles/ruby_2.5_stripe_min.gemfile.lock index bdee3823289..5898f9b9bda 100644 --- a/gemfiles/ruby_2.5_stripe_min.gemfile.lock +++ b/gemfiles/ruby_2.5_stripe_min.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.6_activesupport.gemfile.lock b/gemfiles/ruby_2.6_activesupport.gemfile.lock index c0eea04171e..686a64a62c0 100644 --- a/gemfiles/ruby_2.6_activesupport.gemfile.lock +++ b/gemfiles/ruby_2.6_activesupport.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.6_aws.gemfile.lock b/gemfiles/ruby_2.6_aws.gemfile.lock index 70e0c1950d9..8b1e78c0098 100644 --- a/gemfiles/ruby_2.6_aws.gemfile.lock +++ b/gemfiles/ruby_2.6_aws.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.6_contrib.gemfile.lock b/gemfiles/ruby_2.6_contrib.gemfile.lock index f15a6d5fa41..15c9841fbac 100644 --- a/gemfiles/ruby_2.6_contrib.gemfile.lock +++ b/gemfiles/ruby_2.6_contrib.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.6_contrib_old.gemfile.lock b/gemfiles/ruby_2.6_contrib_old.gemfile.lock index cd906666efd..0bf2e0a4eea 100644 --- a/gemfiles/ruby_2.6_contrib_old.gemfile.lock +++ b/gemfiles/ruby_2.6_contrib_old.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.6_core_old.gemfile.lock b/gemfiles/ruby_2.6_core_old.gemfile.lock index ef765ce66b1..259acb2834b 100644 --- a/gemfiles/ruby_2.6_core_old.gemfile.lock +++ b/gemfiles/ruby_2.6_core_old.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.6_elasticsearch_7.gemfile.lock b/gemfiles/ruby_2.6_elasticsearch_7.gemfile.lock index a9dfa52043f..08091e77c96 100644 --- a/gemfiles/ruby_2.6_elasticsearch_7.gemfile.lock +++ b/gemfiles/ruby_2.6_elasticsearch_7.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.6_elasticsearch_8.gemfile.lock b/gemfiles/ruby_2.6_elasticsearch_8.gemfile.lock index bc00f6cebbe..4af5a4a62cb 100644 --- a/gemfiles/ruby_2.6_elasticsearch_8.gemfile.lock +++ b/gemfiles/ruby_2.6_elasticsearch_8.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.6_elasticsearch_latest.gemfile.lock b/gemfiles/ruby_2.6_elasticsearch_latest.gemfile.lock index 7f6121f0408..d16005f1184 100644 --- a/gemfiles/ruby_2.6_elasticsearch_latest.gemfile.lock +++ b/gemfiles/ruby_2.6_elasticsearch_latest.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.6_graphql_1.13.gemfile.lock b/gemfiles/ruby_2.6_graphql_1.13.gemfile.lock index 1c6addb07b2..5ab3073e6af 100644 --- a/gemfiles/ruby_2.6_graphql_1.13.gemfile.lock +++ b/gemfiles/ruby_2.6_graphql_1.13.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.6_graphql_2.0.gemfile.lock b/gemfiles/ruby_2.6_graphql_2.0.gemfile.lock index 96a9f0727ce..4ecfd3a28c7 100644 --- a/gemfiles/ruby_2.6_graphql_2.0.gemfile.lock +++ b/gemfiles/ruby_2.6_graphql_2.0.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.6_hanami_1.gemfile.lock b/gemfiles/ruby_2.6_hanami_1.gemfile.lock index f90377f47fe..6562c451e58 100644 --- a/gemfiles/ruby_2.6_hanami_1.gemfile.lock +++ b/gemfiles/ruby_2.6_hanami_1.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.6_http.gemfile.lock b/gemfiles/ruby_2.6_http.gemfile.lock index b9cc90ee367..3655c070e8e 100644 --- a/gemfiles/ruby_2.6_http.gemfile.lock +++ b/gemfiles/ruby_2.6_http.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.6_opensearch_2.gemfile.lock b/gemfiles/ruby_2.6_opensearch_2.gemfile.lock index 165e38672ee..a0630936b24 100644 --- a/gemfiles/ruby_2.6_opensearch_2.gemfile.lock +++ b/gemfiles/ruby_2.6_opensearch_2.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.6_opensearch_3.gemfile.lock b/gemfiles/ruby_2.6_opensearch_3.gemfile.lock index 56cc503e2e1..0d059f4f24c 100644 --- a/gemfiles/ruby_2.6_opensearch_3.gemfile.lock +++ b/gemfiles/ruby_2.6_opensearch_3.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.6_opensearch_latest.gemfile.lock b/gemfiles/ruby_2.6_opensearch_latest.gemfile.lock index b80ae6e0566..12f616ad70f 100644 --- a/gemfiles/ruby_2.6_opensearch_latest.gemfile.lock +++ b/gemfiles/ruby_2.6_opensearch_latest.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.6_opentelemetry.gemfile.lock b/gemfiles/ruby_2.6_opentelemetry.gemfile.lock index 6653241e632..915ae8114c7 100755 --- a/gemfiles/ruby_2.6_opentelemetry.gemfile.lock +++ b/gemfiles/ruby_2.6_opentelemetry.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.6_opentelemetry_otlp.gemfile.lock b/gemfiles/ruby_2.6_opentelemetry_otlp.gemfile.lock index 3e9f2093a0b..aaa1674680f 100644 --- a/gemfiles/ruby_2.6_opentelemetry_otlp.gemfile.lock +++ b/gemfiles/ruby_2.6_opentelemetry_otlp.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.6_rack_1.gemfile.lock b/gemfiles/ruby_2.6_rack_1.gemfile.lock index 5f09812f572..47bb26bdf71 100644 --- a/gemfiles/ruby_2.6_rack_1.gemfile.lock +++ b/gemfiles/ruby_2.6_rack_1.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.6_rack_2.gemfile.lock b/gemfiles/ruby_2.6_rack_2.gemfile.lock index aaa6207b1db..b74cf64d387 100644 --- a/gemfiles/ruby_2.6_rack_2.gemfile.lock +++ b/gemfiles/ruby_2.6_rack_2.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.6_rack_3.gemfile.lock b/gemfiles/ruby_2.6_rack_3.gemfile.lock index a565b5ad548..dc00331d4fe 100644 --- a/gemfiles/ruby_2.6_rack_3.gemfile.lock +++ b/gemfiles/ruby_2.6_rack_3.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.6_rack_latest.gemfile.lock b/gemfiles/ruby_2.6_rack_latest.gemfile.lock index 6b4cc7fcfdd..68b4b540214 100644 --- a/gemfiles/ruby_2.6_rack_latest.gemfile.lock +++ b/gemfiles/ruby_2.6_rack_latest.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.6_rails5_mysql2.gemfile.lock b/gemfiles/ruby_2.6_rails5_mysql2.gemfile.lock index 7f9bb8ee10b..6fc050d634f 100644 --- a/gemfiles/ruby_2.6_rails5_mysql2.gemfile.lock +++ b/gemfiles/ruby_2.6_rails5_mysql2.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.6_rails5_postgres.gemfile.lock b/gemfiles/ruby_2.6_rails5_postgres.gemfile.lock index 8df9461e2ec..a42da0b6d9c 100644 --- a/gemfiles/ruby_2.6_rails5_postgres.gemfile.lock +++ b/gemfiles/ruby_2.6_rails5_postgres.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.6_rails5_postgres_redis.gemfile.lock b/gemfiles/ruby_2.6_rails5_postgres_redis.gemfile.lock index 8242f7934d6..ca253099993 100644 --- a/gemfiles/ruby_2.6_rails5_postgres_redis.gemfile.lock +++ b/gemfiles/ruby_2.6_rails5_postgres_redis.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.6_rails5_postgres_redis_activesupport.gemfile.lock b/gemfiles/ruby_2.6_rails5_postgres_redis_activesupport.gemfile.lock index 0c67b14181b..63ee4bbe20f 100644 --- a/gemfiles/ruby_2.6_rails5_postgres_redis_activesupport.gemfile.lock +++ b/gemfiles/ruby_2.6_rails5_postgres_redis_activesupport.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.6_rails5_postgres_sidekiq.gemfile.lock b/gemfiles/ruby_2.6_rails5_postgres_sidekiq.gemfile.lock index 85affccf881..7f17563c106 100644 --- a/gemfiles/ruby_2.6_rails5_postgres_sidekiq.gemfile.lock +++ b/gemfiles/ruby_2.6_rails5_postgres_sidekiq.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.6_rails5_semantic_logger.gemfile.lock b/gemfiles/ruby_2.6_rails5_semantic_logger.gemfile.lock index 1a50adbd991..42f757426aa 100644 --- a/gemfiles/ruby_2.6_rails5_semantic_logger.gemfile.lock +++ b/gemfiles/ruby_2.6_rails5_semantic_logger.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.6_rails61_mysql2.gemfile.lock b/gemfiles/ruby_2.6_rails61_mysql2.gemfile.lock index fe8d87ea2d0..7097d5243d4 100644 --- a/gemfiles/ruby_2.6_rails61_mysql2.gemfile.lock +++ b/gemfiles/ruby_2.6_rails61_mysql2.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.6_rails61_postgres.gemfile.lock b/gemfiles/ruby_2.6_rails61_postgres.gemfile.lock index cb8afc6510d..2337b8ad93c 100644 --- a/gemfiles/ruby_2.6_rails61_postgres.gemfile.lock +++ b/gemfiles/ruby_2.6_rails61_postgres.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.6_rails61_postgres_redis.gemfile.lock b/gemfiles/ruby_2.6_rails61_postgres_redis.gemfile.lock index 5f3b6d309c7..46d665a99a3 100644 --- a/gemfiles/ruby_2.6_rails61_postgres_redis.gemfile.lock +++ b/gemfiles/ruby_2.6_rails61_postgres_redis.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.6_rails61_postgres_sidekiq.gemfile.lock b/gemfiles/ruby_2.6_rails61_postgres_sidekiq.gemfile.lock index 2608e5558e7..908579cb104 100644 --- a/gemfiles/ruby_2.6_rails61_postgres_sidekiq.gemfile.lock +++ b/gemfiles/ruby_2.6_rails61_postgres_sidekiq.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.6_rails61_semantic_logger.gemfile.lock b/gemfiles/ruby_2.6_rails61_semantic_logger.gemfile.lock index faa42c37fbc..f86e2c9d490 100644 --- a/gemfiles/ruby_2.6_rails61_semantic_logger.gemfile.lock +++ b/gemfiles/ruby_2.6_rails61_semantic_logger.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.6_rails6_mysql2.gemfile.lock b/gemfiles/ruby_2.6_rails6_mysql2.gemfile.lock index 15b05e29a96..0e56c4f2ac4 100644 --- a/gemfiles/ruby_2.6_rails6_mysql2.gemfile.lock +++ b/gemfiles/ruby_2.6_rails6_mysql2.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.6_rails6_postgres.gemfile.lock b/gemfiles/ruby_2.6_rails6_postgres.gemfile.lock index c5d61bf91c4..03ff5e6106b 100644 --- a/gemfiles/ruby_2.6_rails6_postgres.gemfile.lock +++ b/gemfiles/ruby_2.6_rails6_postgres.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.6_rails6_postgres_redis.gemfile.lock b/gemfiles/ruby_2.6_rails6_postgres_redis.gemfile.lock index 41f7daee501..154ee011718 100644 --- a/gemfiles/ruby_2.6_rails6_postgres_redis.gemfile.lock +++ b/gemfiles/ruby_2.6_rails6_postgres_redis.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.6_rails6_postgres_redis_activesupport.gemfile.lock b/gemfiles/ruby_2.6_rails6_postgres_redis_activesupport.gemfile.lock index 5b208f709cb..750a9c48617 100644 --- a/gemfiles/ruby_2.6_rails6_postgres_redis_activesupport.gemfile.lock +++ b/gemfiles/ruby_2.6_rails6_postgres_redis_activesupport.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.6_rails6_postgres_sidekiq.gemfile.lock b/gemfiles/ruby_2.6_rails6_postgres_sidekiq.gemfile.lock index e98e222d8f5..68568a820ef 100644 --- a/gemfiles/ruby_2.6_rails6_postgres_sidekiq.gemfile.lock +++ b/gemfiles/ruby_2.6_rails6_postgres_sidekiq.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.6_rails6_semantic_logger.gemfile.lock b/gemfiles/ruby_2.6_rails6_semantic_logger.gemfile.lock index 28cbaf80b8c..ae7cae5291f 100644 --- a/gemfiles/ruby_2.6_rails6_semantic_logger.gemfile.lock +++ b/gemfiles/ruby_2.6_rails6_semantic_logger.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.6_redis_3.gemfile.lock b/gemfiles/ruby_2.6_redis_3.gemfile.lock index 00ffe04c7c4..68da4df1343 100644 --- a/gemfiles/ruby_2.6_redis_3.gemfile.lock +++ b/gemfiles/ruby_2.6_redis_3.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.6_redis_4.gemfile.lock b/gemfiles/ruby_2.6_redis_4.gemfile.lock index 8aef482c143..2ff5095cf73 100644 --- a/gemfiles/ruby_2.6_redis_4.gemfile.lock +++ b/gemfiles/ruby_2.6_redis_4.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.6_redis_5.gemfile.lock b/gemfiles/ruby_2.6_redis_5.gemfile.lock index b70ea9b37e1..6b8bd11c75b 100644 --- a/gemfiles/ruby_2.6_redis_5.gemfile.lock +++ b/gemfiles/ruby_2.6_redis_5.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.6_relational_db.gemfile.lock b/gemfiles/ruby_2.6_relational_db.gemfile.lock index 9eeeffb7e00..b27c2edde2f 100644 --- a/gemfiles/ruby_2.6_relational_db.gemfile.lock +++ b/gemfiles/ruby_2.6_relational_db.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.6_resque2_redis3.gemfile.lock b/gemfiles/ruby_2.6_resque2_redis3.gemfile.lock index 007ba653faa..5a4b6ad4e0d 100644 --- a/gemfiles/ruby_2.6_resque2_redis3.gemfile.lock +++ b/gemfiles/ruby_2.6_resque2_redis3.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.6_resque2_redis4.gemfile.lock b/gemfiles/ruby_2.6_resque2_redis4.gemfile.lock index b37161333ef..0026eaf6ea3 100644 --- a/gemfiles/ruby_2.6_resque2_redis4.gemfile.lock +++ b/gemfiles/ruby_2.6_resque2_redis4.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.6_sinatra_2.gemfile.lock b/gemfiles/ruby_2.6_sinatra_2.gemfile.lock index 0f0ad81d1ce..cb967dfbb7c 100644 --- a/gemfiles/ruby_2.6_sinatra_2.gemfile.lock +++ b/gemfiles/ruby_2.6_sinatra_2.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.6_sinatra_3.gemfile.lock b/gemfiles/ruby_2.6_sinatra_3.gemfile.lock index 4bcea2a599c..f1fcb47c66d 100644 --- a/gemfiles/ruby_2.6_sinatra_3.gemfile.lock +++ b/gemfiles/ruby_2.6_sinatra_3.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.6_stripe_10.gemfile.lock b/gemfiles/ruby_2.6_stripe_10.gemfile.lock index 59a33cb1fa6..ccd260ee54b 100644 --- a/gemfiles/ruby_2.6_stripe_10.gemfile.lock +++ b/gemfiles/ruby_2.6_stripe_10.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.6_stripe_11.gemfile.lock b/gemfiles/ruby_2.6_stripe_11.gemfile.lock index 27950f2f0ac..ffc27bdd0a7 100644 --- a/gemfiles/ruby_2.6_stripe_11.gemfile.lock +++ b/gemfiles/ruby_2.6_stripe_11.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.6_stripe_12.gemfile.lock b/gemfiles/ruby_2.6_stripe_12.gemfile.lock index b9970c6f60b..032225bc757 100644 --- a/gemfiles/ruby_2.6_stripe_12.gemfile.lock +++ b/gemfiles/ruby_2.6_stripe_12.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.6_stripe_7.gemfile.lock b/gemfiles/ruby_2.6_stripe_7.gemfile.lock index d60f56c841a..8e3b59271c5 100644 --- a/gemfiles/ruby_2.6_stripe_7.gemfile.lock +++ b/gemfiles/ruby_2.6_stripe_7.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.6_stripe_8.gemfile.lock b/gemfiles/ruby_2.6_stripe_8.gemfile.lock index c9158dfd417..fc12d30cb3e 100644 --- a/gemfiles/ruby_2.6_stripe_8.gemfile.lock +++ b/gemfiles/ruby_2.6_stripe_8.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.6_stripe_9.gemfile.lock b/gemfiles/ruby_2.6_stripe_9.gemfile.lock index dffcb37d2b4..093526bcda5 100644 --- a/gemfiles/ruby_2.6_stripe_9.gemfile.lock +++ b/gemfiles/ruby_2.6_stripe_9.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.6_stripe_latest.gemfile.lock b/gemfiles/ruby_2.6_stripe_latest.gemfile.lock index 1e6ba03ae8e..c94b93b8910 100644 --- a/gemfiles/ruby_2.6_stripe_latest.gemfile.lock +++ b/gemfiles/ruby_2.6_stripe_latest.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.6_stripe_min.gemfile.lock b/gemfiles/ruby_2.6_stripe_min.gemfile.lock index 74975f07f8e..c99198efedf 100644 --- a/gemfiles/ruby_2.6_stripe_min.gemfile.lock +++ b/gemfiles/ruby_2.6_stripe_min.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.7_activesupport.gemfile.lock b/gemfiles/ruby_2.7_activesupport.gemfile.lock index 6d9e66d0917..7d351ea892a 100644 --- a/gemfiles/ruby_2.7_activesupport.gemfile.lock +++ b/gemfiles/ruby_2.7_activesupport.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.7_aws.gemfile.lock b/gemfiles/ruby_2.7_aws.gemfile.lock index 7576be7ae16..17fd001e0f4 100644 --- a/gemfiles/ruby_2.7_aws.gemfile.lock +++ b/gemfiles/ruby_2.7_aws.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.7_contrib.gemfile.lock b/gemfiles/ruby_2.7_contrib.gemfile.lock index 29b2b968c13..d5e4a4b1e9d 100644 --- a/gemfiles/ruby_2.7_contrib.gemfile.lock +++ b/gemfiles/ruby_2.7_contrib.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.7_contrib_old.gemfile.lock b/gemfiles/ruby_2.7_contrib_old.gemfile.lock index cc9964e4335..032ef744702 100644 --- a/gemfiles/ruby_2.7_contrib_old.gemfile.lock +++ b/gemfiles/ruby_2.7_contrib_old.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.7_core_old.gemfile.lock b/gemfiles/ruby_2.7_core_old.gemfile.lock index 2b1b3faf0ab..4483c9a367a 100644 --- a/gemfiles/ruby_2.7_core_old.gemfile.lock +++ b/gemfiles/ruby_2.7_core_old.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.7_elasticsearch_7.gemfile.lock b/gemfiles/ruby_2.7_elasticsearch_7.gemfile.lock index 6634f0bc934..90b391072dd 100644 --- a/gemfiles/ruby_2.7_elasticsearch_7.gemfile.lock +++ b/gemfiles/ruby_2.7_elasticsearch_7.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.7_elasticsearch_8.gemfile.lock b/gemfiles/ruby_2.7_elasticsearch_8.gemfile.lock index 2e65b26eb88..881109f8127 100644 --- a/gemfiles/ruby_2.7_elasticsearch_8.gemfile.lock +++ b/gemfiles/ruby_2.7_elasticsearch_8.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.7_elasticsearch_latest.gemfile.lock b/gemfiles/ruby_2.7_elasticsearch_latest.gemfile.lock index c62b315bf78..e94bb3374b9 100644 --- a/gemfiles/ruby_2.7_elasticsearch_latest.gemfile.lock +++ b/gemfiles/ruby_2.7_elasticsearch_latest.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.7_graphql_1.13.gemfile.lock b/gemfiles/ruby_2.7_graphql_1.13.gemfile.lock index 443bf8ffb8d..a593b4a4d6e 100644 --- a/gemfiles/ruby_2.7_graphql_1.13.gemfile.lock +++ b/gemfiles/ruby_2.7_graphql_1.13.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.7_graphql_2.0.gemfile.lock b/gemfiles/ruby_2.7_graphql_2.0.gemfile.lock index ae90858b251..c22b85f6466 100644 --- a/gemfiles/ruby_2.7_graphql_2.0.gemfile.lock +++ b/gemfiles/ruby_2.7_graphql_2.0.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.7_graphql_2.1.gemfile.lock b/gemfiles/ruby_2.7_graphql_2.1.gemfile.lock index ec2471546ca..f9d149f73c0 100644 --- a/gemfiles/ruby_2.7_graphql_2.1.gemfile.lock +++ b/gemfiles/ruby_2.7_graphql_2.1.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.7_graphql_2.2.gemfile.lock b/gemfiles/ruby_2.7_graphql_2.2.gemfile.lock index 1e911cb1a54..de3ebb96d8c 100644 --- a/gemfiles/ruby_2.7_graphql_2.2.gemfile.lock +++ b/gemfiles/ruby_2.7_graphql_2.2.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.7_graphql_2.3.gemfile.lock b/gemfiles/ruby_2.7_graphql_2.3.gemfile.lock index ff76c886baf..ed2f571fc6e 100644 --- a/gemfiles/ruby_2.7_graphql_2.3.gemfile.lock +++ b/gemfiles/ruby_2.7_graphql_2.3.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.7_hanami_1.gemfile.lock b/gemfiles/ruby_2.7_hanami_1.gemfile.lock index 910a0c19613..a6c85a50c02 100644 --- a/gemfiles/ruby_2.7_hanami_1.gemfile.lock +++ b/gemfiles/ruby_2.7_hanami_1.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.7_http.gemfile.lock b/gemfiles/ruby_2.7_http.gemfile.lock index 262f3bf7f6f..18f0ed40214 100644 --- a/gemfiles/ruby_2.7_http.gemfile.lock +++ b/gemfiles/ruby_2.7_http.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.7_opensearch_2.gemfile.lock b/gemfiles/ruby_2.7_opensearch_2.gemfile.lock index 1368735f035..74b681807ed 100644 --- a/gemfiles/ruby_2.7_opensearch_2.gemfile.lock +++ b/gemfiles/ruby_2.7_opensearch_2.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.7_opensearch_3.gemfile.lock b/gemfiles/ruby_2.7_opensearch_3.gemfile.lock index d83371e0c06..389772c7f74 100644 --- a/gemfiles/ruby_2.7_opensearch_3.gemfile.lock +++ b/gemfiles/ruby_2.7_opensearch_3.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.7_opensearch_latest.gemfile.lock b/gemfiles/ruby_2.7_opensearch_latest.gemfile.lock index 426ebd206a8..f39adf81685 100644 --- a/gemfiles/ruby_2.7_opensearch_latest.gemfile.lock +++ b/gemfiles/ruby_2.7_opensearch_latest.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.7_opentelemetry.gemfile.lock b/gemfiles/ruby_2.7_opentelemetry.gemfile.lock index 087234d7005..b064bc896d7 100755 --- a/gemfiles/ruby_2.7_opentelemetry.gemfile.lock +++ b/gemfiles/ruby_2.7_opentelemetry.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.7_opentelemetry_otlp.gemfile.lock b/gemfiles/ruby_2.7_opentelemetry_otlp.gemfile.lock index fd74911bdc7..85793eacb54 100644 --- a/gemfiles/ruby_2.7_opentelemetry_otlp.gemfile.lock +++ b/gemfiles/ruby_2.7_opentelemetry_otlp.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.7_rack_1.gemfile.lock b/gemfiles/ruby_2.7_rack_1.gemfile.lock index fd75ce099a8..e1b22b3e211 100644 --- a/gemfiles/ruby_2.7_rack_1.gemfile.lock +++ b/gemfiles/ruby_2.7_rack_1.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.7_rack_2.gemfile.lock b/gemfiles/ruby_2.7_rack_2.gemfile.lock index d2ceb5fb3a1..9197685060c 100644 --- a/gemfiles/ruby_2.7_rack_2.gemfile.lock +++ b/gemfiles/ruby_2.7_rack_2.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.7_rack_3.gemfile.lock b/gemfiles/ruby_2.7_rack_3.gemfile.lock index 36f8fdfb8ae..ed1f3283038 100644 --- a/gemfiles/ruby_2.7_rack_3.gemfile.lock +++ b/gemfiles/ruby_2.7_rack_3.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.7_rack_latest.gemfile.lock b/gemfiles/ruby_2.7_rack_latest.gemfile.lock index 5e89e311536..b15e2ba8c9e 100644 --- a/gemfiles/ruby_2.7_rack_latest.gemfile.lock +++ b/gemfiles/ruby_2.7_rack_latest.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.7_rails5_mysql2.gemfile.lock b/gemfiles/ruby_2.7_rails5_mysql2.gemfile.lock index 853aa165be8..2a85c44c429 100644 --- a/gemfiles/ruby_2.7_rails5_mysql2.gemfile.lock +++ b/gemfiles/ruby_2.7_rails5_mysql2.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.7_rails5_postgres.gemfile.lock b/gemfiles/ruby_2.7_rails5_postgres.gemfile.lock index 7be589e7ccd..914de1177af 100644 --- a/gemfiles/ruby_2.7_rails5_postgres.gemfile.lock +++ b/gemfiles/ruby_2.7_rails5_postgres.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.7_rails5_postgres_redis.gemfile.lock b/gemfiles/ruby_2.7_rails5_postgres_redis.gemfile.lock index f6e7732925b..e66c7606ddb 100644 --- a/gemfiles/ruby_2.7_rails5_postgres_redis.gemfile.lock +++ b/gemfiles/ruby_2.7_rails5_postgres_redis.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.7_rails5_postgres_redis_activesupport.gemfile.lock b/gemfiles/ruby_2.7_rails5_postgres_redis_activesupport.gemfile.lock index 65968e35cd9..3e7e912b920 100644 --- a/gemfiles/ruby_2.7_rails5_postgres_redis_activesupport.gemfile.lock +++ b/gemfiles/ruby_2.7_rails5_postgres_redis_activesupport.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.7_rails5_postgres_sidekiq.gemfile.lock b/gemfiles/ruby_2.7_rails5_postgres_sidekiq.gemfile.lock index ebf7ac2ba96..212c7e250c7 100644 --- a/gemfiles/ruby_2.7_rails5_postgres_sidekiq.gemfile.lock +++ b/gemfiles/ruby_2.7_rails5_postgres_sidekiq.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.7_rails5_semantic_logger.gemfile.lock b/gemfiles/ruby_2.7_rails5_semantic_logger.gemfile.lock index 4dc6fc01867..43311169f15 100644 --- a/gemfiles/ruby_2.7_rails5_semantic_logger.gemfile.lock +++ b/gemfiles/ruby_2.7_rails5_semantic_logger.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.7_rails61_mysql2.gemfile.lock b/gemfiles/ruby_2.7_rails61_mysql2.gemfile.lock index 2e01d5e20c2..d5fc9d4c73a 100644 --- a/gemfiles/ruby_2.7_rails61_mysql2.gemfile.lock +++ b/gemfiles/ruby_2.7_rails61_mysql2.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.7_rails61_postgres.gemfile.lock b/gemfiles/ruby_2.7_rails61_postgres.gemfile.lock index f0a47a871fe..156ab973439 100644 --- a/gemfiles/ruby_2.7_rails61_postgres.gemfile.lock +++ b/gemfiles/ruby_2.7_rails61_postgres.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.7_rails61_postgres_redis.gemfile.lock b/gemfiles/ruby_2.7_rails61_postgres_redis.gemfile.lock index 2d7c4040bc2..b5b9ebc08d3 100644 --- a/gemfiles/ruby_2.7_rails61_postgres_redis.gemfile.lock +++ b/gemfiles/ruby_2.7_rails61_postgres_redis.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.7_rails61_postgres_sidekiq.gemfile.lock b/gemfiles/ruby_2.7_rails61_postgres_sidekiq.gemfile.lock index a131d0998c6..252cf29bcb4 100644 --- a/gemfiles/ruby_2.7_rails61_postgres_sidekiq.gemfile.lock +++ b/gemfiles/ruby_2.7_rails61_postgres_sidekiq.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.7_rails61_semantic_logger.gemfile.lock b/gemfiles/ruby_2.7_rails61_semantic_logger.gemfile.lock index c6ea9f187ec..9bf425d37be 100644 --- a/gemfiles/ruby_2.7_rails61_semantic_logger.gemfile.lock +++ b/gemfiles/ruby_2.7_rails61_semantic_logger.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.7_rails6_mysql2.gemfile.lock b/gemfiles/ruby_2.7_rails6_mysql2.gemfile.lock index 49c8af872fb..b4c33a51090 100644 --- a/gemfiles/ruby_2.7_rails6_mysql2.gemfile.lock +++ b/gemfiles/ruby_2.7_rails6_mysql2.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.7_rails6_postgres.gemfile.lock b/gemfiles/ruby_2.7_rails6_postgres.gemfile.lock index 4f13761d127..fd040d493af 100644 --- a/gemfiles/ruby_2.7_rails6_postgres.gemfile.lock +++ b/gemfiles/ruby_2.7_rails6_postgres.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.7_rails6_postgres_redis.gemfile.lock b/gemfiles/ruby_2.7_rails6_postgres_redis.gemfile.lock index 2fd8ff20020..1d2f6ca9d4f 100644 --- a/gemfiles/ruby_2.7_rails6_postgres_redis.gemfile.lock +++ b/gemfiles/ruby_2.7_rails6_postgres_redis.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.7_rails6_postgres_redis_activesupport.gemfile.lock b/gemfiles/ruby_2.7_rails6_postgres_redis_activesupport.gemfile.lock index 4c548a02970..a2fb259a550 100644 --- a/gemfiles/ruby_2.7_rails6_postgres_redis_activesupport.gemfile.lock +++ b/gemfiles/ruby_2.7_rails6_postgres_redis_activesupport.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.7_rails6_postgres_sidekiq.gemfile.lock b/gemfiles/ruby_2.7_rails6_postgres_sidekiq.gemfile.lock index 6789563ab58..c869a60838b 100644 --- a/gemfiles/ruby_2.7_rails6_postgres_sidekiq.gemfile.lock +++ b/gemfiles/ruby_2.7_rails6_postgres_sidekiq.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.7_rails6_semantic_logger.gemfile.lock b/gemfiles/ruby_2.7_rails6_semantic_logger.gemfile.lock index a76bb5e8d49..8af45261980 100644 --- a/gemfiles/ruby_2.7_rails6_semantic_logger.gemfile.lock +++ b/gemfiles/ruby_2.7_rails6_semantic_logger.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.7_redis_3.gemfile.lock b/gemfiles/ruby_2.7_redis_3.gemfile.lock index b6b2bf8616a..d715a99918e 100644 --- a/gemfiles/ruby_2.7_redis_3.gemfile.lock +++ b/gemfiles/ruby_2.7_redis_3.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.7_redis_4.gemfile.lock b/gemfiles/ruby_2.7_redis_4.gemfile.lock index f9ce05e9ce7..190ce7a261e 100644 --- a/gemfiles/ruby_2.7_redis_4.gemfile.lock +++ b/gemfiles/ruby_2.7_redis_4.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.7_redis_5.gemfile.lock b/gemfiles/ruby_2.7_redis_5.gemfile.lock index 51009ca99b4..684afb9994f 100644 --- a/gemfiles/ruby_2.7_redis_5.gemfile.lock +++ b/gemfiles/ruby_2.7_redis_5.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.7_relational_db.gemfile.lock b/gemfiles/ruby_2.7_relational_db.gemfile.lock index 3a7305f7290..63279d71a46 100644 --- a/gemfiles/ruby_2.7_relational_db.gemfile.lock +++ b/gemfiles/ruby_2.7_relational_db.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.7_resque2_redis3.gemfile.lock b/gemfiles/ruby_2.7_resque2_redis3.gemfile.lock index 350671a1101..8b0e7b84e30 100644 --- a/gemfiles/ruby_2.7_resque2_redis3.gemfile.lock +++ b/gemfiles/ruby_2.7_resque2_redis3.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.7_resque2_redis4.gemfile.lock b/gemfiles/ruby_2.7_resque2_redis4.gemfile.lock index b25399cd20e..1f7851c8fa3 100644 --- a/gemfiles/ruby_2.7_resque2_redis4.gemfile.lock +++ b/gemfiles/ruby_2.7_resque2_redis4.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.7_sinatra_2.gemfile.lock b/gemfiles/ruby_2.7_sinatra_2.gemfile.lock index d7376db095a..d8ca16f53fa 100644 --- a/gemfiles/ruby_2.7_sinatra_2.gemfile.lock +++ b/gemfiles/ruby_2.7_sinatra_2.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.7_sinatra_3.gemfile.lock b/gemfiles/ruby_2.7_sinatra_3.gemfile.lock index a37d75b6468..40ce83bd749 100644 --- a/gemfiles/ruby_2.7_sinatra_3.gemfile.lock +++ b/gemfiles/ruby_2.7_sinatra_3.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.7_stripe_10.gemfile.lock b/gemfiles/ruby_2.7_stripe_10.gemfile.lock index 334833031de..062a0969804 100644 --- a/gemfiles/ruby_2.7_stripe_10.gemfile.lock +++ b/gemfiles/ruby_2.7_stripe_10.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.7_stripe_11.gemfile.lock b/gemfiles/ruby_2.7_stripe_11.gemfile.lock index 15f4901bcf4..1df2cdebe18 100644 --- a/gemfiles/ruby_2.7_stripe_11.gemfile.lock +++ b/gemfiles/ruby_2.7_stripe_11.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.7_stripe_12.gemfile.lock b/gemfiles/ruby_2.7_stripe_12.gemfile.lock index 3ac2c6495bf..c29e11548e0 100644 --- a/gemfiles/ruby_2.7_stripe_12.gemfile.lock +++ b/gemfiles/ruby_2.7_stripe_12.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.7_stripe_7.gemfile.lock b/gemfiles/ruby_2.7_stripe_7.gemfile.lock index 4340d12bfa3..aa627f83c87 100644 --- a/gemfiles/ruby_2.7_stripe_7.gemfile.lock +++ b/gemfiles/ruby_2.7_stripe_7.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.7_stripe_8.gemfile.lock b/gemfiles/ruby_2.7_stripe_8.gemfile.lock index 94f71a25f3b..49cd1c37293 100644 --- a/gemfiles/ruby_2.7_stripe_8.gemfile.lock +++ b/gemfiles/ruby_2.7_stripe_8.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.7_stripe_9.gemfile.lock b/gemfiles/ruby_2.7_stripe_9.gemfile.lock index a29b6530a3a..56cb7a9abe6 100644 --- a/gemfiles/ruby_2.7_stripe_9.gemfile.lock +++ b/gemfiles/ruby_2.7_stripe_9.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.7_stripe_latest.gemfile.lock b/gemfiles/ruby_2.7_stripe_latest.gemfile.lock index c6798e47f06..9af95cb81f3 100644 --- a/gemfiles/ruby_2.7_stripe_latest.gemfile.lock +++ b/gemfiles/ruby_2.7_stripe_latest.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_2.7_stripe_min.gemfile.lock b/gemfiles/ruby_2.7_stripe_min.gemfile.lock index 57f3b91b7d5..eb7a28186dd 100644 --- a/gemfiles/ruby_2.7_stripe_min.gemfile.lock +++ b/gemfiles/ruby_2.7_stripe_min.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.0_activesupport.gemfile.lock b/gemfiles/ruby_3.0_activesupport.gemfile.lock index df71ee07e13..a22345fad7e 100644 --- a/gemfiles/ruby_3.0_activesupport.gemfile.lock +++ b/gemfiles/ruby_3.0_activesupport.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.0_aws.gemfile.lock b/gemfiles/ruby_3.0_aws.gemfile.lock index 1bdd0c37033..bda3d9d4bf7 100644 --- a/gemfiles/ruby_3.0_aws.gemfile.lock +++ b/gemfiles/ruby_3.0_aws.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.0_contrib.gemfile.lock b/gemfiles/ruby_3.0_contrib.gemfile.lock index 9f98be69469..8db06f082c7 100644 --- a/gemfiles/ruby_3.0_contrib.gemfile.lock +++ b/gemfiles/ruby_3.0_contrib.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.0_contrib_old.gemfile.lock b/gemfiles/ruby_3.0_contrib_old.gemfile.lock index 18ed8bec27c..02547702641 100644 --- a/gemfiles/ruby_3.0_contrib_old.gemfile.lock +++ b/gemfiles/ruby_3.0_contrib_old.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.0_core_old.gemfile.lock b/gemfiles/ruby_3.0_core_old.gemfile.lock index 6c20efc2e64..7d999130800 100644 --- a/gemfiles/ruby_3.0_core_old.gemfile.lock +++ b/gemfiles/ruby_3.0_core_old.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.0_elasticsearch_7.gemfile.lock b/gemfiles/ruby_3.0_elasticsearch_7.gemfile.lock index bf02dae1308..4a9735c53e0 100644 --- a/gemfiles/ruby_3.0_elasticsearch_7.gemfile.lock +++ b/gemfiles/ruby_3.0_elasticsearch_7.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.0_elasticsearch_8.gemfile.lock b/gemfiles/ruby_3.0_elasticsearch_8.gemfile.lock index 2b78dee573c..15e7336654a 100644 --- a/gemfiles/ruby_3.0_elasticsearch_8.gemfile.lock +++ b/gemfiles/ruby_3.0_elasticsearch_8.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.0_elasticsearch_latest.gemfile.lock b/gemfiles/ruby_3.0_elasticsearch_latest.gemfile.lock index 01619ae1d99..cb325b993f7 100644 --- a/gemfiles/ruby_3.0_elasticsearch_latest.gemfile.lock +++ b/gemfiles/ruby_3.0_elasticsearch_latest.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.0_graphql_1.13.gemfile.lock b/gemfiles/ruby_3.0_graphql_1.13.gemfile.lock index a1fa17e8c14..6a168721ab9 100644 --- a/gemfiles/ruby_3.0_graphql_1.13.gemfile.lock +++ b/gemfiles/ruby_3.0_graphql_1.13.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.0_graphql_2.0.gemfile.lock b/gemfiles/ruby_3.0_graphql_2.0.gemfile.lock index 60017e2568a..862bde4a9ce 100644 --- a/gemfiles/ruby_3.0_graphql_2.0.gemfile.lock +++ b/gemfiles/ruby_3.0_graphql_2.0.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.0_graphql_2.1.gemfile.lock b/gemfiles/ruby_3.0_graphql_2.1.gemfile.lock index 0cd0f916a32..6d74644c9ad 100644 --- a/gemfiles/ruby_3.0_graphql_2.1.gemfile.lock +++ b/gemfiles/ruby_3.0_graphql_2.1.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.0_graphql_2.2.gemfile.lock b/gemfiles/ruby_3.0_graphql_2.2.gemfile.lock index b894ba501c6..db061f3e7fd 100644 --- a/gemfiles/ruby_3.0_graphql_2.2.gemfile.lock +++ b/gemfiles/ruby_3.0_graphql_2.2.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.0_graphql_2.3.gemfile.lock b/gemfiles/ruby_3.0_graphql_2.3.gemfile.lock index 4c812ec6927..ec4a9dbba26 100644 --- a/gemfiles/ruby_3.0_graphql_2.3.gemfile.lock +++ b/gemfiles/ruby_3.0_graphql_2.3.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.0_http.gemfile.lock b/gemfiles/ruby_3.0_http.gemfile.lock index 96c3c4c248a..f9dd14fdf80 100644 --- a/gemfiles/ruby_3.0_http.gemfile.lock +++ b/gemfiles/ruby_3.0_http.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.0_opensearch_2.gemfile.lock b/gemfiles/ruby_3.0_opensearch_2.gemfile.lock index 45aae6d9dfe..d570d4418f9 100644 --- a/gemfiles/ruby_3.0_opensearch_2.gemfile.lock +++ b/gemfiles/ruby_3.0_opensearch_2.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.0_opensearch_3.gemfile.lock b/gemfiles/ruby_3.0_opensearch_3.gemfile.lock index 5188e90cf63..6e83f9e8212 100644 --- a/gemfiles/ruby_3.0_opensearch_3.gemfile.lock +++ b/gemfiles/ruby_3.0_opensearch_3.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.0_opensearch_latest.gemfile.lock b/gemfiles/ruby_3.0_opensearch_latest.gemfile.lock index ab8f8b7dea8..11a274aab97 100644 --- a/gemfiles/ruby_3.0_opensearch_latest.gemfile.lock +++ b/gemfiles/ruby_3.0_opensearch_latest.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.0_opentelemetry.gemfile.lock b/gemfiles/ruby_3.0_opentelemetry.gemfile.lock index db98389ce62..31757b6c5e7 100755 --- a/gemfiles/ruby_3.0_opentelemetry.gemfile.lock +++ b/gemfiles/ruby_3.0_opentelemetry.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.0_opentelemetry_otlp.gemfile.lock b/gemfiles/ruby_3.0_opentelemetry_otlp.gemfile.lock index 6ac2d022584..35fde18ccad 100644 --- a/gemfiles/ruby_3.0_opentelemetry_otlp.gemfile.lock +++ b/gemfiles/ruby_3.0_opentelemetry_otlp.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.0_rack_1.gemfile.lock b/gemfiles/ruby_3.0_rack_1.gemfile.lock index 078b18131e6..84a62fdfdff 100644 --- a/gemfiles/ruby_3.0_rack_1.gemfile.lock +++ b/gemfiles/ruby_3.0_rack_1.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.0_rack_2.gemfile.lock b/gemfiles/ruby_3.0_rack_2.gemfile.lock index 74480c804e2..77dcf5c9e25 100644 --- a/gemfiles/ruby_3.0_rack_2.gemfile.lock +++ b/gemfiles/ruby_3.0_rack_2.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.0_rack_3.gemfile.lock b/gemfiles/ruby_3.0_rack_3.gemfile.lock index 385e62182a2..03457a9cf46 100644 --- a/gemfiles/ruby_3.0_rack_3.gemfile.lock +++ b/gemfiles/ruby_3.0_rack_3.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.0_rack_latest.gemfile.lock b/gemfiles/ruby_3.0_rack_latest.gemfile.lock index 8d21c903e5a..b8fd6daa798 100644 --- a/gemfiles/ruby_3.0_rack_latest.gemfile.lock +++ b/gemfiles/ruby_3.0_rack_latest.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.0_rails61_mysql2.gemfile.lock b/gemfiles/ruby_3.0_rails61_mysql2.gemfile.lock index f0bd90eed18..eb5c2ad6117 100644 --- a/gemfiles/ruby_3.0_rails61_mysql2.gemfile.lock +++ b/gemfiles/ruby_3.0_rails61_mysql2.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.0_rails61_postgres.gemfile.lock b/gemfiles/ruby_3.0_rails61_postgres.gemfile.lock index 00fee7feefb..b29390f0983 100644 --- a/gemfiles/ruby_3.0_rails61_postgres.gemfile.lock +++ b/gemfiles/ruby_3.0_rails61_postgres.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.0_rails61_postgres_redis.gemfile.lock b/gemfiles/ruby_3.0_rails61_postgres_redis.gemfile.lock index d7da96d4115..75f41dab03a 100644 --- a/gemfiles/ruby_3.0_rails61_postgres_redis.gemfile.lock +++ b/gemfiles/ruby_3.0_rails61_postgres_redis.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.0_rails61_postgres_sidekiq.gemfile.lock b/gemfiles/ruby_3.0_rails61_postgres_sidekiq.gemfile.lock index c31bc2b0802..9982d3d10aa 100644 --- a/gemfiles/ruby_3.0_rails61_postgres_sidekiq.gemfile.lock +++ b/gemfiles/ruby_3.0_rails61_postgres_sidekiq.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.0_rails61_semantic_logger.gemfile.lock b/gemfiles/ruby_3.0_rails61_semantic_logger.gemfile.lock index 9438254b7bf..b3ad8fb75e6 100644 --- a/gemfiles/ruby_3.0_rails61_semantic_logger.gemfile.lock +++ b/gemfiles/ruby_3.0_rails61_semantic_logger.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.0_rails61_trilogy.gemfile.lock b/gemfiles/ruby_3.0_rails61_trilogy.gemfile.lock index c6156435a4e..6a86e54311d 100644 --- a/gemfiles/ruby_3.0_rails61_trilogy.gemfile.lock +++ b/gemfiles/ruby_3.0_rails61_trilogy.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.0_rails7.gemfile.lock b/gemfiles/ruby_3.0_rails7.gemfile.lock index fe24b75146e..9df0ffd5984 100644 --- a/gemfiles/ruby_3.0_rails7.gemfile.lock +++ b/gemfiles/ruby_3.0_rails7.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.0_rails71.gemfile.lock b/gemfiles/ruby_3.0_rails71.gemfile.lock index 29b98ac5dbb..5d716cae139 100644 --- a/gemfiles/ruby_3.0_rails71.gemfile.lock +++ b/gemfiles/ruby_3.0_rails71.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.0_redis_3.gemfile.lock b/gemfiles/ruby_3.0_redis_3.gemfile.lock index 3ffed2e10ba..5af038e288d 100644 --- a/gemfiles/ruby_3.0_redis_3.gemfile.lock +++ b/gemfiles/ruby_3.0_redis_3.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.0_redis_4.gemfile.lock b/gemfiles/ruby_3.0_redis_4.gemfile.lock index a479357e070..77466af7f77 100644 --- a/gemfiles/ruby_3.0_redis_4.gemfile.lock +++ b/gemfiles/ruby_3.0_redis_4.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.0_redis_5.gemfile.lock b/gemfiles/ruby_3.0_redis_5.gemfile.lock index f6c1380262e..fd8d191f17b 100644 --- a/gemfiles/ruby_3.0_redis_5.gemfile.lock +++ b/gemfiles/ruby_3.0_redis_5.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.0_relational_db.gemfile.lock b/gemfiles/ruby_3.0_relational_db.gemfile.lock index 422c4740113..3ea6e4dcdca 100644 --- a/gemfiles/ruby_3.0_relational_db.gemfile.lock +++ b/gemfiles/ruby_3.0_relational_db.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.0_resque2_redis3.gemfile.lock b/gemfiles/ruby_3.0_resque2_redis3.gemfile.lock index 0f4098fa738..63e48018b25 100644 --- a/gemfiles/ruby_3.0_resque2_redis3.gemfile.lock +++ b/gemfiles/ruby_3.0_resque2_redis3.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.0_resque2_redis4.gemfile.lock b/gemfiles/ruby_3.0_resque2_redis4.gemfile.lock index 6769d74e856..3028585b048 100644 --- a/gemfiles/ruby_3.0_resque2_redis4.gemfile.lock +++ b/gemfiles/ruby_3.0_resque2_redis4.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.0_sinatra_2.gemfile.lock b/gemfiles/ruby_3.0_sinatra_2.gemfile.lock index 1912501d13c..2672a3677f9 100644 --- a/gemfiles/ruby_3.0_sinatra_2.gemfile.lock +++ b/gemfiles/ruby_3.0_sinatra_2.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.0_sinatra_3.gemfile.lock b/gemfiles/ruby_3.0_sinatra_3.gemfile.lock index 4d4386e5040..36f5d728d26 100644 --- a/gemfiles/ruby_3.0_sinatra_3.gemfile.lock +++ b/gemfiles/ruby_3.0_sinatra_3.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.0_sinatra_4.gemfile.lock b/gemfiles/ruby_3.0_sinatra_4.gemfile.lock index 60e097df25f..b93b172890b 100644 --- a/gemfiles/ruby_3.0_sinatra_4.gemfile.lock +++ b/gemfiles/ruby_3.0_sinatra_4.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.0_stripe_10.gemfile.lock b/gemfiles/ruby_3.0_stripe_10.gemfile.lock index e1015b4bbc6..29881756d15 100644 --- a/gemfiles/ruby_3.0_stripe_10.gemfile.lock +++ b/gemfiles/ruby_3.0_stripe_10.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.0_stripe_11.gemfile.lock b/gemfiles/ruby_3.0_stripe_11.gemfile.lock index 0b6ad479210..e16eb36d8a6 100644 --- a/gemfiles/ruby_3.0_stripe_11.gemfile.lock +++ b/gemfiles/ruby_3.0_stripe_11.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.0_stripe_12.gemfile.lock b/gemfiles/ruby_3.0_stripe_12.gemfile.lock index 35fcc8aacdc..49e404f5b3b 100644 --- a/gemfiles/ruby_3.0_stripe_12.gemfile.lock +++ b/gemfiles/ruby_3.0_stripe_12.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.0_stripe_7.gemfile.lock b/gemfiles/ruby_3.0_stripe_7.gemfile.lock index adf3fc92765..fc8769e1b77 100644 --- a/gemfiles/ruby_3.0_stripe_7.gemfile.lock +++ b/gemfiles/ruby_3.0_stripe_7.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.0_stripe_8.gemfile.lock b/gemfiles/ruby_3.0_stripe_8.gemfile.lock index 96c62c022f3..046f0ca4bb6 100644 --- a/gemfiles/ruby_3.0_stripe_8.gemfile.lock +++ b/gemfiles/ruby_3.0_stripe_8.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.0_stripe_9.gemfile.lock b/gemfiles/ruby_3.0_stripe_9.gemfile.lock index 0a4a811fecc..b62dea115a0 100644 --- a/gemfiles/ruby_3.0_stripe_9.gemfile.lock +++ b/gemfiles/ruby_3.0_stripe_9.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.0_stripe_latest.gemfile.lock b/gemfiles/ruby_3.0_stripe_latest.gemfile.lock index 40d7e0acaa8..8b4579f6d91 100644 --- a/gemfiles/ruby_3.0_stripe_latest.gemfile.lock +++ b/gemfiles/ruby_3.0_stripe_latest.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.0_stripe_min.gemfile.lock b/gemfiles/ruby_3.0_stripe_min.gemfile.lock index 588e6ba03d4..2b92b88db2e 100644 --- a/gemfiles/ruby_3.0_stripe_min.gemfile.lock +++ b/gemfiles/ruby_3.0_stripe_min.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.1_activesupport.gemfile.lock b/gemfiles/ruby_3.1_activesupport.gemfile.lock index df71ee07e13..a22345fad7e 100644 --- a/gemfiles/ruby_3.1_activesupport.gemfile.lock +++ b/gemfiles/ruby_3.1_activesupport.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.1_aws.gemfile.lock b/gemfiles/ruby_3.1_aws.gemfile.lock index 1bdd0c37033..bda3d9d4bf7 100644 --- a/gemfiles/ruby_3.1_aws.gemfile.lock +++ b/gemfiles/ruby_3.1_aws.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.1_contrib.gemfile.lock b/gemfiles/ruby_3.1_contrib.gemfile.lock index 9f98be69469..8db06f082c7 100644 --- a/gemfiles/ruby_3.1_contrib.gemfile.lock +++ b/gemfiles/ruby_3.1_contrib.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.1_contrib_old.gemfile.lock b/gemfiles/ruby_3.1_contrib_old.gemfile.lock index 18ed8bec27c..02547702641 100644 --- a/gemfiles/ruby_3.1_contrib_old.gemfile.lock +++ b/gemfiles/ruby_3.1_contrib_old.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.1_core_old.gemfile.lock b/gemfiles/ruby_3.1_core_old.gemfile.lock index 6c20efc2e64..7d999130800 100644 --- a/gemfiles/ruby_3.1_core_old.gemfile.lock +++ b/gemfiles/ruby_3.1_core_old.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.1_elasticsearch_7.gemfile.lock b/gemfiles/ruby_3.1_elasticsearch_7.gemfile.lock index bf02dae1308..4a9735c53e0 100644 --- a/gemfiles/ruby_3.1_elasticsearch_7.gemfile.lock +++ b/gemfiles/ruby_3.1_elasticsearch_7.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.1_elasticsearch_8.gemfile.lock b/gemfiles/ruby_3.1_elasticsearch_8.gemfile.lock index 2b78dee573c..15e7336654a 100644 --- a/gemfiles/ruby_3.1_elasticsearch_8.gemfile.lock +++ b/gemfiles/ruby_3.1_elasticsearch_8.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.1_elasticsearch_latest.gemfile.lock b/gemfiles/ruby_3.1_elasticsearch_latest.gemfile.lock index 01619ae1d99..cb325b993f7 100644 --- a/gemfiles/ruby_3.1_elasticsearch_latest.gemfile.lock +++ b/gemfiles/ruby_3.1_elasticsearch_latest.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.1_graphql_1.13.gemfile.lock b/gemfiles/ruby_3.1_graphql_1.13.gemfile.lock index a1fa17e8c14..6a168721ab9 100644 --- a/gemfiles/ruby_3.1_graphql_1.13.gemfile.lock +++ b/gemfiles/ruby_3.1_graphql_1.13.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.1_graphql_2.0.gemfile.lock b/gemfiles/ruby_3.1_graphql_2.0.gemfile.lock index 60017e2568a..862bde4a9ce 100644 --- a/gemfiles/ruby_3.1_graphql_2.0.gemfile.lock +++ b/gemfiles/ruby_3.1_graphql_2.0.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.1_graphql_2.1.gemfile.lock b/gemfiles/ruby_3.1_graphql_2.1.gemfile.lock index 0cd0f916a32..6d74644c9ad 100644 --- a/gemfiles/ruby_3.1_graphql_2.1.gemfile.lock +++ b/gemfiles/ruby_3.1_graphql_2.1.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.1_graphql_2.2.gemfile.lock b/gemfiles/ruby_3.1_graphql_2.2.gemfile.lock index b894ba501c6..db061f3e7fd 100644 --- a/gemfiles/ruby_3.1_graphql_2.2.gemfile.lock +++ b/gemfiles/ruby_3.1_graphql_2.2.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.1_graphql_2.3.gemfile.lock b/gemfiles/ruby_3.1_graphql_2.3.gemfile.lock index 4c812ec6927..ec4a9dbba26 100644 --- a/gemfiles/ruby_3.1_graphql_2.3.gemfile.lock +++ b/gemfiles/ruby_3.1_graphql_2.3.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.1_http.gemfile.lock b/gemfiles/ruby_3.1_http.gemfile.lock index 96c3c4c248a..f9dd14fdf80 100644 --- a/gemfiles/ruby_3.1_http.gemfile.lock +++ b/gemfiles/ruby_3.1_http.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.1_opensearch_2.gemfile.lock b/gemfiles/ruby_3.1_opensearch_2.gemfile.lock index 45aae6d9dfe..d570d4418f9 100644 --- a/gemfiles/ruby_3.1_opensearch_2.gemfile.lock +++ b/gemfiles/ruby_3.1_opensearch_2.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.1_opensearch_3.gemfile.lock b/gemfiles/ruby_3.1_opensearch_3.gemfile.lock index 5188e90cf63..6e83f9e8212 100644 --- a/gemfiles/ruby_3.1_opensearch_3.gemfile.lock +++ b/gemfiles/ruby_3.1_opensearch_3.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.1_opensearch_latest.gemfile.lock b/gemfiles/ruby_3.1_opensearch_latest.gemfile.lock index ab8f8b7dea8..11a274aab97 100644 --- a/gemfiles/ruby_3.1_opensearch_latest.gemfile.lock +++ b/gemfiles/ruby_3.1_opensearch_latest.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.1_opentelemetry.gemfile.lock b/gemfiles/ruby_3.1_opentelemetry.gemfile.lock index 45774912350..50974500d94 100644 --- a/gemfiles/ruby_3.1_opentelemetry.gemfile.lock +++ b/gemfiles/ruby_3.1_opentelemetry.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.1_opentelemetry_otlp.gemfile.lock b/gemfiles/ruby_3.1_opentelemetry_otlp.gemfile.lock index 6ac2d022584..35fde18ccad 100644 --- a/gemfiles/ruby_3.1_opentelemetry_otlp.gemfile.lock +++ b/gemfiles/ruby_3.1_opentelemetry_otlp.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.1_rack_1.gemfile.lock b/gemfiles/ruby_3.1_rack_1.gemfile.lock index 078b18131e6..84a62fdfdff 100644 --- a/gemfiles/ruby_3.1_rack_1.gemfile.lock +++ b/gemfiles/ruby_3.1_rack_1.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.1_rack_2.gemfile.lock b/gemfiles/ruby_3.1_rack_2.gemfile.lock index 74480c804e2..77dcf5c9e25 100644 --- a/gemfiles/ruby_3.1_rack_2.gemfile.lock +++ b/gemfiles/ruby_3.1_rack_2.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.1_rack_3.gemfile.lock b/gemfiles/ruby_3.1_rack_3.gemfile.lock index 385e62182a2..03457a9cf46 100644 --- a/gemfiles/ruby_3.1_rack_3.gemfile.lock +++ b/gemfiles/ruby_3.1_rack_3.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.1_rack_latest.gemfile.lock b/gemfiles/ruby_3.1_rack_latest.gemfile.lock index 8d21c903e5a..b8fd6daa798 100644 --- a/gemfiles/ruby_3.1_rack_latest.gemfile.lock +++ b/gemfiles/ruby_3.1_rack_latest.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.1_rails61_mysql2.gemfile.lock b/gemfiles/ruby_3.1_rails61_mysql2.gemfile.lock index f0bd90eed18..eb5c2ad6117 100644 --- a/gemfiles/ruby_3.1_rails61_mysql2.gemfile.lock +++ b/gemfiles/ruby_3.1_rails61_mysql2.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.1_rails61_postgres.gemfile.lock b/gemfiles/ruby_3.1_rails61_postgres.gemfile.lock index 00fee7feefb..b29390f0983 100644 --- a/gemfiles/ruby_3.1_rails61_postgres.gemfile.lock +++ b/gemfiles/ruby_3.1_rails61_postgres.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.1_rails61_postgres_redis.gemfile.lock b/gemfiles/ruby_3.1_rails61_postgres_redis.gemfile.lock index d7da96d4115..75f41dab03a 100644 --- a/gemfiles/ruby_3.1_rails61_postgres_redis.gemfile.lock +++ b/gemfiles/ruby_3.1_rails61_postgres_redis.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.1_rails61_postgres_sidekiq.gemfile.lock b/gemfiles/ruby_3.1_rails61_postgres_sidekiq.gemfile.lock index c31bc2b0802..9982d3d10aa 100644 --- a/gemfiles/ruby_3.1_rails61_postgres_sidekiq.gemfile.lock +++ b/gemfiles/ruby_3.1_rails61_postgres_sidekiq.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.1_rails61_semantic_logger.gemfile.lock b/gemfiles/ruby_3.1_rails61_semantic_logger.gemfile.lock index 9438254b7bf..b3ad8fb75e6 100644 --- a/gemfiles/ruby_3.1_rails61_semantic_logger.gemfile.lock +++ b/gemfiles/ruby_3.1_rails61_semantic_logger.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.1_rails61_trilogy.gemfile.lock b/gemfiles/ruby_3.1_rails61_trilogy.gemfile.lock index c6156435a4e..6a86e54311d 100644 --- a/gemfiles/ruby_3.1_rails61_trilogy.gemfile.lock +++ b/gemfiles/ruby_3.1_rails61_trilogy.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.1_rails7.gemfile.lock b/gemfiles/ruby_3.1_rails7.gemfile.lock index fe24b75146e..9df0ffd5984 100644 --- a/gemfiles/ruby_3.1_rails7.gemfile.lock +++ b/gemfiles/ruby_3.1_rails7.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.1_rails71.gemfile.lock b/gemfiles/ruby_3.1_rails71.gemfile.lock index 29b98ac5dbb..5d716cae139 100644 --- a/gemfiles/ruby_3.1_rails71.gemfile.lock +++ b/gemfiles/ruby_3.1_rails71.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.1_redis_3.gemfile.lock b/gemfiles/ruby_3.1_redis_3.gemfile.lock index 3ffed2e10ba..5af038e288d 100644 --- a/gemfiles/ruby_3.1_redis_3.gemfile.lock +++ b/gemfiles/ruby_3.1_redis_3.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.1_redis_4.gemfile.lock b/gemfiles/ruby_3.1_redis_4.gemfile.lock index a479357e070..77466af7f77 100644 --- a/gemfiles/ruby_3.1_redis_4.gemfile.lock +++ b/gemfiles/ruby_3.1_redis_4.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.1_redis_5.gemfile.lock b/gemfiles/ruby_3.1_redis_5.gemfile.lock index f6c1380262e..fd8d191f17b 100644 --- a/gemfiles/ruby_3.1_redis_5.gemfile.lock +++ b/gemfiles/ruby_3.1_redis_5.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.1_relational_db.gemfile.lock b/gemfiles/ruby_3.1_relational_db.gemfile.lock index 422c4740113..3ea6e4dcdca 100644 --- a/gemfiles/ruby_3.1_relational_db.gemfile.lock +++ b/gemfiles/ruby_3.1_relational_db.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.1_resque2_redis3.gemfile.lock b/gemfiles/ruby_3.1_resque2_redis3.gemfile.lock index 0f4098fa738..63e48018b25 100644 --- a/gemfiles/ruby_3.1_resque2_redis3.gemfile.lock +++ b/gemfiles/ruby_3.1_resque2_redis3.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.1_resque2_redis4.gemfile.lock b/gemfiles/ruby_3.1_resque2_redis4.gemfile.lock index 6769d74e856..3028585b048 100644 --- a/gemfiles/ruby_3.1_resque2_redis4.gemfile.lock +++ b/gemfiles/ruby_3.1_resque2_redis4.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.1_sinatra_2.gemfile.lock b/gemfiles/ruby_3.1_sinatra_2.gemfile.lock index 1912501d13c..2672a3677f9 100644 --- a/gemfiles/ruby_3.1_sinatra_2.gemfile.lock +++ b/gemfiles/ruby_3.1_sinatra_2.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.1_sinatra_3.gemfile.lock b/gemfiles/ruby_3.1_sinatra_3.gemfile.lock index 4d4386e5040..36f5d728d26 100644 --- a/gemfiles/ruby_3.1_sinatra_3.gemfile.lock +++ b/gemfiles/ruby_3.1_sinatra_3.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.1_sinatra_4.gemfile.lock b/gemfiles/ruby_3.1_sinatra_4.gemfile.lock index 60e097df25f..b93b172890b 100644 --- a/gemfiles/ruby_3.1_sinatra_4.gemfile.lock +++ b/gemfiles/ruby_3.1_sinatra_4.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.1_stripe_10.gemfile.lock b/gemfiles/ruby_3.1_stripe_10.gemfile.lock index e1015b4bbc6..29881756d15 100644 --- a/gemfiles/ruby_3.1_stripe_10.gemfile.lock +++ b/gemfiles/ruby_3.1_stripe_10.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.1_stripe_11.gemfile.lock b/gemfiles/ruby_3.1_stripe_11.gemfile.lock index 0b6ad479210..e16eb36d8a6 100644 --- a/gemfiles/ruby_3.1_stripe_11.gemfile.lock +++ b/gemfiles/ruby_3.1_stripe_11.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.1_stripe_12.gemfile.lock b/gemfiles/ruby_3.1_stripe_12.gemfile.lock index 35fcc8aacdc..49e404f5b3b 100644 --- a/gemfiles/ruby_3.1_stripe_12.gemfile.lock +++ b/gemfiles/ruby_3.1_stripe_12.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.1_stripe_7.gemfile.lock b/gemfiles/ruby_3.1_stripe_7.gemfile.lock index adf3fc92765..fc8769e1b77 100644 --- a/gemfiles/ruby_3.1_stripe_7.gemfile.lock +++ b/gemfiles/ruby_3.1_stripe_7.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.1_stripe_8.gemfile.lock b/gemfiles/ruby_3.1_stripe_8.gemfile.lock index 96c62c022f3..046f0ca4bb6 100644 --- a/gemfiles/ruby_3.1_stripe_8.gemfile.lock +++ b/gemfiles/ruby_3.1_stripe_8.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.1_stripe_9.gemfile.lock b/gemfiles/ruby_3.1_stripe_9.gemfile.lock index 0a4a811fecc..b62dea115a0 100644 --- a/gemfiles/ruby_3.1_stripe_9.gemfile.lock +++ b/gemfiles/ruby_3.1_stripe_9.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.1_stripe_latest.gemfile.lock b/gemfiles/ruby_3.1_stripe_latest.gemfile.lock index 40d7e0acaa8..8b4579f6d91 100644 --- a/gemfiles/ruby_3.1_stripe_latest.gemfile.lock +++ b/gemfiles/ruby_3.1_stripe_latest.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.1_stripe_min.gemfile.lock b/gemfiles/ruby_3.1_stripe_min.gemfile.lock index 588e6ba03d4..2b92b88db2e 100644 --- a/gemfiles/ruby_3.1_stripe_min.gemfile.lock +++ b/gemfiles/ruby_3.1_stripe_min.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.2_activesupport.gemfile.lock b/gemfiles/ruby_3.2_activesupport.gemfile.lock index 4bee0a3b88d..49015316d54 100644 --- a/gemfiles/ruby_3.2_activesupport.gemfile.lock +++ b/gemfiles/ruby_3.2_activesupport.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.2_aws.gemfile.lock b/gemfiles/ruby_3.2_aws.gemfile.lock index 53a6ca46d27..573d7c7fa3f 100644 --- a/gemfiles/ruby_3.2_aws.gemfile.lock +++ b/gemfiles/ruby_3.2_aws.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.2_contrib.gemfile.lock b/gemfiles/ruby_3.2_contrib.gemfile.lock index 1790956cd6c..b0425f801f5 100644 --- a/gemfiles/ruby_3.2_contrib.gemfile.lock +++ b/gemfiles/ruby_3.2_contrib.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.2_contrib_old.gemfile.lock b/gemfiles/ruby_3.2_contrib_old.gemfile.lock index af88b918a3c..4c3b1016502 100644 --- a/gemfiles/ruby_3.2_contrib_old.gemfile.lock +++ b/gemfiles/ruby_3.2_contrib_old.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.2_core_old.gemfile.lock b/gemfiles/ruby_3.2_core_old.gemfile.lock index 16d67b5a7f6..6c31f0ed7ba 100644 --- a/gemfiles/ruby_3.2_core_old.gemfile.lock +++ b/gemfiles/ruby_3.2_core_old.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.2_elasticsearch_7.gemfile.lock b/gemfiles/ruby_3.2_elasticsearch_7.gemfile.lock index e10fa177e0e..d8c6efcb9e3 100644 --- a/gemfiles/ruby_3.2_elasticsearch_7.gemfile.lock +++ b/gemfiles/ruby_3.2_elasticsearch_7.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.2_elasticsearch_8.gemfile.lock b/gemfiles/ruby_3.2_elasticsearch_8.gemfile.lock index 8008ef3fb87..468ccb92daa 100644 --- a/gemfiles/ruby_3.2_elasticsearch_8.gemfile.lock +++ b/gemfiles/ruby_3.2_elasticsearch_8.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.2_elasticsearch_latest.gemfile.lock b/gemfiles/ruby_3.2_elasticsearch_latest.gemfile.lock index cc58f290683..5d57a15ccc9 100644 --- a/gemfiles/ruby_3.2_elasticsearch_latest.gemfile.lock +++ b/gemfiles/ruby_3.2_elasticsearch_latest.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.2_graphql_1.13.gemfile.lock b/gemfiles/ruby_3.2_graphql_1.13.gemfile.lock index 0c433fa3ab5..bccb06a741d 100644 --- a/gemfiles/ruby_3.2_graphql_1.13.gemfile.lock +++ b/gemfiles/ruby_3.2_graphql_1.13.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.2_graphql_2.0.gemfile.lock b/gemfiles/ruby_3.2_graphql_2.0.gemfile.lock index 26c41c7ed98..b7aaf6a0727 100644 --- a/gemfiles/ruby_3.2_graphql_2.0.gemfile.lock +++ b/gemfiles/ruby_3.2_graphql_2.0.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.2_graphql_2.1.gemfile.lock b/gemfiles/ruby_3.2_graphql_2.1.gemfile.lock index 1a6263a69f2..295ffd0cddb 100644 --- a/gemfiles/ruby_3.2_graphql_2.1.gemfile.lock +++ b/gemfiles/ruby_3.2_graphql_2.1.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.2_graphql_2.2.gemfile.lock b/gemfiles/ruby_3.2_graphql_2.2.gemfile.lock index 1472cced52f..71bfe9923bf 100644 --- a/gemfiles/ruby_3.2_graphql_2.2.gemfile.lock +++ b/gemfiles/ruby_3.2_graphql_2.2.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.2_graphql_2.3.gemfile.lock b/gemfiles/ruby_3.2_graphql_2.3.gemfile.lock index 4e7fbd3ed89..a5095ffe38c 100644 --- a/gemfiles/ruby_3.2_graphql_2.3.gemfile.lock +++ b/gemfiles/ruby_3.2_graphql_2.3.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.2_http.gemfile.lock b/gemfiles/ruby_3.2_http.gemfile.lock index a5dec00348d..d4318795794 100644 --- a/gemfiles/ruby_3.2_http.gemfile.lock +++ b/gemfiles/ruby_3.2_http.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.2_opensearch_2.gemfile.lock b/gemfiles/ruby_3.2_opensearch_2.gemfile.lock index c6c8fe3bd7b..a7657b3ebec 100644 --- a/gemfiles/ruby_3.2_opensearch_2.gemfile.lock +++ b/gemfiles/ruby_3.2_opensearch_2.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.2_opensearch_3.gemfile.lock b/gemfiles/ruby_3.2_opensearch_3.gemfile.lock index 144ba96ed80..55651f8bac4 100644 --- a/gemfiles/ruby_3.2_opensearch_3.gemfile.lock +++ b/gemfiles/ruby_3.2_opensearch_3.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.2_opensearch_latest.gemfile.lock b/gemfiles/ruby_3.2_opensearch_latest.gemfile.lock index 3b43e01e4cb..b163f92db7a 100644 --- a/gemfiles/ruby_3.2_opensearch_latest.gemfile.lock +++ b/gemfiles/ruby_3.2_opensearch_latest.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.2_opentelemetry.gemfile.lock b/gemfiles/ruby_3.2_opentelemetry.gemfile.lock index 1c5b23e48b0..41a9783d222 100644 --- a/gemfiles/ruby_3.2_opentelemetry.gemfile.lock +++ b/gemfiles/ruby_3.2_opentelemetry.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.2_opentelemetry_otlp.gemfile.lock b/gemfiles/ruby_3.2_opentelemetry_otlp.gemfile.lock index 8acc2160bf0..3ce7f1643e9 100644 --- a/gemfiles/ruby_3.2_opentelemetry_otlp.gemfile.lock +++ b/gemfiles/ruby_3.2_opentelemetry_otlp.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.2_rack_1.gemfile.lock b/gemfiles/ruby_3.2_rack_1.gemfile.lock index 53dfa7b7e7b..3a7d16547ce 100644 --- a/gemfiles/ruby_3.2_rack_1.gemfile.lock +++ b/gemfiles/ruby_3.2_rack_1.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.2_rack_2.gemfile.lock b/gemfiles/ruby_3.2_rack_2.gemfile.lock index 3be5868b05b..72bb44d0a9b 100644 --- a/gemfiles/ruby_3.2_rack_2.gemfile.lock +++ b/gemfiles/ruby_3.2_rack_2.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.2_rack_3.gemfile.lock b/gemfiles/ruby_3.2_rack_3.gemfile.lock index e7092cf6f09..9c023b8914f 100644 --- a/gemfiles/ruby_3.2_rack_3.gemfile.lock +++ b/gemfiles/ruby_3.2_rack_3.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.2_rack_latest.gemfile.lock b/gemfiles/ruby_3.2_rack_latest.gemfile.lock index 07727f74bdb..52723ea8091 100644 --- a/gemfiles/ruby_3.2_rack_latest.gemfile.lock +++ b/gemfiles/ruby_3.2_rack_latest.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.2_rails61_mysql2.gemfile.lock b/gemfiles/ruby_3.2_rails61_mysql2.gemfile.lock index a5ae4e640ca..3a6979c10e5 100644 --- a/gemfiles/ruby_3.2_rails61_mysql2.gemfile.lock +++ b/gemfiles/ruby_3.2_rails61_mysql2.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.2_rails61_postgres.gemfile.lock b/gemfiles/ruby_3.2_rails61_postgres.gemfile.lock index 38a5bf457f2..a54ca7526ec 100644 --- a/gemfiles/ruby_3.2_rails61_postgres.gemfile.lock +++ b/gemfiles/ruby_3.2_rails61_postgres.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.2_rails61_postgres_redis.gemfile.lock b/gemfiles/ruby_3.2_rails61_postgres_redis.gemfile.lock index ab5f566c66b..f079bbcadfd 100644 --- a/gemfiles/ruby_3.2_rails61_postgres_redis.gemfile.lock +++ b/gemfiles/ruby_3.2_rails61_postgres_redis.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.2_rails61_postgres_sidekiq.gemfile.lock b/gemfiles/ruby_3.2_rails61_postgres_sidekiq.gemfile.lock index 7a7624bf5ad..e75cdd0b85f 100644 --- a/gemfiles/ruby_3.2_rails61_postgres_sidekiq.gemfile.lock +++ b/gemfiles/ruby_3.2_rails61_postgres_sidekiq.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.2_rails61_semantic_logger.gemfile.lock b/gemfiles/ruby_3.2_rails61_semantic_logger.gemfile.lock index e91b9690c0c..d4216e2b7e5 100644 --- a/gemfiles/ruby_3.2_rails61_semantic_logger.gemfile.lock +++ b/gemfiles/ruby_3.2_rails61_semantic_logger.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.2_rails61_trilogy.gemfile.lock b/gemfiles/ruby_3.2_rails61_trilogy.gemfile.lock index 552e5d85bac..435a51b6f2a 100644 --- a/gemfiles/ruby_3.2_rails61_trilogy.gemfile.lock +++ b/gemfiles/ruby_3.2_rails61_trilogy.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.2_rails7.gemfile.lock b/gemfiles/ruby_3.2_rails7.gemfile.lock index ff4711ac4e3..79b5fd956fa 100644 --- a/gemfiles/ruby_3.2_rails7.gemfile.lock +++ b/gemfiles/ruby_3.2_rails7.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.2_rails71.gemfile.lock b/gemfiles/ruby_3.2_rails71.gemfile.lock index f146bcca9e1..33152872208 100644 --- a/gemfiles/ruby_3.2_rails71.gemfile.lock +++ b/gemfiles/ruby_3.2_rails71.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.2_redis_3.gemfile.lock b/gemfiles/ruby_3.2_redis_3.gemfile.lock index 1ba6aad4e6d..d19f3372dad 100644 --- a/gemfiles/ruby_3.2_redis_3.gemfile.lock +++ b/gemfiles/ruby_3.2_redis_3.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.2_redis_4.gemfile.lock b/gemfiles/ruby_3.2_redis_4.gemfile.lock index 4b434672ba5..905bfbcb369 100644 --- a/gemfiles/ruby_3.2_redis_4.gemfile.lock +++ b/gemfiles/ruby_3.2_redis_4.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.2_redis_5.gemfile.lock b/gemfiles/ruby_3.2_redis_5.gemfile.lock index b9babd46629..adee18c3e64 100644 --- a/gemfiles/ruby_3.2_redis_5.gemfile.lock +++ b/gemfiles/ruby_3.2_redis_5.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.2_relational_db.gemfile.lock b/gemfiles/ruby_3.2_relational_db.gemfile.lock index 65098b3321b..202f6cbbc8d 100644 --- a/gemfiles/ruby_3.2_relational_db.gemfile.lock +++ b/gemfiles/ruby_3.2_relational_db.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.2_resque2_redis3.gemfile.lock b/gemfiles/ruby_3.2_resque2_redis3.gemfile.lock index be2556893a0..0853b55ca78 100644 --- a/gemfiles/ruby_3.2_resque2_redis3.gemfile.lock +++ b/gemfiles/ruby_3.2_resque2_redis3.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.2_resque2_redis4.gemfile.lock b/gemfiles/ruby_3.2_resque2_redis4.gemfile.lock index 53ecd04134f..38834239049 100644 --- a/gemfiles/ruby_3.2_resque2_redis4.gemfile.lock +++ b/gemfiles/ruby_3.2_resque2_redis4.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.2_sinatra_2.gemfile.lock b/gemfiles/ruby_3.2_sinatra_2.gemfile.lock index 04690a4e487..062aed83569 100644 --- a/gemfiles/ruby_3.2_sinatra_2.gemfile.lock +++ b/gemfiles/ruby_3.2_sinatra_2.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.2_sinatra_3.gemfile.lock b/gemfiles/ruby_3.2_sinatra_3.gemfile.lock index e002925c020..ab77e2840da 100644 --- a/gemfiles/ruby_3.2_sinatra_3.gemfile.lock +++ b/gemfiles/ruby_3.2_sinatra_3.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.2_sinatra_4.gemfile.lock b/gemfiles/ruby_3.2_sinatra_4.gemfile.lock index 52e77b90a85..baff692a037 100644 --- a/gemfiles/ruby_3.2_sinatra_4.gemfile.lock +++ b/gemfiles/ruby_3.2_sinatra_4.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.2_stripe_10.gemfile.lock b/gemfiles/ruby_3.2_stripe_10.gemfile.lock index 52bfa5ef366..5cdab0d4dd5 100644 --- a/gemfiles/ruby_3.2_stripe_10.gemfile.lock +++ b/gemfiles/ruby_3.2_stripe_10.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.2_stripe_11.gemfile.lock b/gemfiles/ruby_3.2_stripe_11.gemfile.lock index 9f8ec8affff..572b048c9db 100644 --- a/gemfiles/ruby_3.2_stripe_11.gemfile.lock +++ b/gemfiles/ruby_3.2_stripe_11.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.2_stripe_12.gemfile.lock b/gemfiles/ruby_3.2_stripe_12.gemfile.lock index 4db1f135ed9..144ac5c56c2 100644 --- a/gemfiles/ruby_3.2_stripe_12.gemfile.lock +++ b/gemfiles/ruby_3.2_stripe_12.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.2_stripe_7.gemfile.lock b/gemfiles/ruby_3.2_stripe_7.gemfile.lock index 45c761382a0..b4594851d7a 100644 --- a/gemfiles/ruby_3.2_stripe_7.gemfile.lock +++ b/gemfiles/ruby_3.2_stripe_7.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.2_stripe_8.gemfile.lock b/gemfiles/ruby_3.2_stripe_8.gemfile.lock index 6ebf4ea78fe..567d74c8b33 100644 --- a/gemfiles/ruby_3.2_stripe_8.gemfile.lock +++ b/gemfiles/ruby_3.2_stripe_8.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.2_stripe_9.gemfile.lock b/gemfiles/ruby_3.2_stripe_9.gemfile.lock index 743b92460df..0bd36e04140 100644 --- a/gemfiles/ruby_3.2_stripe_9.gemfile.lock +++ b/gemfiles/ruby_3.2_stripe_9.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.2_stripe_latest.gemfile.lock b/gemfiles/ruby_3.2_stripe_latest.gemfile.lock index a004be5250a..be5d8a19ece 100644 --- a/gemfiles/ruby_3.2_stripe_latest.gemfile.lock +++ b/gemfiles/ruby_3.2_stripe_latest.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.2_stripe_min.gemfile.lock b/gemfiles/ruby_3.2_stripe_min.gemfile.lock index 02b52b9305b..7c7b92b7e38 100644 --- a/gemfiles/ruby_3.2_stripe_min.gemfile.lock +++ b/gemfiles/ruby_3.2_stripe_min.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.3_activesupport.gemfile.lock b/gemfiles/ruby_3.3_activesupport.gemfile.lock index e06b86fe4dd..c5106f51b1d 100644 --- a/gemfiles/ruby_3.3_activesupport.gemfile.lock +++ b/gemfiles/ruby_3.3_activesupport.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.3_aws.gemfile.lock b/gemfiles/ruby_3.3_aws.gemfile.lock index a519996483c..d43999c55dd 100644 --- a/gemfiles/ruby_3.3_aws.gemfile.lock +++ b/gemfiles/ruby_3.3_aws.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.3_contrib.gemfile.lock b/gemfiles/ruby_3.3_contrib.gemfile.lock index 6e196cacd87..b02e1b13b47 100644 --- a/gemfiles/ruby_3.3_contrib.gemfile.lock +++ b/gemfiles/ruby_3.3_contrib.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.3_contrib_old.gemfile.lock b/gemfiles/ruby_3.3_contrib_old.gemfile.lock index 42b6236ce28..20d009e1652 100644 --- a/gemfiles/ruby_3.3_contrib_old.gemfile.lock +++ b/gemfiles/ruby_3.3_contrib_old.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.3_core_old.gemfile.lock b/gemfiles/ruby_3.3_core_old.gemfile.lock index f263e11b13f..233b7e5a29a 100644 --- a/gemfiles/ruby_3.3_core_old.gemfile.lock +++ b/gemfiles/ruby_3.3_core_old.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.3_elasticsearch_7.gemfile.lock b/gemfiles/ruby_3.3_elasticsearch_7.gemfile.lock index 5cba7cd654e..6a1460a4ded 100644 --- a/gemfiles/ruby_3.3_elasticsearch_7.gemfile.lock +++ b/gemfiles/ruby_3.3_elasticsearch_7.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.3_elasticsearch_8.gemfile.lock b/gemfiles/ruby_3.3_elasticsearch_8.gemfile.lock index 86ac978ee06..cf3ae4bc680 100644 --- a/gemfiles/ruby_3.3_elasticsearch_8.gemfile.lock +++ b/gemfiles/ruby_3.3_elasticsearch_8.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.3_elasticsearch_latest.gemfile.lock b/gemfiles/ruby_3.3_elasticsearch_latest.gemfile.lock index cc58f290683..5d57a15ccc9 100644 --- a/gemfiles/ruby_3.3_elasticsearch_latest.gemfile.lock +++ b/gemfiles/ruby_3.3_elasticsearch_latest.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.3_graphql_1.13.gemfile.lock b/gemfiles/ruby_3.3_graphql_1.13.gemfile.lock index e0b510792f4..71514685846 100644 --- a/gemfiles/ruby_3.3_graphql_1.13.gemfile.lock +++ b/gemfiles/ruby_3.3_graphql_1.13.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.3_graphql_2.0.gemfile.lock b/gemfiles/ruby_3.3_graphql_2.0.gemfile.lock index 0fec4330658..e5a7c609067 100644 --- a/gemfiles/ruby_3.3_graphql_2.0.gemfile.lock +++ b/gemfiles/ruby_3.3_graphql_2.0.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.3_graphql_2.1.gemfile.lock b/gemfiles/ruby_3.3_graphql_2.1.gemfile.lock index 975130fce22..8a4dca49f69 100644 --- a/gemfiles/ruby_3.3_graphql_2.1.gemfile.lock +++ b/gemfiles/ruby_3.3_graphql_2.1.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.3_graphql_2.2.gemfile.lock b/gemfiles/ruby_3.3_graphql_2.2.gemfile.lock index faff04ad860..8e3d55ae439 100644 --- a/gemfiles/ruby_3.3_graphql_2.2.gemfile.lock +++ b/gemfiles/ruby_3.3_graphql_2.2.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.3_graphql_2.3.gemfile.lock b/gemfiles/ruby_3.3_graphql_2.3.gemfile.lock index 4e7fbd3ed89..a5095ffe38c 100644 --- a/gemfiles/ruby_3.3_graphql_2.3.gemfile.lock +++ b/gemfiles/ruby_3.3_graphql_2.3.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.3_http.gemfile.lock b/gemfiles/ruby_3.3_http.gemfile.lock index 4da3b684c8d..f555e87389f 100644 --- a/gemfiles/ruby_3.3_http.gemfile.lock +++ b/gemfiles/ruby_3.3_http.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.3_opensearch_2.gemfile.lock b/gemfiles/ruby_3.3_opensearch_2.gemfile.lock index e7bb6abae6a..097814f8e11 100644 --- a/gemfiles/ruby_3.3_opensearch_2.gemfile.lock +++ b/gemfiles/ruby_3.3_opensearch_2.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.3_opensearch_3.gemfile.lock b/gemfiles/ruby_3.3_opensearch_3.gemfile.lock index 0857f683a47..bc05cb87149 100644 --- a/gemfiles/ruby_3.3_opensearch_3.gemfile.lock +++ b/gemfiles/ruby_3.3_opensearch_3.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.3_opensearch_latest.gemfile.lock b/gemfiles/ruby_3.3_opensearch_latest.gemfile.lock index 3b43e01e4cb..b163f92db7a 100644 --- a/gemfiles/ruby_3.3_opensearch_latest.gemfile.lock +++ b/gemfiles/ruby_3.3_opensearch_latest.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.3_opentelemetry.gemfile.lock b/gemfiles/ruby_3.3_opentelemetry.gemfile.lock index 1d0cd78272e..f79a0277174 100644 --- a/gemfiles/ruby_3.3_opentelemetry.gemfile.lock +++ b/gemfiles/ruby_3.3_opentelemetry.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.3_opentelemetry_otlp.gemfile.lock b/gemfiles/ruby_3.3_opentelemetry_otlp.gemfile.lock index 8acc2160bf0..3ce7f1643e9 100644 --- a/gemfiles/ruby_3.3_opentelemetry_otlp.gemfile.lock +++ b/gemfiles/ruby_3.3_opentelemetry_otlp.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.3_rack_2.gemfile.lock b/gemfiles/ruby_3.3_rack_2.gemfile.lock index b56178621c4..a3ad9640ef5 100644 --- a/gemfiles/ruby_3.3_rack_2.gemfile.lock +++ b/gemfiles/ruby_3.3_rack_2.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.3_rack_3.gemfile.lock b/gemfiles/ruby_3.3_rack_3.gemfile.lock index 32079f5dc77..4877abb4396 100644 --- a/gemfiles/ruby_3.3_rack_3.gemfile.lock +++ b/gemfiles/ruby_3.3_rack_3.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.3_rack_latest.gemfile.lock b/gemfiles/ruby_3.3_rack_latest.gemfile.lock index 07727f74bdb..52723ea8091 100644 --- a/gemfiles/ruby_3.3_rack_latest.gemfile.lock +++ b/gemfiles/ruby_3.3_rack_latest.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.3_rails61_mysql2.gemfile.lock b/gemfiles/ruby_3.3_rails61_mysql2.gemfile.lock index 52acc84ce59..033a4a7568c 100644 --- a/gemfiles/ruby_3.3_rails61_mysql2.gemfile.lock +++ b/gemfiles/ruby_3.3_rails61_mysql2.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.3_rails61_postgres.gemfile.lock b/gemfiles/ruby_3.3_rails61_postgres.gemfile.lock index c4b1aa312dc..2b43b8c30eb 100644 --- a/gemfiles/ruby_3.3_rails61_postgres.gemfile.lock +++ b/gemfiles/ruby_3.3_rails61_postgres.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.3_rails61_postgres_redis.gemfile.lock b/gemfiles/ruby_3.3_rails61_postgres_redis.gemfile.lock index a689a09fc60..0b13ac3ba44 100644 --- a/gemfiles/ruby_3.3_rails61_postgres_redis.gemfile.lock +++ b/gemfiles/ruby_3.3_rails61_postgres_redis.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.3_rails61_postgres_sidekiq.gemfile.lock b/gemfiles/ruby_3.3_rails61_postgres_sidekiq.gemfile.lock index ea6913a70dd..391ea760d3b 100644 --- a/gemfiles/ruby_3.3_rails61_postgres_sidekiq.gemfile.lock +++ b/gemfiles/ruby_3.3_rails61_postgres_sidekiq.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.3_rails61_semantic_logger.gemfile.lock b/gemfiles/ruby_3.3_rails61_semantic_logger.gemfile.lock index eb0ed7a30bc..065b3cf5de2 100644 --- a/gemfiles/ruby_3.3_rails61_semantic_logger.gemfile.lock +++ b/gemfiles/ruby_3.3_rails61_semantic_logger.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.3_rails61_trilogy.gemfile.lock b/gemfiles/ruby_3.3_rails61_trilogy.gemfile.lock index f14ef7d43d5..1faed1a383c 100644 --- a/gemfiles/ruby_3.3_rails61_trilogy.gemfile.lock +++ b/gemfiles/ruby_3.3_rails61_trilogy.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.3_rails7.gemfile.lock b/gemfiles/ruby_3.3_rails7.gemfile.lock index ff4711ac4e3..79b5fd956fa 100644 --- a/gemfiles/ruby_3.3_rails7.gemfile.lock +++ b/gemfiles/ruby_3.3_rails7.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.3_rails71.gemfile.lock b/gemfiles/ruby_3.3_rails71.gemfile.lock index f146bcca9e1..33152872208 100644 --- a/gemfiles/ruby_3.3_rails71.gemfile.lock +++ b/gemfiles/ruby_3.3_rails71.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.3_redis_3.gemfile.lock b/gemfiles/ruby_3.3_redis_3.gemfile.lock index 3e4030baf73..275ebc01231 100644 --- a/gemfiles/ruby_3.3_redis_3.gemfile.lock +++ b/gemfiles/ruby_3.3_redis_3.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.3_redis_4.gemfile.lock b/gemfiles/ruby_3.3_redis_4.gemfile.lock index 5c26d395ae4..5198360afd9 100644 --- a/gemfiles/ruby_3.3_redis_4.gemfile.lock +++ b/gemfiles/ruby_3.3_redis_4.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.3_redis_5.gemfile.lock b/gemfiles/ruby_3.3_redis_5.gemfile.lock index 424113b85ac..9b3d423f569 100644 --- a/gemfiles/ruby_3.3_redis_5.gemfile.lock +++ b/gemfiles/ruby_3.3_redis_5.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.3_relational_db.gemfile.lock b/gemfiles/ruby_3.3_relational_db.gemfile.lock index d30e97cee52..97289178de6 100644 --- a/gemfiles/ruby_3.3_relational_db.gemfile.lock +++ b/gemfiles/ruby_3.3_relational_db.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.3_resque2_redis3.gemfile.lock b/gemfiles/ruby_3.3_resque2_redis3.gemfile.lock index f849a24826f..0719fd3e73a 100644 --- a/gemfiles/ruby_3.3_resque2_redis3.gemfile.lock +++ b/gemfiles/ruby_3.3_resque2_redis3.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.3_resque2_redis4.gemfile.lock b/gemfiles/ruby_3.3_resque2_redis4.gemfile.lock index b40bb069ba1..af8510ad15b 100644 --- a/gemfiles/ruby_3.3_resque2_redis4.gemfile.lock +++ b/gemfiles/ruby_3.3_resque2_redis4.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.3_sinatra_2.gemfile.lock b/gemfiles/ruby_3.3_sinatra_2.gemfile.lock index 04690a4e487..062aed83569 100644 --- a/gemfiles/ruby_3.3_sinatra_2.gemfile.lock +++ b/gemfiles/ruby_3.3_sinatra_2.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.3_sinatra_3.gemfile.lock b/gemfiles/ruby_3.3_sinatra_3.gemfile.lock index e002925c020..ab77e2840da 100644 --- a/gemfiles/ruby_3.3_sinatra_3.gemfile.lock +++ b/gemfiles/ruby_3.3_sinatra_3.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.3_sinatra_4.gemfile.lock b/gemfiles/ruby_3.3_sinatra_4.gemfile.lock index 52e77b90a85..baff692a037 100644 --- a/gemfiles/ruby_3.3_sinatra_4.gemfile.lock +++ b/gemfiles/ruby_3.3_sinatra_4.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.3_stripe_10.gemfile.lock b/gemfiles/ruby_3.3_stripe_10.gemfile.lock index 52bfa5ef366..5cdab0d4dd5 100644 --- a/gemfiles/ruby_3.3_stripe_10.gemfile.lock +++ b/gemfiles/ruby_3.3_stripe_10.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.3_stripe_11.gemfile.lock b/gemfiles/ruby_3.3_stripe_11.gemfile.lock index 9f8ec8affff..572b048c9db 100644 --- a/gemfiles/ruby_3.3_stripe_11.gemfile.lock +++ b/gemfiles/ruby_3.3_stripe_11.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.3_stripe_12.gemfile.lock b/gemfiles/ruby_3.3_stripe_12.gemfile.lock index 4db1f135ed9..144ac5c56c2 100644 --- a/gemfiles/ruby_3.3_stripe_12.gemfile.lock +++ b/gemfiles/ruby_3.3_stripe_12.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.3_stripe_7.gemfile.lock b/gemfiles/ruby_3.3_stripe_7.gemfile.lock index 45c761382a0..b4594851d7a 100644 --- a/gemfiles/ruby_3.3_stripe_7.gemfile.lock +++ b/gemfiles/ruby_3.3_stripe_7.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.3_stripe_8.gemfile.lock b/gemfiles/ruby_3.3_stripe_8.gemfile.lock index 6ebf4ea78fe..567d74c8b33 100644 --- a/gemfiles/ruby_3.3_stripe_8.gemfile.lock +++ b/gemfiles/ruby_3.3_stripe_8.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.3_stripe_9.gemfile.lock b/gemfiles/ruby_3.3_stripe_9.gemfile.lock index 743b92460df..0bd36e04140 100644 --- a/gemfiles/ruby_3.3_stripe_9.gemfile.lock +++ b/gemfiles/ruby_3.3_stripe_9.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.3_stripe_latest.gemfile.lock b/gemfiles/ruby_3.3_stripe_latest.gemfile.lock index a004be5250a..be5d8a19ece 100644 --- a/gemfiles/ruby_3.3_stripe_latest.gemfile.lock +++ b/gemfiles/ruby_3.3_stripe_latest.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.3_stripe_min.gemfile.lock b/gemfiles/ruby_3.3_stripe_min.gemfile.lock index 02b52b9305b..7c7b92b7e38 100644 --- a/gemfiles/ruby_3.3_stripe_min.gemfile.lock +++ b/gemfiles/ruby_3.3_stripe_min.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.4_activesupport.gemfile.lock b/gemfiles/ruby_3.4_activesupport.gemfile.lock index 8495339a4ee..368a779d4ae 100644 --- a/gemfiles/ruby_3.4_activesupport.gemfile.lock +++ b/gemfiles/ruby_3.4_activesupport.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.4_aws.gemfile.lock b/gemfiles/ruby_3.4_aws.gemfile.lock index b8b7f7fcf8f..bc01a99aeb4 100644 --- a/gemfiles/ruby_3.4_aws.gemfile.lock +++ b/gemfiles/ruby_3.4_aws.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.4_contrib.gemfile.lock b/gemfiles/ruby_3.4_contrib.gemfile.lock index aa823a670c0..7f66820ea40 100644 --- a/gemfiles/ruby_3.4_contrib.gemfile.lock +++ b/gemfiles/ruby_3.4_contrib.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.4_contrib_old.gemfile.lock b/gemfiles/ruby_3.4_contrib_old.gemfile.lock index d0dc7bc20dc..ef7b2fe9703 100644 --- a/gemfiles/ruby_3.4_contrib_old.gemfile.lock +++ b/gemfiles/ruby_3.4_contrib_old.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.4_core_old.gemfile.lock b/gemfiles/ruby_3.4_core_old.gemfile.lock index e05409991e7..01bd9052aa9 100644 --- a/gemfiles/ruby_3.4_core_old.gemfile.lock +++ b/gemfiles/ruby_3.4_core_old.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.4_elasticsearch_7.gemfile.lock b/gemfiles/ruby_3.4_elasticsearch_7.gemfile.lock index 2564b37a837..727d14bfec4 100644 --- a/gemfiles/ruby_3.4_elasticsearch_7.gemfile.lock +++ b/gemfiles/ruby_3.4_elasticsearch_7.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.4_elasticsearch_8.gemfile.lock b/gemfiles/ruby_3.4_elasticsearch_8.gemfile.lock index 60d00d80b6b..459dd974753 100644 --- a/gemfiles/ruby_3.4_elasticsearch_8.gemfile.lock +++ b/gemfiles/ruby_3.4_elasticsearch_8.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.4_elasticsearch_latest.gemfile.lock b/gemfiles/ruby_3.4_elasticsearch_latest.gemfile.lock index 7053c88a07d..ab0367e3e66 100644 --- a/gemfiles/ruby_3.4_elasticsearch_latest.gemfile.lock +++ b/gemfiles/ruby_3.4_elasticsearch_latest.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.4_graphql_1.13.gemfile.lock b/gemfiles/ruby_3.4_graphql_1.13.gemfile.lock index 0ff0371efde..fddd840f372 100644 --- a/gemfiles/ruby_3.4_graphql_1.13.gemfile.lock +++ b/gemfiles/ruby_3.4_graphql_1.13.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.4_graphql_2.0.gemfile.lock b/gemfiles/ruby_3.4_graphql_2.0.gemfile.lock index 6807a720a3c..170c5937a18 100644 --- a/gemfiles/ruby_3.4_graphql_2.0.gemfile.lock +++ b/gemfiles/ruby_3.4_graphql_2.0.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.4_graphql_2.1.gemfile.lock b/gemfiles/ruby_3.4_graphql_2.1.gemfile.lock index fbcb8f2ee09..7d0221c58c4 100644 --- a/gemfiles/ruby_3.4_graphql_2.1.gemfile.lock +++ b/gemfiles/ruby_3.4_graphql_2.1.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.4_graphql_2.2.gemfile.lock b/gemfiles/ruby_3.4_graphql_2.2.gemfile.lock index d8c8fb79049..eb2838f698d 100644 --- a/gemfiles/ruby_3.4_graphql_2.2.gemfile.lock +++ b/gemfiles/ruby_3.4_graphql_2.2.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.4_graphql_2.3.gemfile.lock b/gemfiles/ruby_3.4_graphql_2.3.gemfile.lock index 6fa6915b32d..fa1a92272ef 100644 --- a/gemfiles/ruby_3.4_graphql_2.3.gemfile.lock +++ b/gemfiles/ruby_3.4_graphql_2.3.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.4_http.gemfile.lock b/gemfiles/ruby_3.4_http.gemfile.lock index dbd281963f4..6090695847c 100644 --- a/gemfiles/ruby_3.4_http.gemfile.lock +++ b/gemfiles/ruby_3.4_http.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.4_opensearch_2.gemfile.lock b/gemfiles/ruby_3.4_opensearch_2.gemfile.lock index 184c5d32abe..4dcc9862f35 100644 --- a/gemfiles/ruby_3.4_opensearch_2.gemfile.lock +++ b/gemfiles/ruby_3.4_opensearch_2.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.4_opensearch_3.gemfile.lock b/gemfiles/ruby_3.4_opensearch_3.gemfile.lock index 63436353469..2a7721e633e 100644 --- a/gemfiles/ruby_3.4_opensearch_3.gemfile.lock +++ b/gemfiles/ruby_3.4_opensearch_3.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.4_opensearch_latest.gemfile.lock b/gemfiles/ruby_3.4_opensearch_latest.gemfile.lock index d4dd4d05aa2..e5e14527e69 100644 --- a/gemfiles/ruby_3.4_opensearch_latest.gemfile.lock +++ b/gemfiles/ruby_3.4_opensearch_latest.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.4_opentelemetry.gemfile.lock b/gemfiles/ruby_3.4_opentelemetry.gemfile.lock index 1e92535d698..efbf5fd4ef6 100644 --- a/gemfiles/ruby_3.4_opentelemetry.gemfile.lock +++ b/gemfiles/ruby_3.4_opentelemetry.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.4_opentelemetry_otlp.gemfile.lock b/gemfiles/ruby_3.4_opentelemetry_otlp.gemfile.lock index 94fc519873d..739cb1b060e 100644 --- a/gemfiles/ruby_3.4_opentelemetry_otlp.gemfile.lock +++ b/gemfiles/ruby_3.4_opentelemetry_otlp.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.4_rack_2.gemfile.lock b/gemfiles/ruby_3.4_rack_2.gemfile.lock index 70769b5817d..1b3ed3fe7bf 100644 --- a/gemfiles/ruby_3.4_rack_2.gemfile.lock +++ b/gemfiles/ruby_3.4_rack_2.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.4_rack_3.gemfile.lock b/gemfiles/ruby_3.4_rack_3.gemfile.lock index 02b3c4e7a70..600e7f897cf 100644 --- a/gemfiles/ruby_3.4_rack_3.gemfile.lock +++ b/gemfiles/ruby_3.4_rack_3.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.4_rack_latest.gemfile.lock b/gemfiles/ruby_3.4_rack_latest.gemfile.lock index 0be2a37f52f..e13155fd431 100644 --- a/gemfiles/ruby_3.4_rack_latest.gemfile.lock +++ b/gemfiles/ruby_3.4_rack_latest.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.4_rails61_mysql2.gemfile.lock b/gemfiles/ruby_3.4_rails61_mysql2.gemfile.lock index 2905feaebf8..ad7d5048a20 100644 --- a/gemfiles/ruby_3.4_rails61_mysql2.gemfile.lock +++ b/gemfiles/ruby_3.4_rails61_mysql2.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.4_rails61_postgres.gemfile.lock b/gemfiles/ruby_3.4_rails61_postgres.gemfile.lock index a84e00c9426..d3004b01616 100644 --- a/gemfiles/ruby_3.4_rails61_postgres.gemfile.lock +++ b/gemfiles/ruby_3.4_rails61_postgres.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.4_rails61_postgres_redis.gemfile.lock b/gemfiles/ruby_3.4_rails61_postgres_redis.gemfile.lock index 6048587fb40..6861c4e50c5 100644 --- a/gemfiles/ruby_3.4_rails61_postgres_redis.gemfile.lock +++ b/gemfiles/ruby_3.4_rails61_postgres_redis.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.4_rails61_postgres_sidekiq.gemfile.lock b/gemfiles/ruby_3.4_rails61_postgres_sidekiq.gemfile.lock index e13e3c662f7..993ca36bca9 100644 --- a/gemfiles/ruby_3.4_rails61_postgres_sidekiq.gemfile.lock +++ b/gemfiles/ruby_3.4_rails61_postgres_sidekiq.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.4_rails61_semantic_logger.gemfile.lock b/gemfiles/ruby_3.4_rails61_semantic_logger.gemfile.lock index 49b20c48bc3..02ee1802581 100644 --- a/gemfiles/ruby_3.4_rails61_semantic_logger.gemfile.lock +++ b/gemfiles/ruby_3.4_rails61_semantic_logger.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.4_rails61_trilogy.gemfile.lock b/gemfiles/ruby_3.4_rails61_trilogy.gemfile.lock index ea16d0a53a3..e598627400b 100644 --- a/gemfiles/ruby_3.4_rails61_trilogy.gemfile.lock +++ b/gemfiles/ruby_3.4_rails61_trilogy.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.4_rails7.gemfile.lock b/gemfiles/ruby_3.4_rails7.gemfile.lock index bc5df8a9978..270781e60f3 100644 --- a/gemfiles/ruby_3.4_rails7.gemfile.lock +++ b/gemfiles/ruby_3.4_rails7.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.4_rails71.gemfile.lock b/gemfiles/ruby_3.4_rails71.gemfile.lock index 78397938e1e..d1b0b6d9d3e 100644 --- a/gemfiles/ruby_3.4_rails71.gemfile.lock +++ b/gemfiles/ruby_3.4_rails71.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.4_redis_3.gemfile.lock b/gemfiles/ruby_3.4_redis_3.gemfile.lock index ef8b20491a7..4d741e21349 100644 --- a/gemfiles/ruby_3.4_redis_3.gemfile.lock +++ b/gemfiles/ruby_3.4_redis_3.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.4_redis_4.gemfile.lock b/gemfiles/ruby_3.4_redis_4.gemfile.lock index b718125251a..5c96662d906 100644 --- a/gemfiles/ruby_3.4_redis_4.gemfile.lock +++ b/gemfiles/ruby_3.4_redis_4.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.4_redis_5.gemfile.lock b/gemfiles/ruby_3.4_redis_5.gemfile.lock index bf1171faa15..54fbb675880 100644 --- a/gemfiles/ruby_3.4_redis_5.gemfile.lock +++ b/gemfiles/ruby_3.4_redis_5.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.4_relational_db.gemfile.lock b/gemfiles/ruby_3.4_relational_db.gemfile.lock index 5c1df5ccd43..e6b0ef21adc 100644 --- a/gemfiles/ruby_3.4_relational_db.gemfile.lock +++ b/gemfiles/ruby_3.4_relational_db.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.4_resque2_redis3.gemfile.lock b/gemfiles/ruby_3.4_resque2_redis3.gemfile.lock index ddf2fced593..58eb089e0df 100644 --- a/gemfiles/ruby_3.4_resque2_redis3.gemfile.lock +++ b/gemfiles/ruby_3.4_resque2_redis3.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.4_resque2_redis4.gemfile.lock b/gemfiles/ruby_3.4_resque2_redis4.gemfile.lock index 0d3c590ac4e..6239da750da 100644 --- a/gemfiles/ruby_3.4_resque2_redis4.gemfile.lock +++ b/gemfiles/ruby_3.4_resque2_redis4.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.4_sinatra_2.gemfile.lock b/gemfiles/ruby_3.4_sinatra_2.gemfile.lock index ecf7735adee..d298aea921a 100644 --- a/gemfiles/ruby_3.4_sinatra_2.gemfile.lock +++ b/gemfiles/ruby_3.4_sinatra_2.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.4_sinatra_3.gemfile.lock b/gemfiles/ruby_3.4_sinatra_3.gemfile.lock index 91a908b07a0..9a976a9ad4b 100644 --- a/gemfiles/ruby_3.4_sinatra_3.gemfile.lock +++ b/gemfiles/ruby_3.4_sinatra_3.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.4_sinatra_4.gemfile.lock b/gemfiles/ruby_3.4_sinatra_4.gemfile.lock index 3ff0c855204..edf56e76758 100644 --- a/gemfiles/ruby_3.4_sinatra_4.gemfile.lock +++ b/gemfiles/ruby_3.4_sinatra_4.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.4_stripe_10.gemfile.lock b/gemfiles/ruby_3.4_stripe_10.gemfile.lock index 8b873d296be..a0a6f918e9b 100644 --- a/gemfiles/ruby_3.4_stripe_10.gemfile.lock +++ b/gemfiles/ruby_3.4_stripe_10.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.4_stripe_11.gemfile.lock b/gemfiles/ruby_3.4_stripe_11.gemfile.lock index afbd62067dc..87bd39e6208 100644 --- a/gemfiles/ruby_3.4_stripe_11.gemfile.lock +++ b/gemfiles/ruby_3.4_stripe_11.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.4_stripe_12.gemfile.lock b/gemfiles/ruby_3.4_stripe_12.gemfile.lock index 56ce3d10635..c8331c7fd5d 100644 --- a/gemfiles/ruby_3.4_stripe_12.gemfile.lock +++ b/gemfiles/ruby_3.4_stripe_12.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.4_stripe_7.gemfile.lock b/gemfiles/ruby_3.4_stripe_7.gemfile.lock index 5364cfcf2a4..f9a00333095 100644 --- a/gemfiles/ruby_3.4_stripe_7.gemfile.lock +++ b/gemfiles/ruby_3.4_stripe_7.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.4_stripe_8.gemfile.lock b/gemfiles/ruby_3.4_stripe_8.gemfile.lock index cf487070b16..920f9ab5ec5 100644 --- a/gemfiles/ruby_3.4_stripe_8.gemfile.lock +++ b/gemfiles/ruby_3.4_stripe_8.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.4_stripe_9.gemfile.lock b/gemfiles/ruby_3.4_stripe_9.gemfile.lock index 01e58d61e61..d1ad0dfb221 100644 --- a/gemfiles/ruby_3.4_stripe_9.gemfile.lock +++ b/gemfiles/ruby_3.4_stripe_9.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.4_stripe_latest.gemfile.lock b/gemfiles/ruby_3.4_stripe_latest.gemfile.lock index 81ddf6a3234..2f00fd0d058 100644 --- a/gemfiles/ruby_3.4_stripe_latest.gemfile.lock +++ b/gemfiles/ruby_3.4_stripe_latest.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/gemfiles/ruby_3.4_stripe_min.gemfile.lock b/gemfiles/ruby_3.4_stripe_min.gemfile.lock index 3b05456bd06..c32d45482f0 100644 --- a/gemfiles/ruby_3.4_stripe_min.gemfile.lock +++ b/gemfiles/ruby_3.4_stripe_min.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - datadog (2.8.0) + datadog (2.9.0) datadog-ruby_core_source (~> 3.3, >= 3.3.7) libdatadog (~> 14.3.1.1.0) libddwaf (~> 1.18.0.0.0) diff --git a/lib/datadog/version.rb b/lib/datadog/version.rb index 2ed885ad4dc..56a89564f3e 100644 --- a/lib/datadog/version.rb +++ b/lib/datadog/version.rb @@ -3,7 +3,7 @@ module Datadog module VERSION MAJOR = 2 - MINOR = 8 + MINOR = 9 PATCH = 0 PRE = nil BUILD = nil